:root {
    --theme-color: #D4113C;
    --theme-color01: rgba(212, 17, 60, 0.1);
    --theme-color02: rgba(212, 17, 60, 0.2);
    --theme-color03: rgba(212, 17, 60, 0.3);
    --theme-color04: rgba(212, 17, 60, 0.4);
    --theme-color05: rgba(212, 17, 60, 0.5);
    --theme-color06: rgba(212, 17, 60, 0.6);
    --theme-color07: rgba(212, 17, 60, 0.7);
    --back-color: #222233;
    --back-color01: rgba(34, 34, 51, 0.1);
    --back-color02: rgba(34, 34, 51, 0.2);
    --back-color03: rgba(34, 34, 51, 0.3);
    --back-color04: rgba(34, 34, 51, 0.4);
    --back-color05: rgba(34, 34, 51, 0.5);
    --back-color06: rgba(34, 34, 51, 0.6);
    --back-color07: rgba(34, 34, 51, 0.7);
    --back-color08: rgba(34, 34, 51, 0.8);
    --back-color09: rgba(34, 34, 51, 0.9);
    --back-color092: rgba(34, 34, 51, 0.92);
    --back-color094: rgba(34, 34, 51, 0.94);
    --back-color095: rgba(34, 34, 51, 0.95);
}

.back-theme { background-color: var(--theme-color); }
.col-theme { color: var(--theme-color); }
.leg-back-theme-1 { background-color: var(--theme-color01); }

.back-back { background-color: var(--back-color); }
.col-back { color: var(--back-color); }

* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: var(--theme-color);
    box-sizing: border-box;
    transition: all 0.4s linear;
}

html, body {
    width: 100%;
    /*background-color: var(--back-color);*/
    background-color: rgba(34, 34, 51, 0.96);
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: var(--theme-color) var(--back-color); /* scroll thumb and track */
}

a, a:active, a:focus, a:hover {
    text-decoration: none;
}

#bg-video {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* la vidéo couvre tout l'écran */
    z-index: -1; /* derrière le contenu */
}

#voile_popup, #voile_loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--back-color095);
    z-index: 2000 !important;
}

#popup {
    position: absolute;
    width: 600px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-top: 8px solid var(--theme-color);
    top: 8%;
    left: 50%;
    margin-left: -300px;
    padding: 12px;
    border-radius: 6px;
    z-index: 2020;
}

@media screen and (max-width: 768px) {
    #popup {
        width: calc(100% - 12px);
        top: 30px;
        left: 6px;
        margin: 0;
    }

    .flex > div {
        width: 100% !important;
        height: auto !important;
    }

    .flex > div.no100 {
        width: 50% !important;
        height: auto !important;
    }

    .flex > div.spinner_popup {
        width: 25px !important;
        height: 25px !important;
    }

    #panel_carte_france {
        height: 400px !important;
    }

    #panel_araigne {
        height: 500px !important;
    }
}

.spinner_popup {
    animation: rotation_home 12s linear infinite;
    position: relative;
    border: 2px solid var(--theme-color);
    width: 25px !important;
    height: 25px !important;
    margin-right: 10px;
    border-radius: 50%;
    z-index: 1000;
}

.triangle_popup {
    position: absolute;
    background-color: var(--theme-color);
    width: 12.5px;
    height: 12.5px;
}

.triangle_01_popup {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    margin-left: -6.5px;
}
.triangle_02_popup {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 0;
    right: 50%;
    margin-right: -6.5px;
}
.triangle_03_popup {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    top: 50%;
    right: 0;
    margin-top: -6.5px;
}
.triangle_04_popup {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    bottom: 50%;
    left: 0;
    margin-bottom: -6.5px;
}

@keyframes rotation_home {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#popup h3 {
    margin-top: 5px;
}

#popup h3 span {
    border-left : 10px solid var(--theme-color);
    margin-left: 10px;
    padding-left: 10px;
}

/* ################################################################ */
/* ################################################################ */

.spinner_load {
    animation: rotation_load 12s linear infinite;
    position: fixed;
    top: 50%;
    margin-top: -80px;
    left: 50%;
    margin-left: -75px;
    border: 6px solid var(--theme-color);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    z-index: 1000;
}

