@charset "utf-8";
/*
   galerie-virtuelle.css
   ---------------------
   Extrait de style_ancien.css (sections « GALERIE VIRTUELLE »,
   « GESTION GALERIE VIRTUELLE » et « PORTFOLIO GALERIE VIRTUELLE »).

   Page « Galerie virtuelle » n'existe plus. Son héritière est
   page-jeuxvideo.php (galerie publique des jeux vidéo).

   Trois zones :
     1) GARDÉ          — sélecteurs vérifiés comme utilisés
     2) À VÉRIFIER     — usage ambigu (possiblement injecté via ACF/BDD,
                         ou parent utilisé mais sous-règles douteuses)
     3) PROBABLEMENT MORT — aucune trace dans le PHP/JS actif du thème,
                            ou uniquement dans du code commenté.
                            Candidats à supprimer après vérif visuelle.

   Tant que les sections d'origine ne sont pas retirées de
   style_ancien.css, ce fichier fait double emploi sur page-jeuxvideo.
*/


/* ============================================================
   1) GARDÉ
   ============================================================ */

/* --- portfolio (utilisé : page-jeuxvideo.php branche galerie publique
       + cjv/gv_ecole_projet.php) --- */

.ecole {
    margin-bottom: 2em;
}

.ecole h4.ecole_titre {
    font-size: 1em !important;
}

.portfolio_projets {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

.portfolio_projets .jeu {
    text-align: inherit;
    display: block;
    max-width: 300px;
    margin: 1em 1em;
    width: 25%;
}

.prog_12 .jeu {
    width: 11%; /* 7 jeux vidéos par ligne */
}

.portfolio_projet .titre {
    font-weight: 600;
    margin-top: 0.5em;
}

.portfolio_projet .meta {
    font-size: 0.7em;
    color: #0006;
    margin-top: 0.5em;
}

.portfolio_projet img {
    width: 100%;
}

/* --- icône laureat « design de mode » (cjv/gv_ecole_projet.php:98) --- */

.design_de_mode_icone {
    display: inline-block;
    vertical-align: top;
    padding-right: 0.2em;
}

.design_de_mode_icone img {
    height: 1em !important;
    width: auto !important;
}


/* ============================================================
   2) À VÉRIFIER
   ============================================================ */

/* --- .contenu_dynamique : le parent est utilisé (gv_ecole_projet.php:259)
       mais le contenu .ligne.half/third/whole n'apparaît que dans du code
       PHP commenté (gv_ecole_projet.php:300-395). À garder si du contenu
       éditeur/ACF en BDD utilise encore ces classes. --- */

.contenu_dynamique .ligne {
    margin-bottom: 1.4em;
    overflow: hidden;
}

.contenu_dynamique .ligne.half .element {
    width: 48.8%;
    display: inline-block;
    vertical-align: top;
}

.contenu_dynamique .ligne.half .element:last-child {
    float: right;
}

.contenu_dynamique .ligne.third .element {
    width: 31.6%;
    display: inline-block;
    vertical-align: top;
}

.contenu_dynamique .ligne.third .element:nth-child(1) {
    float: left;
}

.contenu_dynamique .ligne.third .element:nth-child(2) {
    margin-left: 2.5%;
    margin-right: 2%;
}

.contenu_dynamique .ligne.third .element:nth-child(3) {
    float: right;
}

.contenu_dynamique .ligne.whole .element {
    width: 100%;
}

/* --- .banniere_image : parent utilisé sur page-coordo.php:43 et
       single-type_emplois_folks.php:31,34. Le .slogan_banniere interne
       n'est posé que dans page-coordo.php — à confirmer s'il y est encore
       affiché. Ces règles n'ont leur place ici que si elles servent à
       ces pages-là. --- */

.banniere_image {
    position: relative;
}

.banniere_image .slogan_banniere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFF;
    text-align: center;
    width: fit-content;
    padding: 0 1em;
}

.banniere_image .slogan_banniere h3 {
    font-size: 2.5em;
    font-weight: 300;
}

.banniere_image .slogan_banniere .bouton_iv {
    border-radius: 10px;
    font-size: 1.5em;
}

/* --- .gv_texte : utilisé par presentation_box() (functions.php:736-792),
       MAIS toute la fonction est commentée. Garder seulement si du contenu
       BDD en a encore besoin. --- */

.gv_texte > *:first-child {
    padding-top: 0 !important;
}

.gv_texte > *:last-child {
    padding-bottom: 0 !important;
}

.gv_texte h5 {
    padding-bottom: 1em !important;
}

/* --- .result_image / .image_presentation / #suggestion-box :
       apparaissent dans d'autres .css du thème (gestion.css,
       style_sections_emploi.css) mais pas dans le HTML PHP. Possiblement
       morts ou injectés en JS / via plugin. --- */

