:root {
    --main-font-family: 'Heebo', sans-serif;
    --main-font-color: #393939;
    --blue: #203250;
    --dark-beige: #A89480;
    --medium-beige: #D3CCC4;
    --light-beige: #EAE8E5;
}

/*
 * Header
 * -----------------------------
*/

header#archive,
#archives-css .margin-header {
    height: 80px;
    background-color: var(--dark-beige);
    box-shadow: none;
}

header#archive .zone-bt-acm {
    width: 260px;
    height: 100%;
    background-color: var(--blue);
    float: left;
}

header#archive .zone-bt-acm a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 25px;
    position: relative;
}

header#archive .zone-bt-acm a:before {
    content: '\f104';
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 18px;
    color: #ffffff;
    position: absolute;
    left: 35px;
    top: 30px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-bt-acm a:hover:before {
    left: 32px;
}

header#archive .zone-main-header {
    width: calc(100% - 260px);
    height: 100%;
    float: right;
    display: flex;
}

header#archive .zone-main-header .part-menu {
    width: 150px;
    height: 100%;
    position: relative;
}

header#archive .zone-main-header .part-menu:after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 1px;
    height: 60px;
    background-color: #ffffff;
}

header#archive .zone-main-header .part-menu .bt-menu-open {
    width: 150px;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    position: relative;
}


header#archive .zone-main-header .part-menu .bt-menu-open .titre-menu {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    user-select: none; /* Désactive la sélection de texte */
    -webkit-user-select: none; /* Compatibilité pour Safari */
    -moz-user-select: none; /* Compatibilité pour Firefox */
    -ms-user-select: none; /* Compatibilité pour les anciennes versions d'IE */

}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu {
    width: 30px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu .bar {
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    position: relative;
}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu .bar:before {
    content: '';
    width: 24px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: -8px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu .bar:after {
    content: '';
    width: 24px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: -8px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-main-header .part-menu .bt-menu-open:hover .icone-menu .bar:before,
header#archive .zone-main-header .part-menu .bt-menu-open:hover .icone-menu .bar:after {
    width: 30px;
}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu .icone-mobile {
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 30px;
    padding-right: 0;
    color: #ffffff;
    text-align: center;
    position: absolute;
    left: 0;
    top: -5px;
    width: 30px;
    height: 25px;
    opacity: 0;
    background-color: var(--dark-beige);
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-main-header .part-menu .bt-menu-open .icone-menu .icone-mobile.icone-mobile-active {
    opacity: 1;
}

header#archive .zone-main-header .part-menu .menu-open {
    width: 400px;
    height: calc(100vh - 100px);
    position: absolute;
    right: 50px;
    top: 90px;
    padding: 40px;
    background-color: var(--dark-beige);
    cursor: default;
    overflow: scroll;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-main-header .part-menu .menu-open.menu-open-active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

header#archive .zone-main-header .part-menu .menu-open .titre-menu-open {
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 15px;
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item {
    background: none !important;
    border: none !important;
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item button {
    background: none !important;
    border: 0;
    padding: 15px 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    position: relative;
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item button:after {
    content: '\f0d7';
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 14px;
    color: #ffffff;
    position: absolute;
    right: 4px;
    top: 14px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item button.openned:after {
    content: '\f0d8';
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item .accordion-body {
    padding: 0 10px 15px 10px;
    column-count: 3;
}

header#archive .zone-main-header .part-menu .menu-open .accordion .accordion-item .accordion-body a {
    display: block;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    padding: 3px;
}

header#archive .zone-main-header .part-logo {
    width: calc(100% - 320px);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 260px;
}

header#archive .zone-main-header .part-logo .bloc-logo {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header#archive .zone-main-header .part-logo .bloc-logo a.logo img {
    display: block;
    width: auto;
    height: 60px;
}

header#archive .zone-main-header .part-logo .bloc-logo a.tagline {
    display: flex;
    align-items: center;
    height: 60px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding-left: 15px;
    padding-top: 5px;
}

header#archive .zone-main-header .part-langues {
    width: 170px;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

header#archive .zone-main-header .part-langues:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 1px;
    height: 60px;
    background-color: #ffffff;
}

header#archive .zone-main-header .part-langues .wpml-ls-item {
    display: inline-block;
    margin: 0 5px;
}

header#archive .zone-main-header .part-langues .wpml-ls-item a {
    display: inline-block;
}