.triangle_load {
    position: absolute;
    background-color: var(--theme-color);
    width: 80px;
    height: 80px;
}

.triangle_01_load {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    margin-left: -40px;
}
.triangle_02_load {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 0;
    right: 50%;
    margin-right: -40px;
}
.triangle_03_load {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    top: 50%;
    right: 0;
    margin-top: -40px;
}
.triangle_04_load {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    bottom: 50%;
    left: 0;
    margin-bottom: -40px;
}

@keyframes rotation_load {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ################################################################ */
/* ################################################################ */

.michroma-regular {
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
}

button:active, input:active, textarea:active, select:active, option:active, button:focus, input:focus, textarea:focus, select:focus, option:focus {
    text-decoration: none;
    outline: none;
}

/* ################################################################ */
/* ################################################################ */

.panorama_top {
    width: 12%;
    background-size: cover !important; 
    height: 100px;
    border: none;
    border-radius: 8px;
}

#panorama_top1 {
    background: url(../img/rue.png) center; 
}

#panorama_top2 {
    background: url(../img/bar4.png) center;
}

#panorama_top3 {
    background: url(../img/salon2.png) center;
}

#panorama_top4 {
    background: url(../img/reception.png) center;
}

#panorama_top5 {
    background: url(../img/bar3.png) center;
}

#panorama_top6 {
    background: url(../img/sport.png) center;
}

#panorama_top7 {
    background: url(../img/discours.png) center;
}

#panorama_top8 {
    background: url(../img/soldat.png) center;
}

/* ################################################################ */
/* ################################################################ */

#index_titre {
    position: fixed;
    top: 50%;
    margin-top: -300px;
    left: 50%;
    margin-left: -300px;
    width: 600px; 
    border: 0px solid var(--theme-color);
}

#connexion_form {
    position: absolute;
    border: 0px solid #FFF;
    width: 200px;
    left: 50%;
    margin-left: -100px;
    top: 100px;
    z-index: 1020;
}

#connexion_form input {
    display: block;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--theme-color);
    color: var(--theme-color);
    text-align: center;
    padding-bottom: 4px;
}

button {
    background-color: var(--theme-color);
    border: 0;
    border-radius: 4px;
    padding: 5px 10px;
    color: var(--back-color);
    cursor: pointer;
}

button i {
    color: var(--back-color);
}

/* ################################################################ */
/* ################################################################ */

.spinner {
    animation: rotation 12s linear infinite;
    position: relative;
    margin: 0 auto;
    border: 12px solid var(--theme-color);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1000;
}

.triangle {
    position: absolute;
    background-color: var(--theme-color);
    width: 160px;
    height: 160px;
}

.triangle_01 {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    margin-left: -80px;
}
.triangle_02 {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 0;
    right: 50%;
    margin-right: -80px;
}
.triangle_03 {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    top: 50%;
    right: 0;
    margin-top: -80px;
}
.triangle_04 {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    bottom: 50%;
    left: 0;
    margin-bottom: -80px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ################################################################ */
/* ################################################################ */

h1#index_sivis {
    background-color: transparent; 
    padding: 0px 10px; 
    border-radius: 6px; 
    color: var(--theme-color); 
    font-size: 45px; 
    font-weight: bold;
    text-align: center;
    margin: 10px 0 0 0;
}

h2#index_sivis_sous {
    background-color: transparent; 
    padding: 0px 10px; 
    border-radius: 6px; 
    color: var(--theme-color); 
    font-size: 24px; 
    font-weight: bold;
    text-align: center;
    margin-top: -10px;
}

/* ################################################################ */
/* ################################################################ */

nav {
    background-color: var(--theme-color);
    width: 100%;
    height: 40px;
    z-index: 1900;
}

#nav_content {
    width: 100%;
    margin: 0 auto;
}

nav > #nav_content > #nav_title {
    width: 300px !important;
    display: flex;
    justify-content: flex-start;
}

@media screen and (max-width: 768px) {
    nav > #nav_content > #nav_title {
        width: 140px !important;
    }
}

nav #nav_content h1 {
    font-size: 22px;
    line-height: 40px;
}

nav #nav_content h1 a {
    font-size: 20px;
    line-height: 40px;
    text-decoration: none;
    font-family: 'confortaa', Arial, Helvetica, sans-serif;
    color: #112233;
}