.result_image img,
.image_presentation img {
    width: 100%;
    height: auto;
}

#suggestion-box {
    background-color: #FFF;
    padding: 0.8em;
    font-size: 0.9em;
    margin-bottom: 1em;
    font-weight: 300;
}

#suggestion-box li:hover {
    font-weight: 400;
}

#suggestion-box li {
    line-height: 1.3em;
}


/* ============================================================
   3) PROBABLEMENT MORT
   ------------------------------------------------------------
   Candidats à supprimer. Aucune trace dans le PHP/JS actif du
   thème, ou uniquement dans du code commenté.
   ============================================================ */

/* --- popup overlay generic — non référencé --- */

.overflow_galerie {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #fffffff7;
    z-index: 999999999999999999999999999999999999999999999999;
    top: 0;
    left: 0;
}

.overflow_galerie .contenu {
    width: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
}

.overflow_galerie .contenu .video_boxed {
    width: 100%;
}

/* --- .lien_neutre — pas dans HTML PHP du thème --- */

a.lien_neutre,
a:hover.lien_neutre,
a:visited.lien_neutre {
    text-decoration: none !important;
}

/* --- ciblait l'ancien template page-galerievirtuelle.php — n'existe plus --- */

.page-template-page-galerievirtuelle .banniere_programme {
    padding: 3em 0 20em;
    position: relative;
}

.page-template-page-galerievirtuelle .fj-bloc h2 {
    display: none;
}

.page-template-page-galerievirtuelle .banniere_programme h1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* --- système de vote (le HTML qui le pose dans gv_ecole_projet.php:171
       est entièrement entre /*?> ... <?php */ /*) --- */

.vote_actif {
    cursor: pointer;
}

.vote_reponse {
    background-color: #FFF;
    padding: 2em;
    text-align: center;
    font-size: 2em;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999999999999999999999999;
    border: solid 4px #000000;
}

.jeu_contenu .vote {
    font-size: 0.5em;
    color: #0006 !important;
}

/* --- ancien bloc « gv_projet » — non posé en HTML --- */

.gv_projet .entete {
    padding: 0.8em 2em 0.8em 1.6em;
    letter-spacing: 0.05em;
    line-height: 1.33em;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgb(0 0 0 / 60%);
    cursor: pointer;
    color: white;
    background-color: #3D3D3D;
    position: relative;
}

.gv_projet .entete .logo_programme {
    float: left;
    width: 5em;
    margin-right: 1em;
}

.gv_projet .entete .domaine {
    padding-top: 0.8em;
}

.gv_projet .entete .programme {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.2em;
}

.gv_projet img {
    max-width: 100%;
}

.gv_projets {
    margin: 4em 0;
}

.gv_projet {
    margin-bottom: 3em;
    border: solid 1px #f1f1f1;
    position: relative;
    background-color: #CFCFCF;
}

.gv_projet .gv_projet_contenu_teaser {
    min-height: 200px;
    padding: 2em;
    color: #fff;
    color: #000000;
    background-color: #e0e0e0;
}

.gv_projet_contenu {
    padding: 1em;
    background-color: beige;
    display: none;
}

/* --- .province_titre, .bouton_projet — non référencés --- */

.province h3.province_titre {
    border-bottom: solid 2px #000000;
    padding-bottom: 0 !important;
    margin-bottom: 1em;
}

.bouton_projet {
    border: 0;
    outline: 0;
    margin-top: 2em;
    padding: 0.8em 2em;
    color: #FFF;
    font-size: 0.8em;
    text-transform: uppercase;
    float: right;
    cursor: pointer;
}

/* --- bloc « FEF » (Festival, etc.) — aucune occurrence --- */

.fef {
    padding: 2em;
    border: solid 5px #000000;
    border-left: none;
    border-right: none;
    width: 97%;
    margin: 3em auto;
}

.fef h3 {
    font-size: 2em;
    color: #4A4A4A;
    text-transform: uppercase;
    margin-bottom: 1em;
    float: right;
}

.fef_2 h3 {
    float: none !important;
    margin-top: 0.5em;
}

.fef .video_wrap {
    width: 30%;
    float: left;
}

.fef_2 .video_wrap {
    float: none;
    display: inline-block;
    margin-right: 2em;
}

.fef_2 .video_wrap:last-child {
    margin-right: 0;
}

.conteneur_fef .date {
    margin: 0 1em;
    border-bottom: solid 2px;
    background-color: #c3c3c3;
    padding: 0.5em;
}

.conteneur_fef .conteneur_video {
    margin-right: 2em;
    margin-left: 0 !important;
}

.fef_select {
    padding: 2em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2em;
}

/* --- portfolio variante prog_18 — page-jeuxvideo n'utilise que prog_12 --- */

.prog_18 .image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: solid 1px #f3f3f3;
    position: relative;
    overflow: hidden;
}