header#archive .zone-main-header .part-langues .wpml-ls-item img {
    width: 24px;
    height: auto;
    display: block;
}


#archives-css .overlay-menu {
    width: 100vw;
    height: 100vh;
    background-color: rgba(20,20,20,0.6);
    position: fixed;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

#archives-css .overlay-menu-active {
    opacity: 1;
    pointer-events: inherit;
}

/* End of Header */

/*
 * Content
 * -----------------------------
 */

#archives-css main.main-homepage section.banner-video {
    width: 100%;
    height: 460px;
    position: relative;
    overflow: hidden;
}

#archives-css main.main-homepage section.banner-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#archives-css main.main-homepage section.banner-video .image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity .8s ease;
    z-index: 1;
}

#archives-css main.main-homepage section.banner-video .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(32,50,80,0.8);
    z-index: 2;
}

#archives-css main.main-homepage section.banner-video .zone-content-banner {
    width: 100%;
    height: 460px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

#archives-css main.main-homepage section.banner-video .zone-content-banner h1 {
    color: #ffffff;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#archives-css main.main-homepage section.banner-video .zone-content-banner h2 {
    color: #ffffff;
    font-size: 1.65rem;
    text-transform: uppercase;
    margin-bottom: 25px;
}

#archives-css main.main-homepage section.banner-video .zone-content-banner p {
    color: #ffffff;
}