nav #div_nav_search_crypto {
    margin: 8px 0px 0px 0px;
}

nav #div_nav_search_crypto input {
    
}

nav #div_nav_search_crypto button {
    
}

nav #nav_burger {
    display: none;
}

@media screen and (max-width: 768px) {

    nav #nav_burger {
        display: block;
        padding: 5px 10px 2px 5px;
        color: #112233;
    }

}

nav ul {
    display: flex;
    justify-content: space-between;
    z-index: 1800;
}

nav ul li {
    list-style: none;
}

nav ul li:hover {
    
}

nav ul li a  {
    display: block;
    text-decoration: none;
    padding: 12px 34px;
    color: var(--back-color);
}

nav ul li a:hover {
    background-color: var(--back-color);
    color: var(--main-color);
}

nav ul li a i {
    color: var(--back-color);
    font-size: 14px;
}

nav ul li a:hover i {
    background-color: var(--back-color);
    color: var(--main-color);
}

@media screen and (max-width: 768px) {

    nav ul {
        display: none;
        width: 50%;
        position: absolute;
        top: 30px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.8);
        border-radius: 12px;
        padding: 10px 2px;
    }

    nav ul li a {
        color: var(--theme-color);
    }

}

nav #h1_title {
    color: var(--back-color);
    font-weight: bold;
    font-size: 20px;
}

/* ################################################################ */
/* ################################################################ */

.spinner_nav {
    animation: rotation_nav 12s linear infinite;
    position: relative;
    margin: 0 auto;
    border: 2px solid var(--back-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    z-index: 1000;
}

.triangle_nav {
    position: absolute;
    background-color: var(--back-color);
    width: 16px;
    height: 16px;
}

.triangle_01_nav {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    margin-left: -8px;
}
.triangle_02_nav {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 0;
    right: 50%;
    margin-right: -8px;
}
.triangle_03_nav {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    top: 50%;
    right: 0;
    margin-top: -8px;
}
.triangle_04_nav {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    bottom: 50%;
    left: 0;
    margin-bottom: -8px;
}

@keyframes rotation_nav {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ################################################################ */
/* ################################################################ */

section {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px 20px;
}

.panel {
    position: relative; 
    border: 8px solid rgba(255, 255, 255, 0.05); 
    border-radius: 8px;
    padding: 5px;
}

.bText {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 8px;
    border-radius: 4px;
    color: var(--theme-color);
}

/* ################################################################ */
/* ################################################################ */

.profil_block {
    width: 25%;
    border: 6px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 8px;
}

.profil_block .profil_img {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 4px;
}

.profil_block .profil_img i {
    font-size: 94px;
}

.profil_block .profil_img img {
    width: 90PX;
    height: 110px;
}

@media screen and (max-width: 768px) {
    .profil_block .profil_img img {
        width: 27%;
    }
}

.profil_pseudo {
    font-size: 18px;
    text-align: center;
    background-color: var(--back-color05);    
    border-radius: 4px;
    padding: 5px 10px;
}

.profil_block .profil_img .profil_matricule {
    font-size: 34px;
    text-align: center;
    margin-top: 8px;
}

.profil_block .profil_img .profil_grade {
    font-size: 20px;
    text-align: center;
    background-color: var(--theme-color05);
    color: var(--theme-color);
    border-radius: 4px;
    padding: 4px 8px;
}

.profil_block .profil_table_container {
    margin-top: 10px;
}

.profil_block .profil_table_container table.profil_table {
    width: 100%;
}

.profil_block .profil_table_container table.profil_table tr {
    
}

.profil_block .profil_table_container table.profil_table tr td:first-child {
    width: 30%;
    color: var(--theme-color05);
}

.profil_block .profil_table_container table.profil_table tr td:last-child {
    
}

.profil_block .profil_table_container button {
    margin-top: 10px;
    width: 100%;
}

/* ################################################################ */
/* ################################################################ */

.avatar {
    width: 24.5%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 6px 0;
    cursor: pointer;
    background-color: transparent;
    margin-bottom: 10px;
}

.avatar:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color02);
}

.avatar .avatar_img {
    text-align: center;
}

.avatar .avatar_img i {
    font-size: 120px;
    color: var(--theme-color05);
}