@supports not (aspect-ratio: 1 / 1) {
    .prog_18 .image::before {
        float: left;
        padding-top: 100%;
        content: "";
    }

    .prog_18 .image::after {
        display: block;
        content: "";
        clear: both;
    }
}

.prog_18 .image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

/* --- TOUTE LA SECTION « GESTION GALERIE VIRTUELLE » —
       l'interface admin de gestion de la GV n'existe plus.
       Aucun de ces sélecteurs n'est posé en HTML actif. --- */

.result_image_fr .meta {
    display: none;
}

.gv_menu {
    float: left;
    overflow-y: auto;
    width: 15%;
    min-height: 100vh;
    background-color: #d1d1d1;
    padding: 1em;
}

.gv_menu table {
    width: 100%;
    font-weight: 400;
}

.gv_wrap_contenu {
    float: right;
    width: 85%;
}

.gv_contenu {
    padding: 2em;
    width: 100%;
    max-width: 1039px;
}

.gv_menu h2 {
    font-size: 1.5em;
    padding-bottom: 1em;
}

.gv_menu h3 {
    font-size: 1.2em;
}

.gv_contenu .formulaire {
    font-size: 1.2em;
}

.gv_contenu .formulaire h6 {
    font-weight: 300;
    padding-top: 0.2em;
}

.gv_contenu .formulaire textarea {
    height: auto;
}

.mod_projet.actif {
    background-color: #f7ab2d;
    color: #FFF;
}

.mod_projet {
    padding: 0.2em 0.5em;
}

.gv_ligne {
    margin: 1.3em 0;
}

.gv_ligne .exemple {
    padding: 1em;
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
}

.open_select {
    cursor: pointer;
}

.gv_ligne .exemple .open_select {
    width: 32%;
    min-height: 10em;
    border: dashed 2px #d1d1d1;
    padding: 0.2em;
}

.overflow_constructeur_wrap {
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 999999999999999999999;
}

.overflow_constructeur_wrap .close {
    position: absolute;
    font-size: 2em;
    top: 1em;
    right: 2em;
    cursor: pointer;
}

.constructeur_wrap, .constructeur_wrap_ecole {
    margin: 0.5em;
    padding: 3em;
    border: solid 1px #d1d1d1;
    position: absolute;
    width: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    display: none;
    overflow-y: scroll;
    max-height: 90vh;
}

.constructeur_wrap .menu_open_type li {
    display: inline-block;
    margin-right: 1em;
    color: #909090;
    cursor: pointer;
}

.constructeur_wrap li.active {
    color: #f7ab2d;
}

.constructeur {
    min-height: 5em;
    border: solid 1px #d1d1d1;
    padding: 1em;
    margin-top: 1em;
}

.constructeur .type_gv {
    width: 50%;
}

.constructeur .texte_gv {
    width: 100%;
}

.editeur_bloc {
    width: 49%;
    display: inline-block;
    vertical-align: top;
}

.editeur_bloc:last-child {
    float: right;
}

.constructeur img {
    max-width: 100%;
    height: auto;
}

.drop_file_zone {
    background-color: #EEE;
    border: #999 5px dashed;
    width: 100%;
    padding: 1em;
    margin-top: 1em;
    position: relative;
    text-align: center;
}

.drag_upload_file {
    width: 50%;
    margin: 0 auto;
}

.drop_file_zone h6 {
    font-size: 1em;
    text-align: center;
}

.constructeur_wrap .general {
    position: relative;
    padding: 0.4em 1.3em;
    border: none;
    outline: 0;
    color: #FFF;
    text-transform: uppercase;
    font-size: 0.7em;
    cursor: pointer;
    margin-top: 2em;
    background-color: #949494;
}

.drag_upload_file #selectfile_membre,
.drag_upload_file #selectfile_admin,
.drag_upload_file #selectfile_pdf {
    display: none;
}

.result_image {
    display: block;
    background-color: #FFF;
    text-align: center;
    margin-top: 1em !important;
    margin-bottom: 1em;
}

.type_gv {
    display: none;
}

.constructeur .active {
    display: block;
}

.format_result img {
    width: 100%;
    height: auto;
}

.open_select img {
    width: 100%;
    height: auto;
}

.constructeur_wrap .ql-editor {
    min-height: 10em;
}

.constructeur_wrap .video {
    display: none;
}

.second_menu_gv li {
    display: inline-block;
    padding: 0.2em 1em 0.2em 0;
}

.jury {
    width: 80%;
    margin: 0 auto;
    padding: 2em;
    border: solid 1px #000000;
}

.search-bar input {
    padding-left: 4em;
}

#search-box {
    background-color: rgb(255 255 234);
}

.fa-search {
    position: absolute;
    padding: 1em;
}

.formulaire input#search-box-result:disabled {
    background-color: #FFF;
}