#archives-css main.main-homepage section.zone-box-epreuves {
    padding: 50px;
    max-width: 2000px;
    margin: 0 auto;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve {
    width: 100%;
    height: 240px;
    border-radius: 4px;
    background-color: var(--blue);
    border: none;
    margin-bottom: 25px;
    position: relative;
    top: 0;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve:hover {
    top: -3px;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    filter: grayscale(1);
    border-radius: 4px;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgb(32,50,80);
    background: linear-gradient(90deg, rgba(32,50,80,0.9) 0%, rgba(32,50,80,0.8) 30%, rgba(32,50,80,0.1) 100%);
    pointer-events: none;
    border-radius: 4px;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content {
    width: 100%;
    height: 100%;
    padding: 40px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .titre {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.8rem;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-bottom: 3px;
    width: calc(100% - 180px);
    height: 120px;
    float: left;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .logo {
    width: 160px;
    height: 120px;
    margin-left: 20px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: start;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .cta-box {
    display: inline-flex;
    width: auto;
    height: 40px;
    justify-content: start;
    align-items: center;
    background-color: var(--dark-beige);
    padding: 1px 50px 0 15px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    position: relative;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .cta-box:before {
    content: '';
    position: absolute;
    right: 35px;
    top: 5px;
    width: 1px;
    height: calc(100% - 10px);
    background-color: #ffffff;
}

#archives-css main.main-homepage section.zone-box-epreuves .box-epreuve .content .cta-box:after {
    content: '\f0da';
    font-family: 'Font Awesome 6 Pro';
    font-style: normal;
    font-weight: 700;
    text-decoration: inherit;
    /*--adjust as necessary--*/
    font-size: 15px;
    color: #ffffff;
    position: absolute;
    right: 15px;
    top: 10px;
}

/* BANNER PAGES */
#archives-css .tpl-archives .banner-pages {
    width: 100%;
    height: 530px;
    position: relative;
    margin-bottom: 35px;
}

#archives-css .tpl-archives .banner-pages .background-banner {
    width: 100%;
    height: 400px;
    background-color: var(--medium-beige);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

#archives-css .tpl-archives .banner-pages .content-banner {
    width: 100%;
    height: 460px;
    position: absolute;
    top: 40px;
    z-index: 2;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner {
    width: 100%;
    height: 460px;
    background-color: var(--blue);
    position: relative;
    border-radius: 4px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    left: 0;
    bottom: 0;
    z-index: 2;
    background-color: var(--dark-beige);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    filter: grayscale(1);
    border-radius: 4px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: rgb(32,50,80);
    background: linear-gradient(90deg, rgba(32,50,80,1) 0%, rgba(32,50,80,0) 100%);
    pointer-events: none;
    border-radius: 4px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .zone-content {
    width: 100%;
    height: 100%;
    padding: 0 400px 0 80px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .zone-content .sous-titre {
    font-size: 1.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 25px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .zone-content .titre-epreuve {
    font-size: 4.8rem;
    line-height: 4.65rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .zone-content .logo {
    width: 160px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: start;
    position: absolute;
    right: 80px;
    top: 80px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-banner .zone-content .logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-breadcrumb {
    width: 100%;
    height: 30px;
    padding: 5px 30px 0 100px;
}

#archives-css .tpl-archives .banner-pages .content-banner .box-breadcrumb span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--blue);
}

#archives-css .tpl-archives .banner-pages .content-banner .box-breadcrumb a {
    color: var(--dark-beige);
    text-decoration: none;
}


/* DETAILS EPREUVE ARCHIVE */
#archives-css main.main-landing .zone-historique-epreuves .zone-filtres {
    width: 100%;
    /* height: 100px; */
    margin-bottom: 40px;
}

/*  */

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres {
    display: flex;
    gap: 25px;
    justify-content: center;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .filtre {
    width: 300px;
    background: var(--dark-beige) 0% 0% no-repeat padding-box;
    border-radius: 4px;
    padding: 10px 15px;
    text-align: left;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    font-family: var(--main-font-family);
    letter-spacing: 0px;
    color: #FFFFFF;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    opacity: 1;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .filtre:focus-visible {
    border: none !important;
    outline: none !important;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .select-wrapper {
    position: relative;
    display: inline-block;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .filtre-annees {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #FFFFFF;
    pointer-events: none;
}


#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .filtre-tri::after {
    content: "\f161";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFFFFF;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-filtres .filtre-tri.reverse::after {
    content: "\f884";
}

/*  */

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves {
    margin-bottom: 65px;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .no-edition {
    text-align: center;
    font-size: 1rem;
    color: var(--dark-beige);
    border: 1px solid #a894804b;
    border-radius: 5px;
    padding: 40px 25px;
    background-color: #eae8e54b;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve {
    width: 100%;
    height: 275px;
    padding-bottom: 35px;
    position: relative;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve:before {
    content: '';
    position: absolute;
    left: 155px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: var(--dark-beige);
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve:after {
    content: '';
    position: absolute;
    left: 145px;
    top: 23px;
    width: 21px;
    height: 21px;
    border-radius: 21px;
    background-color: var(--dark-beige);
    border: 2px solid var(--light-beige);
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .date {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--medium-beige);
    padding-top: 25px;
    -webkit-transition: all 0.15s ease;
    -moz-transition: all 0.15s ease;
    -o-transition: all 0.15s ease;
    transition: all 0.15s ease;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve:hover .date {
    color: var(--dark-beige);
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve {
    width: 100%;
    height: 240px;
    background: linear-gradient(323deg, rgba(168, 148, 128, 0.15) 0%, rgba(168, 148, 128, 0.15) 26%, rgba(32, 50, 80, 0) 100%);
    mix-blend-mode: darken;
    border-radius: 4px;
    padding: 15px;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .affiche {
    width: 140px;
    height: 210px;
    float: left;
    border-radius: 2px;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .infos-epreuve {
    width: 280px;
    height: 210px;
    padding: 0 40px;
    float: left;
    border-right: 1px solid var(--blue);
    display: flex;
    align-items: center;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .infos-epreuve .sous-titre {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .infos-epreuve .titre-epreuve {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .liens-epreuve {
    width: calc(100% - 420px);
    height: 210px;
    padding: 15px 40px;
    float: right;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .liens-epreuve .col-1,
#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .liens-epreuve .col-2 {
    width: 50%;
    float: left;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .liens-epreuve a {
    display: block;
    padding: 3px 15px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
    position: relative;
}

#archives-css main.main-landing .zone-historique-epreuves .zone-epreuves .box-epreuve .epreuve .liens-epreuve a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: var(--blue);
}

/* SINGLE ARCHIVE PAGE */
#archives-css main.main-single .zone-details-epreuve .col-gauche-nav {
    padding: 25px;
    background: linear-gradient(323deg, rgba(168, 148, 128, 0.15) 0%, rgba(168, 148, 128, 0.15) 26%, rgba(32, 50, 80, 0) 100%);
    border-radius: 4px;
}

#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul {
    list-style: initial;
    margin-left: 20px;
}

#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul li {
    margin-bottom: 12px;
}
#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul li:last-child {
    margin-bottom: 0;
}

#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul li a {
    text-align: left;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 14px;
    font-family: var(--main-font-family);
    letter-spacing: 0px;
    color: var(--blue);
    text-transform: uppercase;
    text-decoration: none;
}

#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul li.active a,
#archives-css main.main-single .zone-details-epreuve .col-gauche-nav .sous-pages ul li a:hover {
    color: var(--dark-beige);
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: var(--main-font-family);
    margin-top: 20px;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider {
    max-width: 100%;
    margin: auto;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slide {
    text-align: center;
    padding: 10px;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slick-prev, 
#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slick-next {
    font-size: 18px;
    cursor: pointer;
    color: var(--blue);
    background: none;
    border: none;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slick-prev:before,
#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slick-next:before {
    display: none;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .autres-editions-slider .slick-arrow.slick-disabled {
    opacity: 0.25;
    pointer-events: none;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .editions {
    display: flex;
    gap: 20px;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .edition-item {
    text-decoration: none;
    text-align: center;
    font-style: normal;
    font-variant: normal;
    font-weight: 800;
    font-size: 18px;
    font-family: var(--main-font-family);
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--dark-beige);
    opacity: 0.65;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

#archives-css main.main-single .zone-details-epreuve .autres-editions .edition-nav .edition-item.active {
    font-size: 24px;
    opacity: 1;
}

#archives-css main.main-single .zone-details-epreuve .module-contenu-droite {
    background: linear-gradient(323deg, rgba(168, 148, 128, 0.15) 0%, rgba(168, 148, 128, 0.15) 26%, rgba(32, 50, 80, 0) 100%);
    border-radius: 0 0 4px 4px;
    mix-blend-mode: darken;
}

#archives-css main.main-single .zone-details-epreuve .contenu-droite .module-the-title {
    background-color: var(--dark-beige);
    border-left: none !important;
    border-radius: 4px 4px 0 0;
}

#archives-css main.main-single .zone-details-epreuve .contenu-droite .detail-actus-archives {
    padding: 40px;
}

#archives-css main.main-single .zone-details-epreuve .contenu-droite .liste-actus-archives {
    margin-top: 30px;
}


/* End of Content */


/*
 * Footer
 * -----------------------------
*/

#archives-css .footer-archives .logos-footer,
#archives-css .footer-archives .newsletter.tpl-2025,
    #archives-css .footer-archives .zone-social .banner-instagram {
    display: none;
}

#archives-css .footer-archives .zone-social .banner-social {
	background-color: var(--dark-beige);
}

/* End of Footer */