.avatar .avatar_img img {
    width: 95px;
    height: 120px;
    margin: 0 auto;
}

.avatar .avatar_bandeau {
    display: flex;
    justify-content: space-between;
    background-color: var(--theme-color);
    padding: 4px 6px;
}

.avatar .avatar_pseudo {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    color: var(--back-color);
}

.avatar .avatar_niveau {
    font-size: 14px;
    text-align: right;
    color: var(--back-color);
}

.avatar .avatar_job {
    font-size: 12px;
    text-align: center;
    color: var(--theme-color07);
}

/* ################################################################ */
/* ################################################################ */

.spinner_home {
    animation: rotation_home 12s linear infinite;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 50%;
    margin-left: -50px;
    border: 4px solid var(--theme-color);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 1000;
}

.triangle_home {
    position: absolute;
    background-color: var(--theme-color);
    width: 50px;
    height: 50px;
}

.triangle_01_home {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 0;
    left: 50%;
    margin-left: -25px;
}
.triangle_02_home {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    top: 0;
    right: 50%;
    margin-right: -25px;
}
.triangle_03_home {
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
    top: 50%;
    right: 0;
    margin-top: -25px;
}
.triangle_04_home {
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    bottom: 50%;
    left: 0;
    margin-bottom: -25px;
}

@keyframes rotation_home {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ################################################################ */
/* ################################################################ */

.cercle {
    position: absolute;
    width: 140px; 
    height: 140px;
    border-radius: 50%; 
    border: 8px solid var(--theme-color); 
    text-align: center; 
    line-height: 122px; 
    font-size: 18px; 
    color: rgba(255, 255, 255, 0.2); 
    font-weight: bold;
    cursor: pointer;
}

.cercle:hover {
    background-color: var(--theme-color);
    color: var(--back-color);
    border: 8px solid rgba(0, 0, 0, 0.5); 
}

@media screen and (max-width: 768px) {
    .cercle {
        width: 100px; 
        height: 100px;
        font-size: 14px;
        line-height: 86px; 
    }

    #cercle02, #cercle05 {
        margin-left: -50px !important;
    }
}

.barre {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
}

.barre_horiz_2_ronds {
    left: 50%; 
    margin-left: calc((100% - 400px - 20px) / 2 * -1); 
    width: calc(100% - 400px - 20px); 
    height: 10px;
}

.ssCercle {
    position: absolute;
    font-size: 14px;
    color: var(--back-color);
    text-align: center;
    width: 60px;
    top: 80px;
    left: 50%;
    margin-left: -30px;
    font-weight: normal;
    background-color: var(--theme-color05);
    height: 25px;
    line-height: 25px;
    border-radius: 20px;
}

@media screen and (max-width: 768px) {
    .ssCercle {
        top: 50px;
        font-size: 12px;
        height: 20px;
        line-height: 20px;
    }
}

/* ################################################################ */
/* ################################################################ */

.stats_barre {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 10px;
}

.stats_barre .stats {
    background-color: var(--theme-color03);
    border-radius: 4px;
    padding: 6px;
    width: 49%;
}

.stats_barre .stats .stats_valeur {
    color: var(--theme-color);
    background-color: var(--back-color);
    border-radius: 4px;
    margin: 0 auto;
    text-align: center;
    padding: 4px 8px;
    font-size: 20px;
    font-weight: bold;
}

.stats_barre .stats .stats_legend {
    color: var(--theme-color);
    text-align: center;
    padding: 4px 8px;
}

#carteFrance {
    position: relative;
    width: 305px;
    height: 300px;
    margin: 0 auto;
}

#lyon {
    position: absolute;
    top: 166px;
    right: 90px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--back-color);
    animation: clignote 1s linear infinite;
}

@keyframes clignote {
    from {
        width: 8px;
        height: 8px;
        top: 166px;
        right: 90px;
    }
    to {
        width: 14px;
        height: 14px;
        top: 163px;
        right: 87px;
    }
}

/* ################################################################ */
/* ################################################################ */

input {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--theme-color);
    width: 100%;
    padding: 6px 4px;
}

textarea {
    background-color: transparent;
    border: none;
    border-left: 2px solid var(--theme-color);
    width: 100%;
    height: 120px;
    padding: 6px 6px;
    resize: vertical;
}

select {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--theme-color);
    width: 100%;
    padding: 6px 4px;
    cursor: pointer;
}

option {
    background-color: var(--back-color);
    color: var(--theme-color);
}

input[type="file"] {
    border: none;
}

input[type="file"]::file-selector-button {
  background-color: var(--theme-color); /* couleur du bouton */
  color: var(--back-color);
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  cursor: pointer;
}

input[type="file"]::file-selector-button:hover {
  background-color: var(--theme-color); /* survol */
  border: none;
}

input[type="date"] {
    /*background-color: var(--back-color);*/
    color: var(--theme-color);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: var(--theme-color);
}


/* ################################################################ */
/* ################################################################ */

h2.titre_page {
    width: 50%;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 16px;
    color: var(--theme-color);
    border-radius: 4px;
}

h2.titre_page_unique {
    width: 100%;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--theme-color);
    border-radius: 4px;
    text-align: center;
}

/* ################################################################ */
/* ################################################################ */

.annonce {
    position: relative;
    width: 24.5%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0 0 6px 0;
    cursor: pointer;
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 10px;
}

.annonce:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color02);
}

@media screen and (max-width: 768px) {
    .annonce {
        width: 100%;
        margin-right: 0;
    }
}

.annonce .annonce_img {
    text-align: center;
    width: 100%;
    height: 200px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.annonce .annonce_img i {
    font-size: 200px;
    color: var(--theme-color05);
}

.annonce .annonce_titre {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: var(--theme-color);
    padding: 6px 8px;
    color: var(--back-color);
    overflow: hidden;
}

.annonce .annonce_descriptif {
    height: 52px;
    font-size: 12px;
    text-align: justify;
    color: var(--theme-color07);
    padding: 8px 8px;
    overflow: hidden;
}

.annonce_prix {
    font-weight: bold;
    font-size: 16px;
}

.annonce .annonce_auteur, .annonce .annonce_date {
    margin-top: 6px;
    font-size: 12px;
}

.view_annonce_img {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto;
}

.view_annonce_img i {
    font-size: 300px;
    color: var(--theme-color05);
}

/* ################################################################ */
/* ################################################################ */

.evenement {
    position: relative;
    width: 24.5%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 0 0 6px 0;
    cursor: pointer;
    background-color: transparent;
    overflow: hidden;
    margin-bottom: 10px;
}

.evenement:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color02);
}

@media screen and (max-width: 768px) {
    .evenement {
        width: 100%;
        margin-right: 0;
    }
}

.evenement .evenement_img {
    text-align: center;
    width: 100%;
    height: 200px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.evenement .evenement_img i {
    font-size: 200px;
    color: var(--theme-color05);
}

.evenement .evenement_titre {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: var(--theme-color);
    padding: 6px 8px;
    color: var(--back-color);
    overflow: hidden;
}

.evenement .evenement_descriptif {
    height: 52px;
    font-size: 12px;
    text-align: justify;
    color: var(--theme-color07);
    padding: 8px 8px;
    overflow: hidden;
}

.evenement_prix {
    font-weight: bold;
    font-size: 16px;
}

.evenement .evenement_auteur, .evenement .evenement_date {
    margin-top: 6px;
    font-size: 12px;
}

.view_evenement_img {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto;
}

.view_evenement_img i {
    font-size: 300px;
    color: var(--theme-color05);
}

/* ################################################################ */
/* ################################################################ */

.forum {
    position: relative;
    width: calc(33.33% - 10px);
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 6px 0;
    cursor: pointer;
    background-color: transparent;
    overflow: hidden;
    margin-right: 10px;
    margin-bottom: 10px;
}

.forum:hover {
    border-color: var(--theme-color);
    background-color: var(--theme-color02);
}

@media screen and (max-width: 768px) {
    .forum {
        width: 100%;
        margin-right: 0;
    }
}

.forum .forum_img {
    text-align: center;
    width: 100%;
    height: 150px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.forum .forum_img i {
    font-size: 150px;
    color: var(--theme-color05);
}

.forum .forum_titre {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: var(--theme-color);
    padding: 6px 8px;
    color: var(--back-color);
    overflow: hidden;
}

.forum .forum_descriptif {
    height: 52px;
    font-size: 12px;
    text-align: justify;
    color: var(--theme-color07);
    padding: 8px 8px;
    overflow: hidden;
}

.forum_auteur, .forum_date, .forum_nb_like, .forum_nb_commentaire {
    margin-top: 6px;
    font-size: 12px;
}

.view_forum_img {
    width: 100%;
    height: 250px;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto;
}

.view_forum_img i {
    font-size: 200px;
    color: var(--theme-color05);
}

#popup_forum_explication {
    padding: 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--theme-color);
    color: var(--back-color);
    /*border-bottom: 6px solid var(--back-color05);*/
}

#popup_forum_explication_info {
    padding: 10px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: var(--theme-color);
}

.popup_forum_auteur, .popup_forum_date, .popup_forum_nb_like, .popup_forum_nb_like i, .popup_forum_nb_like span, .popup_forum_nb_commentaire {
    font-size: 12px;
    color: var(--back-color07);
}

.popup_forum_nb_like i {
    cursor: pointer;
}

.popup_block_commentaire {
    /*padding-bottom: 15px;
    border-bottom: 6px solid var(--back-color05);*/
    margin-top: 10px;
    background-color: var(--back-color05);
    padding: 10px;
    border-radius: 4px;
}

.commentaire_texte {

}

.commentaire_auteur {
    font-size: 12px;
    color: var(--theme-color07);
}

.commentaire_date {
    font-size: 12px;
    color: var(--theme-color07);
}

/* ################################################################ */
/* ################################################################ */

.vignette {
    position: absolute;
    background-color: var(--theme-color);
    color: var(--back-color);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    -webkit-box-shadow: 0px 0px 20px 10px rgba(34, 34, 51, 0.7); 
    box-shadow: 0px 0px 20px 10px rgba(34, 34, 51, 0.7);
}

.vignette_haut_gauche {
    top: 10px;
    left: 10px;
}

.vignette_haut_droite {
    top: 10px;
    right: 10px;
}

/* ################################################################ */
/* ################################################################ */

.table-design {
    width: 100%;
}

.table-design td {
    padding: 6px 4px;
}

/* ################################################################ */
/* ################################################################ */

#block_discussion {
    width: 600px;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    #block_discussion {
        width: 99%;
        border: 5px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
}

.discussion_block {
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 2px;
}

.discussion_titre {
    font-weight: bold;
    margin-bottom: 5px;
}

.discussion_message {
    font-size: 12px;
    margin-bottom: 10px;
}

.discussion_footer {
    display: flex;
    justify-content: space-between;
}

.discussion_block_participant {
    display: flex;
    justify-content: flex-start;
    width: 60%;
}

.discussion_participant {
    font-size: 12px;
    color: var(--theme-color07);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2px 4px;
    text-align: center;
    border-radius: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
}

.discussion_date {
    font-size: 12px;
    color: var(--theme-color07);
    width: 40%;
    text-align: right;
    vertical-align: top;
}

/* ################################################################ */
/* ################################################################ */

#block_conversation {
    position: relative;
    width: 800px;
    margin: 0 auto;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 500px;
    padding: 10px;
}

@media screen and (max-width: 768px) {
    #block_conversation {
        width: 99%;
        border: 5px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }
}

#block_message {
    overflow-y: scroll;
    height: calc(100% - 100px);
}

.message_block {
    width: 40%;
    padding: 8px;
    border-radius: 4px;
}

    .message_block_moi {
        float: right;
        background-color: var(--theme-color);
        color: var(--back-color);
    }

    .message_block_autre {
        float: left;
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--theme-color);
    }

@media screen and (max-width: 768px) {
    .message_block {
        width: 70%;
    }
}

.message {
    
}

    .message_moi {
        color: var(--back-color);
    }

    .message_autre {
        color: var(--theme-color);
    }

.message_footer {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.message_auteur {
    font-size: 12px;
}

.message_date {
    font-size: 12px;
}

#block_ecriture {
    width: 100%;
    position: absolute;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
}

#block_ecriture textarea {
    width: 77%;
    resize: none !important;
    height: 74px;
}

#block_ecriture button {
    width: 18%;
    font-size: 12px;
    margin-right: 18px;
}