.aichat {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 100%;
    margin: 25px 10px;
    height: calc(100% - 50px);
    min-height: 500px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.aichat-header {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    background: #eee;
    color: #666;
}

.aichat-header .aichat-header-title {
    line-height: 2em;
}

.aichat-chat {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background-color: #fcfcfe;
}

.aichat-chat::-webkit-scrollbar {
    width: 6px;
}

.aichat-chat::-webkit-scrollbar-track {
    background: #ddd;
}

.aichat-chat::-webkit-scrollbar-thumb {
    background: #bdbdbd;
}

.msg {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
}

.msg:last-of-type {
    margin: 0;
}

.msg-img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    background: #ddd;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
}

.msg-bubble {
    max-width: 450px;
    padding: 15px;
    border-radius: 15px;
    background: #ececec;
}

.msg-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.msg-info-name {
    margin-right: 10px;
    font-weight: bold;
}

.msg-info-time {
    font-size: 0.85em;
}

.left-msg .msg-img {
    background: url(/build/images/chatbot.22374736.png) no-repeat center center/cover;
}

.right-msg .msg-img {
    background: url(/build/images/avatar-user.7760e9a3.png) no-repeat center center/cover;
    margin: 0 0 0 10px;
}

.left-msg .msg-bubble {
    border-bottom-left-radius: 0;
}

.right-msg {
    flex-direction: row-reverse;
}

.right-msg .msg-bubble {
    background: #579ffb;
    color: #fff;
    border-bottom-right-radius: 0;
}

.aichat-inputarea {
    display: flex;
    padding: 10px;
    border-top: 2px solid #ddd;
    background: #eee;
}

.aichat-inputarea * {
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
}

.aichat-input {
    flex: 1;
    background: #ddd;
}

.aichat-send-btn {
    margin-left: 10px;
    background: rgb(0 196 65);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.23s;
}

.aichat-send-btn:hover {
    background: rgb(0 180 50);
}

.aichat-send-btn:disabled {
    background: #ccc;
    color: #999;
    cursor: default;
}

.aichat .spinner-border {
    animation-duration: 1s;
}

.author-page .row {
    margin: 0;
}

.bloc-author {
    display: flex;
    margin: 30px 0 40px;
    background-color: #f8f4ef;
    padding: 30px;
    border-radius: 10px;
}

.bloc-author .author-gravatar {
    flex-shrink: 0;
    width: 140px;
    margin-bottom: 20px;
}

.bloc-author .author-desc {
    padding-right: 40px;
    min-width: calc(100% - 365px);
}

.bloc-author .author-desc p {
    font-size: 16px;
    line-height: 24px;
}

.bloc-author .contact-author {
    margin-top: 20px;
    display: flex;
}

.bloc-author .contact-author .bt {
    margin-right: 20px;
}

.bloc-author .author-abo {
    flex-shrink: 0;
    width: 225px;
    flex-direction: column;
}

.author-page .gray-box {
    background-color: #f6f1eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 30px;
}

.author-page .gray-box .sorry {
    transform: rotate(90deg);
    flex-shrink: 0;
    text-align: center;
    width: 110px;
    font: 400 44px/44px 'Cantata One', serif;
}

.author-page .gray-box .bt {
    margin-right: 20px;
    margin-bottom: 10px;
}

.author-page .post-cell form {
    display: inline-flex;
    margin-top: 15px;
}

.author-page .post-cell .bt-round {
    border: 1px solid #c7c7c7;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 40px;
    margin-right: 5px;
}

.author-page .post-cell .bt-round-2 {
    width: auto;
    padding: 0 10px;
}

.author-page .post-cell .bt-round-2 span.une {
    font-size: 12px;
}

.author-page .post-cell .bt-round:hover,
.author-page .post-cell .bt-round:active,
.author-page .post-cell .bt-round:focus {
    border: 1px solid #424242;
    background-color: #424242;
    color: #fff !important;
}

.bloc-author .author-abo .lecture-nb {
    display: block;
    background-color: #f1e9e0;
    border: 1px solid #e5d9cb;
    padding: 15px 10px;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.bloc-author .author-abo .lecture-nb .lecture-qt {
    display: block;
    font: 500 40px/40px 'Cantata One', serif;
}

.bloc-author .author-abo .lecture-nb .lecture-lib {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.titre-publie {
    position: relative;
    border-bottom: 1px solid #ece2d9;
    margin-bottom: 50px;
}

.titre-publie h2 {
    font-size: 28px;
    padding-right: 20px;
    background-color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    top: 10px;
}

.author-page .cell {
    padding-right: 20px;
    margin-bottom: 60px;
}

.author-page .cell .post-cell {
    padding-bottom: 0;
}

.author-page .simple-line .cell {
    padding: 0;
    margin: 0;
    height: 100%;
}

.author-page .simple-line .post-cell.post-titre {
    padding-left: 20px;
    min-height: 0;
}

.author-page .simple-line .label {
    padding: 0;
    font-size: 80%;
}

.devenez-auteur {
    padding: 0 20px;
}

.devenez-auteur-content {
    border-radius: 10px;
    border: 1px solid #ece2d9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.devenez-auteur-content h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.devenez-auteur-content .bt {
    padding: 10px 40px;
    margin-top: 25px;
}

.author-page .simple-line {
    min-height: 75px;
    padding: 10px 0;
    border-top: 1px solid #ece2d9;
    border-bottom: 1px solid #ece2d9;
}

.author-page .simple-line + .simple-line {
    min-height: 75px;
    padding: 10px 0;
    border-top: none;
}

.author-page .simple-line .post-cell {
    display: flex;
    align-items: center;
    height: 100%;
    flex-wrap: wrap;
}

.author-page .simple-line .post-cell .clock {
    flex: 0 0 80px;
}

.author-page .simple-line .post-cell .clock i {
    color: #fe872c;
}

.author-page .simple-line .post-cell .cat-post-titre::after {
    display: none;
}

.author-page .simple-line .post-cell .cat-post-titre {
    flex: 0 0 140px;
}

.author-page .simple-line .post-cell .cat-post-titre span {
    font: 14px/20px 'Cantata One', serif;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid #15a358;
    text-transform: none;
    height: 30px;
    color: #15a358;
}

.author-page .simple-line .post-cell .cat-post-titre.txt-jeunesse span {
    border-color: #53939c !important;
    color: #53939c !important;
}

.author-page .simple-line .post-cell .cat-post-titre.txt-poetik span {
    border-color: #fdc300 !important;
    color: #fdc300 !important;
}

.author-page .simple-line .post-cell .cat-post-titre.txt-strips span {
    border-color: #b70e80 !important;
    color: #b70e80 !important;
}

.author-page .simple-line .post-cell h2 {
    margin: 10px 18px 10px 0;
}

.author-page .simple-line .post-cell .content-tag {
    display: flex;
    margin: 0;
}

.author-page .simple-line .post-cell .content-tag span {
    background-color: #f8f4ef;
    border-radius: 20px;
    padding: 3px 12px;
    color: #b89570;
    margin: 2px;
    display: flex;
}

@media (max-width: 1199.8px) {
    .bloc-author {
        padding: 30px;
    }
}

@media (max-width: 767.8px) {
    .bloc-author {
        flex-direction: column;
        margin: 20px 0;
    }

    .bloc-author .author-desc {
        padding-right: 0;
        min-width: auto;
    }

    .author-page .cell {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .bloc-author .author-gravatar {
        margin: 0 auto 20px;
    }
}


@media (max-width: 470px) {
    .bloc-author .contact-author {
        display: block;
    }

    .bloc-author .contact-author .bt {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* ---- header ---- */
.site img.category {
    min-height: 275px;
    margin: 0 0 40px;
}

body.classical .titre-classique h1 {
    font-size: 50px;
    line-height: 56px;
}

body.classical .titre-classique p {
    font-family: 'Cantata One', serif;
    font-size: 18px;
    line-height: 26px;
    font-weight: 300;
}

.filtre-cat1-1 {
    display: flex;
}

.filtre-cat1 {
    display: flex;
    border-bottom: 1px solid #f1e9e0;
    margin-bottom: 50px;
}

.category-list h2.h2-finale {
    text-align: center;
    font-size: 40px;
}

.category-final .filtre-cat1-1 {
    justify-content: center;
}

.category-final .filtre-cat1-1 .brakes {
    font-size: 24px;
    width: 15px;
}

.filtre-cat1 a {
    display: flex;
    padding: 15px;
    position: relative;
    font-family: 'Cantata One', serif;
    font-size: 13px;
    line-height: 15px;
    align-items: center;
}

.filtre-cat1 a::after {
    content: '';
    width: 50px;
    height: 0;
    background-color: #fe872c;
    position: absolute;
    bottom: -2px;
    left: calc(50% - 25px);
    transition: all 0.1s ease-in-out;
}

.filtre-cat1 a.active::after,
.filtre-cat1 a:hover::after,
.filtre-cat1 a:focus::after,
.filtre-cat1 a:active::after {
    height: 3px;
}

.filtre-cat1.nouvelles a.active,
.filtre-cat1.nouvelles a:hover,
.filtre-cat1.nouvelles a:focus,
.filtre-cat1.nouvelles a:active,
.nouvelles .lien-cat a.active,
.nouvelles .lien-cat a:hover,
.nouvelles .lien-cat a:focus,
.nouvelles .lien-cat a:active,
.filtre-cat1 a.nouvelles.active,
.filtre-cat1 a.nouvelles:hover,
.filtre-cat1 a.nouvelles:focus,
.filtre-cat1 a.nouvelles:active {
    color: #15a358 !important;
}

.filtre-cat1.nouvelles a::after,
.filtre-cat1 a.nouvelles::after {
    background-color: #15a358 !important;
}

.filtre-cat1.strips a.active,
.filtre-cat1.strips a:hover,
.filtre-cat1.strips a:focus,
.filtre-cat1.strips a:active,
.strips .lien-cat a.active,
.strips .lien-cat a:hover,
.strips .lien-cat a:focus,
.strips .lien-cat a:active,
.filtre-cat1 a.strips.active,
.filtre-cat1 a.strips:hover,
.filtre-cat1 a.strips:focus,
.filtre-cat1 a.strips:active {
    color: #b70e80 !important;
}

.filtre-cat1.strips a::after,
.filtre-cat1 a.strips::after {
    background-color: #b70e80 !important;
}

.filtre-cat1.poetik a.active,
.filtre-cat1.poetik a:hover,
.filtre-cat1.poetik a:focus,
.filtre-cat1.poetik a:active,
.poetik .lien-cat a.active,
.poetik .lien-cat a:hover,
.poetik .lien-cat a:focus,
.poetik .lien-cat a:active,
.filtre-cat1 a.poetik.active,
.filtre-cat1 a.poetik:hover,
.filtre-cat1 a.poetik:focus,
.filtre-cat1 a.poetik:active {
    color: #fdc300 !important;
}

.filtre-cat1.poetik a::after,
.filtre-cat1 a.poetik::after {
    background-color: #fdc300 !important;
}

.filtre-cat1.tres-tres-court a.active,
.filtre-cat1.tres-tres-court a:hover,
.filtre-cat1.tres-tres-court a:focus,
.filtre-cat1.tres-tres-court a:active,
.tres-tres-court .lien-cat a.active,
.tres-tres-court .lien-cat a:hover,
.tres-tres-court .lien-cat a:focus,
.tres-tres-court .lien-cat a:active,
.filtre-cat1 a.tres-tres-court.active,
.filtre-cat1 a.tres-tres-court:hover,
.filtre-cat1 a.tres-tres-court:focus,
.filtre-cat1 a.tres-tres-court:active {
    color: #3fbbf0 !important;
}

.filtre-cat1.tres-tres-court a::after,
.filtre-cat1 a.tres-tres-court::after {
    background-color: #3fbbf0 !important;
}

.filtre-cat1.jeunesse a.active,
.filtre-cat1.jeunesse a:hover,
.filtre-cat1.jeunesse a:focus,
.filtre-cat1.jeunesse a:active,
.jeunesse .lien-cat a.active,
.jeunesse .lien-cat a:hover,
.jeunesse .lien-cat a:focus,
.jeunesse .lien-cat a:active {
    color: #53939c !important;
}

.filtre-cat1.jeunesse a::after {
    background-color: #53939c !important;
}

.filtre-cat1.classique a.active,
.filtre-cat1.classique a:hover,
.filtre-cat1.classique a:focus,
.filtre-cat1.classique a:active,
.classique .lien-cat a.active,
.classique .lien-cat a:hover,
.classique .lien-cat a:focus,
.classique .lien-cat a:active {
    color: #6fc0a1 !important;
}

.filtre-cat1.classique a::after {
    background-color: #6fc0a1 !important;
}

.filtre-cat1 a.disabled,
.filtre-cat1 a.disabled:hover,
.filtre-cat1 a.disabled:focus,
.filtre-cat1 a.disabled:active {
    color: #d2d2d2 !important;
}

.filtre-cat1 a.disabled::after {
    height: 0 !important;
}

/* ---- LES POSTS ---- */

.col-post {
    padding-right: 45px;
}

.category-list .js-infinite-scroll-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.category-list .cat-post-titre {
    display: none !important;
}

.category-list .post-cell.strips .txt-p a {
    display: inline-block;
    height: auto;
    width: auto;
}

.category-list .post-cell.strips .txt-p a img {
    transition: all 0.3s;
}

.category-list .post-cell.post-titre img {
    max-height: 300px;
}

.category-list .js-infinite-scroll-content {
    margin-bottom: 40px;
    padding-bottom: 0;
    padding-right: 40px;
    position: relative;
}

.category-list .js-infinite-scroll-content::after {
    position: absolute;
    bottom: 0;
    left: 15px;
    right: 15px;
    width: calc(100% - 30px);
    content: '';
    background-color: #f1e9e0;
    height: 1px;
}

.category-list .classique .js-infinite-scroll-content::after {
    height: 0;
}

.category-list .js-infinite-scroll-content .cell {
    margin: 0;
}

/* ---- aside ---- */
.cat-side {
    border-left: 1px solid #f1e9e0;
    padding-left: 35px;
}

.cat-side .accordion-fixed {
    position: sticky;
    top: 64px;
}

.cat-side header h3 {
    padding: 20px 0;
    margin-bottom: 0;
    font-size: 20px;
}

.cat-side .lien-cat {
    padding: 12px 0;
    border-bottom: 1px solid #f1e9e0;
    font-family: 'Cantata One', serif;
}

.cat-side .lien-cat h4 {
    margin: 0;
}

.cat-side .lien-cat h4 a {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-side .lien-cat h4 a.active {
    color: #fe872c;
}

.cat-side .lien-cat h4 a .icon-f3-r {
    font-size: 8px;
    transform-origin: center center;
    transform: rotate(90deg);
    transition: all 0.1s ease-in-out;
}

.cat-side .lien-cat h4 a.collapsed .icon-f3-r {
    transform: rotate(0deg);
}

.cat-side .lien-cat ul {
    margin: 0;
    list-style: none;
    padding: 0 0 0 5px;
}

.cat-side .lien-cat ul li a {
    padding: 3px 0;
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.cat-side .lien-cat ul li:first-child {
    margin-top: 10px;
}

.cat-side .lien-cat ul li:last-child {
    margin-bottom: 10px;
}

.cat-side .lien-cat ul li a span {
    color: #cfbca7;
    font-size: 8px;
    margin-right: 5px;
}

.cat-side .lien-cat ul li.tout a {
    padding-top: 10px;
}

/* ---- select in responsive ---- */

.category .form-group {
    margin-bottom: 10px;
}

.category .form-group + .form-group {
    margin-bottom: 25px;
}

/* ---- affichage spécial  finale ---- */
.h1-style.h2-finale {
    text-align: center;
}

.dashboard-final {
    position: relative;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #fff;
}

.dashboard-final .finale {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #15a358;
}

.dashboard-final .bloc-g {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    flex-direction: column;
    flex: 2;
}

.dashboard-final .bloc-c {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    width: 150px;
}

.dashboard-final .bloc-c .icon {
    font-size: 135px;
}

.dashboard-final .bloc-d {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    flex: 2;
}

.dashboard-final .bloc-d .date-decompte {
    background-color: #fff;
    color: #424242;
    padding: 10px 5px 10px 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font: 400 26px/26px 'Cantata One', serif;
    margin-right: 27px;
}

.dashboard-final .bloc-d .date-decompte::after {
    content: '';
    position: absolute;
    right: -30px;
    border-width: 30px 15px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #fff;
    top: 0;
}

.dashboard-final .bloc-d .titre-decompte span {
    display: inline-block;
    font: 400 22px/30px 'Cantata One', serif;
    padding: 0 2px;
}

.dashboard-final .finale-notif {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 30px 0;
}

.dashboard-final .finale-notif p {
    font: 400 20px/26px 'Cantata One', serif;
    text-align: center;
    margin: 5px 20px;
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

@keyframes animate-positive {
    0% {
        width: 0;
    }
}

.cell .vote-lu {
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(/build/images/bg-lu.0494177c.png) no-repeat bottom right;
    width: 122px;
    height: 57px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 4px 7px;
}

.cell .vote-lu p {
    font-size: 12px;
    padding: 0;
    margin: 0;
    position: relative;
}

.cell .vote-lu p::before {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAHCAYAAADam2dgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAGxJREFUeNpidHJyYsAD0oH4JwseBflA3A/E+5mgAqVAHIRFwXGQOMgkkMJkIFYB4kgglkJS4AnEn0CK/gGxIxDvA+IVQMwIxMeA2AukAGQszE3PkRS+g5rwGWY3ssNfALEVEP8C4m/IPgAIMACd9xYwpJfnMAAAAABJRU5ErkJggg==) no-repeat center center;
    content: '';
    width: 9px;
    height: 7px;
    position: absolute;
    left: -14px;
    top: 9px;
}

/* ---- select in responsive ---- */
.select2-results li.list-section {
    font-weight: bold;
}

.select2-results li.list-category {
    margin-left: 6px;
}

@media (max-width: 1199.8px) {
    .dashboard-final .bloc-c {
        width: 115px;
    }

    .dashboard-final .bloc-c .icon {
        font-size: 100px;
    }

    .dashboard-final .bloc-g h2 {
        font-size: 30px;
    }

    .dashboard-final .bloc-g h3 {
        font-size: 20px;
    }

    .dashboard-final .bloc-d .titre-decompte span {
        font: 400 20px/24px 'Cantata One',
        serif;
    }

    .dashboard-final .bloc-d .date-decompte {
        padding: 10px 05px 10px 15px;
        height: 50px;
        font: 400 20px/20px 'Cantata One',
        serif;
    }

    .dashboard-final .bloc-d .date-decompte::after {
        right: -20px;
        border-width: 25px 10px;
    }
}

@media (max-width: 991.8px) {
    .site img.category {
        margin-bottom: 20px;
    }

    body.classical .titre-classique h1 {
        font-size: 40px;
        line-height: 50px;
        margin: 0 0 5px;
    }

    .category-list .js-infinite-scroll-content {
        margin-bottom: 15px;
        padding: 15px 20px;
    }

    .col-post {
        padding-right: 15px;
    }

    .dashboard-final {
        margin-top: 0;
    }

    .cat-side {
        padding-left: 20px;
    }

    .cat-side .accordion-fixed {
        right: 10px;
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .dashboard-final .finale {
        flex-direction: column;
    }

    .dashboard-final .bloc-g {
        align-items: center;
    }

    .dashboard-final .bloc-c .icon {
        font-size: 60px;
        padding: 13px;
    }

    .dashboard-final .bloc-d .date-decompte {
        padding: 0 5px 0 10px;
        height: 36px;
        font: 400 15px/15px 'Cantata One',
        serif;
    }

    .dashboard-final .bloc-d .titre-decompte span {
        display: block;
        font: 400 15px/22px 'Cantata One',
        serif;
    }

    .dashboard-final .bloc-g h2 {
        text-align: center;
    }

    .dashboard-final .bloc-d .date-decompte::after {
        content: '';
        position: absolute;
        right: -20px;
        border-width: 18px 10px;
    }

    .cat-side .accordion-fixed {
        display: none !important;
    }
}

/********* menu + articles (rubrique) ********/

.category-list .col-post .classical-menu-interne {
    border: 1px solid #eaeaea;
    float: left;
    margin: 0 30px 20px 0;
    max-width: 300px;
    padding: 20px;
}

.category-list .col-post .classical-menu-interne h3 {
    color: #404141;
}

.category-list .col-post .classical-menu-interne ul {
    background: url(/build/images/bg-sommaire-classique.027eed11.gif) repeat-y 10px top;
    list-style: outside none none;
    margin: 0;
    padding: 5px 0;
}

.category-list .col-post .classical-menu-interne ul li {
    background: url(/build/images/icon-sommaire-classique1.4467234e.png) no-repeat scroll 4px center;
    padding: 2px 10px 3px 20px;
}

.category-list .col-post .classical-menu-interne ul li:hover {
    background: url(/build/images/icon-sommaire-classique2.fe8bcd6e.png) no-repeat 4px center;
}

.category-list .col-post .classical-menu-interne ul a {
    color: #404141;
    padding-left: 10px;
    display: block;
}

.category-list .col-post .classical-menu-interne ul li:hover a {
    color: #6fc0a1;
}

.category-list .col-post .classical-article-separateur {
    background: url(/build/images/bg-titre.cd870825.png) repeat scroll left top transparent;
    min-height: 2px;
    width: 100%;
    margin: 30px 0;
}

.category-list .col-post .classical-article.row {
    margin: 0;
}

.category-list .col-post .classical-article .decalage {
    margin: 5px 20px;
}

.category-list .col-post .classical-article .title h2 {
    margin-left: 0;
}

.cell-author {
    height: 100%;
    position: relative;
}

.cell-author::after {
    background-color: #f8f4ef;
    border-radius: 4px;
    position: absolute;
    inset: 05px;
    content: '';
}

.cell-author article {
    min-height: 200px;
    margin-bottom: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-list .classique .js-infinite-scroll-content .author-content {
    font-size: 14px;
    text-align: left;
}

.category-list .classique .js-infinite-scroll-content header h2 {
    margin-bottom: 0;
}

.category-list .classique .js-infinite-scroll-content header p {
    margin-bottom: 10px;
}

.category-list .classique .js-infinite-scroll-content header a img {
    margin-bottom: 10px;
}

.section-comite .actualite {
    padding-top: 170px;
}

.comite-actu .comments.fos_comment_thread,
.section-comite .actualite .actualite-bloc {
    padding-right: 0;
    max-width: 700px;
    margin: 0 auto;
}

.header-comite .logo-comite {
    background: #424242;
    padding: 10px 20px;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}

.header-comite .center-menu {
    position: relative;
}

.header-comite #header-top {
    left: 0;
    right: 0;
}

.header-comite #header-top .accroche {
    display: none;
}

.header-comite .left-menu-bar .accroche {
    opacity: 1;
}

.comite-actu .card-header {
    background-color: #f8f4ef;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.actualite .comite-actu .main .image {
    max-width: 100%;
    flex: 1;
    padding-bottom: 15px;
    margin: auto !important;
    display: block;
}

.actualite .comite-actu .main h2 {
    margin-bottom: 30px;
}

.actualite .comite-actu .table {
    font-size: 14px;
}

.header-comite-mobile .hamburger-inner,
.header-comite-mobile .hamburger-inner::before,
.header-comite-mobile .hamburger-inner::after,
.header-comite-mobile .hamburger.is-active .hamburger-inner,
.header-comite-mobile .hamburger.is-active .hamburger-inner::before,
.header-comite-mobile .hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

#header2.header-comite-mobile,
#header2.header-comite-mobile .head-mobil {
    background: #424242;
}

#header2.header-comite-mobile,
#header2.header-comite-mobile .head-mobil .icon-search {
    color: #fff;
}

#header2.header-comite-mobile .search-mobil {
    display: none;
}

#header2.header-comite-mobile .sub-categories a {
    margin-left: 62px;
    padding-left: 15px;
}

#header2.header-comite-mobile .card-header-nav.active .txt {
    font-weight: 700;
}

#header2.header-comite-mobile .sub-categories a::before {
    content: none;
}

.header-comite.shrink .logo-comite {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 7px 12px;
}

.header-comite.shrink .logo-comite img {
    width: 190px;
    height: 27px;
}

.header-comite.shrink .dark-mode {
    padding: 0 !important;
    position: relative !important;
}

/* Comité de lecteur pour une édition */
.section-comite-edition .navbar-form button.btn-primary {
    background-color: #fe872c !important;
    border-color: #fe872c !important;
}

.home-main,
.home-main > * {
    position: relative;
}

.home-main {
    text-align: center;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
    margin-top: 50px;
}

.home-main.background-opacity {
    background: #eaeaea;
    align-items: center;
    justify-content: space-between;
}

.site .home-main h1 {
    font-size: 45px;
    line-height: 45px;
    padding: 10px;
}

#liste-evaluation {
    margin: 17px auto 20px;
}

.section-comite-edition .ranking-group-name {
    padding: 8px;
    line-height: 1.4286;
    font-size: 16px;
    font-weight: bold;
}

.section-comite .bloc-author {
    background: none;
    padding: 0;
}

.section-comite .bloc-author .author-abo .bloc-f {
    max-height: 150px;
    min-height: 0;
}

.section-comite .review-reader,
.section-comite .review-reader p {
    font-size: 16px;
    line-height: 30px;
}

/***** Mon evaluation *****/
.js-review-form .my-opinion span {
    cursor: pointer;
}

.js-review-form .my-opinion span.list-group-item-action {
    border-left: 5px solid;
    border-bottom: 0 !important;
    border-top: 1px solid var(--bs-border-color) !important;
    border-right: 1px solid var(--bs-border-color) !important;
}

.js-review-form .my-opinion span.list-group-item-action:last-child {
    border-bottom: 1px solid var(--bs-border-color) !important;
}

.js-review-form .my-opinion span.list-group-item-action.active,
.js-review-form .my-opinion span.list-group-item-action:active,
.js-review-form .my-opinion span.list-group-item-action:focus,
.js-review-form .my-opinion span.list-group-item-action:hover {
    color: #495057 !important;
    background-color: #f8f4ef !important;
}

.js-review-form .fos_comment_comment_body .menu-action {
    right: 0;
}

/***** Mes votes *****/
.section-comite .comite-nav img {
    margin-right: 10px;
    margin-bottom: 3px;
}

.section-comite .comite-votre-top {
    padding-top: 30px;
    padding-bottom: 50px;
}

.section-comite .comite-votre-top .votre-top-titre {
    padding-right: 10px;
    text-align: right;
}

.section-comite .comite-votre-top .votre-top-titre h2 {
    font-size: 30px;
    line-height: 30px;
}

.section-comite .oeuvre-top {
    margin-bottom: 50px;
}

.section-comite .oeuvre-top .oeuvre-box {
    background: rgb(192 160 130 / 30%);
    padding: 25px 35px;
    position: relative;
}

.section-comite .oeuvre-top .oeuvre-box .coeur {
    position: absolute;
    top: -10px;
    left: -15px;
    text-align: center;
    width: 34px;
    height: 29px;
    line-height: 29px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: url(/build/images/coeur.7c6bf5ec.png) no-repeat center center;
}

.section-comite .oeuvre-top .oeuvre-box .label1 {
    font-size: 12px;
}

.section-comite .oeuvre-top .oeuvre-box h2,
.section-comite .oeuvre-top .oeuvre-box p.auteur a {
    font: 300 18px/24px 'Open Sans', sans-serif;
    margin: 0 0 5px;
}

.section-comite .oeuvre-top .oeuvre-box h2 a {
    color: #424242;
}

.section-comite .oeuvre-top .oeuvre-box p.auteur a {
    font-size: 14px;
    line-height: 20px;
    color: #757676;
}

.section-comite .oeuvre-top .oeuvre-box .btn {
    font-weight: bold;
    background-color: #fe872c;
    transition: all 0.2s ease-in-out 0s;
    color: #fff;
    box-shadow: 0 2px 1px 0 rgb(0 0 0 / 20%);
    position: relative;
}

.section-comite .oeuvre-top .oeuvre-box .btn:hover,
.section-comite .oeuvre-top .oeuvre-box .btn:active,
.section-comite .oeuvre-top .oeuvre-box .btn:focus {
    background-color: #ff570a;
}

.section-comite .oeuvre-top .eval-box {
    border: 5px solid rgb(192 160 130 / 30%);
    padding: 25px 35px;
    display: inline-flex;
    justify-content: stretch;
    align-items: center;
    width: 100%;
}

.section-comite .oeuvre-top .eval-box .note {
    width: 145px;
    height: 80px;
    color: #424242;
    text-align: center;
    line-height: 80px;
    font-size: 18px;
    font-weight: 300;
}

.section-comite .oeuvre-top .eval-box .note p {
    display: inline-table;
}

.section-comite .oeuvre-top .eval-box .note1 {
    background: #a5d1a1;
}

.section-comite .oeuvre-top .eval-box .note2 {
    background: #a6ce88;
}

.section-comite .oeuvre-top .eval-box .note3 {
    background: #b6d58d;
}

.section-comite .oeuvre-top .eval-box .note4 {
    background: #ccde91;
}

.section-comite .oeuvre-top .eval-box .note5 {
    background: #eaedb2;
}

.section-comite .oeuvre-top .eval-box .note6 {
    background: #f6f19b;
}

.section-comite .oeuvre-top .eval-box .note7 {
    background: #feebb3;
}

.section-comite .oeuvre-top .eval-box .note .noteX {
    font-size: 32px;
    font-weight: 700;
}

.section-comite .oeuvre-top .eval-box .eval-com {
    padding-left: 35px;
}

.section-comite .oeuvre-top .eval-box .eval-com p {
    margin-bottom: 0;
}

.section-comite .oeuvre-top.bd .bda {
    margin: 0 30px 10px 0;
    display: block;
}

.section-comite .auteur-forum {
    margin-bottom: 20px !important;
}

.cat-review .page-header {
    text-align: center;
    padding-bottom: 10px;
}

.cat-review .page-header h1 {
    margin-bottom: 0;
}

.cat-review .page-header h2 {
    font-family: 'Open Sans', sans-serif;
}

.cat-review .list-group h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3px;
}

.cat-review .list-group h3 small {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-review .list-group h3 small span {
    font-size: 20px;
    padding-right: 4px;
}

.cat-review .list-group {
    margin-bottom: 10px;
}

.cat-review .nav-fill .nav-link {
    padding-bottom: 10px;
}

.cat-review .nav-fill .nav-link.active,
.cat-review .list-group a:hover,
.cat-review .list-group a:focus,
.cat-review .list-group a:active {
    background: #f8f4ef;
}

.cat-review .nav-fill .nav-link.active,
.cat-review .list-group-item {
    border: 1px solid rgb(192 160 130 / 30%);
}

.cat-review .list-group-item + .list-group-item {
    border-top-width: 0;
}

.article-review .page-header {
    text-align: center;
    padding: 20px 0 15px;
}

.article-review .page-header .author {
    font-size: 23px;
}

.article-review .bt-eval {
    text-align: center;
    padding: 0 0 20px;
}

.article-review .card {
    border-color: rgb(192 160 130 / 30%);
}

.article-review .card-header {
    background-color: #f8f4ef;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
}

.article-review .abus-signal {
    background-color: transparent;
    border: none;
    color: #f78c26;
    margin-bottom: 50px;
}

.article-review .abus-signal i {
    padding-right: 5px;
}

.article-review .abus-signal span {
    text-decoration: underline;
}

.comite-nav.nav-pills {
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.comite-nav.nav-pills .nav-link {
    border-radius: 200px;
    margin: 2px 5px;
}

.comite-nav.nav-pills .nav-link.active,
.comite-nav.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #424242;
}

.comite-nav .bt-success.nouvelles:hover,
.comite-nav .bt-success.nouvelles:active,
.comite-nav .bt-success.nouvelles:focus,
.comite-nav .nouvelles.active,
.comite-nav .nouvelles.active:hover,
.comite-nav .nouvelles.active:active,
.comite-nav .nouvelles.active:focus {
    background: #15a358 !important;
    color: #fff !important;
    border: 1px solid #15a358;
}

.comite-nav .bt-success.poetik:hover,
.comite-nav .bt-success.poetik:active,
.comite-nav .bt-success.poetik:focus,
.comite-nav .bt-success.active.poetik,
.comite-nav .bt-success.active.poetik:hover,
.comite-nav .bt-success.active.poetik:active,
.comite-nav .bt-success.active.poetik:focus {
    background: #fdc300 !important;
    color: #fff !important;
    border: 1px solid #fdc300;
}

.comite-nav .bt-success.tres-tres-court:hover,
.comite-nav .bt-success.tres-tres-court:active,
.comite-nav .bt-success.tres-tres-court:focus,
.comite-nav .bt-success.active.tres-tres-court,
.comite-nav .bt-success.active.tres-tres-court:hover,
.comite-nav .bt-success.active.tres-tres-court:active,
.comite-nav .bt-success.active.tres-tres-court:focus {
    background: #3fbbf0 !important;
    color: #fff !important;
    border: 1px solid #3fbbf0;
}

.comite-nav .bt-success.strips:hover,
.comite-nav .bt-success.strips:active,
.comite-nav .bt-success.strips:focus,
.comite-nav .bt-success.active.strips,
.comite-nav .bt-success.active.strips:hover,
.comite-nav .bt-success.active.strips:active,
.comite-nav .bt-success.active.strips:focus {
    background: #b70e80 !important;
    color: #fff !important;
    border: 1px solid #b70e80;
}

.comite-nav .bt-success.jeunesse:hover,
.comite-nav .bt-success.jeunesse:active,
.comite-nav .bt-success.jeunesse:focus,
.comite-nav .bt-success.active.jeunesse,
.comite-nav .bt-success.active.jeunesse:hover,
.comite-nav .bt-success.active.jeunesse:active,
.comite-nav .bt-success.active.jeunesse:focus {
    background: #53939c !important;
    color: #fff !important;
    border: 1px solid #53939c;
}

.comite-leg h2 small {
    display: block;
}

.comite-leg .table {
    background: #f8f4ef;
    font-size: 12px;
}

.comite-leg .table td {
    padding: 10px;
    border-right: 1px solid rgb(192 160 130 / 30%);
    border-left: 1px solid rgb(192 160 130 / 30%);
}

.comite-leg .table tr:last-child td {
    border-bottom: 1px solid rgb(192 160 130 / 30%);
}

.comite-table .table th {
    background: #f8f4ef;
    font-size: 12px;
    padding: 10px;
}

.comite-table .table td {
    font-size: 14px;
    padding: 10px;
}

.eval-comite.page-header {
    text-align: center;
}

/***************  SIDEBAR  ***********/
.sidebar-home {
    margin-top: 40px;
}

.home-side {
    margin-bottom: 35px;
    border-left: 3px solid #f78c26;
}

.home-side .article-contenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-side .article-left {
    margin-right: 15px;
    padding: 50px 0 50px 20px;
    flex-shrink: 0;
    width: calc(65% - 15px);
}

.home-side .article-left h2 {
    font-size: 20px;
    line-height: 28px;
}

.home-side .article-right {
    text-align: center;
    flex-shrink: 0;
    width: 35%;
    display: flex;
    justify-content: center;
}

.home-side .article-right img {
    max-width: 75px;
}

.home-side.one-bloc .bloc-author {
    display: block;
}

.home-side.one-bloc .article-right {
    padding-left: 20px;
    width: auto;
}

@media (max-width: 991.8px) {
    .sidebar-home {
        padding: 0;
    }

    .home-side {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .home-side .article-right {
        padding-right: 15px;
    }

    .home-side .article-left {
        padding: 20px 0 20px 15px;
    }

    .section-comite .actualite {
        margin-top: 20px;
    }

    .section-comite .comite-votre-top .votre-top-titre {
        padding: 0 15px 15px;
        text-align: center;
    }
}

@media (max-width: 767.8px) {
    .actu {
        margin-bottom: 30px;
    }

    .home-side {
        margin-bottom: 0;
        border-left: 3px solid #f78c26;
        border-bottom: 1px solid #f6f1eb;
    }

    .sidebar-home article:nth-child(2n) {
        background: #faf8f5;
    }

    .sidebar-home article:first-child {
        border-top: 1px solid #f6f1eb;
    }

    .home-side .article-left {
        width: calc(100% - 155px);
    }

    .home-side .article-right {
        width: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .actualite .comite-actu {
        padding-top: 10px;
    }

    .section-comite .home-side.one-bloc .article-right {
        padding: 20px 0 20px 15px;
    }

    .home-main .row > div {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
    }
}

.forum h1 {
    padding: 30px 0;
    margin: 0 0 40px;
    border-bottom: 1px solid #f1e9e0;
}

.forum .intro {
    margin-bottom: 100px;
}

.forum .intro p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    text-align: center;
}

.forum .intro p a {
    color: #7077a8 !important;
    text-decoration: underline;
}

.forum .forum-section-general {
    margin-bottom: 70px;
}

.forum-comite .forum-section-general::after {
    content: '';
    background: #f8f4ef;
    border-radius: 10px;
    position: absolute;
    inset: 0 15px;
    z-index: -1;
}

.forum .forum-section-general .forum-cat-item {
    position: relative;
    padding: 10px;
}

.forum .forum-section-general .forum-cat-item .icon-forum {
    background: #7077a8;
    width: 80px;
    height: 80px;
    display: flex;
    color: #fff !important;
    justify-content: center;
    align-items: center;
    margin: -60px auto 20px;
    border-radius: 50%;
    font-size: 34px;
}

.forum .forum-section-general .forum-cat-item h2 {
    color: #7077a8;
    text-align: center;
    padding-bottom: 5px;
    font-size: 24px;
}

.forum .forum-section-general .forum-cat-p {
    padding-bottom: 20px;
}

.forum .forum-section-general .forum-cat-item p {
    font-size: 16px;
    line-height: 24px;
}

.forum .forum-section-general .forum-cat-item .forum-cat-last {
    border-top: 1px solid rgb(192 160 130 / 30%);
    padding-top: 20px;
}

.forum .actu-lien {
    justify-content: flex-end;
    margin-bottom: 10px;
}

.forum .actu-lien a:hover .icon {
    color: #7077a8;
}

.forum .forum-cat-last p {
    font-size: 14px !important;
    color: #716f6c;
    line-height: 28px;
}

.forum .forum-cat-last p a {
    font: 400 18px/18px 'Cantata One', serif;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.forum .intro,
.forum-section .forum-cat-head .icon-forum {
    display: none;
}

.forum-home .forum .intro {
    display: block;
}

.forum-section .forum-cat-head {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.forum .forum-section-thread .comments-subject {
    border-bottom: 1px solid #f1e9e0;
}

.forum-section .forum-cat-head h2,
.forum .forum-section-thread .comments-subject h2 {
    font-size: 28px;
    color: #424242 !important;
    display: flex;
    align-items: center;
}

.forum-section .forum-cat-head .header-cat {
    display: inline-flex;
    align-items: center;
}

.forum-section .bt + .bt {
    margin-left: 10px;
}

.forum-section .forum-cat-p {
    font-size: 15px;
    line-height: 26px;
    padding: 20px 0 30px;
}

.forum-section .forum-table .bloc-thread {
    background: #f8f4ef;
    border-radius: 10px;
    padding: 20px 30px 20px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.forum-section .forum-table .bloc-thread.alaune {
    background: #7077a8 !important;
    color: #fff !important;
}

.forum-section .forum-table .bloc-thread.alaune .bloc-thread-1 h3,
.forum-section .forum-table .bloc-thread.alaune a,
.forum-section .forum-table .bloc-thread.alaune .bloc-thread-2,
.forum-section .forum-table .bloc-thread.alaune .bloc-thread-2 a {
    color: #fff !important;
}

.forum-section .forum-table .bloc-thread:last-child {
    margin-bottom: 100px;
}

.forum .retour {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(192 160 130 / 30%);
    margin-right: 10px;
    font-size: 12px;
}

.forum .forum-section .bloc-thread a.actu-lien-a:hover,
.forum .forum-section .bloc-thread a.actu-lien-a:focus,
.forum .forum-section .bloc-thread a.actu-lien-a:active,
.forum .intro p a:hover,
.forum .intro p a:active,
.forum .intro p a:focus {
    color: #7077a8 !important;
}

.forum-commentaire {
    display: block !important;
}

.forum-section .bloc-thread-1 {
    display: flex;
    align-items: center;
}

.forum-section .bloc-thread a {
    color: #424242 !important;
}

.forum-section .bloc-thread-1 .avatar {
    margin: 0 10px;
}

.forum-section .bloc-thread-1 .forum-avatar {
    display: flex;
    align-items: center;
    flex: 1;
}

.forum-section .bloc-thread-1 h3 {
    font-size: 16px;
    flex: 2;
}

.forum-section .bloc-thread-2,
.forum-section .bloc-thread-2 a {
    color: #a8a39d !important;
    align-items: center;
}

.forum-section .bloc-thread-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forum-section .bloc-thread-3 .forum-nb {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forum-section .bloc-thread-3 .forum-nb + .forum-nb {
    padding-left: 30px;
}

.forum-section .bloc-thread-3 .icon {
    margin-right: 10px;
}

.forum-section .bloc-thread-3 .icon-modif {
    font-size: 25px;
}

.forum-section .bloc-thread-3 .icon-lecteur {
    font-size: 34px;
}

.forum-section .bloc-thread-3 .forum-nb-txt span {
    font-size: 18px;
    line-height: 18px;
}

.forum-section .bloc-thread-3 .forum-nb-txt {
    line-height: 1;
    font-size: 14px;
}

.forum-section .bloc-thread-4 a {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 55px;
    background: #fe872c;
    color: #fff !important;
    font-size: 34px;
}

.forum-section .bloc-thread-4 {
    justify-content: flex-end;
    display: flex;
}

.forum-section .bloc-thread-4 a:hover,
.forum-section .bloc-thread-4 a:focus,
.forum-section .bloc-thread-4 a:active {
    color: #fff !important;
    background: #ff570a;
}

.forum .comment-content {
    font-size: 16px;
    line-height: 30px;
}

.forum .comments.response .comment-content {
    font-size: 13px;
    line-height: 17px;
    background: #f8f4ef;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.forum .comments.response .comment-content::before {
    content: '';
    background: url(/build/images/forum-comment.c3813b11.png) no-repeat left top;
    width: 25px;
    height: 30px;
    position: absolute;
    left: -16px;
    top: 12px;
}

.forum .comment-content .titre-forum {
    margin: 0 0 5px;
}

.forum .nom-auteur {
    font-size: 16px;
}

.forum .badge.bg-admin {
    border-radius: 50px;
    font-weight: 400;
    color: #f8f4ef;
    background: #7077a8;
    padding: 5px 9px;
    margin: 0 3px;
    position: relative;
    top: -1px;
}

.forum .comments.response .fos_comment_comment_replies.liner_forum {
    border-left: none !important;
    padding-left: 10px;
    margin-left: 38px;
    cursor: pointer;
}

.forum .comments.response .text-muted {
    color: #7077a8;
}

.forum .fos_comment_comment_body .fos_comment_comment_metas {
    position: relative;
}

.forum .fos_comment_comment_replies .fos_comment_comment_metas .triangle-forum-2 {
    height: 2px;
    width: 32px;
    position: absolute;
    top: 14px;
    left: -33px;
    background: #f1e9e0;
}

.forum .reponses {
    color: #7077a8;
}

.forum .plus-reponses {
    margin: 4px 60px 10px;
    display: block;
}

.forum .moins-reponses {
    letter-spacing: 1px;
}

.forum .fos_comment_comment_show.fos_comment_comment_depth_0 {
    margin: 10px 0 30px;
}

.fos_comment_thread h4 {
    padding-bottom: 5px;
    font: 400 16px/20px 'Cantata One';
}

.forum .like-reply {
    margin: 10px 0 0;
    color: #7077a8;
    display: flex;
    align-items: flex-start;
}

.forum .like-reply .like {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    min-width: 85px;
}

.forum .like-reply .like .btn,
.forum .like-reply .like .js-tips {
    color: #7077a8 !important;
    text-decoration: none !important;
    background: transparent;
}

.forum .like-reply .icon {
    margin-right: 5px;
    font-size: 18px;
    height: 21px;
    display: flex;
    align-items: center;
}

.forum .like-reply .reply {
    display: flex;
    width: 100%;
}

.forum .like-reply .reply .text-secondary.fos_comment_comment_reply_show_form {
    height: 21px;
    align-items: center;
    display: flex;
}

/* Forum Portal reply zone changes */
.forum-portal .like-reply .reply,
.forum-portal .like-reply .reply .icon,
.forum-portal .like-reply .reply .text-secondary.fos_comment_comment_reply_show_form {
    display: initial;
}

.forum .forum-section-thread .menu-action .btn {
    border-radius: 50%;
    width: 37px;
    height: 37px;
    background: #7077a8;
}

.forum .comment-content .dropdown-menu {
    background: #7077a8;
}

.forum .comment-content .dropdown-menu .bt-comment,
.forum .comment-content .dropdown-menu a {
    font-family: 'Open Sans', sans-serif;
}

.forum .fos_comment_comment_body .menu-action {
    position: absolute;
    right: -15px;
    top: -18px;
}

.forum .fos_comment_comment_show a.btn-collapse:hover .barre-left::after,
.forum .fos_comment_comment_show a.btn-collapse:hover + .fos_comment_comment_replies > .fos_comment_comment_show > .fos_comment_comment_body > .fos_comment_comment_metas .triangle-forum-2 {
    background: #7077a8;
}

.forum .fos_comment_comment_show a.btn-collapse:hover .plus-reponses {
    font-weight: 700;
}

.forum .btn.btn-comment-likes,
.forum .text-secondary.btn-comment-likes {
    font-size: 13px;
}

.forum .btn.btn-comment-likes:hover,
.forum .text-secondary.btn-comment-likes:hover {
    color: #424242 !important;
}

.forum .comments.response h4 {
    color: #7077a8;
    font-family: 'Cantata One', serif;
    font-size: 16px;
}

.forum .comments.response .fos_comment_comment_new_form {
    background: #ffff;
    padding: 0;
    margin: 10px 0 30px;
    border-radius: 0;
}

.forum .comments.response .fos_comment_comment_new_form img.rounded {
    display: none;
}

.forum .fos-new-comment-textarea {
    margin: 0 0 20px;
}

.forum .fos_comment_comment_new_form textarea {
    border-radius: 10px;
    border: 1px solid #7077a8;
    font-size: 13px;
}

.forum .fos_comment_comment_new_form textarea::placeholder {
    color: #424242;
}

.forum .fos_comment_comment_new_form .bt-ok {
    width: 50px;
    height: 50px;
    right: 10px;
    top: 10px;
}

.forum .comments.response .fos_comment_comment_show .fos_comment_comment_reply.fos_comment_replying {
    width: 100%;
}

.forum .comments.response .fos_comment_comment_show .fos-new-comment-textarea {
    background: transparent;
}

.forum .comments.response .fos_comment_comment_show .fos_comment_comment_new_form {
    background: transparent;
}

.forum .comments.response .fos_comment_comment_show .fos-new-comment-textarea p,
.forum .comments.response .fos_comment_comment_show .fos-new-comment-textarea .dropdown-divider {
    display: none;
}

.forum .comments.response .fos_comment_comment_show:last-child {
    position: relative;
}

.forum .comments.response .fos_comment_comment_show:last-child::before {
    background: #fff;
    position: absolute;
    top: 26px;
    left: -27px;
    bottom: -20px;
    content: '';
    width: 8px;
    z-index: 1;
}

.forum .highlight-comment {
    animation: fade-it 10s ease-out;
    background: transparent;
}

.forum .highlight-comment::before {
    animation: fade-it-image 10s ease-in-out;
}

@keyframes fade-it {
    0% {
        border: 2px solid #7077a8;
    }

    100% {
        border: 2px solid transparent;
    }
}

@keyframes fade-it-image {
    0% {
        z-index: -100000;
        filter: drop-shadow(2px 2px 0 #7077a8) drop-shadow(-2px -2px 0 #7077a8);
    }

    100% {
        z-index: -100000;
        filter: none;
    }
}

.forum-home .forum-section .forum-table .bloc-thread {
    padding: 10px 0;
    margin: 0;
}

.forum-home .forum-section .forum-table .bloc-thread:last-child {
    margin-bottom: 0;
}

.forum-home .forum-section .bloc-thread-1 h3,
.forum-home .forum-section .forum-table {
    font-size: 13px;
}

.forum-home .forum-section .forum-table .forum-last-message {
    font-size: 11px;
}

@media (min-width: 1200px) {
    .forum-home .forum-section .forum-table .bloc-thread .bloc-thread-content {
        display: contents;
    }
}

@media (max-width: 1200px) {
    .forum .forum-section-general .forum-cat-item,
    .forum-section .forum-table .bloc-thread {
        padding: 10px;
    }

    .forum-section .bloc-thread-3 .forum-nb + .forum-nb {
        padding-left: 10px;
    }
}

@media (max-width: 991.8px) {
    .forum-cat {
        padding: 0;
    }

    .forum-home .forum-cat,
    .forum-section .forum-cat {
        padding: 0 15px;
    }
}

@media (max-width: 767.8px) {
    .forum-section .forum-cat-head {
        flex-direction: column;
    }

    .forum-section .bt-forum {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .forum-section .bt + .bt {
        margin-top: 5px;
    }

    .forum-section .bloc-thread-3 {
        padding: 15px !important;
        justify-content: flex-start;
    }

    .forum-section .bloc-thread-1 {
        flex-direction: column;
        padding-bottom: 10px;
        align-items: baseline;
    }

    .forum-section .bloc-thread-1 h3 {
        padding-bottom: 10px;
    }

    .forum-section .bloc-thread-1 .avatar {
        margin-left: 0;
    }

    .forum h1 {
        padding: 20px 0;
        margin: 0 0 30px;
        font-size: 34px;
    }

    .forum .fos_comment_comment_show.fos_comment_comment_depth_1 {
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .forum .fos_comment_comment_show .barre-left {
        left: 0;
    }

    .forum .comments.response .fos_comment_comment_show:last-child::before {
        top: 16px;
        left: -40px;
    }
}

@media (min-width: 768px) and (max-width: 1200px) {
    .forum-section .forum-table .bloc-thread {
        align-items: center;
    }
}

body {
    padding: 0;
    color: #424242;
    font-family: 'Open Sans', sans-serif;
}

p {
    color: #424242;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 0;
}

p.small {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #c7c7c7;
}

.container-xl {
    max-width: 1200px;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

button:focus {
    outline: none;
}

/**********  DIVERS BOOTSTRAP  *************/

.gray-box {
    background-color: #f6f1eb;
    border-radius: 4px;
}

.table-light > :not(caption) > * > *,
.bg-light,
.card-header {
    background-color: #f8f4ef !important;
}

/***********************  FORM SELECT 2  *********************/
.select2-dropdown {
    background-color: white;
    border: 1px solid #f1e9e0;
    border-radius: 20px;
    overflow: hidden;
    font-size: 14px;
}

/***************  LIEN  ***********/
.actu-lien {
    display: flex;
}

.actu-lien-a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #a0a0a0;
}

.actu-lien-a .txt {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    padding-right: 10px;
}

.actu-lien-a .icon {
    font-size: 10px;
    color: #a0a0a0;
    position: relative;
}

.actu-lien-a:hover .icon {
    position: relative;
    transform: translateX(0);
    animation: lien-a 0.7s ease-in-out infinite;
    color: #fe872c;
}

@keyframes lien-a {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/***************  FORM  ***********/
.form-control::placeholder {
    color: #c7c7c7;
}

@media (min-width: 992px) {
    body {
        padding: 0 160px;
    }
}

.vertical-text {
    transform-origin: bottom right;
    transform: translateY(-100%) rotate(-90deg);
    text-align: right;
    position: absolute;
    top: 0;
    left: calc(-100% + 35px);
    width: 100%;
    right: auto;
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vertical-text > span {
    padding: 0 1px 0 15px;
    background-color: #fff;
    font-family: 'Cantata One', serif;
}

.txt-tips {
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    height: 18px;
    width: 18px;
    border: 1px solid;
    display: inline-flex;
    justify-content: center;
}

/**** chat bot ****/
@media (min-width: 576px) {
    html body.site #LeadboosterContainer {
        bottom: 0 !important;
        right: 0 !important;
    }
}

@media (min-width: 992px) {
    html body.site #LeadboosterContainer {
        right: 75px !important;
    }
}

/************ Partie generique *******************/
.bloc-img {
    transition: all 0.4s;
}

.image {
    overflow: hidden;
    border-radius: 15px;
}

.bloc-img img {
    transition: all 0.4s;
    transform: scale(1);
}

.bloc-img:hover img {
    transform: scale(1.1);
}

.pleine-page {
    margin: 0 -160px;
}

@media (max-width: 991.8px) {
    .pleine-page {
        margin: 0;
    }
}

.site.site-home .container-xl {
    max-width: 1000px;
}

.site.site-home.fr .bt {
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 20%);
}

.site-home.fr .right-menu-bar::before {
    box-shadow: 0 10px 80px 0 rgb(0 0 0 / 10%);
}

.site-home.en .section-etendue.principal {
    margin-bottom: 120px;
}

/************ Partie intro *******************/

.site.site-home h2 {
    font: 28px/40px 'Cantata One', serif !important;
    margin-bottom: 30px;
    position: relative;
}

/** English part **/
.site.site-home .cell h2 {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 26px !important;
    margin-bottom: 5px;
    border: none;
    padding-bottom: 0;
}

.site.site-home p {
    font-size: 15px;
    line-height: 21px;
}

.actualite .home-intro-txt p::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
    background-color: #f1e9e0;
    height: 100%;
    content: '';
}

@media (max-width: 991.8px) {
    .actualite .home-intro {
        margin: 0 auto;
    }
}

@media (max-width: 767.8px) {
    .home-intro-txt {
        order: 2;
    }
}

/************  Partie presentation  *******************/
.contain-section::after {
    position: absolute;
    content: '';
    width: 172px;
    height: 143px;
    bottom: -143px;
    left: 25%;
    background: no-repeat url(/build/images/pres-bottom.634edf24.png) left top;
}

.contain-section::before {
    position: absolute;
    content: '';
    width: 610px;
    height: 414px;
    top: -116px;
    left: -250px;
    background: no-repeat url(/build/images/pres-top.a113a0ee.png) left top;
}

.presentation {
    position: relative;
    margin: 145px -160px;
    overflow: hidden;
}

.presentation .wideBG {
    inset: 0 -135px;
    position: absolute;
    padding: 0;
    z-index: -1;
}

.presentation .pres-wide {
    min-height: 50em;
}

.presentation .pres-ligne1 {
    background-color: #f1e9e0;
    border-right: 1px solid #e4d5c5;
}

.presentation .pres-prod1 {
    background-color: #e4d5c5;
}

.contain-section {
    position: relative;
}

.presentation .separe {
    background: #e4d5c5 url(/build/images/separateur.241befea.gif) center right no-repeat;
    background-size: cover;
}

.presentation .col-12.col-lg-4.pres-ligne2,
.presentation .col-12.col-sm-10.col-lg-4.pres-prod2 {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 90px;
}

.presentation .pres-txt {
    padding: 90px 0;
    display: flex;
    flex-direction: column;
    height: 100%; /* make sure that .pres-txt takes up the full height of its parent */
}

.presentation .pres-txt h2,
.presentation .pres-txt .text-blocks,
.presentation .pres-txt a {
    align-self: flex-start;
}

.presentation .pres-txt a.bt {
    margin: 10px 1px;
    position: absolute;
    transform: translateY(50%);
    bottom: 19%;
}

.presentation .pres-txt h3 {
    border-bottom: 1px solid #c1bab3;
}

.presentation .pres-txt p {
    margin: 0 0 10px;
}

.presentation .bloc-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1600px) {
    .contain-section::before {
        left: -30%;
    }

    .contain-section::after {
        left: 12%;
    }
}

@media (max-width: 1399.8px) {
    .contain-section::before {
        left: auto;
        right: 87%;
    }

    .contain-section::after {
        left: 0;
    }
}

@media (max-width: 1199.8px) {
    .presentation .pres-txt {
        padding: 80px 0 30px;
    }
}

@media (max-width: 991.8px) {
    .presentation {
        margin: 110px 0;
        background-color: #f1e9e0;
    }

    .presentation .separe {
        background: white none;
        height: 25px;
        display: block !important;
    }

    .presentation .pres-txt {
        padding: 50px 0 20px;
    }

    .presentation .pres-txt h3 {
        border-bottom: none;
    }

    .contain-section::before {
        left: -40%;
        right: auto;
    }

    .contain-section::after {
        left: 20%;
    }
}

@media (max-width: 575.8px) {
    .presentation .pres-txt a.bt {
        margin: -10px 0;
        width: 95%;
    }

    .presentation .bloc-img img {
        margin: 15px auto 30px;
        max-width: 100px;
    }

    .contain-section::before {
        left: -60%;
    }
}

@media (max-width: 420px) {
    .contain-section::before {
        left: -80%;
    }
}

/************ Partie Solutions *******************/
.solution .bloc-solution {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.solution .bloc-solution .image {
    display: block;
    width: 190px;
    flex-shrink: 0;
}

.solution .bloc-solution .bloc-txt {
    padding: 0 0 30px 15px;
}

.solution .bloc-solution .bloc-txt a.bt {
    margin: 15px 0;
}

.solution .bloc-solution .bloc-txt p {
    margin-bottom: 10px;
}

section.solution .actu-lien-a .txt,
section.solution .actu-lien-a .icon {
    color: #fe872c;
}

section.solution .actu-lien-a:hover .txt,
section.solution .actu-lien-a:hover .icon {
    color: #a0a0a0;
}

@media (max-width: 1399.8px) {
    .solution .bloc-solution .image {
        width: 150px;
        margin-bottom: 20px;
    }
}

@media (max-width: 991.8px) {
    .solution {
        margin: 170px auto 50px;
    }
}

@media (max-width: 567.8px) {
    .solution .bloc-solution .image {
        width: 100px;
    }
}

/************ Partie Actualité *******************/

.pleine-page .bloc-actu {
    background-color: #e4d5c5;
}

.bloc-actu {
    padding: 60px 0;
    margin: 50px auto;
}

.bloc-actu .titre h2 {
    display: flex;
    align-items: center;
    margin-top: -85px;
}

.bloc-actu .titre h2 span {
    position: relative;
    background-color: #424242;
    color: #fff;
    padding: 5px 25px 5px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    z-index: 1;
    font-size: 28px;
}

.bloc-actu .titre h2 span + span {
    position: relative;
    background-color: #f1e9e0;
    color: #424242;
    padding: 5px 15px;
    font-size: 22px;
    z-index: 2;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bloc-actu .titre h2 span::before {
    position: absolute;
    content: '';
    display: inline-block;
    height: 0;
    width: 0;
    left: -17px;
    border-bottom: 50px solid #424242;
    border-left: 18px solid transparent;
}

.bloc-actu .titre h2 span::after {
    position: absolute;
    content: '';
    display: inline-block;
    height: 0;
    width: 0;
    right: -18px;
    border-top: 51px solid #424242;
    border-right: 18px solid transparent;
    z-index: 1;
}

.bloc-actu .titre h2 span + span::before {
    border-bottom: 38px solid #f1e9e0;
    border-left: 16px solid transparent;
    left: -16px;
}

.bloc-actu .titre h2 span + span::after {
    border-top: 38px solid #f1e9e0;
    border-right: 16px solid transparent;
    right: -16px;
}

.bloc-actu .bloc-actu-content {
    display: flex;
    align-items: center;
}

.bloc-actu .bloc-actu-content .bloc-txt {
    padding: 15px 30px;
}

.bloc-actu .bloc-actu-content p {
    margin-bottom: 10px;
}

@media (max-width: 991.8px) {
    .bloc-actu {
        padding: 30px 0;
        margin: 50px auto;
    }

    .bloc-actu .titre h2 {
        margin-top: -50px;
    }
}

@media (max-width: 767.8px) {
    .bloc-actu .bloc-actu-content {
        align-items: flex-start;
    }

    .bloc-actu .bloc-actu-content .image {
        text-align: center;
    }

    .bloc-actu .bloc-actu-content .bloc-txt {
        padding: 30px;
    }
}

@media (max-width: 567.8px) {
    .bloc-actu .bloc-actu-content .bloc-txt {
        padding: 15px;
    }

    .bloc-actu .bloc-actu-content .bloc-txt .bt {
        width: 100%;
    }

    .bloc-actu .titre h2 {
        margin-top: -56px;
        flex-direction: column;
    }

    .bloc-actu .titre h2 span + span {
        margin: -6px -60px 13px 0;
    }
}

/************ Partie Lecture offerte *******************/

.cadeau {
    background: url(/build/images/bg-gift2.3c0829dc.png) center center no-repeat;
    min-height: 331px;
    padding-bottom: 30px;
}

.cadeau .bloc-txt {
    border-radius: 20px;
    background-color: #f1e9e0;
    padding: 60px;
}

.cadeau .bloc-txt .titre {
    display: flex;
}

.cadeau .bloc-txt .titre h3 {
    margin-right: 10px;
}

.cadeau .bloc-txt .tag {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cadeau .bloc-txt .trait {
    width: 60px;
    height: 3px;
    background-color: #fe872c;
    display: block;
    margin-right: 13px;
}

.cadeau .bloc-txt .txt {
    margin-bottom: 30px;
}

@media (max-width: 1199.8px) {
    .cadeau {
        background-size: 84%;
        background-position: center 251px;
    }
}

@media (max-width: 991.8px) {
    .cadeau {
        padding-bottom: 50px;
    }
}

@media (max-width: 767.8px) {
    .cadeau .bloc-txt {
        padding: 30px;
    }

    .cadeau .bloc-txt .bt {
        width: 100%;
    }
}

/************ Partie portfolio *******************/
.portfolio {
    margin-bottom: 50px;
}

.portfolio .portfolio-item {
    position: relative;
    padding: 5px;
}

.portfolio .image {
    border-radius: 0;
}

.portfolio .image .bloc-img {
    position: relative;
    display: flex;
}

.portfolio .image .bloc-img:hover .arg,
.portfolio .image .bloc-img:active .arg,
.portfolio .image .bloc-img:focus .arg {
    z-index: 10;
}

.portfolio .image .arg {
    position: absolute;
    inset: 0;
    background: rgb(38 38 38 / 90%);
    width: 100%;
    height: 100%;
    padding: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.portfolio .image .arg h3 {
    position: relative;
    padding-bottom: 20px;
    color: #fff;
}

.portfolio .image .arg h3::after {
    content: '';
    height: 1px;
    width: 45px;
    background-color: #fe872c;
    position: absolute;
    bottom: 0;
    left: 0;
}

.portfolio .image .arg p {
    color: #fff;
}

@media (max-width: 1199.8px) {
    .portfolio .portfolio-item {
        padding: 5px;
        margin-bottom: 0;
    }
}

@media (max-width: 991.8px) {
    .portfolio .image .arg {
        left: unset;
        width: 50%;
    }

    .portfolio .image img {
        transform: none;
    }
}

/************************************  CSS 2020  ***************************************************/
.actualite .main {
    margin-bottom: 60px;
}

.actualite .main h2 {
    font-size: 30px;
    line-height: 36px;
    margin: 0 0 10px;
}

.actualite .main .actu-bloc-txt {
    flex: 1;
    padding-left: 30px;
    position: relative;
    z-index: 100;
}

.actualite .image {
    overflow: hidden;
}

.actualite .main .image {
    flex: 1;
}

.actualite .image img {
    transition: all 0.4s;
}

.actualite a img {
    transition: all 0.4s;
}

.actualite a:hover img {
    transform: scale(1.1);
}

/*********  Fin PArtie actualité collapse home  ****/

@media (min-width: 768px) and (max-width: 1200px) {
    .pleine-page .bloc-actu {
        padding-left: 160px;
        padding-right: 160px;
    }
}

@media (max-width: 1199.97px) {
    .actualite {
        padding: 192px 0 0;
    }

    .actualite .actualite-bloc {
        padding-right: 20px;
        margin-top: 40px;
    }

    .sidebar-home {
        margin-top: 40px;
    }

    .actualite .main {
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .actualite .main h2 {
        margin-bottom: 5px;
    }
}

@media (max-width: 991.8px) {
    .actualite .actualite-bloc {
        margin-top: 15px;
        padding-right: 0;
    }

    .site-home .actualite > .row > div {
        margin-bottom: 0;
        margin-top: 25px;
    }

    .site-home .actualite .home-intro .col-md-5 {
        overflow: hidden;
        height: 330px;
        max-height: 330px;
        margin: 0 0 1rem;
        align-items: center;
    }

    .actualite .actu-bloc.main .actu-bloc-txt {
        padding-left: 15px;
    }
}

@media (max-width: 575.8px) {
    .actualite .main {
        flex-direction: column;
        justify-content: center;
        margin-bottom: 10px;
        align-items: center;
    }

    .actualite .main p {
        text-align: left;
    }

    .portfolio .image .arg {
        width: 60%;
        padding: 10px;
        font-size: 75%;
    }
}

@media (max-width: 479.8px) {
    .actualite .home-intro {
        margin-top: 0 !important;
    }
}

/************ Quick facts *******************/

.ban-chiffre {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f1e9e0;
    z-index: 1000;
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 30%);
    padding: 15px;

}

.ban-chiffre .ban-chiffre-contain {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-wrap: wrap;
}

.ban-chiffre .item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    margin: 0
}

.ban-chiffre .item + .item {
    border-left: 1px solid #c1bab3;
}

.ban-chiffre .item p {
    font: normal 13px/17px 'Cantata One', serif !important;
    margin: 0;
}

.ban-chiffre .item .txt1 p {
    font: normal 34px/34px 'Cantata One', serif !important;
    color: #fe872c;
    margin-right: 10px;
}

@media (max-width: 1199.8px) {
    .ban-chiffre .item .txt1 p {
        font-size: 28px !important;
        line-height: 28px !important;
    }

    .ban-chiffre .item {
        padding: 7px;
    }
}

/* //////////////////////////// */

/* ---- Les pages de publication Jeunesse ---- */
.site.prize .prize-soumission-jeunesse + .container {
    padding-top: 0;
}

.se-jeune {
    background: url(/build/images/bg-jeunesse.c199f860.gif) no-repeat center top #efefef;
    min-height: 300px;
    padding-bottom: 30px;
}

.se-jeune .bloc-top {
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 10%);
    padding: 40px 60px;
    margin: 40px 0 50px;
    text-align: center;
}

.se-jeune .bloc-top h1 {
    font: 38px/42px 'Roboto Slab', sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
    color: #53929c;
}

.se-jeune .bloc-top p {
    font-weight: 400;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}

.se-jeune .titre-trait h2 {
    font: 24px/28px 'Roboto Slab', sans-serif;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #53929c;
    position: relative;
}

.se-jeune .titre-trait h2::after {
    position: absolute;
    content: '';
    width: 90px;
    height: 3px;
    background-color: #ffc619;
    bottom: -20px;
    left: calc(50% - 45px);
}

.se-jeune .se-jeune-bloc {
    padding-bottom: 45px;
    padding-top: 45px;
    position: relative;
    font-weight: 400;
}

.se-jeune .se-jeune-bloc h3 {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #53929c;
}

.se-jeune .se-jeune-bloc h3 span {
    font-size: 38px;
    font-weight: 400;
    color: #ffc619;
}

.se-jeune .se-jeune-bloc p {
    font-size: 16px;
    line-height: 24px;
}

.se-jeune .bloc-top a.btn {
    margin: 10px auto 0;
}

.se-jeune .se-jeune-bloc-1,
.se-jeune .se-jeune-bloc-2,
.se-jeune .se-jeune-bloc-3,
.se-jeune .se-jeune-bloc-4 {
    border-left: 1px solid #53929c;
    border-bottom: 1px solid #53929c;
    margin: 0 67px;
    padding: 45px 0 45px 115px;
}

.se-jeune .se-jeune-bloc-2,
.se-jeune .se-jeune-bloc-4 {
    border-left: none;
    border-right: 1px solid #53929c;
    padding: 45px 115px 45px 0;
    text-align: right;
}

.se-jeune .se-jeune-bloc-4 {
    border: none;
    border-right: 1px solid #53929c;
}

.se-jeune .se-jeune-bloc-1::after,
.se-jeune .se-jeune-bloc-2::after,
.se-jeune .se-jeune-bloc-3::after,
.se-jeune .se-jeune-bloc-4::after {
    position: absolute;
    width: 134px;
    height: 171px;
    background: url(/build/images/se-jeune-01.55527728.png) no-repeat center center;
    content: '';
    top: calc(50% - 86px);
}

.se-jeune .se-jeune-bloc-1::after,
.se-jeune .se-jeune-bloc-3::after {
    left: -72px;
}

.se-jeune .se-jeune-bloc-2::after,
.se-jeune .se-jeune-bloc-4::after {
    right: -72px;
}

.se-jeune .se-jeune-bloc-2::after {
    background: url(/build/images/se-jeune-02.c84b3051.png) no-repeat center center;
}

.se-jeune .se-jeune-bloc-3::after {
    background: url(/build/images/se-jeune-03.efadb88c.png) no-repeat center center;
}

.se-jeune .se-jeune-bloc-4::after {
    background: url(/build/images/se-jeune-04.f27ed594.png) no-repeat center center;
}

.se-jeune-bas {
    padding: 50px 0 0;
}

.se-jeune-bas h2 {
    font: 24px/28px 'Roboto Slab', sans-serif;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: left;
    color: #53929c;
    position: relative;
}

.se-jeune-bas h2::after {
    position: absolute;
    content: '';
    width: 90px;
    height: 3px;
    background-color: #ffc619;
    bottom: -20px;
    left: 0;
}

.se-jeune-bas p {
    font-size: 16px;
    line-height: 23px;
    color: #404141;
}

.se-jeune-bas ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.se-jeune-bas ul li {
    background: url(/build/images/puce-2.ee53ae91.png) no-repeat left -103px;
    padding-left: 15px;
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 5px;
}

/* bloc jeunesse de la page "soumettre"  */
.jeunesse-soumettre {
    background-color: #e5e5e5;
    padding: 30px 55px;
    color: #000;
    max-width: 500px;
    margin: 50px auto;
}

.jeunesse-soumettre img {
    margin: 0 auto 10px;
}

.jeunesse-soumettre p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.jeunesse-soumettre .cta {
    text-align: center;
}

@media (max-width: 540px) {
    .se-jeune .se-jeune-bloc-1,
    .se-jeune .se-jeune-bloc-2,
    .se-jeune .se-jeune-bloc-3,
    .se-jeune .se-jeune-bloc-4 {
        margin: 0 38px;
        padding: 40px 0 40px 59px;
    }

    .se-jeune .se-jeune-bloc-2,
    .se-jeune .se-jeune-bloc-4 {
        padding: 40px 59px 40px 0;
    }

    .se-jeune .se-jeune-bloc-1::after,
    .se-jeune .se-jeune-bloc-2::after,
    .se-jeune .se-jeune-bloc-3::after,
    .se-jeune .se-jeune-bloc-4::after {
        width: 77px;
        height: 90px;
        left: -36px;
        top: calc(50% - 43px);
        background-size: 100%;
    }

    .se-jeune {
        padding-bottom: 0;
    }

    .se-jeune-bas {
        padding: 2px 0 0;
    }

    .se-jeune-bas img {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ---- Page Ligne éditoriale BD ---- */

.bd-soumission .quesceque {
    text-align: center;
    margin-top: -100px;
    z-index: -1;
}

.bd-ligne .bd-intro h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 10px;
    border: none;
}

.bd-ligne .bd-intro {
    text-align: center;
    padding-top: 10px;
    margin-bottom: 10px !important;
}

.bd-ligne .bd-intro p {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 26px;
}

.bd-ligne .bd-intro img {
    margin-top: 20px;
}

.bd-ligne .bd-ligne-explic {
    margin-bottom: 20px;
}

.bd-ligne .bd-ligne-explic .bd-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.bd-ligne .bd-ligne-explic .bloc-txt {
    text-align: left;
    width: 60%;
    padding-left: 20px;
}

.edito .bd-ligne h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 15px;
    padding: 0;
    background: transparent;
}

.edito .bd-ligne h2::after {
    display: none;
}

.bd-ligne .bd-ligne-explic .bloc-txt p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: left;
}

.bd-ligne .bd-ligne-explic .bloc-img {
    width: 40%;
}

.bd-ligne .bd-ligne-explic .bloc-img img {
    margin: 0 auto;
}

.bd-ligne .bd-bloc-1 .bloc-txt {
    padding-bottom: 80px;
}

.bd-ligne .bd-bloc-2 .bloc-txt {
    order: 1;
    padding-left: 0;
    padding-right: 20px;
}

.bd-ligne .bd-bloc-2 .bloc-img {
    order: 2;
}

.bd-ligne .bd-ligne-exemple {
    background-color: #f8f4ef;
    color: #424242;
    text-align: center;
    padding: 40px;
    position: relative;
    margin-top: 50px;
}

.bd-ligne h2 {
    border-bottom: none;
}

.bd-ligne .bd-ligne-exemple .fleche-top {
    margin-top: -100px;
}

.bd-ligne .bd-ligne-exemple .fleche-bottom {
    margin-bottom: -120px;
    transform: scaleX(-1);
    margin-top: 15px;
    width: 59px;
    height: 76px;
    padding: 0;
}

.bd-ligne .bd-ligne-exemple p {
    font-size: 16px;
    line-height: 24px;
    padding: 0 100px 20px;
}

.bd-ligne .bd-ligne-exemple .bd-exemple {
    display: flex;
    justify-content: center;
}

.bd-ligne .bd-ligne-exemple .bd-exemple .item {
    padding: 7px;
}

.bd-ligne .bd-ligne-exemple .bd-exemple .item a img {
    border: 2px solid #fff;
    margin-bottom: 10px;
}

.bd-ligne .bd-ligne-exemple .bd-exemple .item a {
    color: #424242;
    text-decoration: none;
}

.bd-ligne .bd-ligne-exemple .bd-exemple .item a:hover,
.bd-ligne .bd-ligne-exemple .bd-exemple .item a:focus,
.bd-ligne .bd-ligne-exemple .bd-exemple .item a:active {
    color: #b70e80;
    text-decoration: none;
}

.bd-ligne .bd-ligne-envoi .bd-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.bd-ligne .bd-ligne-envoi .bloc-txt {
    text-align: left;
    width: 60%;
    padding-left: 20px;
}

.bd-ligne .bd-ligne-envoi .bloc-txt p {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}

.bd-ligne .bd-ligne-envoi .bloc-txt a.btn {
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    padding: 10px 30px;
    color: #fff;
    background-color: #b70e80;
    border-color: #b70e80;
    margin-bottom: 30px;
}

.bd-ligne .bd-ligne-envoi .bloc-txt a.btn:hover {
    color: #b70e80;
    background-color: #fff !important;
    border-color: #b70e80 !important;
}

.bd-ligne .bd-ligne-envoi .bloc-txt a.bd-question {
    font-size: 16px;
    text-decoration: underline;
    font-weight: 700;
}

@media (max-width: 728px) {
    .bd-ligne .bd-ligne-explic .bd-bloc,
    .bd-ligne .bd-ligne-envoi .bd-bloc {
        flex-direction: column;
    }

    .bd-ligne .bd-ligne-explic .bloc-img {
        width: 100%;
        text-align: center;
    }

    .bd-ligne .bd-ligne-explic .bloc-txt,
    .bd-ligne .bd-ligne-envoi .bloc-txt {
        width: 100%;
        padding-left: 0;
    }

    .bd-ligne .bd-ligne-exemple p {
        padding: 0 0 20px;
    }

    .bd-ligne .bd-bloc-2 .bloc-img {
        order: 1;
    }

    .bd-ligne .bd-bloc-2 .bloc-txt {
        order: 2;
        padding-right: 0;
    }

    .bd-ligne .bd-ligne-envoi .bloc-txt a.btn {
        font-size: 16px;
        padding: 5px 10px;
    }
}

/* ---- Page Soumission BD ---- */
.bd-ligne.bd-soumission .bd-intro {
    margin-bottom: 80px;
}

.bd-ligne.bd-soumission .bd-intro h1 {
    padding: 30px 0 20px;
    border-bottom: none;
    font-family: 'Permanent Marker', cursive;
    font-size: 60px;
    line-height: 62px;
    margin-bottom: 15px;
}

.bd-ligne.bd-soumission .bd-intro img.banner {
    margin: 0 0 40px;
}

.bd-soumission.bloc-top p {
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    line-height: 26px;
}

.bd-ligne.bd-soumission .bd-intro .fleche {
    margin: 40px 0 -40px;
}

.edito .bd-soumission h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 34px;
    line-height: 38px;
    margin-bottom: 30px;
    text-align: left;
    color: #262626;
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
}

.edito .bd-soumission h2::after {
    border-top-color: #fff0ef;
}

.bd-soumission .bd-soumission-bloc {
    padding-bottom: 45px;
    padding-top: 45px;
    position: relative;
    font-weight: 400;
}

.site.prize .bd-soumission .bd-soumission-bloc h3 {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #fe872c !important;
}

.bd-soumission .bd-soumission-bloc h3 span {
    font-size: 38px;
    font-weight: 400;
    color: #fe872c;
}

.bd-soumission .bd-soumission-bloc p {
    font-size: 16px;
    line-height: 24px;
}

.bd-soumission.bloc-top a.btn {
    margin: 10px auto 0;
}

.bd-soumission .bd-soumission-bloc-1,
.bd-soumission .bd-soumission-bloc-2,
.bd-soumission .bd-soumission-bloc-3,
.bd-soumission .bd-soumission-bloc-4,
.bd-soumission .bd-soumission-bloc-5 {
    border-left: 1px solid #fe872c;
    border-bottom: 1px solid #fe872c;
    margin: 0 67px;
    padding: 45px 0 45px 115px;
}

.bd-soumission .bd-soumission-bloc-2,
.bd-soumission .bd-soumission-bloc-4 {
    border-left: none;
    border-right: 1px solid #fe872c;
    padding: 45px 115px 45px 0;
    text-align: right;
}

.bd-soumission .bd-soumission-bloc-5 {
    border: none;
    border-left: 1px solid #fe872c;
}

.bd-soumission .bd-soumission-bloc-1::after,
.bd-soumission .bd-soumission-bloc-2::after,
.bd-soumission .bd-soumission-bloc-3::after,
.bd-soumission .bd-soumission-bloc-4::after,
.bd-soumission .bd-soumission-bloc-5::after {
    position: absolute;
    width: 198px;
    height: 172px;
    background: url(/build/images/bd-soum1-2022.c6bafb59.png) no-repeat center center;
    content: '';
    top: calc(50% - 99px);
}

.bd-soumission .bd-soumission-bloc-1::after,
.bd-soumission .bd-soumission-bloc-3::after,
.bd-soumission .bd-soumission-bloc-5::after {
    left: -90px;
}

.bd-soumission .bd-soumission-bloc-2::after,
.bd-soumission .bd-soumission-bloc-4::after {
    right: -99px;
}

.bd-soumission .bd-soumission-bloc-2::after {
    background: url(/build/images/bd-soum2-2022.ff8f4b47.png) no-repeat center center;
}

.bd-soumission .bd-soumission-bloc-3::after {
    background: url(/build/images/bd-soum3-2022.2ed74c6e.png) no-repeat center center;
}

.bd-soumission .bd-soumission-bloc-4::after {
    background: url(/build/images/bd-soum4-2022.a5cc344d.png) no-repeat center center;
}

.bd-soumission .bd-soumission-bloc-5::after {
    background: url(/build/images/bd-soum5-2022.9b4499d0.png) no-repeat center center;
}

.bd-soumission-bas h2 {
    font: 40px/42px 'Permanent Marker',
    cursive;
    margin-bottom: 35px;
    text-align: left;
    color: #b70e80;
}

.bd-soumission-bas p {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 10px;
}

.bd-soumission-bas a.btn {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    padding: 10px 30px;
    color: #fff;
    background-color: #b70e80;
    border-color: #b70e80;
    margin-bottom: 30px;
    margin-top: 30px;
}

.bd-soumission-bas a.btn:hover {
    color: #b70e80;
    background-color: #fff !important;
    border-color: #b70e80 !important;
}

.bd-soumission-bas .fleche-bas {
    text-align: center;
}

.bd-soumission-bas .fleche {
    margin: -10px 0 60px;
}

.bd-soumission-bas .col-md-6 img {
    margin: 20px 0;
}

.bd-soumission-bas .col-md-6 .bt {
    margin: 10px 0;
}

@media (max-width: 540px) {
    .bd-soumission .bd-soumission-bloc-1,
    .bd-soumission .bd-soumission-bloc-2,
    .bd-soumission .bd-soumission-bloc-3,
    .bd-soumission .bd-soumission-bloc-4,
    .bd-soumission .bd-soumission-bloc-5 {
        margin: 0 38px;
        padding: 40px 0 40px 59px;
    }

    .bd-soumission .bd-soumission-bloc-2,
    .bd-soumission .bd-soumission-bloc-4 {
        padding: 40px 59px 40px 0;
    }

    .bd-soumission .bd-soumission-bloc-1::after,
    .bd-soumission .bd-soumission-bloc-3::after,
    .bd-soumission .bd-soumission-bloc-5::after {
        width: 77px;
        height: 90px;
        left: -36px;
        top: calc(50% - 43px);
        background-size: 100%;
    }

    .bd-soumission .bd-soumission-bloc-2::after,
    .bd-soumission .bd-soumission-bloc-4::after {
        width: 77px;
        height: 90px;
        right: -36px;
        top: calc(50% - 43px);
        background-size: 100%;
    }

    .bd-soumission {
        padding-bottom: 0;
    }

    .bd-soumission-bas {
        padding: 0;
        margin: 60px 0;
    }

    .bd-soumission-bas img {
        margin: 0 auto;
    }

    .bd-soumission-bas .fleche {
        margin: -40px auto 30px;
    }
}

.actualite {
    padding: 140px 0 0;
}

.site-home .actualite {
    padding: 192px 0 0;
}

.site-home .home-main-news video {
    width: 100%;
    max-height: 920px;
    object-fit: cover;
}

.site-home .home-main-news .vid {
    position: relative;
}

.site-home .home-main-news .vid::before {
    content: "";
    inset: 0 0 5px;
    height: 100%;
    width: 100%;
    position: absolute;
    background: rgb(0 0 0 / 1%);
    background: linear-gradient(90deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 50%);
}

.site-home .home-main-news .txt {
    position: absolute;
    padding: 50px 40px;
    margin: 40px 0;
    left: 4%;
    bottom: 12%;
}

.site-home .home-main-news .txt h1 {
    font-size: 50px;
    line-height: 60px;
}

.site-home .home-main-news .txt h3 {
    font: 400 20px/30px "Open Sans", sans-serif
}

.site-home .home-main-news .txt h1,
.site-home .home-main-news .txt h3 {
    color: #fff;
}

.site-home .home-main-news .txt p {
    color: #fff
}

.site-home .home-main-news .txt a.bt {
    font-size: 16px !important;
    padding: 15px 40px !important;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: 0 20px 20px 0 rgb(0 0 0 / 10%);
}

.site-home .home-main-news .txt a.bt2 {
    background: #fff;
    border: 2px solid #fff;
    color: #424242;
}

.site-home .home-main-news .txt a.bt:hover, .site-home .home-main-news .txt a.bt:focus, .site-home .home-main-news .txt a.bt:active {
    background: #424242;
    border: 2px solid #424242;
    color: #fff !important;
}


@media (max-width: 1439.8px) {
    .site-home .home-main-news {
        min-height: auto
    }

    .site-home .home-main-news .txt {
        padding: 40px 35px;
        left: 5%;
        bottom: 0;
    }

    .site-home .home-main-news .txt h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .site-home .home-main-news .txt p {
        font-size: 14px !important;
    }
}


@media (max-width: 767.8px) {
    .site-home .home-main-news-content.actualite {
        padding: 0 !important;
        margin: 0 0 30px !important;
        height: 100vh;
    }

    .site-home .home-main-news .txt {
        position: initial;
        text-align: left;
        padding: 0;
    }

    .site-home .home-main-news .txt h1,
    .site-home .home-main-news .txt h3 {
        color: #424242;
    }

    .site-home .home-main-news .txt a.bt {
        background: #424242;
    }


}


@media (max-width: 991.8px) {
    .site.site-page.static .actualite {
        margin-top: 0;
    }

    .actualite,
    .site-home .actualite {
        padding: 0 15px !important;
    }

    .site-home .actualite {
        margin-top: 0;
    }
}

/**********  SIDEBAR LEFT  *************/
.hamburger button {
    display: none;
}

.left-menu-bar {
    position: fixed;
    bottom: 0;
    transform-origin: top left;
    transform: translateY(100%) rotate(-90deg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vh;
    padding: 0 10px;
    height: 120px;
    left: 0;
    z-index: -1;
    background: transparent;
}

.left-menu-bar::after {
    height: 1px;
    background-color: #f1e9e0;
    content: '';
    position: absolute;
    left: 40px;
    right: 40px;
    z-index: 1;
}

.left-menu-bar .accroche {
    position: relative;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    padding: 15px;
    z-index: 10;
}

.left-menu-bar .accroche h2 {
    position: relative;
    text-align: center;
}

.left-menu-bar.accroche-vue .accroche {
    opacity: 1;
}

.left-menu-bar #fleche-haut {
    position: relative;
    left: -200px;
    transition: all 0.4s ease-in-out;
    background-color: #fff;
    z-index: 10;
    text-align: center;
    font-size: 12px;
}

.left-menu-bar #fleche-haut.fleche-vue {
    left: 0;
}

.left-menu-bar #fleche-haut a {
    padding: 10px;
    display: block;
}

/**********  SIDEBAR RIGHT  *************/

.right-menu-bar {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    right: 0;
    top: 0;
    padding: 30px 0;
    height: 100vh;
    width: 120px;
    z-index: 1010;
    background: transparent;
}

.right-menu-bar::after {
    width: 1px;
    background-color: #f1e9e0;
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    bottom: 40px;
    z-index: 1;
    height: calc(100vh - 80px);
}

.right-menu-bar::before {
    width: 65px;
    border-radius: 65px;
    background-color: #fff;
    content: '';
    position: absolute;
    top: 15px;
    right: 26px;
    bottom: 15px;
    z-index: 1;
    height: calc(100vh - 30px);
}

.right-menu-bar .rotation-wrapper-outer {
    display: table;
}

.right-menu-bar .rotation-wrapper-inner {
    padding: 50% 0;
    height: 0;
}

.right-menu-bar .rotation {
    display: block;
    transform-origin: top left;
    transform: rotate(-90deg) translate(-100%, 100%);
    margin-top: -50%;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    text-align: center;
}

.right-menu-bar .rotation.bt {
    padding: 10px 15px;
}

.right-menu-bar .right1 {
    text-align: center;
    position: relative;
    z-index: 11;
}

.right-menu-bar .right1 .group-search a {
    font-size: 26px;
    background-color: #fff;
}

.right-menu-bar .right1 a.login {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
    background: #fff;
}

.right-menu-bar .right1 a.login .icon {
    margin-right: 0;
    font-size: 25px;
}

.right-menu-bar .right1 .bt-lang {
    font-size: 12px;
    font-family: 'Cantata One', serif;
    padding: 10px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    max-width: 60px;
    margin: 0 auto;
}

.right-menu-bar .right1 .bt-lang span {
    color: #424242;
}

.right-menu-bar .right1 .bt-lang .icon-f3-b {
    font-size: 5px;
}

.right-menu-bar .right1 .dropdown-toggle::after {
    display: none;
}

.right-menu-bar .right1 .drowdown-menu-lang .nav-link {
    font-size: 14px;
    padding: 4px 20px;
}

.right-menu-bar .dropdown-menu {
    min-width: 60px;
}

.right-menu-bar .right1 .user-connect {
    font-family: 'Cantata One', serif;
    background: #f1e9e0;
    width: 90px;
    border-radius: 90px;
    padding: 25px 5px;
    margin: 10px 0 0;
}

.right-menu-bar .right1 .user-connect button {
    color: #424242;
}

.right-menu-bar .right1 .user-connect .user-language,
.right-menu-bar .right1 .user-connect .user-libelle,
.right-menu-bar .right1 .user-connect .user-account {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
}

.right-menu-bar .right1 .user-connect .user-account .txt {
    font-size: 20px;
}

.right-menu-bar .right1 .user-connect .user-libelle span {
    display: block;
}

.right-menu-bar .right1 .user-connect .user-libelle .icon {
    display: none;
}

.right-menu-bar .right1 .user-connect .user-libelle img {
    margin-bottom: 5px;
}

.right-menu-bar .right1 .user-connect .card-header-nav a {
    padding: 7px;
}

.right-menu-bar .right1 .user-connect .card-header-nav a .icon {
    font-size: 20px;
}

.right-menu-bar .right1 .user-connect .btn-espace-notification {
    font-size: 20px;
    margin: 4px 0;
    display: block;
}

.right-menu-bar .right1 .user-connect .btn-espace-notification .icon {
    margin: 0;
}

.bt-collapse {
    background: none;
    border: none;
}

.bt-collapse:hover,
.bt-collapse:focus {
    outline: none;
    color: #fe872c !important;
}

.admin .dropdown-menu2,
.right-menu-bar .right1 .dropdown-menu2 {
    background: #424242;
    text-align: left;
    padding: 0;
    border-radius: 12px;
    position: absolute;
    right: 40px;
    top: 15px;
    min-width: 0;
    display: none;
    transition: all 0.2s;
    width: 0;
    height: 0;
    list-style: none;
}

.admin .dropdown-menu2.dropdown-menu-block,
.right-menu-bar .right1 .dropdown-menu2.dropdown-menu-block {
    display: block;
    right: 78px;
    width: auto;
    height: auto;
    min-width: 200px;
    top: -22px;
    padding: 10px 20px;
}

.right-menu-bar .right1 .dropdown-menu2.dropdown-menu-block.dropdown-language {
    top: -10px;
}

.right-menu-bar .right1 .dropdown-menu2.dropdown-menu-block::after {
    border: 12px solid transparent;
    border-left-color: #424242;
    content: '';
    position: absolute;
    right: -21px;
    top: 20px;
}

.admin .dropdown-menu2 a,
.right-menu-bar .right1 .dropdown-menu2 a,
.right-menu-bar .right1 .dropdown-menu2 div {
    font-family: 'Cantata One', serif;
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
    display: block;
    color: #fff;
    padding: 6px 0;
}

.right-menu-bar .right2,
.right-menu-bar .right4 {
    position: relative;
    z-index: 10;
}

.right-menu-bar .right2 a,
.right-menu-bar .right4 a {
    font-size: 21px;
    display: block;
    position: relative;
}

.right-menu-bar .right2.btn-dhc a {
    background: #fff;
    font-size: 66px;
}

.right-menu-bar .right4 {
    padding-top: 10px;
    background: #fff;
}

@media only screen and (max-height: 720px) {
    .right-menu-bar .right4 {
        display: none;
    }
}

@media only screen and (max-height: 550px) {
    .left-menu-bar,
    .right-menu-bar .right3 {
        display: none;
    }
}

/**********  SIDEBAR center  *************/
#header-top {
    background: #fff;
    text-align: center;
    margin: 0;
    transition: 0.5s;
    animation-duration: 0.5s;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
    position: absolute;
    left: 160px;
    right: 160px;
}

#header-top nav.general {
    border-top: 1px solid #f1e9e0;
    padding: 0;
    text-align: center;
}

#header-top nav.general a.menu-button,
#header-top nav.general button.menu-button {
    font: 400 15px/20px 'Cantata One', serif;
    display: inline-block;
    position: relative;
    transition: all 0.1s ease-in-out;
    padding: 10px 20px;
    z-index: 10;
}

#header-top nav.general .bt-soumettre a.menu-button {
    background: #FFF;
}

#header-top nav.general li.bt-soumettre {
    position: relative;
}

#header-top nav.general li.bt-soumettre::after {
    background: url(/build/images/bg-soumettre-menu.af89a4d9.png);
    content: '';
    width: 101px;
    height: 81px;
    position: absolute;
    left: 32px;
    top: -19px;
}

#header-top nav.general a::after {
    content: '';
    width: 50px;
    height: 1px;
    background: transparent;
    position: absolute;
    bottom: -1px;
    left: calc(50% - 25px);
    transition: all 0.1s ease-in-out;
}

#header-top nav.general ul.pages-dropdown a::after {
    all: unset;

    /* Below for Internet Explorer, which doesn't support the all:unset */
    width: 0;
}

#header-top nav.general a.menu-button::before,
#header-top nav.general button.menu-button::before {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    position: absolute;
    left: calc(50% - 5px);
    bottom: -10px;
}

#header-top nav.general .menu-button:hover a.menu-button::before,
#header-top nav.general .menu-button:focus a.menu-button::before,
#header-top nav.general .menu-button:active a.menu-button::before,
#header-top nav.general .menu-button.active a.menu-button::before {
    border-top: 5px solid #fe872c;
}

#header-top nav.general .menu-button:hover a::after,
#header-top nav.general .menu-button:focus a::after,
#header-top nav.general .menu-button:active a::after,
#header-top nav.general .menu-button.active a::after {
    background: #fe872c;
}

#header-top nav.general .menu-button:hover a.menu-button,
#header-top nav.general .menu-button:focus a.menu-button,
#header-top nav.general .menu-button:active a.menu-button,
#header-top nav.general .menu-button.active a.menu-button,
#header-top nav.general .menu-button a.menu-button:hover .orange,
#header-top nav.general .menu-button a.menu-button:focus .orange,
#header-top nav.general .menu-button a.menu-button:active .orange,
#header-top nav.general .menu-button a.menu-button.active .orange {
    color: #fe872c;
}

#header-top nav.general .menu-button.active a.menu-button::before {
    border-top: 5px solid transparent;
}

@media (min-width: 1336px) {
    .header-main-menu.shrink #header-top nav.general li.bt-soumettre::after {
        top: -4px;
    }
}

@media (min-width: 1200px) and (max-width: 1335px) {
    #header-top nav.general li.bt-soumettre::after {
        background: url(/build/images/bg-soumettre-menu2.addb2a03.png);
        content: '';
        width: 101px;
        height: 101px;
        position: absolute;
        left: 32px;
        top: -19px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    #header-top nav.general a {
        padding: 5px 15px;
    }
}

@media (max-width: 1199.97px) {
    #header-top nav.general a .icon {
        display: none;
    }

    #header-top nav.general a {
        font: 400 14px/20px 'Cantata One',
        serif;
        padding: 5px 7px;
    }
}

@media (max-width: 1034px) {
    #header-top nav.general a {
        padding: 5px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #header-top nav.general li.bt-soumettre::after {
        background: url(/build/images/bg-soumettre-menu2.addb2a03.png);
        content: '';
        width: 101px;
        height: 101px;
        position: absolute;
        left: 4px;
        top: -19px;
    }
}

#header-top nav.general a.border-nouvelles.active::after,
#header-top nav.general a.border-nouvelles:hover::after,
#header-top nav.general a.border-nouvelles:focus::after,
#header-top nav.general a.border-nouvelles:active::after {
    background: #15a358 !important;
}

#header-top nav.general a.border-nouvelles.active,
#header-top nav.general a.border-nouvelles:hover,
#header-top nav.general a.border-nouvelles:focus,
#header-top nav.general a.border-nouvelles:active {
    color: #15a358 !important;
}

#header-top nav.general a.border-strips.active::after,
#header-top nav.general a.border-strips:hover::after,
#header-top nav.general a.border-strips:focus::after,
#header-top nav.general a.border-strips:active::after {
    background: #b70e80 !important;
}

#header-top nav.general a.border-strips.active,
#header-top nav.general a.border-strips:hover,
#header-top nav.general a.border-strips:focus,
#header-top nav.general a.border-strips:active {
    color: #b70e80 !important;
}

#header-top nav.general a.border-poetik.active::after,
#header-top nav.general a.border-poetik:hover::after,
#header-top nav.general a.border-poetik:focus::after,
#header-top nav.general a.border-poetik:active::after {
    background: #fdc300 !important;
}

#header-top nav.general a.border-poetik.active,
#header-top nav.general a.border-poetik:hover,
#header-top nav.general a.border-poetik:focus,
#header-top nav.general a.border-poetik:active {
    color: #fdc300 !important;
}

#header-top nav.general a.border-tres-tres-court.active::after,
#header-top nav.general a.border-tres-tres-court:hover::after,
#header-top nav.general a.border-tres-tres-court:focus::after,
#header-top nav.general a.border-tres-tres-court:active::after {
    background: #3fbbf0 !important;
}

#header-top nav.general a.border-tres-tres-court.active,
#header-top nav.general a.border-tres-tres-court:hover,
#header-top nav.general a.border-tres-tres-court:focus,
#header-top nav.general a.border-tres-tres-court:active {
    color: #3fbbf0 !important;
}

#header-top nav.general a.border-jeunesse.active::after,
#header-top nav.general a.border-jeunesse:hover::after,
#header-top nav.general a.border-jeunesse:focus::after,
#header-top nav.general a.border-jeunesse:active::after {
    background: #53939c !important;
}

#header-top nav.general a.border-jeunesse.active,
#header-top nav.general a.border-jeunesse:hover,
#header-top nav.general a.border-jeunesse:focus,
#header-top nav.general a.border-jeunesse:active {
    color: #53939c !important;
}

#header-top nav.general a.border-classique.active::after,
#header-top nav.general a.border-classique:hover::after,
#header-top nav.general a.border-classique:focus::after,
#header-top nav.general a.border-classique:active::after {
    background: #6fc0a1 !important;
}

#header-top nav.general a.border-classique.active,
#header-top nav.general a.border-classique:hover,
#header-top nav.general a.border-classique:focus,
#header-top nav.general a.border-classique:active {
    color: #6fc0a1 !important;
}

#header-top nav.general a.border-soumettre.active::after,
#header-top nav.general a.border-soumettre:hover::after,
#header-top nav.general a.border-soumettre:focus::after,
#header-top nav.general a.border-soumettre:active::after {
    background: #f78c26 !important;
}

#header-top nav.general a.border-soumettre.active .orange,
#header-top nav.general a.border-soumettre:hover .orange,
#header-top nav.general a.border-soumettre:focus .orange,
#header-top nav.general a.border-soumettre:active .orange {
    color: #f78c26 !important;
}

.general-main {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#header-top nav.general .menu-button:hover > .general-tab {
    display: flex;
}

.general-tab {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 3;
}

.general-tab .menu-centre {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto;
    background: #fff;
    border-bottom: 1px solid #ece2d9;
    border-top: 1px solid #ece2d9;
    box-shadow: 0 20px 20px 0 rgb(0 0 0 / 10%);
    min-height: 130px;
    padding: 30px;
    z-index: 3;
    border-radius: 0 0 10px 10px;
}

#header-top nav.general .menu-button ul {
    list-style: none;
    padding: 0 30px;
    margin: 10px 0;
}

#header-top nav.general ul.lvl-1 li {
    text-align: left;
}

#header-top nav.general .lvl-1 a {
    font: 400 15px/20px 'Open Sans', sans-serif;
    display: inline-block;
    padding: 5px 0 5px 20px;
    position: relative;
    transition: all 0.1s ease-in-out;
}

#header-top nav.general .lvl-1 a.active {
    color: #fe872c;
}

#header-top nav.general .lvl-1 a.lvl-1::before {
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    position: absolute;
    top: 11px;
    left: 5px;
}

#header-top nav.general .lvl-1 a.lvl-1-titre::before {
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    position: absolute;
    top: 11px;
    left: -14px;
}

#header-top nav.general .lvl-1 a.lvl-1-titre {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    padding: 5px 0;
}

#header-top nav.general .lvl-1 a::after {
    display: none !important;
}

@media (max-width: 1199.8px) {
    .general-tab {
        padding: 10px;
    }

    #header-top nav.general .menu-button ul {
        padding: 0 15px;
    }

    #header-top nav.general a.menu-button,
    #header-top nav.general button.menu-button {
        padding: 10px;
        z-index: 10;
    }
}

/**  header sticky  ***/
.header-main-menu.shrink #header-top::before {
    content: '';
    background: #fff;
    width: 160px;
    position: absolute;
    left: -160px;
    right: 0;
    height: 50px;
    top: 0;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
}

.header-main-menu.shrink #header-top::after {
    content: '';
    background: #fff;
    width: 160px;
    position: absolute;
    right: -160px;
    height: 50px;
    top: 0;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
}

.header-main-menu.shrink #header-top {
    position: fixed;
    top: 0;
    left: 160px;
    right: 160px;
    z-index: 1000;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    animation-name: sticky-slide-down;
    height: 50px;
}

.header-main-menu.shrink #header-top nav.general a.menu-button {
    height: 48px;
    display: flex;
    align-items: center;
}

.header-main-menu.shrink #header-top .logo-head {
    margin: 0;
}

.header-main-menu.shrink #header-top .logo-head img {
    width: 133px;
    height: 35px;
}

.header-main-menu.shrink #header-top .accroche {
    display: none;
    padding-top: 0;
}

.header-main-menu.shrink #header-top nav.general {
    border: none;
    padding: 0;
    text-align: center;
}

.header-main-menu.shrink #header-top nav.general a.menu-button::after {
    bottom: 0;
}

.header-main-menu.shrink #header-top nav.general a.menu-button::before {
    bottom: -10px;
}

@keyframes sticky-slide-down {
    0% {
        opacity: 0.7;
        transform: translateY(-300%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-head {
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 15px;
}

#header-top .accroche {
    font-size: 24px;
    margin-bottom: 20px;
}

.site-page #header-top .accroche,
.messenger #header-top .accroche {
    display: none !important;
}

.site-page .left-menu-bar .accroche,
.messenger .left-menu-bar .accroche {
    opacity: 1 !important;
}

/**********  HEADER MOBIL  *************/

.hamburger {
    padding: 16px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger:focus {
    outline: none;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #424242;
}

.hamburger-box {
    width: 20px;
    height: 13px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 20px;
    height: 1px;
    background-color: #424242;
    border-radius: 1px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 6px;
    width: 14px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 12px;
    width: 8px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
    top: 0;
}

.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
    width: 20px;
    top: 20px;
}

.header2-parent {
    position: sticky;
    width: 100%;
    min-height: 56px;
    z-index: 1040;
    top: 0;
}

#header2 {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
}

.head-mobil {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    min-height: 56px;
    top: 0;
    width: 100%;
    position: relative;
}

.head-mobil .logo-head {
    margin: 0;
}

.head-mobil .logo-head img {
    height: 35px;
}

.head-mobil .search-mobil {
    display: flex;
    padding: 15px;
    font-size: 26px;
    appearance: none;
}

.head-mobil .head-picto-dys {
    display: flex;
    flex-shrink: 0;
    width: auto;
    align-items: center;
    flex-direction: column-reverse;
}

/**********  NAV MOBIL  *************/
.nav-mobil {
    z-index: 1030;
    position: relative;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    background: #fff;
}

.nav-mobil .card-nav {
    border-top: 1px solid #f6f1eb;
}

.nav-mobil .card-nav #headingOne button {
    border-left: 3px solid #f6f1eb;
}

.nav-mobil .navbar-nav a {
    border-left: 5px solid transparent;
    border-top: 1px solid #f6f1eb !important;
    padding: 12px 15px;
    display: block;
    font: 400 14px/18px 'Cantata One', serif;
}

.nav-mobil .menu-xs-2 span.txt {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

.nav-mobil .menu-xs-2 .icon {
    margin-right: 10px;
}

.nav-mobil .card-header-nav .btn-link {
    text-decoration: none !important;
}

.nav-mobil .card-header-nav .btn-link .icon-f3-t {
    transform: rotate(180deg);
}

.card-header-nav div.menu-sub-section,
.card-header-nav button,
.card-header-nav a {
    text-transform: none;
    font: 400 14px/17px "Cantata One", serif;
    display: flex;
    align-items: center;
    color: #424242;
    border-radius: 0;
    border-left: 3px solid transparent;
    padding: 10px;
    width: 100%;
}

.card-header-nav div.menu-sub-section .icon,
.card-header-nav a .icon,
.card-header-nav button .icon {
    margin-right: 10px;
    width: 27px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
}

.card-header-nav button:focus,
.card-header-nav a:focus,
.card-header-nav button:active,
.card-header-nav a:active,
.card-header-nav button:hover,
.card-header-nav a:hover {
    color: #424242;
    text-decoration: none;
    box-shadow: none;
}

.nav-mobil .card-nav .btn .txt {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.nav-mobil .card-nav .btn .icon-f3-t {
    transform-origin: center center;
    transition: all 0.3s;
    padding: 0;
}

.nav-mobil .card-nav .btn.collapsed .icon-f3-t {
    transform: rotate(90deg);
}

.nav-mobil .card-nav .icon-f3-t {
    font-size: 6px;
}

.nav-mobil .navbar-nav + .navbar-nav > li a .icon,
.nav-mobil .navbar-nav .bt-collapse .icon {
    margin-right: 10px;
    width: 27px;
    text-align: center;
    display: inline-block;
}

.nav-mobil .navbar-nav + .navbar-nav .dropdown-toggle::after {
    display: none;
}

.nav-mobil .navbar-nav + .navbar-nav .icon-f3-b {
    font-size: 6px;
    padding-left: 10px;
}

.nav-mobil .navbar-nav + .navbar-nav .container-badge {
    display: flex;
    align-items: center;
}

.right-menu-bar .user-connect .btn-espace-notification .badge,
.nav-mobil .navbar-nav + .navbar-nav .btn-espace-notification .badge {
    margin-left: 10px;
    font-weight: 300;
}

.user-notification .btn-espace-notification .container-badge .badge {
    font-size: 65%;
    position: absolute;
    top: 0;
    right: 20px;
    background: #fe872c;
    color: #fff;
}

.nav-mobil .navbar-nav .menu-xs-search {
    padding: 15px 20px;
    background: #f6f1eb;
}

.nav-mobil .navbar-nav .menu-xs-search button {
    background: #f78c26;
    border-radius: 0;
    padding: 0 10px;
    color: #fff;
    height: 100%;
    font-size: 20px;
    line-height: 40px;
}

.nav-mobil .navbar-nav .menu-xs-search .form-control {
    display: block;
    width: 100%;
    height: 100%;
    font: 300 16px/20px 'Cantata One', serif;
    border: 1px solid #f6f1eb;
    padding: 10px 15px;
}

.nav-mobil .navbar-nav .menu-xs-search .form-control .input-group-btn {
    border: 1px solid #f6f1eb;
}

.nav-mobil .menu-arrow a,
.nav-mobil .accordion .accordion-item button.lvl-1 {
    position: relative;
    text-transform: none;
    font: 400 13px/18px 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    color: #424242;
    padding: 10px 10px 10px 30px;
    margin: 0 10px;
    background: #f6f1eb;
}

.nav-mobil .accordion {
    margin-bottom: 10px;
}

.nav-mobil .accordion .accordion-item {
    border: none;
}

.nav-mobil .accordion .accordion-item button.lvl-1 {
    border: none;
    width: calc(100% - 20px);
    text-align: left;
}

.nav-mobil .menu-arrow a.lvl-1:first-child {
    border-radius: 10px 10px 0 0;
}

.nav-mobil .menu-arrow a.lvl-1:last-child {
    border-radius: 0 0 10px 10px;
    margin-bottom: 10px;
}

.nav-mobil .accordion .accordion-item:last-child button.lvl-1.collapsed {
    border-radius: 0 0 10px 10px;
}

.nav-mobil .accordion .accordion-item:last-child a.lvl-2:last-child {
    border-radius: 0 0 10px 10px;
}

.nav-mobil .menu-arrow a + a,
.nav-mobil .accordion .accordion-item button.lvl-1 {
    border-top: 1px solid #ede4d9;
}

.nav-mobil .menu-arrow a.lvl-2 {
    border-top: none;
    font-size: 13px;
    padding: 1px 5px 15px 58px;
}

.nav-mobil .accordion .accordion-body {
    padding: 0;
}

.nav-mobil .menu-arrow a::before,
.nav-mobil .accordion .accordion-item button.lvl-1::before {
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    position: absolute;
    top: 15px;
    left: 15px;
    transform-origin: center center;
    transition: all 0.3s;
}

.nav-mobil .accordion .accordion-item button.lvl-1-bis::before {
    transform: rotate(90deg);
}

.nav-mobil .accordion .accordion-item button.lvl-1-bis.collapsed::before {
    transform: rotate(0deg);
}

.nav-mobil .menu-arrow a.lvl-2::before {
    top: 6px;
    left: 46px;
}

.nav-mobil #accordion ul#collapseTwo {
    list-style: none;
}

.nav-mobil #accordion ul#collapseTwo a {
    margin-left: 0;
}

/********************  search  *******************/

.modal.left .modal-dialog,
.modal.right .modal-dialog {
    position: absolute;
    margin: auto;
    width: 100%;
    height: 100%;
    transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
    height: 100%;
    overflow-y: auto;
}

/* Left */
.modal.left.fade .modal-dialog {
    left: 0;
    transition: opacity 0.3s linear,
    left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
    left: 0;
}

.modal.right.fade .modal-dialog {
    right: 0;
    transition: opacity 0.3s linear,
    right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
    right: 0;
}

.modal-dialog-full-width {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
}

.modal-content-full-width {
    height: auto !important;
    min-height: 100% !important;
    border-radius: 0 !important;
    background-color: #f1e9e0 !important;
}

#searchmodal .modal-body {
    padding: 40px 40px 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#searchmodal .modal-body .search {
    width: 80%;
}

#searchmodal .modal-body .search .input-group input {
    background: transparent;
    border: none;
    border-bottom: 3px solid #c7c7c7;
    border-radius: 0;
    text-align: left;
    padding-right: 80px;
    padding-left: 0;
    font: 400 40px/45px 'Cantata One', serif;
    color: #424242;
}

#searchmodal .modal-body .search .input-group .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0 transparent;
    border-bottom: 3px solid #424242;
}

#searchmodal .modal-body button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70px;
    height: 70px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #424242;
    border: none;
    z-index: 10000;
}

#searchmodal .modal-content-full-width {
    border: 15px solid #fff;
}

#searchmodal .input-group .close {
    display: block;
    position: relative;
}

#searchmodal button.close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background: transparent;
    display: block;
    align-items: center;
    justify-content: center;
    color: #424242;
    border: none;
    opacity: 1;
    z-index: 10000;
}

#searchmodal button.close span::before {
    border-style: solid;
    border-width: 0 1px 0 0;
    content: '';
    display: inline-block;
    height: 26px;
    position: relative;
    vertical-align: top;
    width: 20px;
    border-color: #424242;
    transform: rotate(-135deg);
    top: 6px;
    right: -16px;
}

#searchmodal button.close span::after {
    border-style: solid;
    border-width: 0 1px 0 0;
    content: '';
    display: inline-block;
    height: 26px;
    position: relative;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 20px;
    border-color: #424242;
    left: -16px;
    top: 6px;
}

#searchmodal .close:not(:disabled, .disabled):focus,
#searchmodal.close:not(:disabled, .disabled):hover {
    opacity: 1;
}

/*************** MAIN *********************/
body.site > .section-etendue {
    position: relative;
}

#main {
    padding: 192px 0 0;
}

@media (max-width: 1199.97px) {
    #main {
        padding: 210px 0 0;
    }
}

@media (max-width: 991.8px) {
    #main {
        margin-top: 0;
        padding: 0 20px;
    }

    #main .row {
        margin: 0 -20px;
    }
}

@media (max-width: 767.8px) {
    #searchmodal .modal-body .search {
        width: 90%;
    }
}

@media (max-width: 500px) {
    #searchmodal .modal-body .search {
        width: 100%;
    }

    #searchmodal .modal-body .search .input-group input {
        font: 400 30px/40px 'Cantata One',
        serif;
        padding-right: 50px;
    }

    #searchmodal .modal-body button {
        width: 40px;
        height: 60px;
        font-size: 34px;
    }
}

/*************** FOOTER *********************/

.site .principal footer {
    position: relative;
    z-index: 999;
    margin-top: 10px;
}

.site .principal footer .footer-links {
    margin-bottom: 20px;
    border-top: 1px solid #f1e9e0;
    border-bottom: 1px solid #f1e9e0;
}

.site .principal footer .footer-links .col-sm-6 {
    padding: 60px 20px 30px;
}

.site .principal footer .footer-links .col-sm-6:first-child {
    padding: 60px 40px 30px 0;
}

.site .principal footer .footer-links .col-sm-6:last-child {
    padding: 60px 0 30px 40px;
}

.site .principal footer h3 {
    font-weight: normal;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 30px;
    color: #fe872c;
}

.site .principal footer .footer-logo {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1e9e0;
}

.site .principal footer .footer-logo a {
    background-color: #474747;
    display: inline-block;
    padding: 15px 24px;
    position: relative;
    top: 26px;
    z-index: 10;
}

.site .principal footer .footer-links-niv1 {
    font-size: 14px;
    color: #424242;
    line-height: 22px;
}

.site .principal footer .footer-links ul {
    list-style: none inside none;
    padding: 0;
    margin: 0;
}

.site .principal footer .footer-links ul li {
    padding: 0 0 3px;
}

.site .principal footer .footer-links ul li a {
    position: relative;
    padding-left: 0;
    line-height: 18px;
    font-size: 14px;
    display: inline-block;
}

.site .principal footer .footer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.site .principal footer .footer-footer .info-legales {
    flex: 1;
}

.site .principal footer .footer-footer .info-legales nav {
    line-height: 1;
    text-align: center;
}

.site .principal footer .footer-footer .info-legales a {
    font-size: 12px;
    position: relative;
    line-height: 20px;
    display: inline-block;
}

.site .principal div.footer-social-networks {
    display: inline-block;
}

.site .principal div.footer-social-networks-en span {
    font-size: 1.3rem;
}

.site .principal div.footer-social-networks-fr span {
    font-size: 1.3rem;
    vertical-align: middle;
    padding-right: 2px;
}

.site .principal div.footer-social-networks-fr span.icon-linkedin {
    padding-left: 2px;
}

@media (max-width: 1199.8px) {
    .site .principal footer .footer-links .col-sm-6:nth-child(1) {
        border-bottom: 1px solid #f1e9e0;
    }

    .site .principal footer .footer-links .col-sm-6:nth-child(2) {
        border-bottom: 1px solid #f1e9e0;
    }

    .site .principal footer .footer-footer {
        justify-content: center;
        margin-bottom: 40px;
        flex-flow: column wrap;
        text-align: center;
    }

    .site .principal footer .footer-footer .info-legales {
        margin-bottom: 20px;
    }

    .site .principal footer .footer-footer .legals {
        text-align: center;
    }

    .site .principal footer .footer-links .col-sm-6 {
        padding: 40px 15px 30px !important;
    }
}

@media (min-width: 768px) {
    .site .principal footer .footer-footer {
        margin-right: -15px;
        margin-left: -15px;
    }

    .site .principal div.footer-social-networks-en span {
        padding-right: 2px;
    }
}

@media (max-width: 575.8px) {
    .site .principal footer .footer-links .col-sm-6 {
        border-top: 1px solid #f1e9e0;
        border-bottom: 1px solid #f1e9e0;
        padding: 50px 30px 30px;
    }

    .site .principal footer .footer-links .col-sm-6 + .col-sm-6 {
        border-top: none;
        padding: 30px;
    }
}

.site .principal footer .legals {
    font: 400 14px/18px 'Cantata One', serif;
}

/*******************************************  */

.modal-full {
    min-width: 80%;
}

.modal-full .modal-content {
    min-width: 80vh;
    min-height: 50vh;
}

.site-page.static .container-xl {
    max-width: 1000px;
}

.site article.page > h1,
.site h1.page {
    text-align: center;
    padding: 15px 0;
    margin: 0 0 55px;
    border-bottom: 1px solid #f1e9e0;
}

.edito h1 {
    padding: 30px 0;
    margin: 0 0 40px;
    border-bottom: 1px solid #f1e9e0;
}

.edito .page.page-content {
    padding-left: 25px;
    order: 2;
}

.edito .sidebar {
    padding-right: 35px;
    order: 1;
    font-family: 'Cantata One', serif;
}

.edito .row {
    margin-bottom: 40px;
}

.edito p {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 10px;
}

.edito ol,
.edito ul,
.edito td {
    font-size: 15px;
    color: #424242;
}

.edito p.gros {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.edito p.petit {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.edito h2,
.edito h2.h2-bis {
    display: block;
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
}

.edito h2 {
    padding: 10px 0;
    border-bottom: 1px solid #f1e9e0;
    margin: 0 0 25px;
    position: relative;
    color: #fe872c;
}

.edito h2.h2-bis {
    padding: 0;
    line-height: 34px;
    margin: 0 0 15px;
    border-bottom: none;
}

.edito h2.h2-bis::after {
    display: none;
}

.edito h2.black {
    color: #424242;
}

.edito h2::after {
    border: 7px solid transparent;
    border-top-color: #f1e9e0;
    content: '';
    position: absolute;
    left: 20px;
    bottom: -15px;
}

.edito h2 .btn {
    text-align: left;
}

.edito #accordion h2::after {
    display: none;
}

.edito h3 {
    font-weight: 400;
    padding: 0;
    font-size: 24px;
    line-height: 34px;
    display: block;
    color: #424242;
    margin: 0 0 10px;
}

.edito h4 {
    font-weight: 400;
    font-family: 'Cantata One', serif;
    font-size: 22px;
    line-height: 28px;
    display: block;
    color: #424242;
    margin: 0 0 10px;
}

.edito h5 {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    display: block;
    color: #424242;
    margin: 0 0 8px;
}

.edito h6 {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    display: block;
    color: #424242;
    margin: 0 0 7px;
}

/* marges autos */
.edito p + h2,
.edito ul + h2,
.edito img + h2,
.edito h3 + h2,
.edito a + h2,
.edito div + h2 {
    margin-top: 40px;
}

.edito div:first-child + h2 {
    margin-top: 0 !important;
}

.edito p + h3,
.edito ul + h3,
.edito img + h3,
.edito h2 + h3,
.edito a + h3,
.edito div + h3,
.edito p + h4,
.edito ul + h4,
.edito img + h4,
.edito h2 + h4,
.edito h3 + h4,
.edito a + h4,
.edito div + h4,
.edito p + h5,
.edito ul + h5,
.edito img + h5,
.edito h2 + h5,
.edito h3 + h5,
.edito a + h5,
.edito div + h5,
.edito p + h6,
.edito ul + h6,
.edito img + h6,
.edito h2 + h6,
.edito h3 + h6,
.edito a + h6,
.edito div + h6 {
    margin-top: 30px;
}

.edito a {
    text-decoration: none;
    color: #ff570a;
}

.edito a:hover,
.edito a:focus,
.edito a:active {
    text-decoration: underline;
    color: #ff570a;
}

.edito hr {
    position: relative;
    margin: 60px 0;
    background: transparent;
    height: 5px;
    opacity: 1; /* All modern browser support */
    -webkit-opacity: 1; /* For webkit browser */
    -moz-opacity: 1; /* For Firefox Browser */
    border: none;
}

.edito hr::before,
.edito hr::after {
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f1e9e0;
    height: 1px;
    position: absolute;
}

.edito hr::before {
    top: 0;
    bottom: auto;
}

.edito .page-content li + li {
    margin-top: 10px;
}

.edito .page-content ul.compacted li + li {
    margin-top: 0;
}

.edito .page-content ul ul {
    padding: 10px 0;
}

.edito p.intro {
    font: 300 18px/25px 'Open Sans', sans-serif;
    margin-bottom: 40px;
}

.edito b,
.edito strong {
    font-weight: 700;
}

.edito blockquote {
    max-width: 80%;
    margin: 40px auto;
    padding: 10px 0 10px 25px;
    border-left: 2px solid #f1e9e0;
    position: relative;
}

.edito blockquote.blockquote2::after,
.edito blockquote.blockquote2::before {
    display: none;
}

.edito blockquote p {
    font-style: italic;
    font-weight: 400;
    line-height: 20px;
    color: #424242;
}

.edito blockquote::before,
.edito blockquote::after {
    position: absolute;
    top: -12px;
    left: 13px;
    content: '';
    width: 50px;
    height: 38px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFsAAABICAYAAACZdImsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyVpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAzIDExNi5kZGM3YmM0LCAyMDIxLzA4LzE3LTEzOjE4OjM3ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgMjEuMiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MUQwMDUyRUI2NTlGMTFFREJGNTk4RTI3QUU2QTM2NUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MUQwMDUyRUM2NTlGMTFFREJGNTk4RTI3QUU2QTM2NUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDoxRDAwNTJFOTY1OUYxMUVEQkY1OThFMjdBRTZBMzY1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDoxRDAwNTJFQTY1OUYxMUVEQkY1OThFMjdBRTZBMzY1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PvGHwO4AAAbnSURBVHja3F1pbFVFFJ62WCiLWEoNWyJCDVFal4KoBaQqLtQlxYUEtx/EX4ISgvsOEkQTQ1KNmhDEGHABg4CCRC21KkEQAdkSFFwRhbbYarGgIJ7Pd27ycvOWe+bduXemJ/nSpm9m7pzvzjtzzsyZaV7bwR9UBFJOGED4UHU+uYDQl/BRtoL5hjtSQHiQsJnwLuHSTkRyF8IThI2EFYSLslXIMziyexPeINQk/a2NMJaww3GiSwhvE65I+lsToYqwN+qRfRa/8ZoUL2ANYZDDRA8nbPIRDSklfMA/IyN7BGE9YViazwcx4b0dJHo04TPCkDSflxHeT6db2GRfSKjP9HZZKtjOdXeIaMw3awnFWcqNIiwnFJoku4K9jaAjtpptuguCQbSK0DNg+csJC0yRPZhNw2mCOq2EhQ4QDdOwWmj2WgiLU7kvYXgda4WT3jeE6wjfWk50KetWKqizk3X7MWyyC9gUDBPU2c0z+W8O+NFw74YK6mwhXE1oTtdgLvJ0Cvcuk+xiW93sgPl4nnCZoPwOHkStJlw/kPyQoDyc/lpHiL6JcK+g/H7mo9VEuN6PsAgRaMDyfxNuyBRdWSRnpPIkMkgH4VomPPS1ERD8OuF0QZ3HCF84QHQBexHFgjozCduDFNQh+27ClYLy9Wz/XJDphDGC8u8RXgk8SoULUWfyWwzq3LfzWsJPDhCN9ZyvCUUBy//BXlhgr0o6sl8WEA2Z7QjReWyniwR1npS6rxKyb2EfMqhgMqxzxHxMIYwTurAvSh8SlGyM5vnCtmcRjjlANJYYnhHWeZxw3BTZjxIGCtrdQ3jTkVE9SxiOb1OJFUtlgmwsxMzQiCxPOEA0ViqnCutgHjppiuw5hK6CNn8lLHNkVD/HvrVkHlqp+7BsZGPneJKwzZc4YrRdsO5xjbAOfOp/TZE9VxCSe2H5QkdG9Rxh+SO56paJ7Is13vwaNiO2C1bnqoR1MCm2miL7Po32ljgyqu/XqLM458gpTbhexu6bJOjBW+/ngG99LrtvEvN4UCV2oo6bGNkzNEL5lY4EMTOFREOW50p0OrJ7EO7QaGu1A0T30fCuQtMtP80aSC9hOwhgXEianEzoJqxzlLDOFNlTNNqBDWxzgGwd3ZBG12GCbOwkj9Fo53MHiMbEWKlRb31YHfCTPVFj8vBGtu0yUbPeNlNk12q2s9sBsnV122WCbGzgXqLZju275oMJ52vW3WeC7AlKbwP4L8Jhy8mu0ax3KMzYITkjSvcIRiG//TYGIknk8CEVq4Gjr7hFV7fiJN2g1++s21esW7Mu2WNzeGHpksOxHInkcWwUv6Pi21DQ1e2UDLqdYMKh2woVYOnVWxvpTzhgWGFMoveEFSAIZGgEcwpSIKZlc4E9G10ZgdLnED4mPKtkuyO5ysgInnEeoVEl9jPzspFdEZHi6MgDhKUqxTEIQ1Ie0XPAJY7qvZaOcI/s4RF/tW8kvKoZQEklat3uJLyQiexyFb3cpuS79jaP7GSZyjY85QQJF6Ykhk5hRW2E4QgUz+gag27H2JbvSR7Z3WIiWvGzFxg0J31jIlrxc+v8ZmSgileqcli3yCb9Y9btKpW0ipqvZEntpuSRTko25Klksk+1oEMjDfn6RRbohrSJMo/sLsoOudlAmz0s0W2SR7YtB/arO+nIhoxL9rNtkEoDYXyhJbqN8si2JbUXrlLY95B0WKIbEu5LQPafFo3uAZ2U7P91A9mHLOpQ2PeP2HQ+vifIduE0l678bFNnvJHdYkl/wv7a4xqKI5bo1u55I7bkffwScnuY/LdbotsBj+wGCzqDUwv7DbTbaIFu2DBu8ci2ISlysyE31AbdNiUHNV+q+K8Q+sRQu42GvjESafBHkHEfPFpqqF2kGCyKWbdlfrJx7Kw1ps5sUIl0AFNSF6NXAjO21082jPi8mDo023D72PabH5Nuc71f/AeYCtkNPDvCzuA6zesjik5xadaQCHXD+f1bk4Mav/uFXe+jEXUGZybviuhZSAC9nfBPRM9DQDXNH0H6ZSsTcNJwZ2BDkaAeZeIl5obpEfnVuIDscDayIUu4U6YIx0ojbgzbGIMNRSLkwwZ1Q6brhFSRa6bNA2T1YKuqPeTOYOGrOubIbh6blLDXYr5XifTkDak+zLZTg8OWyAMM64wjUmuRlLPFgqgO15riUFN9SO29pRK7TTvTFQiyLQZ3BRe5VjH5Opn46EAt22ibbqyE/zuev2mrNCfPrWw2JmeLU3T+5wG2eHBsYjSPUrhS/mt/YA+/4zAVb3xdBBNuGNKH5xLcSIF9Q1ytV5IiIt3H3wi4dp8GbTysfzDRnYEcFJzxblJ2bUnlqhtSInrxyG/SdY3/E2AAXTpVuPK4om4AAAAASUVORK5CYII=) no-repeat center center;
    z-index: -1;
    background-size: cover;
}

.edito blockquote::after {
    inset: auto 0 -4px auto;
    width: 50px;
    transform: rotate(180deg);
    transform-origin: 50% 50% 0;
}

.edito blockquote footer {
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.edito blockquote footer a {
    text-decoration: none;
    position: relative;
}

.edito blockquote .actu-lien-a .icon {
    color: #ff570a;
}

.edito .bloc-beige {
    background-color: #f1e9e0;
    padding: 60px;
    margin-bottom: 40px;
}

.edito .bloc-beige h2 {
    background-color: #dbcbbd;
    padding: 10px 15px;
}

.edito .bloc-beige h2::after {
    border-top-color: #dbcbbd;
    bottom: -13px;
}

.edito .bloc-beige hr {
    border-top: 1px solid #dbcbbd;
    border-bottom: 1px solid #dbcbbd;
}

.edito .bloc-contour {
    background-color: #fff;
    margin: 7px 7px 40px;
    padding: 25px;
    border-radius: 6px;
    position: relative;
}

.edito .bloc-contour::after {
    content: '';
    position: absolute;
    inset: -7px;
    border: 1px solid #f1e9e0;
    background: transparent;
    border-radius: 10px;
    z-index: -1;
}

.edito .bloc-contour.bloc-contour2 {
    background-color: #f1e9e0;
}

.edito .bloc-contour.bloc-contour3 {
    background-color: #e1d2c3;
}

.edito .bloc-contour.bloc-contour4 {
    background-color: #424242;
    color: #fff;
}

.edito .bloc-contour.bloc-contour4 h1,
.edito .bloc-contour.bloc-contour4 h2,
.edito .bloc-contour.bloc-contour4 h3,
.edito .bloc-contour.bloc-contour4 h4,
.edito .bloc-contour.bloc-contour4 h5,
.edito .bloc-contour.bloc-contour4 h6,
.edito .bloc-contour.bloc-contour4 p,
.edito .bloc-contour.bloc-contour4 ul li {
    color: #fff !important;
}

.edito h2 + .bloc-contour {
    margin-top: 30px;
}

.edito a.bt {
    color: #fff;
    text-decoration: none;
}

.edito a.bt.bt-gris {
    background-color: #424242;
}

.edito a.bt.bt-gris:hover,
.edito a.bt.bt-gris:focus,
.edito a.bt.bt-gris:active {
    background-color: #212121;
}

.edito a.bt.bt-contour {
    color: #424242;
    text-decoration: none;
}

.edito a.bt.bt-contour:hover,
.edito a.bt.bt-contour:focus,
.edito a.bt.bt-contour:active {
    color: #fff;
    text-decoration: none;
}

.edito .bt {
    margin: 10px 10px 10px 0;
    box-shadow: 0 5px 20px 0 rgb(0 0 0 / 20%);
    padding: 10px 30px;
}

.edito .bt-icon {
    display: inline-flex;
}

.edito .mls {
    display: none;
}

.edito .glyph {
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.edito .table-striped tbody tr:nth-of-type(2n + 1) {
    background-color: #f8f4ef;
}

.edito ul {
    list-style: none;
    padding: 0 0 0 7px;
    margin: 0 0 10px;
}

.edito ul.compacted {
    padding: 0;
}

.edito ul li {
    padding: 0 0 0 18px;
    position: relative;
}

.edito ul li::before {
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    position: absolute;
    top: 8px;
    left: 4px;
}

/***********  menu de gauche  *************/

.menu.sidebar .bloc-menu-border {
    padding: 12px 0;
    border-bottom: 1px solid #f1e9e0;
}

.menu.sidebar .menu-niv1 {
    color: #424242;
    text-decoration: none;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    justify-content: space-between;
}

.menu.sidebar .menu-niv1 .bloc-menu1 {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.menu.sidebar .menu-niv1 .icon-f3-r {
    font-size: 8px;
    transform-origin: center center;
    transform: rotate(90deg);
    transition: all 0.1s ease-in-out;
}

.menu.sidebar .menu-niv1.collapsed .icon-f3-r {
    transform: rotate(0deg);
}

.menu.sidebar .menu-niv1 .bloc-icon {
    width: 45px;
    flex-shrink: 0;
    font-size: 23px;
    text-align: center;
    color: #d4bca1;
}

.menu.sidebar .menu-niv1 .bloc-icon .icon-dhc {
    font-size: 44px;
}

.menu.sidebar .menu-niv1.quote-block {
    justify-content: flex-start;
}

.menu.sidebar .menu-niv1.quote-block .bloc-icon {
    font-size: initial !important;
}

.menu.sidebar .bloc-menu-border ul {
    margin: 0 0 0 17px;
    list-style: none;
    padding: 0 0 0 30px;
    position: relative;
    font-family: 'Open Sans', sans-serif;
}

.menu.sidebar .bloc-menu-border ul::before {
    content: '';
    width: 1px;
    background-color: #d4bca1;
    position: absolute;
    left: 4px;
    top: 5px;
    bottom: 5px;
}

.menu.sidebar a.extra-link,
.menu.sidebar .bloc-menu-border ul li a {
    padding: 3px 0;
    display: block;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    line-height: 1.2;
    color: #424242;
}

.menu.sidebar .bloc-menu-border ul li a::after {
    content: '';
    height: 7px;
    width: 7px;
    background-color: #fff;
    position: absolute;
    left: -29px;
    top: 9px;
    border: 1px solid #d4bca1;
    border-radius: 50%;
}

.menu.sidebar .bloc-menu-border ul li a.active,
.menu.sidebar .bloc-menu-border ul li a:hover {
    color: #d4bca1;
}

.menu.sidebar .bloc-menu-border ul li a:hover::after {
    background-color: #d4bca1;
}

.menu.sidebar .bloc-menu-border ul li a.active {
    font-weight: bold;
}

.menu.sidebar .bloc-menu-border ul li:first-child {
    padding-top: 10px;
}

.menu.sidebar .bloc-menu-border ul li:last-child {
    padding-bottom: 10px;
}

.menu.sidebar .bloc-menu-border ul li.tout a {
    padding-top: 10px;
}

.menu.sidebar .bloc-menu-border ul ul {
    padding: 0 0 0 18px;
    margin: 0;
}

.menu.sidebar .bloc-menu-border ul ul li a::after {
    left: -17px;
}

.site article.page h2.minuscule,
.site h2.minuscule {
    font: 24px/26px 'Open Sans', sans-serif;
    display: block;
    color: #fe872c;
    background: none;
    padding: 0;
    font-weight: bold;
}

.site article.page h3.minuscule,
.site h3.minuscule {
    font: 20px/22px 'Open Sans', sans-serif;
    display: block;
    background: none;
    padding: 0;
    color: #444;
    font-weight: bold;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .site article.page .col-md-7 h2.page {
        font-size: 19px;
    }
}

@media (max-width: 1199.8px) {
    .edito p.intro {
        margin-bottom: 20px;
    }

    .edito .page.page-content {
        padding-left: 20px;
    }

    .site article.page .img-responsive,
    .site article.page .ratio4x3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 991.8px) {
    .site .espace-presse #in-press3 h4 {
        text-align: left;
        margin: 0 0 5px;
    }

    .edito .sidebar {
        border-right: none;
        padding-right: 15px;
        margin-top: -35px;
    }

    .edito .page.page-content {
        padding-left: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .edito .row > div + div {
        margin-top: 40px;
    }
}

/***** Classical *****/
.classique .edito .page-content blockquote footer {
    justify-content: unset;
    color: #6fc0a1 !important;
}

.classique .edito .page-content h3 {
    color: #6fc0a1 !important;
}

/*** Picto Text ***/
.picto-text {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.picto-bloc {
    width: 50%;
    margin-bottom: 20px;
}

.picto-bloc-titre {
    display: flex;
    align-items: center;
}

.picto-bloc-titre span.bloc-picto-img {
    flex-shrink: 0;
    width: 70px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picto-bloc-titre h3 {
    margin: 0 !important;
}

.picto-bloc-text {
    padding-left: 80px;
    padding-right: 20px;
}

@media (max-width: 1199.8px) {
    .picto-bloc {
        width: 100%;
    }
}

/***********  Page testimonial  *************/
.edito .bloc-temoin .titre {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.edito .bloc-temoin h4 {
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 22px;
    display: block;
    color: #aa9681;
    margin: 0;
    text-transform: uppercase;
}

.edito .bloc-temoin h2::after {
    display: none;
}

.edito .bloc-temoin h2 {
    font-weight: 400;
    padding: 0 10px 0 0;
    font-size: 26px;
    line-height: 30px;
    background: transparent;
    display: block;
    margin: 0;
}

.edito .bloc-temoin .temoin {
    border-radius: 15px;
    padding: 40px 60px;
    margin-right: 140px;
    margin-bottom: 40px;
}

.edito .bloc-temoin .temoin-txt {
    position: relative;
}

.edito .bloc-temoin .temoin-txt blockquote {
    max-width: 100%;
    margin: 0;
    padding: 15px 0 15px 30px;
    border-left: 1px solid rgb(0 0 0 / 30%);
    position: relative;
    z-index: 1;
}

.edito .bloc-temoin .temoin-txt blockquote::before {
    top: -27px;
}

.edito .bloc-temoin .temoin-txt blockquote::after {
    bottom: -20px;
}

.edito .bloc-temoin .temoin-txt blockquote p {
    color: #fff;
}

.edito .bloc-temoin .temoin-txt .temoin-auteur {
    position: absolute;
    width: 140px;
    right: -200px;
    top: 0;
}

.edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-img {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    left: -30px;
}

.edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-nom {
    padding: 0 0 15px 15px;
}

.edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-nom .noms {
    font: 400 18px/20px 'Cantata One', serif;
    margin: 0;
}

.edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-nom .libelle {
    font: 400 14px/20px 'Open Sans', sans-serif;
    margin: 0;
}

.edito .temoin .temoin-plus {
    margin-top: 30px;
}

.edito .temoin .temoin-plus h3 {
    font: 400 18px/22px 'Cantata One', serif;
    color: rgb(0 0 0 / 50%);
}

.edito .temoin .temoin-plus .bloc-temoignage {
    display: flex;
}

.edito .temoin .temoin-plus .bloc-temoignage .bloc-temoignage-item {
    background: rgb(0 0 0 / 20%);
    padding: 15px;
    flex: 1;
}

.edito .temoin .temoin-plus .bloc-temoignage .bloc-temoignage-item + .bloc-temoignage-item {
    margin-left: 5px;
}

.edito .temoin .temoin-plus .bloc-temoignage p {
    color: #fff;
    margin-bottom: 0;
    font-size: 14px;
    font-style: italic;
    line-height: 22px;
}

.edito .temoin .temoin-plus .bloc-visuel {
    display: flex;
}

.edito .temoin .temoin-plus .bloc-visuel .bloc-visuel-item {
    background: rgb(0 0 0 / 20%);
    padding: 15px;
    margin: 0 auto;
}

.edito .temoin .temoin-plus .bloc-visuel .bloc-visuel-item + .bloc-visuel-item {
    margin-left: 5px;
}

.edito .temoin .temoin-plus .bloc-visuel .bloc-visuel-item img {
    max-height: 230px;
}

@media (max-width: 1199.8px) {
    .edito .bloc-temoin .temoin {
        padding: 40px;
        margin-right: 0;
    }

    .edito .bloc-temoin .temoin-txt .temoin-auteur {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
    }

    .edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-info {
        padding: 10px 30px;
        display: flex;
    }

    .edito .bloc-temoin .temoin-txt .temoin-auteur p {
        color: #fff !important;
    }

    .edito .bloc-temoin .temoin-txt .temoin-auteur .temoin-img {
        width: 60px;
        height: 60px;
        border-radius: 5px;
        left: 0;
    }
}

@media (max-width: 767.8px) {
    .edito .bloc-temoin .titre {
        flex-direction: column;
        align-items: flex-start;
    }

    .edito .bloc-temoin .titre .projet-logo {
        order: 1;
    }

    .edito .bloc-temoin .titre .projet-logo img {
        max-height: 50px;
        margin-bottom: 10px;
    }

    .edito .temoin .temoin-plus .bloc-temoignage {
        flex-direction: column;
    }

    .edito .temoin .temoin-plus .bloc-temoignage .bloc-temoignage-item + .bloc-temoignage-item {
        margin: 5px 0 0;
    }
}

/***********  Page collection  *************/
.collection-she {
    margin-bottom: 90px;
    position: relative;
}

.collection-she::before {
    position: absolute;
    content: '';
    width: 610px;
    height: 414px;
    top: -116px;
    left: -445px;
    z-index: 20;
    background: no-repeat url(/build/images/pres-top.a113a0ee.png) left top;
}

.collection-she::after {
    position: absolute;
    content: '';
    width: 172px;
    height: 143px;
    bottom: -143px;
    left: calc(50% - 86px);
    z-index: 2;
    background: no-repeat url(/build/images/pres-bottom.634edf24.png) left top;
}

.collection-she .accordion {
    --bs-accordion-color: #424242;
    --bs-accordion-bg: #f1e9e0;
    --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 10px;
    --bs-accordion-inner-border-radius: 10px;
    --bs-accordion-btn-padding-x: 50px;
    --bs-accordion-btn-padding-y: 50px;
    --bs-accordion-btn-color: #424242;
    --bs-accordion-btn-bg: #f1e9e0;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-body-padding-x: 50px;
    --bs-accordion-body-padding-y: 50px;
    --bs-accordion-active-color: #424242;
    --bs-accordion-active-bg: #f1e9e0;
}

.collection-she .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-icon);
}

.collection-she .accordion-button:hover,
.collection-she .accordion-button:active,
.collection-she .accordion-button:focus {
    color: #fe872c;
}

.collection-she .accordion .titre {
    display: flex;
    align-items: center;
}

.collection-she .accordion .titre .picto {
    width: 78px;
    text-align: center;
    margin-right: 24px;
}

.collection-she .accordion .titre h2 {
    margin: 0;
}

.collection-she .accordion .accordion-body {
    padding: 20px 50px 30px;
}

.collection-she .accordion .accord-content {
    display: flex;
    flex-wrap: wrap;
}

.collection-she .accordion .accord-content .item {
    flex: 1;
    padding: 30px 30px 10px 7px;
}

.collection-she .accordion .accord-content .item-content {
    border-left: 2px solid #fe872c;
    padding: 0 0 0 18px;
}

.collection-she .accordion .accord-content .item-content .oeuvre a {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-style: italic;
    text-decoration: none;
    color: #424242;
}

.collection-she .accordion .accord-content .item-content .oeuvre a .rond {
    width: 20px;
    height: 20px;
    display: block;
    text-align: center;
    line-height: 20px;
    margin-right: 8px;
    font-size: 6px;
    color: #fff;
    background: #fe872c;
    border-radius: 50%;
}

.collection-she .accordion .accordion-item {
    position: relative;
}

.collection-she .accordion .accordion-item + .accordion-item::before {
    content: '';
    height: 1px;
    left: 50px;
    right: 50px;
    top: 18px;
    background: #d4cdc5;
    position: absolute;
    z-index: 10;
}

.collection-she .accordion .accordion-button {
    padding-bottom: 0;
}

.collection-she .accordion .accordion-item:first-child button {
    padding-top: 38px;
}

.collection-she .accordion .accordion-item:last-child {
    padding-bottom: 18px;
}

.collection-bloc-lien {
    display: flex;
}

.collection-bloc-lien .item {
    padding: 15px;
    flex: 1;
    display: flex;
    align-items: stretch;
}

.collection-bloc-lien .item .bloc {
    border-radius: 10px;
    border: 1px solid #f1e9e0;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: #fff;
}

.collection-bloc-lien .item .bloc-img {
    margin-top: -60px;
}

@media (max-width: 1199.8px) {
    .collection-she .accordion .accord-content {
        flex-direction: column;
    }

    .collection-she {
        margin-top: 75px;
    }
}

@media (max-width: 575.8px) {
    .collection-she .accordion .accordion-body {
        padding: 10px 25px 20px;
    }

    .collection-she .accordion .accordion-item:first-child button {
        padding: 28px 25px 10px;
    }

    .collection-she .accordion .accordion-item button {
        padding: 38px 25px 10px;
    }

    .collection-she .accordion .accordion-item + .accordion-item::before {
        left: 25px;
        right: 25px;
        top: 10px;
    }

    .collection-she::before {
        left: -474px;
    }

    .collection-she .accordion .titre span {
        font-size: 24px;
    }

    .collection-she .accordion .titre .picto {
        margin-right: 15px;
    }

    .collection-she .accordion .titre .picto img {
        height: 50px;
    }

    .collection-she {
        margin-bottom: 150px;
    }
}

/***********  Page Auteur  *************/

.search .search-bloc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.search .search-bloc p {
    font: 400 20px/20px "Cantata One", serif;
    margin: 0 20px 0 0;
}

.search .search-bloc .input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.search .search-bloc .input-group input {
    background: transparent;
    border: none;
    border-bottom: 1px solid #c7c7c7;
    border-radius: 0;
    color: #424242;
    font: 400 20px/20px "Cantata One", serif;
    padding-left: 0;
    padding-right: 40px;
    text-align: left;
    min-width: 480px;
}

.search .search-bloc button {
    align-items: center;
    background: transparent;
    border: none;
    bottom: 0;
    color: #424242;
    display: flex;
    font-size: 30px;
    height: 40px;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 40px;
    z-index: 10000;
}

.search .search-bloc .input-group .form-control:focus {
    border-bottom: 1px solid #424242;
    box-shadow: 0 0 0 0 transparent;
    outline: 0;
}

.bloc-auteur {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.bloc-auteur .auteur-item {
    display: flex;
    flex: 1;
    margin: 0 15px 20px;
    justify-content: center;
    max-width: 150px;
}

.bloc-auteur .auteur-item a {
    text-align: center;
    font: 400 16px/20px "Cantata One", serif;
    background: #f1e9e0;
    border-radius: 5px;
    padding: 20px;
}

.bloc-auteur .auteur-item .bloc-img {
    text-align: center;
    width: 120px;
    margin: 0 auto 12px;
    overflow: hidden;
    border-radius: 5px;
}

.bloc-auteur .auteur-item .bloc-img img {
    width: 120px;
}

/***********  Page Nos DHC  *************/

.row-dispenser .bloc-prod {
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}

.row-dispenser .bloc-prod .bloc-img {
    padding: 0 50px 25px;
}

.row-dispenser .bloc-prod .bloc-txt {
    height: 150px;
}

.picto-atout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.picto-atout .item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #ece2d9;
    flex: 1;
    margin: 7px;
    position: relative;
    padding: 30px 20px;
}

.picto-atout .item .bloc-txt {
    text-align: center;
    padding: 20px 0 0;
}

.picto-atout .item .bloc-icon {
    text-align: center;
}

.picto-atout .item .bloc-txt p {
    font-weight: 700;
}

.picto-atout .item .survol {
    display: none;
    position: absolute;
    left: -2px;
    top: 100%;
    right: -2px;
    border-radius: 0 0 10px 10px;
    background: #fff;
    border: 2px solid #ece2d9;
    border-top: none;
    z-index: 10;
    padding: 0 20px 20px;
    margin-top: -10px;
}

.picto-atout .item .survol p:first-child {
    padding-top: 15px;
    border-top: 1px solid #ece2d9;
}

.picto-atout .item:hover .survol {
    display: block;
}

.comparatif-dhc .table td,
.comparatif-dhc .table th {
    border-color: #ece2d9 !important;
    width: 25%;
}

.comparatif-dhc .table thead th {
    font: 400 20px/20px "Cantata One", serif;
    text-align: center;
    padding-bottom: 20px;
    border-top: none;
}

.comparatif-dhc .table tbody td {
    text-align: center;
    padding: 15px;
    vertical-align: middle;
    position: relative;
}

.comparatif-dhc .table tbody th {
    font: 400 16px/24px 'Open Sans', sans-serif;
    text-align: left;
    vertical-align: middle;
}

.comparatif-dhc .mention {
    font-style: italic;
}

@media (max-width: 1400px) {
    .picto-atout .item {
        margin: 4px;
        padding: 20px 10px;
    }

    .picto-atout .item .survol {
        padding: 0 12px 12px;
    }
}

@media (max-width: 1199.8px) {
    .picto-atout .item {
        min-width: 32%;
    }
}

@media (max-width: 991.8px) {
    .picto-atout .item {
        min-width: 48%;
        justify-content: flex-start;
    }

    .picto-atout .item .survol {
        padding: 0 10px 10px;
        display: block;
        position: relative;
        top: 0;
        margin: 10px 0 0;
        left: 0;
        right: 0;
        border: none;
    }

    .search .search-bloc .input-group input {
        min-width: auto;
    }

    .comparatif-dhc .table th,
    .comparatif-dhc .table td {
        font-size: 12px !important;
        line-height: 18px !important;
        padding: 5px 0 !important;
    }

    .comparatif-dhc .table td img {
        width: 20px !important;
    }
}

/*********** Page PRODUITS  *************/

.produit .bloc-titre {
    padding: 40px 0;
}

.produit .bloc-titre h1 {
    margin-bottom: 15px;
}

.produit .bloc-titre h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 34px;
    margin: 0;
}

.produit .bloc-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    z-index: 1;
    margin-bottom: 70px;
}

.produit .bloc-youtube {
    max-width: 1000px;
    max-height: 560px;
    background: #fff;
    width: 100%;
    height: 100%;
    box-shadow: 0 10px 60px 0 rgb(0 0 0 / 30%);
}

.produit .bloc-img-intro {
    text-align: center;
    max-width: 1000px;
    max-height: 560px;
    box-shadow: 0 10px 60px 0 rgb(0 0 0 / 30%);
    margin: 0 auto 20px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.produit .bloc-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 70px;
}

.produit .bloc-presentation .bloc-txt {
    max-width: 490px;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.produit .bloc-presentation .bloc-img {
    margin: 20px 0 0;
}

.produit .bloc-presentation .bloc-txt p + p {
    margin-top: 20px;
}

.produit .bloc-atout {
    background: url(/build/images/bg-dhc2.2f87c8aa.jpg) no-repeat center center #f1e9e0;
    background-size: cover;
    align-items: center;
    padding: 20px 50px;
    border-radius: 15px;
}

.produit.produit-cub .bloc-atout {
    background: url(/build/images/bg-cub.5f5fd368.jpg) no-repeat center center #f1e9e0;
}

.produit.produit-dhcn .bloc-atout {
    background: url(/build/images/bg-dhcn2.24eeaf79.jpg) no-repeat center center #f1e9e0;
}

.produit .bloc-atout .bloc-atout-content {
    border-radius: 20px;
    background: rgb(255 255 255 / 90%);
    padding: 40px 50px;
    height: 100%;
    margin: 15px 0;
}

.produit .bloc-atout h3 {
    text-align: center;
}

.produit .bloc-atout .center {
    text-align: center;
}

.produit .bloc-autre {
    background: #f1e9e0;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 15px;
    margin-top: 15px;
}

.produit .bloc-autre .autre-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.produit .bloc-autre .autre-content img {
    width: 75px;
}

.produit .bloc-autre .autre-content p {
    margin: 10px 25px;
}

.produit-section {
    margin-bottom: 70px !important;
}

.aide-ref-row {
    display: flex;
    justify-content: center;
    padding: 30px 0 70px;
    flex-wrap: wrap;
}

.bloc-aide-ref {
    text-align: center;
}

.bloc-aide-ref .bloc-item {
    display: flex;
    margin: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.bloc-aide-ref .bloc-item .item {
    flex: 1;
    margin-bottom: 15px;
}

.bloc-aide-ref .bloc-item .item + .item {
    margin-left: 15px;
}

.bloc-aide-ref .bloc-item .item .bloc-img {
    display: flex;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid #ece2d9;
    margin-bottom: 10px;
    padding: 15px 10px;
}

.bloc-aide-ref.bloc-aide .item {
    max-width: 190px;
}

.bloc-aide-ref .bloc-item .item .icon-f3-r {
    font-size: 8px;
    position: relative;
    top: -1px;
    margin-right: 5px;
    text-decoration: none !important;
}

.bloc-aide-ref .bloc-item .item a:hover span + span,
.bloc-aide-ref .bloc-item .item a:focus span + span,
.bloc-aide-ref .bloc-item .item a:active span + span {
    color: #fe872c;
}

.bloc-aide-ref .bloc-item .item a:hover p,
.bloc-aide-ref .bloc-item .item a:focus p,
.bloc-aide-ref .bloc-item .item a:active p,
.bloc-aide-ref .bloc-item .item a:hover,
.bloc-aide-ref .bloc-item .item a:focus,
.bloc-aide-ref .bloc-item .item a:active {
    color: #fe872c !important;
    text-decoration: none;
}

.bloc-aide-ref h3 {
    text-align: center;
}

.bloc-gallery {
    display: flex;
    max-height: 397px;
    justify-content: center;
}

.bloc-gallery img {
    margin: 1px;
    height: 100%;
}

.bloc-gallery .bloc-img {
    padding: 0 1px;
}

.bloc-atout-content .bloc-prix {
    display: flex;
    align-items: stretch;
    padding-top: 10px;
}

.bloc-atout-content .bloc-prix .bloc {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bloc-atout-content .bloc-prix .bloc .tarif {
    border-radius: 10px 10px 0 0;
    border: 1px solid #f1e9e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 400 30px/30px 'Cantata One', serif;
    padding: 18px 10px 10px;
    position: relative;
}

.bloc-atout-content .bloc-prix .bloc .tarif .sup {
    position: relative;
    font-size: 17px;
    top: -10px;
}

.bloc-atout-content .bloc-prix .bloc .tarif .sous {
    font-size: 17px;
}

.bloc-atout-content .bloc-prix .bloc .arg {
    border-radius: 0 0 10px 10px;
    background: #f1e9e0;
    border: 1px solid #f1e9e0;
    padding: 10px;
    flex: 1;
    display: flex;
    align-items: center;
}

.bloc-atout-content .bloc-prix .bloc .arg ul li::before {
    content: '\f00c';
    border: none;
    font: normal 10px/1 FontAwesome;
    color: #fe872c;
    position: absolute;
    left: 0;
    top: 8px;
}

.bloc-atout-content .bloc-prix .plus {
    display: flex;
    align-items: center;
    padding: 10px;
    font-size: 40px;
    font-weight: 700;
}

.produit-dhcn .bloc-atout .bloc-atout-content {
    padding: 40px 50px;
    margin: 15px 0;
}

.produit-dhcn .bloc-atout-content h4 {
    text-align: center;
    margin: 20px 0 10px;
    font-size: 20px;
}

.produit-dhcn .gallery {
    text-align: center;
}

@media (max-width: 991.8px) {
    .produit .bloc-titre {
        padding: 30px 0;
    }

    .produit .bloc-atout .bloc-atout-content {
        padding: 30px;
    }

    .produit .bloc-atout .col-12 + .col-12 {
        margin-top: 20px;
    }

    .produit .bloc-video {
        margin-bottom: 50px;
    }

    .produit .bloc-presentation {
        margin-bottom: 50px;
        flex-direction: column;
    }

    .produit .bloc-presentation .bloc-txt {
        max-width: 100%;
        padding: 0 0 30px;
    }

    .produit-section {
        margin-bottom: 40px !important;
    }

    .bloc-aide-ref.bloc-aide {
        margin-bottom: 40px;
    }

    .aide-ref-row {
        padding: 30px 0 40px;
    }
}

@media (max-width: 575.8px) {
    .bloc-atout-content .bloc-prix {
        align-items: center;
        flex-direction: column;
    }

    .bloc-atout-content .bloc-prix .plus {
        padding: 0 10px;
    }

    .produit .bloc-atout {
        padding: 20px;
    }
}

/*********** Page equipe  *************/

.equipe-bloc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.equipe-item {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 15px;
    justify-content: center;
    align-items: center;
}

.equipe-item .bloc-img {
    position: relative;
    z-index: 1;
    text-align: center;
}

.equipe-item .bloc-txt {
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 15%);
    text-align: center;
    padding: 15px 30px;
    background: #fff;
    margin-top: -2px;
    position: relative;
    z-index: 2;
    min-width: 220px;
}

.equipe-item .bloc-txt p {
    margin: 0;
}

.equipe-item .bloc-txt .titre {
    font: 400 22px/26px "Cantata One", serif;
}

.legende {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.legende .rond {
    width: 25px;
    height: 25px;
    display: inline-block;
    border: 3px solid red;
    margin-right: 5px;
    border-radius: 50px;
    flex-shrink: 0;
}

.legende .bloc-legende {
    margin: 7px 15px;
    display: flex;
    align-items: center;
}

.legende .bloc-editorial .rond {
    border-color: #f78c26;
}

.legende .bloc-adm .rond {
    border-color: #40c0f0;
}

.legende .bloc-ope .rond {
    border-color: #c3d21b;
}

.legende .bloc-dev .rond {
    border-color: #b70e80;
}

.legende .bloc-com .rond {
    border-color: #fdc300;
}

.legende .bloc-mark .rond {
    border-color: #e84256;
}

.legende .bloc-production .rond {
    border-color: #18a73b;
}

/*********** Page projet edito  *************/

.page-p-edito .edito-site {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 100px;
}

.page-p-edito .edito-site .bloc-img-contain {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.page-p-edito .edito-site .bloc-txt-contain {
    padding: 30px;
}

.page-p-edito .edito-site .bloc-img-contain .item1 {
    min-width: 230px;
    flex: 0 230px;
    background: #f1e9e0;
    display: flex;
    flex-direction: column;
    padding: 60px 30px 40px;
    border-radius: 10px;
    align-items: center;
}

.page-p-edito .edito-site .bloc-img-contain .plus {
    font-size: 50px;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: center;
    align-items: center;
}

.page-p-edito .edito-site .item1 .bloc-img {
    margin-bottom: 30px;
}

.page-p-edito .bloc-arg {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.page-p-edito .bloc-arg.bloc-arg-g .bloc-txt {
    order: 2;
}

.page-p-edito .bloc-arg .bloc-txt {
    padding: 0 0 0 70px;
    position: relative;
}

.page-p-edito .bloc-arg .bloc-img {
    padding-left: 70px;
    flex-shrink: 0;
}

.page-p-edito .bloc-arg.bloc-arg-g .bloc-img {
    padding: 0 70px 0 0;
}

.page-p-edito .bloc-arg .bloc-txt::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    height: 100%;
    background: #f1e9e0;
    width: 3px;
}

.page-p-edito .bloc-arg .bloc-txt .titre {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: -70px;
    padding-bottom: 20px;
}

.page-p-edito .bloc-arg .bloc-txt h2 {
    color: #424242;
    border: none;
    margin: 0;
    padding: 0;
}

.page-p-edito .bloc-arg .bloc-txt h2::after {
    display: none;
}

.page-p-edito .bloc-arg .bloc-txt .titre .chiffre {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #fe872c;
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 24px;
    font: 400 30px/30px 'Cantata One', serif;
}

.page-p-edito .bloc-arg .bloc-txt li {
    margin-bottom: 10px;
}

.page-p-edito .impliquer {
    background: #f1e9e0;
    padding: 40px;
    margin-bottom: 100px;
    border-radius: 10px;
}

.page-p-edito .impliquer h2 {
    margin-bottom: 10px;
    border: none;
}

.page-p-edito .impliquer h2::after {
    display: none;
}

.page-p-edito .impliquer ul {
    padding: 20px 20px 20px 0;
}

.page-p-edito .impliquer ul li {
    border-left: 2px solid #f38901;
    padding: 0 0 0 20px;
    margin-bottom: 15px;
}

.page-p-edito .impliquer ul li::before {
    display: none;
}

.page-p-edito .impliquer .bloc-impliquer-ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-p-edito .gros-plan {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.page-p-edito .gros-plan h2 {
    margin-bottom: 10px;
    border: none;
}

.page-p-edito .gros-plan h2::after {
    display: none;
}

.page-p-edito .gros-plan .bloc-txt {
    padding-right: 40px;
}

.page-p-edito .contact {
    text-align: center;
}

.page-p-edito .contact p {
    font: 300 20px/30px 'Open Sans', sans-serif;
    margin-bottom: 0;
}

@media (max-width: 1199.97px) {
    .page-p-edito .edito-site {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .page-p-edito .edito-site .bloc-txt-contain {
        padding: 30px 0;
    }

    .page-p-edito .bloc-arg {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .page-p-edito .bloc-arg .bloc-txt {
        margin-bottom: 20px;
    }

    .page-p-edito .bloc-arg .bloc-img {
        padding: 10px 50px;
    }

    .page-p-edito .bloc-arg.bloc-arg-g .bloc-txt {
        order: 1;
    }

    .page-p-edito .bloc-arg.bloc-arg-g .bloc-img {
        order: 2;
        padding: 10px 50px;
    }

    .page-p-edito .impliquer {
        margin-bottom: 40px;
    }
}

@media (max-width: 991.97px) {
    .page-p-edito .impliquer ul {
        padding: 20px 0;
    }

    .page-p-edito .impliquer .bloc-impliquer-ul {
        flex-direction: column;
    }

    .page-p-edito .gros-plan {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .page-p-edito .edito-site .bloc-img-contain {
        flex-direction: column;
    }

    .page-p-edito .bloc-arg .bloc-txt {
        padding: 0 0 0 50px;
    }

    .page-p-edito .bloc-arg .bloc-txt .titre {
        margin-left: -49px;
    }
}


/********************** Page Écriture & Création *****************/

.page-content .article-ecriture {
    margin-bottom: 60px;
}

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

.page-content .monde .titre .date {
    font-style: italic;
    color: #b1b1b1;
    padding-right: 10px;
}

.page-content .monde .titre a {
    font-weight: 700;
    text-decoration: underline;
}

.page-content .monde .titre p {
    margin-bottom: 5px;
}

.page-content .monde .titre p + p {
    margin: 0;
}

.page-content .monde .no-italic {
    font-style: normal;
}

@media (max-width: 991.97px) {
    .page-content .article-ecriture {
        margin-bottom: 30px;
    }

    .page-content .article-ecriture img + h2 {
        margin-top: 20px;
    }
}

@media (max-width: 767.8px) {
    .page-content .monde .titre {
        display: block;
    }

    .page-content .article-ecriture-dys .col-sm-4 {
        order: 2;
    }

    .page-p-edito .lycee .bloc-arg {
        align-items: flex-start;
    }
}

/* ---- page podcast ---- */
.podcast-titre {
    margin: 0 0 30px;
    padding: 40px 25px;
    background: url(/build/images/podcast-illus.9cffa8dc.png) no-repeat right center #ff772c;
}

.podcast-titre h1 {
    color: #fff;
    display: inline-block;
    float: none;
    vertical-align: middle;
    font-size: 50px;
    line-height: 45px;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
}

.podcast-titre .content {
    color: #fff;
}

.podcast article {
    background-color: #eaeaea;
    margin-bottom: 30px;
    position: relative;
}

.podcast article .fond-gris {
    position: absolute;
    background-color: #262626;
    height: 100%;
}

.podcast nav.triangle a {
    text-transform: uppercase;
}

.podcast article > div {
    padding: 0;
}

.podcast-orange {
    background-color: #262626;
    min-height: 65px;
    padding: 5px 20px;
    text-align: center;
}

.podcast-orange img {
    vertical-align: middle;
    margin: 10px auto;
}

.podcast article .podcast-content {
    padding: 20px;
}

.podcast article .post-cell {
    border-left: none;
    margin-bottom: 0;
}

.podcast article .podcast-lu {
    padding-top: 10px;
    margin: 0 20px;
    border-top: 1px solid;
}

.podcast article .podcast-lu img {
    display: inline-block;
    float: none;
    vertical-align: middle;
    margin-right: 10px;
}

.podcast article .podcast-lu p {
    display: inline-block;
    float: none;
    vertical-align: middle;
}

.podcast article .podcast-lu p a,
.podcast article .podcast-lu p span {
    font-weight: bold;
    color: #757676;
}

.podcast aside.category li {
    background-position: 20px -103px;
}

.podcast aside.category h4 a {
    color: #404141;
}

.podcast aside.category h4 a.active,
.podcast aside.category ul li a.active {
    color: orange;
}

@media (max-width: 991px) {
    .podcast-titre {
        background-image: none;
    }

    .podcast-titre h1 {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .podcast article .podcast-content {
        padding: 10px;
    }

    .podcast article .post-cell {
        padding: 10px 10px 0;
    }

    .podcast article .podcast-lu {
        margin: 0 10px;
    }

    .podcast article .podcast-content header > div.pull-right {
        float: left !important;
        clear: both;
    }
}

.cell {
    overflow: hidden;
    margin-bottom: 30px;
}

.translation-link {
    list-style: none;
    padding: 0 0 0 20px;
}

.translation-link li {
    position: relative;
}

.translation-link a::before {
    content: '';
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    position: absolute;
    top: 7px;
    left: -15px;
}

.page-search .cell {
    margin-bottom: 20px;
}

.cell .cat-post-titre.vertical-text {
    top: 7px;
    left: calc(-100% + 25px);
    font-size: initial;
}

.post-cell {
    position: relative;
    padding-bottom: 20px;
}

.post-cell.post-titre {
    padding-left: 35px;
    padding-right: 7px;
    min-height: 125px;
}

.cell .cat-post-titre.vertical-text::after {
    height: 1px;
    background-color: #f1e9e0;
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 14px;
    z-index: -1;
}

.cell .cat-post-titre.vertical-text span {
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
}

.content-tag {
    margin-bottom: 5px;
}

.content-tag .label {
    padding: 0 7px 0 0;
    display: inline-block;
    margin-bottom: 1px;
    color: #929292;
    font-size: 12px;
    border-right: 1px solid #f1e9e0;
}

.content-tag .label a {
    color: #929292;
    font-size: 12px;
}

.content-tag .label + .label {
    padding: 0 7px;
}

.content-tag .label:last-child {
    border-right: none;
}

.post-cell h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 5px;
}

.post-cell .auteur {
    margin-bottom: 10px;
    display: block;
    font-family: 'Cantata One', serif;
}

.post-cell.nouvelles a:hover,
.post-cell.nouvelles a:active,
.post-cell.nouvelles a:focus {
    color: #15a358 !important;
}

.post-cell.strips a:hover,
.post-cell.strips a:active,
.post-cell.strips a:focus {
    color: #b70e80 !important;
}

.post-cell.poetik a:hover,
.post-cell.poetik a:active,
.post-cell.poetik a:focus {
    color: #fdc300 !important;
}

.post-cell.tres-tres-court a:hover,
.post-cell.tres-tres-court a:active,
.post-cell.tres-tres-court a:focus {
    color: #3fbbf0 !important;
}

.post-cell.classique a:hover,
.post-cell.classique a:active,
.post-cell.classique a:focus {
    color: #6fc0a1 !important;
}

.post-cell.jeunesse a:hover,
.post-cell.jeunesse a:active,
.post-cell.jeunesse a:focus {
    color: #53939c !important;
}

.post-cell a.bt:hover,
.post-cell.jeunesse a.bt:hover {
    color: #fff !important;
}

/****************************  OEUVRE  ****************************/
.single {
    margin-bottom: 40px;
}

.single .titre-single {
    padding: 30px 0 0;
}

.single .titre-single h1 {
    font-size: 40px;
    margin-bottom: 0;
}

.single .oeuvre-fiche {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
}

.single .oeuvre-fiche-box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-align: left;
    line-height: 15px;
    color: #929292;
    flex-wrap: nowrap;
    margin-top: 12px;
}

.single .oeuvre-fiche-box + .oeuvre-fiche-box {
    margin-left: 35px;
}

.single .oeuvre-fiche-box .label-img {
    font-size: 30px;
    margin-right: 7px;
}

.single .oeuvre-fiche-box .label-img .icon-modif {
    font-size: 28px;
}

.single .oeuvre-fiche-txt b {
    font-family: 'Cantata One', serif;
    font-size: 16px;
}

.single .ligne-triangle {
    position: relative;
    border-bottom: 1px solid #f1e9e0;
    height: 1px;
    margin: 20px 20px 40px;
}

.single .ligne-triangle::before,
.single .ligne-triangle::after {
    border: 17px solid transparent;
    content: '';
    position: absolute;
    left: calc(50% - 17px);
}

.single .ligne-triangle::after {
    border-top-color: #f1e9e0;
    bottom: -34px;
}

.single .ligne-triangle::before {
    border-top-color: #fff;
    bottom: -32px;
    z-index: 1;
}

.single .oeuvre-main {
    padding: 0 50px;
}

.single.oeuvre-poetik .oeuvre-main {
    padding-left: 10%;
}

.single .oeuvre-main .content {
    word-break: normal;
}

.single .oeuvre-main .content,
.single .oeuvre-main .content > p {
    font-size: 16px;
    line-height: 30px;
}

.single .oeuvre-main .content > p {
    margin-top: 0;
    margin-bottom: 30px;
}

.tag-content {
    display: inline-block;
    font: 13px/13px 'Open sans', sans-serif;
    text-transform: none;
    margin: 0 3px 3px 0;
    background: url(/build/images/icon-tag-2.c8eaecfb.png) no-repeat 5px 6px #53939c;
    border-radius: 12px;
    color: #fff;
    padding: 5px 10px 5px 26px;
}

.content-column .label-content-container {
    border: 1px solid #f1e9e0;
    padding: 22px 10px 10px;
    position: relative;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
}

.content-column .label-content-container span.label-content {
    margin-bottom: 5px;
}

@media (max-width: 1199.97px) {
    .content-column .label-content-container {
        justify-content: center;
    }
}

.content-column {
    padding: 0;
}

.content-column .oeuvre-author img {
    transition: all 0.4s;
}

.single .oeuvre-author {
    background-color: #f8f4ef;
    border-radius: 4px;
    padding: 25px 20px;
    margin-bottom: 15px;
}

.single .oeuvre-author .titre h2 {
    font-size: 18px;
    line-height: 20px;
    margin: 15px 0 10px;
    justify-content: center;
}

.single .oeuvre-author p {
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    word-break: normal;
    overflow-wrap: anywhere;
}

.single .oeuvre-author .bt {
    font-size: 13px;
    margin-top: 15px;
}

.single .cat-oeuvre .bloc-txt {
    background-color: #fff;
    border: 1px solid #f8f4ef;
    border-radius: 4px;
    padding: 25px 15px 25px 20px;
    position: relative;
}

.single .cat-oeuvre .bloc-txt h4 {
    text-align: center;
    font: 16px/18px 'Cantata One', serif;
    position: relative;
}

.single .cat-oeuvre .bloc-txt h4::after {
    content: '';
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-top: 5px solid #ece2d9;
    position: absolute;
    left: calc(50% - 5px);
    bottom: -18px;
}

.single .cat-oeuvre .bloc-txt ul {
    padding-left: 15px;
}

.single .cat-oeuvre .bloc-txt ul li {
    position: relative;
    font: 0.7rem 'Cantata One', serif;
}

.single .cat-oeuvre .bloc-txt span {
    position: relative;
    font: 0.8rem 'Cantata One', serif;
}

.single .cat-oeuvre .bloc-txt ul li::before,
.single .cat-oeuvre .bloc-txt span::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    border: 4px solid transparent;
    border-left: 5px solid #fe872c;
    top: 3px;
    left: -12px;
}

.single .cat-oeuvre .bloc-txt span::before {
    border: 5px solid transparent;
    border-left: 6px solid #fe872c;
    top: 3.5px;
    left: -12px;
}

.single .cat-oeuvre .bloc-img {
    position: relative;
}

.single .cat-oeuvre .bloc-img img {
    position: absolute;
    left: calc(50% - 80px);
    top: 0;
    margin: auto;
    max-width: 180px;
}

.single .cat-oeuvre .bloc-img:hover img {
    transform: none;
}

.single p.small.translator {
    color: #424242;
}

.single .nom-prix {
    margin-bottom: 15px;
}

.single .nom-prix a {
    overflow: hidden;
    display: inline-block;
    border-radius: 4px;
}

.single .also {
    background-color: #f8f4ef;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.single .also ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single .also li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.single .also li i {
    font-size: 10px;
    margin-right: 5px;
    color: #929292;
}

.single .also .titre {
    text-transform: uppercase;
}

.single .footer-frame {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    font-size: 14px;
}

.single .footer-frame .network {
    display: inline-flex;
    font-size: 13px;
    align-items: flex-start;
    padding-top: 7px;
}

.single .footer-frame .facebook iframe {
    width: 200px !important;
}

.single .footer-frame .abus-signal {
    color: #f78c26;
}

.single .footer-frame .abus-signal span {
    text-decoration: underline;
    margin-left: 10px;
}

.single .recom.comment {
    background: #f8f4ef;
    border-radius: 4px;
    padding: 25px 20px;
    margin-bottom: 15px;
    text-align: center;
}

.single .recom.comment h2 {
    font-size: 18px;
    line-height: 20px;
    margin: 15px 0 10px;
}

.single .recom.comment p {
    font-size: 12px;
    line-height: 18px;
    color: #424242;
    text-align: left;
}

.single .recom.comment .lire-plus {
    padding-top: 10px;
    font-size: 12px;
    text-decoration: underline;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 1470px) {
    .single.poetik .oeuvre-main {
        padding-left: 5%;
    }
}

@media (max-width: 1199.97px) {
    .single .oeuvre-main {
        order: 1;
    }

    .content-column {
        order: 2;
        padding: 0 20px;
    }

    .single .titre-single {
        padding: 30px 20px 0;
    }
}

@media (max-width: 991.8px) {
    .single .oeuvre-main {
        max-width: 600px;
        margin: 0 auto;
    }

    body.site > .section-etendue {
        margin: 0;
    }

    .single .ligne-triangle {
        margin: 20px 0 40px;
    }
}

@media (max-width: 767.8px) {
    .single .oeuvre-main {
        padding: 0 15px;
    }

    .single .oeuvre-fiche-box {
        font-size: 12px;
        line-height: 16px;
    }

    .single .oeuvre-fiche-box + .oeuvre-fiche-box {
        margin-left: 25px;
    }

    .single .oeuvre-fiche-txt b {
        font-size: 16px;
        font-weight: normal;
    }

    .single .oeuvre-fiche-box .label-img {
        font-size: 27px;
        margin-right: 8px;
    }
}

@media (max-width: 576px) {
    .post-cell {
        padding-bottom: 0;
    }

    .post-cell.post-titre {
        padding-left: 30px;
    }

    .single .titre-single {
        padding: 5px;
    }

    .content-column {
        padding-top: 30px;
    }

    .single .nom-prix {
        text-align: center;
    }

    .single .footer-frame {
        display: block;
    }
}

/*************  BLOC VOTE  ***************/
.section-etendue.vote {
    margin-top: 20px;
}

.section-etendue .vote-content {
    background: #fff;
    padding: 30px 0;
    text-align: center;
    border-radius: 4px;
}

.bloc-system .js-current-nb-votes {
    font-size: 40px;
    font-family: 'Cantata One', serif;
}

.bloc-system .icon-coeur2 {
    font-size: 35px;
}

#voix .bt {
    padding: 15px 30px;
}

.header-vote {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    text-align: center;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAFCAYAAACEhIafAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiePfkxn+G////MzAxAAGEeP/05n+AAAMAkYIKWf8Mu08AAAAASUVORK5CYII=) repeat-x center center;
}

.header-vote .header-vote-content {
    padding: 0 15px;
    background: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-vote h2 {
    font-size: 26px;
    font-family: 'Cantata One', serif;
    margin: 0 5px;
}

.header-vote .nb-vote,
.header-vote .bloc-system {
    display: flex;
    align-items: center;
}

.header-vote .nb-vote .icon-coeur2 {
    margin: 0 5px;
    font-size: 30px;
}

.header-vote .nb-vote .js-current-nb-votes {
    font-size: 26px;
    line-height: 1;
    font-family: 'Cantata One', serif;
    margin: 0 5px;
}

.bloc-vote .nuance {
    margin-top: 20px;
    background: #f8f4ef;
    border: 1px solid #e5ded5;
    border-radius: 500px;
    overflow: hidden;
}

.user-rank {
    padding: 20px 40px 20px 90px;
    text-align: left;
}

.user-rank h4 {
    font-family: 'Cantata One', serif;
    color: #424242;
    font-size: 22px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 5px;
}

.user-rank-bloc {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.user-rank-bloc .user-img {
    flex-shrink: 0;
    max-width: 30px;
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: url(/build/images/user-rank.c1ceac07.png) no-repeat -7px -8px;
    display: none;
}

.user-rank-2 .user-img {
    background-position: -7px -48px;
}

.user-rank-3 .user-img {
    background-position: -7px -88px;
}

.user-rank-4 .user-img {
    background-position: -7px -128px;
}

.user-rank-1 .user-img.txt-strips {
    background-position: -47px -8px;
}

.user-rank-2 .user-img.txt-strips {
    background-position: -47px -48px;
}

.user-rank-3 .user-img.txt-strips {
    background-position: -47px -88px;
}

.user-rank-4 .user-img.txt-strips {
    background-position: -47px -128px;
}

.user-rank-1 .user-img.txt-poetik {
    background-position: -87px -8px;
}

.user-rank-2 .user-img.txt-poetik {
    background-position: -87px -48px;
}

.user-rank-3 .user-img.txt-poetik {
    background-position: -87px -88px;
}

.user-rank-4 .user-img.txt-poetik {
    background-position: -87px -128px;
}

.user-rank-1 .user-img.txt-tres-tres-court {
    background-position: -127px -8px;
}

.user-rank-2 .user-img.txt-tres-tres-court {
    background-position: -127px -48px;
}

.user-rank-3 .user-img.txt-tres-tres-court {
    background-position: -127px -88px;
}

.user-rank-4 .user-img.txt-tres-tres-court {
    background-position: -127px -128px;
}

.user-rank-bloc b {
    font-weight: 400;
}

.nuance-pt-content {
    height: 100%;
    display: flex;
}

.nuance-pt-content button {
    border: 0;
    background: #f8f4ef;
    border-left: 1px solid #e5ded5;
    text-align: center;
    height: 100%;
    padding: 20px;
    flex: 1;
    color: #424242;
    font-size: 16px;
}

button.js-vote-choice:hover,
button.js-vote-choice:active,
button.js-vote-choice:focus {
    background: #15a358 !important;
    color: #fff !important;
}

button.js-vote-choice:hover .nb-point,
button.js-vote-choice:active .nb-point,
button.js-vote-choice:focus .nb-point {
    color: #fff !important;
}

.vote-txt-tres-tres-court button:hover,
.vote-txt-tres-tres-court button:active,
.vote-txt-tres-tres-court button:focus {
    background: #3fbbf0 !important;
}

.vote-txt-strips button:hover,
.vote-txt-strips button:active,
.vote-txt-strips button:focus {
    background: #b70e80 !important;
}

.vote-txt-poetik button:hover,
.vote-txt-poetik button:active,
.vote-txt-poetik button:focus {
    background: #fdc300 !important;
}

.nuance-pt-content .nb-point {
    font: 400 30px/32px 'Cantata One', serif;
    margin-bottom: 5px;
}

.nuance-pt-content button.disabled,
.nuance-pt-content button.disabled:hover,
.nuance-pt-content button.disabled:active,
.nuance-pt-content button.disabled:focus {
    background-color: #faf8f5 !important;
    color: #c7c7c7 !important;
}

.nuance-pt-content button.disabled .nb-point,
.nuance-pt-content button.disabled:hover .nb-point,
.nuance-pt-content button.disabled:active .nb-point,
.nuance-pt-content button.disabled:focus .nb-point {
    color: #c7c7c7 !important;
}

.footer-vote {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.footer-vote .lien-savoir {
    flex: 1;
    text-align: left;
}

.footer-vote .bt-classement {
    flex: 1;
    text-align: right;
}

.footer-vote .lien-savoir a,
.footer-vote .bt-classement button {
    font-size: 14px;
    font-weight: 300;
    background: transparent;
    border: none;
    text-decoration: underline;
    color: #424242;
    flex: 1;
}

.footer-vote .bt-classement button:hover,
.footer-vote .bt-classement button:focus,
.footer-vote .bt-classement button:active {
    color: #f78c26;
}

.footer-vote .podium {
    padding: 20px;
}

.footer-vote h3 {
    margin: 10px 0;
}

.footer-vote li {
    display: flex;
    flex-direction: row-reverse;
}

.footer-vote li .rond {
    margin-left: 10px;
    width: 23px;
    height: 20px;
    display: block;
    border-radius: 20%;
    text-align: center;
    line-height: 20px;
    color: #fff;
    font-size: 12px;
}

@media (max-width: 767.8px) {
    .bloc-vote .nuance {
        border-radius: 25px;
    }

    .user-rank {
        padding: 20px;
    }

    .user-rank h4 {
        text-align: center;
    }

    .user-rank-bloc {
        justify-content: center;
        text-align: center;
    }

    .nuance-pt-content button {
        border-top: 1px solid #e5ded5;
        border-left: none;
    }

    .nuance-pt-content button + button {
        border-left: 1px solid #e5ded5;
    }

    .footer-vote {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .footer-vote .lien-savoir a {
        margin-bottom: 15px;
    }

    .footer-vote .podium {
        padding: 20px;
        text-align: center;
    }

    .footer-vote .podium .ellipsis {
        display: flex;
        white-space: normal;
        text-align: center;
    }

    .footer-vote li {
        flex-direction: row;
    }
}

@media (max-width: 576px) {
    body.site > .section-etendue .vote-content {
        padding: 0;
    }

    .nuance-pt-content button {
        padding: 5px 0;
    }
}

/*************  BLOC RECO  ***************/
body.site > .section-etendue.reco {
    padding-top: 60px;
}

.reco h3.trait {
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    display: block !important;
    font-weight: 300;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAFCAYAAACEhIafAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiePfkxn+G////MzAxAAGEeP/05n+AAAMAkYIKWf8Mu08AAAAASUVORK5CYII=) repeat-x center center;
    margin-bottom: 50px;
}

.reco h3.trait span {
    padding: 0 15px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.reco .post-cell .cat-post-titre span {
    background: #fff;
}

.reco .reco .titre {
    padding-right: 20px;
}

.reco .reco .titre h4 {
    font: 400 16px/22px 'Cantata One', serif;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid #424242;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reco .reco .titre h4 span {
    font-size: 8px;
    padding: 0 10px;
}

.reco .pub-lib {
    display: flex;
}

.reco .pub-lib .post-cell {
    padding-bottom: 0;
}

.reco .pub-lib .col-d {
    display: flex;
    place-content: center center;
    flex-direction: column;
    padding: 10px 0;
}

.reco .pub-lib .col-g {
    flex-shrink: 0;
    max-width: 100px;
}

.reco .pub-lib .col-d .btn {
    font-family: 'Cantata One', serif;
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    background: #fe872c;
    text-decoration: none;
    display: inline-block;
    padding: 7px 22px 8px;
    margin: 10px 0 0;
}

.reco .pub-lib .col-d .btn:hover,
.reco .pub-lib .col-d .btn:active,
.reco .pub-lib .col-d .btn:focus {
    background: #ff570a;
    color: #fff;
}

@media (max-width: 576px) {
    body.site > .section-etendue.reco {
        padding-top: 20px;
    }
}

/*************  BLOC COM  ***************/

body.site > .section-etendue.comm {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 20px;
}

.comm h3.trait {
    margin-bottom: 10px;
    text-align: center;
    font-size: 26px;
    line-height: 30px;
    display: block !important;
    font-weight: 300;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAFCAYAAACEhIafAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiePfkxn+G////MzAxAAGEeP/05n+AAAMAkYIKWf8Mu08AAAAASUVORK5CYII=) repeat-x center center;
}

.comm h3.trait span.fd {
    padding: 0 15px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.comm h3.trait span.nb-com {
    display: inline-block;
}

.comm h3.trait span.nb-com span {
    padding: 3px 5px;
    color: #fff;
    border-radius: 3px;
    margin-left: 5px;
    margin-right: 5px;
    position: relative;
    background: #424242;
}

.comm h3.trait span.nb-com span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    border-width: 10px 10px 0 0;
    left: calc(50% - 5px);
    border-color: #424242 transparent transparent;
    border-style: solid;
}

.comm header a {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    margin: 20px auto;
    display: block;
}

.comm .fos_comment_thread .fos_comment_comment_new_form .btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-family: 'Cantata One', serif;
    font-weight: 400;
    flex-shrink: 0;
    background: #15a358 !important;
    border: none;
    position: absolute;
    bottom: 30px;
    right: 50px;
}

.comm .fos_comment_thread.tres-tres-court .fos_comment_comment_new_form .btn {
    background: #3fbbf0 !important;
}

.comm .fos_comment_thread.strips .fos_comment_comment_new_form .btn {
    background: #b70e80 !important;
}

.comm .fos_comment_thread.poetik .fos_comment_comment_new_form .btn {
    background: #fdc300 !important;
}

.comm .fos_comment_thread .fos_comment_comment_new_form .btn:hover,
.comm .fos_comment_thread .fos_comment_comment_new_form .btn:focus,
.comm .fos_comment_thread .fos_comment_comment_new_form .btn:active {
    background: #424242 !important;
    box-shadow: none;
}

@media (max-width: 767px) {
    .single .titre-single h1 {
        font-size: 28px;
    }

    .single .titre-single h1 + .titre {
        padding: 10px 0 !important;
    }

    .single .titre-single h1 + .titre h2 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .comm h3.trait {
        background-position-y: 15px;
    }

    .comm h3.trait span.fd {
        padding: 0 5px;
        font-size: 18px;
    }

    .reco h3.trait {
        margin-bottom: 15px;
        font-size: 22px;
    }

    .comm h3.trait span.nb-com {
        font-size: 15px;
        display: block;
    }

    body.site > .section-etendue.comm {
        padding-top: 20px;
    }
}

/*************  BLOC LECTURE AUDIO  ***************/

.site-page .head-article .btn-audio a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 135px;
    height: 135px;
    border-radius: 135px;
    color: #fff !important;
    background: #fe872c;
    text-decoration: none;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
    font: 14px/20px 'Cantata One', serif;
}

.site-page .head-article .btn-audio a:hover {
    background: #ff570a;
}

.site-page .head-article .bt-podcast audio.random-audio::-webkit-media-controls-play-button {
    transform: scale(3, 3);
    margin-right: 5px;
}
/* ---- page espace presse ---- */

.espace-presse h1 {
    padding: 30px 0;
    margin: 0 0 40px;
    border-bottom: 1px solid #f1e9e0;
}

.espace-presse .sidebar {
    padding-right: 40px;
}

.espace-presse .nav-tabs {
    border-bottom: none;
    margin: 0 auto 40px;
    justify-content: center;
}

.in-press-pletore {
    font-family: 'Cantata One', serif;
    margin-bottom: 30px;
}

.espace-presse .nav-tabs .bt {
    margin: 5px;
}

.espace-presse .nav-tabs .bt:hover,
.espace-presse .nav-tabs .bt:focus,
.espace-presse .nav-tabs .bt:active {
    color: #fff;
    background-color: #fe872c;
    border-color: #fe872c;
}

.espace-presse .nav-tabs .active .bt {
    color: #fff !important;
    background-color: #424242 !important;
    border-color: #424242 !important;
}

.article-press {
    border-left: 1px solid #f1e9e0;
    padding: 20px 50px;
    margin-bottom: 35px;
}

.a-la-une .article-press {
    border-left: none;
    border-radius: 10px;
    background-color: #f8f4ef;
    padding: 50px;
}

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

.article-press .header-press .header-press-txt {
    padding-right: 20px;
}

.article-press .header-press .header-press-txt p {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}

.article-press .header-press .header-press-txt .a-la-une-text {
    background-color: #424242;
    margin-right: 10px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    color: #fff;
    font: 400 16px/20px 'Cantata One', serifs;
}

.article-press .header-press .header-press-txt .a-la-une-text .icon-star {
    margin-right: 5px;
}

.article-press .header-press .header-press-txt h2 {
    font-size: 24px;
    line-height: 30px;
}

.article-press .header-press .date-presse {
    font: 400 16px/20px 'Cantata One', serif;
}

.article-press .header-press .press-log {
    width: 140px;
    flex-shrink: 0;
}

.press-article {
    margin-top: 30px;
}

.press-article .bloc-img {
    margin: 0 auto 30px;
    max-width: 490px;
}

.press-article .bloc-img p {
    padding-top: 10px;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    color: #8b8b8b;
}

.press-article .actu-lien {
    margin-top: 20px;
    justify-content: flex-end;
}

#in-press2 .contact-presse {
    border-radius: 10px;
    background-color: #f8f4ef;
    padding: 30px 15px;
    text-align: center;
}

#in-press2 .contact-presse span {
    display: inline-block;
}

#in-press2 .contact-presse h2 {
    font-size: 24px;
    margin: 0 0 15px;
}

#in-press2 .contact-presse h3 {
    font-size: 16px;
    margin: 10px 0 5px;
}

#in-press2 .head-commu {
    margin-bottom: 10px;
}

#in-press2 h2 .date-presse {
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

#in-press2 .bloc-lien {
    padding: 15px 0 5px;
}

#in-press2 .bloc-lien a {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    max-width: 130px;
    line-height: 1.1;
    font-size: 14px;
}

#in-press2 .bloc-lien .icon {
    font-size: 40px;
    padding-right: 5px;
}

#in-press2 .bloc-lien span + span {
    padding-top: 10px;
}

#in-press3 h2 {
    font-size: 24px;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
    text-align: center;
}

#in-press3 .logo1 {
    display: flex;
    margin-bottom: 30px;
}

#in-press3 .logo2 {
    width: 180px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-bottom: 10px;
}

#in-press3 .logo3 {
    font-size: 3px;
    line-height: 0;
}

#in-press3 .logo3 h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

#in-press3 .logo3 .bt {
    margin-bottom: 5px;
}

#in-press3 .our-pictures {
    display: flex;
}

#in-press3 .our-pictures img {
    width: 180px;
    flex-shrink: 0;
    margin-right: 15px;
    margin-bottom: 10px;
}

#in-press3 .les-logos,
#in-press3 .les-img {
    margin-bottom: 30px;
}

#in-press3 .edito {
    margin-bottom: 50px;
}

@media (max-width: 1199.8px) {
    .article-press .header-press {
        align-items: flex-start;
        flex-direction: column;
    }

    .espace-presse .sidebar {
        padding-right: 15px;
    }

    .press-article .actu-lien-a .txt {
        display: initial;
    }
}

@media (max-width: 575.8px) {
    .espace-presse h1 {
        padding: 20px 0;
        margin: 0 0 20px;
        font-size: 30px;
    }

    .espace-presse .nav-tabs {
        margin: 0 auto 20px;
    }

    .espace-presse .nav-tabs .bt {
        width: 100%;
        margin: 0 0 3px;
    }

    .espace-presse .nav-tabs li {
        width: calc(100% - 30px);
    }

    .article-press {
        padding: 15px 10px;
        margin: 20px 0;
    }

    .in-press-pletore {
        margin-bottom: 0;
    }

    .a-la-une .article-press {
        padding: 25px;
    }
}

.prize .general {
    display: none;
}

.prize .general.prize-menu {
    display: block;
    background: transparent;
}

.prize .right-menu-bar {
    top: 75px;
    height: 90vh;
}

.prize .home {
    display: block;
    width: 85px;
    height: 45px;
    transform: rotate(90deg);
}

.prize #logo-home {
    z-index: 1000;
    padding: 0;
    align-items: center;
    display: flex;
    animation-name: opa2;
    overflow: hidden;
    width: 95px;
    flex-shrink: 0;
    position: relative;
    right: -20px;
}

.prize.homepage #logo-home {
    opacity: 0;
}

.prize #logo-home.shrink {
    opacity: 1;
}

@keyframes opa2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.prize #header-top {
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: none;
}

.prize.homepage #header-top {
    height: 100%;
}

.prize .left-menu-bar::after,
.prize .left-menu-bar .accroche {
    background: transparent;
}

.prize #header-top .accroche,
.prize #header-top .accroche span {
    color: #fff !important;
}

.prize #header-top nav.general {
    display: none;
}

.prize #header-top nav.general.prize-menu {
    border-top: none;
    display: block;
    position: absolute;
    bottom: 10%;
    width: 100%;
}

.prize #header-top nav.general h1 {
    font-size: 50px;
    color: #fff;
}

.prize #header-top nav.general a {
    color: #fff;
    text-transform: none;
}

.prize.homepage .header2-parent,
.edition-fond .header-petit {
    display: none;
}

.prize #header-top nav.general .edition-fond .header-petit a:hover::after {
    background: none !important;
}

.prize #header-top nav.general a:hover::after,
.prize #header-top nav.general a.active::after {
    background: #fe872c;
}

.prize #header-top nav.general a.menu-button {
    background: none;
}

.edition-fond.edition-banner {
    display: block;
}

#header-top .icon-f1-b {
    font-size: 20px;
    position: absolute;
    z-index: 100000;
    bottom: 30px;
    transform: translateY(0);
    animation: lien-b 1s ease-in-out infinite;
    left: 50%;
}

@keyframes lien-b {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

.prize #header-top.pages,
.prize .header-main-menu.shrink #header-top {
    height: 80px;
    background-image: none !important;
    animation-name: none;
    overflow: hidden;
    left: 0;
    right: 0;
}

.prize.homepage .header-main-menu.shrink #header-top {
    animation-name: stickySlideDown;
}

.prize #header-top.pages {
    background: none !important;
    position: fixed;
    top: 0;
    z-index: 1000;
    padding: 6px 0;
    align-items: center;
    display: flex;
    animation-name: none;
}

@keyframes opa {
    0% {
        height: 0;
    }

    100% {
        height: 80px;
    }
}

.site .prize-menu a.color-menu:hover,
.site .prize-menu a.color-menu.active {
    color: #fff !important;
}

.prize .header-main-menu.shrink #header-top h1,
.prize #header-top.pages h1,
.prize .header-main-menu.shrink #header-top .logo-head,
.prize #header-top.pages .logo-head {
    display: none;
}

.prize .header-main-menu.shrink #header-top .edition-fond .header-petit,
.prize #header-top.pages .edition-fond .header-petit {
    display: block;
}

.prize .header-main-menu.shrink #header-top nav.general.prize-menu,
.prize #header-top.pages nav.general.prize-menu {
    position: relative;
    bottom: auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
}

.prize .header-main-menu.shrink #header-top .edition,
.prize #header-top.pages .edition {
    display: flex;
    align-items: center;
}

.prize .header-main-menu.shrink #header-top nav.general a,
.prize #header-top.pages nav.general a {
    font: 400 15px/20px 'Cantata One', serif;
}

.prize .header-main-menu.shrink #header-top .icon-f1-b,
#header-top.pages .icon-f1-b {
    display: none;
}

.prize #header-top.pages nav.general a::after {
    bottom: -11px;
}

.prize .category-list {
    min-height: 80vh;
    padding-top: 40px;
}

.site.prize .bt.bt-primary:hover,
.site.prize .bt.bt-primary:focus,
.site.prize .bt.bt-primary:active {
    background-color: #424242 !important;
}

/*************  Soumission OEUVRE  *****************/

.partici .parti-top {
    margin: 10px 0 30px;
}

.partici .parti-top p {
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    margin: 10px 0;
}

.partici .gray-box {
    background: #f6f1eb;
    border-radius: 4px;
    display: flex;
    padding: 30px;
    margin-bottom: 20px;
    text-align: left !important;
    align-items: flex-start;
}

.partici .gray-box .sorry {
    transform: rotate(90deg);
    flex-shrink: 0;
    text-align: center;
    width: 110px;
    font: 400 44px/44px 'Cantata One', serif;
}

.partici .gray-box .sorry-content .bt {
    margin-bottom: 10px;
}

.partici .gray-box .image {
    flex-shrink: 0;
    width: 260px;
    padding-right: 40px;
}

.partici .gray-box .desc h2 {
    font-size: 28px;
}

.partici .diff-theme .col-12:last-child {
    margin-bottom: 50px;
}

.prize.homepage header:not(.shrink) #header-top nav.general.prize-menu .edition a.color-menu {
    border-radius: 200px;
    margin: 0 6px 2px;
    padding: 10px 15px;
    font-size: 14px;
    line-height: 14px;
}

.prize.homepage header:not(.shrink) #header-top nav.general.prize-menu .edition a.color-menu::after {
    display: none !important;
}

@media (max-width: 991.8px) {
    .prize.site-page .edition-menu,
    .prize.site-page .header-main-menu.shrink #header-top {
        display: none;
    }

    .prize.site-page.homepage .edition-menu,
    .prize.site-page .header-main-menu.shrink + .header2-parent {
        display: block;
    }

    .prize .right-menu-bar {
        display: none;
    }

    .prize.homepage .actualite {
        margin: 0;
        padding: 80px 20px 0 !important;
    }

    .prize .head-mobil .logo-homepage,
    .prize header.edition-menu + header#header2 {
        display: none !important;
    }

    .prize .head-mobil img {
        max-height: 55px;
    }

    .prize .head-mobil .hamburger,
    .prize .head-mobil .search-mobil,
    .nav-mobil {
        z-index: 1030;
        position: relative;
        background: #fff;
    }

    .nav-mobil {
        overflow: auto;
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .nav-mobil::-webkit-scrollbar {
        display: none;
    }

    .prize #header-top .accroche,
    .prize .left-menu-bar .accroche,
    .prize.homepage .nav-tool .left-menu-bar .home,
    .prize.homepage .nav-tool .left-menu-bar .fleche-vue {
        opacity: 0 !important;
    }

    .prize.homepage .nav-tool .left-menu-bar.accroche-vue .home {
        display: block;
    }

    .prize #header-top.pages nav.general.prize-menu {
        padding: 0 20px 0 120px;
    }

    .prize #header-top.pages nav.general.prize-menu a {
        font: 400 12px/18px 'Cantata One',
        serif;
        padding: 5px 6px;
    }

    .prize #header-top.pages .header-petit {
        padding: 0 0 10px;
    }

    .site.pages .ephemeral-price {
        margin: 80px 0 0;
    }

    .prize.site-page .ephemeral-price {
        margin: 0 0 40px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.prize .actualite {
    padding: 105px 0 0;
}

.prize .ephemeral-price + .actualite {
    padding: 0 20px !important;
}

.prize.homepage .actualite {
    padding: 103vh 20px 0 !important;
}

.prize .ephemeral-price {
    margin: 80px -160px 10px;
}

.prize.homepage .ephemeral-price {
    display: none;
}

@media (max-width: 767.8px) {
    .prize #header-top.pages nav.general.prize-menu {
        padding: 0 20px 0 90px;
        flex-direction: column;
        align-items: flex-end;
    }

    .prize #header-top.pages nav.general.prize-menu a {
        font: 400 12px/18px 'Cantata One',
        serif;
        padding: 5px 6px;
    }

    /* .prize #header-top.shrink, */
    .prize #header-top.pages {
        height: 130px;
    }

    @keyframes opa {
        0% {
            height: 0;
        }

        100% {
            height: 130px;
        }
    }

    .prize #header-top.pages .header-petit {
        padding: 0 0 10px;
    }

    .prize #header-top nav.general a::after {
        bottom: -1px !important;
        height: 2px;
    }

    .prize #header-top nav.general .header-petit a::after {
        height: 0 !important;
    }

    .prize .actualite {
        padding: 0 20px !important;
    }

    .prize.homepage .ephemeral-price {
        margin: 130px 0 30px !important;
    }

    .prize.site-page .actualite {
        margin-top: 0 !important;
    }

    .prize .gray-box {
        padding: 10px;
    }

    .prize .table-responsive .table {
        font-size: 11px !important;
        line-height: 17px !important;
    }

    .prize .table-responsive .table td,
    .prize .table-responsive .table th {
        padding: 2px !important;
    }

    .prize .table-responsive .table td ul {
        padding-left: 15px;
    }
}

@media (max-width: 576px) {
    .prize #header-top .edition-fond .home,
    .prize .nav-tool .left-menu-bar {
        display: none !important;
    }

    .prize.site-page #header-top .edition-fond a {
        padding: 0 !important;
    }

    .prize.site-page #header-top .edition-fond a.home-xs {
        display: block;
        transform: unset;
        width: 60%;
    }

    .prize.homepage #header-top .edition-fond a.home-xs img {
        display: none;
    }

    .prize.site-page #header-top nav.general.prize-menu {
        padding: 0;
        align-items: center;
    }

    .prize #header-top nav.general h1 {
        padding: 15px 10px;
    }

    .prize #header-top.pages nav.general.prize-menu a {
        padding: 0 6px;
    }

    .prize .edition-fond .header-petit {
        padding: 10px 0;
    }

    .prize .edition-fond .header-petit img {
        max-height: 40px !important;
        width: auto !important;
        max-width: none !important;
    }

    .prize .edition-fond .m-auto img {
        width: 100px;
    }

    .prize #header-top nav.general a::after {
        bottom: -5px !important;
        height: 2px;
        width: 30px;
        left: calc(50% - 15px);
    }
}

@media (max-width: 500px) {
    .partici .gray-box {
        flex-direction: column;
    }

    .partici .gray-box .image {
        width: 100%;
        text-align: center;
        padding-right: 0;
        padding-bottom: 20px;
    }

    .partici .gray-box .desc {
        text-align: center;
        width: 100%;
    }
}

.ui-menu .ui-menu-divider.category,
.ui-menu .ui-menu-divider.category:hover {
    background-color: #424242;
    color: white;
    font-weight: bold;
    cursor: default;
    margin: inherit;
    height: inherit;
    font-size: inherit;
    line-height: inherit;
    border-width: 0;
    padding: 3px 1em 3px 0.4em;
}

.ui-menu-divider.category {
    padding: 10px;
    width: 100%;
    text-transform: uppercase;
}

.ui-menu .ui-menu-item.display-ac-odd {
    background-color: #fff;
}

.ui-menu .ui-menu-item.display-ac-odd:hover,
.ui-menu .ui-menu-item.display-ac-even:hover {
    font-weight: normal;
}

.ui-menu .ui-menu-item.more-result,
.ui-menu .ui-menu-item.more-result:hover {
    font-weight: bold;
}

/******** general *********/
.page-search {
    min-height: 80vh;
}

.page-search h1 {
    padding: 30px 0;
    margin: 0 0 40px;
    border-bottom: 1px solid #f1e9e0;
    text-align: center;
}

.page-search .form-light {
    justify-content: center;
}

.form-group-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.page-search .form-light label {
    text-align: center;
    width: 100%;
    margin: 15px;
}

.page-search .form-light input {
    border-radius: 20px;
    height: 40px;
    border: 1px solid rgb(192 160 130 / 30%);
    line-height: 40px;
    font-size: 14px;
    padding: 0 45px 0 13px;
    width: 100%;
}

.page-search .form-light .bt-search {
    border-radius: 20px;
    height: 36px;
    background-color: #f78c26;
    line-height: 34px;
    font-size: 20px;
    color: #fff;
    position: absolute;
    right: 2px;
    width: 36px;
    top: 2px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
}

.page-search .no-result {
    border-radius: 4px;
    padding: 10px;
    text-align: center;
}

.page-search .no-result .bloc-loupe {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 150px;
    flex-shrink: 0;
    margin: 0 auto 5px;
    height: 150px;
    position: relative;
}

.page-search .no-result h2 {
    font-size: 30px;
}

.page-search .no-result .bloc-loupe .bonhomme {
    text-align: center;
    font: 400 44px/44px 'Cantata One', serif;
    transform: rotate(90deg);
}

.page-search .no-result .bloc-loupe .icon-search {
    position: absolute;
    left: 15px;
    top: 11px;
    font-size: 127px;
}

.page-search .bloc-result {
    margin-bottom: 50px;
}

.page-search .bloc-result .titre-trait {
    margin-top: 60px;
    margin-bottom: 30px;
}

.resultat-recherche .show-more {
    margin: 0 auto;
}

.resultat-recherche .author-follower article {
    min-height: 200px;
    margin-bottom: 20px;
}

.resultat-recherche .author-follower a img {
    margin-bottom: 10px;
    transition: all 0.3s;
}

.resultat-recherche .article-vote.edition {
    padding-right: 0;
}

.resultat-recherche .article-vote.reco {
    margin-left: 10px;
}

.site .resultat-recherche article.post-cell.border-jeunesse {
    background-color: #eaeaea;
    padding: 20px 20px 54px;
}

.site .resultat-recherche article.post-cell.border-jeunesse .chunk-content {
    padding: 0;
}

.site .resultat-recherche article.post-cell.border-jeunesse .js-cell-image-top {
    display: none;
}

.site .select2-results h3 {
    font: 20px/30px 'bebas_neueregular', Arial, Helvetica, Verdana, sans-serif;
}

/******** classique *********/
.classical .recherche-classique.recherche-page input.form-control {
    margin-top: 10px;
    width: 300px;
}

.classical .recherche-classique.recherche-page {
    padding: 20px 40px 20px 135px;
}

.classical .recherche-classique.recherche-page p {
    margin: 0 20px;
}

.resultat-recherche.section-classique h2.resultat-titre span.resultat-titre2 {
    background-color: #6fc0a1;
}

.resultat-recherche.section-classique .resultat-oeuvre .txt-poetik,
.resultat-recherche.section-classique .resultat-oeuvre .txt-nouvelles,
.resultat-recherche.section-classique .resultat-oeuvre .txt-tres-tres-court {
    color: #6fc0a1 !important;
}

.resultat-recherche.section-classique .resultat-oeuvre .bg-poetik,
.resultat-recherche.section-classique .resultat-oeuvre .bg-nouvelles,
.resultat-recherche.section-classique .resultat-oeuvre .bg-tres-tres-court {
    background-color: #53939c !important;
}

.resultat-recherche.section-classique .post-cell,
.resultat-recherche.section-classique .post-cell header,
.resultat-recherche.section-classique .post-cell footer {
    border-color: #6fc0a1 !important;
}

.resultat-recherche.section-classique article h2 span,
.resultat-recherche.section-classique a:hover h2 {
    color: #6fc0a1;
}

.resultat-recherche.section-classique a h2 {
    color: #424242;
}

@media (max-width: 767.8px) {
    .page-search .form-light label {
        text-align: left;
        margin: 0 0 10px;
    }

    .page-search h1 {
        padding: 20px 0;
        margin: 0 0 31px;
        font-size: 34px;
    }

    .page-search .resultat-recherche .col-md-4 {
        padding: 0;
    }

    .page-search .col-12.col-md-8 {
        padding: 0;
    }
}

@media (max-width: 576px) {
    .page-search .bloc-result {
        margin-bottom: 0;
    }

    .page-search .bloc-result .titre-trait {
        margin: 30px 0;
    }

    .resultat-recherche .author-follower article {
        min-height: auto;
    }
}

@media (max-width: 991.8px) {
    .classical div.recherche-classique {
        background: url(/build/images/icon-recherche-classique.2a36c144.gif) no-repeat scroll 20px center #eaeaea;
        padding: 20px 20px 20px 110px;
    }

    .page-search .row {
        margin: 0;
    }
}

@media (min-width: 992px) {
    .resultat-recherche.section-classique .resultat-oeuvre .post-cell {
        min-height: 320px;
    }
}

.compte .compte-main,
.compte .compte-nav {
    padding-top: 30px;
}

.compte #main2:has(#waiting) {
    display: flex;
    flex-wrap: wrap;
    place-content: center center;
}

.compte .compte-nav {
    padding-right: 40px;
}

.compte .compte-nav ul {
    border-radius: 15px;
    background-color: #f8f4ef;
    padding: 10px 20px;
    margin: 0;
    list-style: none;
}

.compte .compte-nav li {
    display: block;
}

.compte-nav li a.section {
    padding: 30px 0 30px 60px;
    position: relative;
    color: #424242;
    font: 400 14px/20px 'Cantata One', serif;
    min-height: 60px;
    display: flex;
    align-items: center;
    opacity: 0.5;
    border-bottom: 1px solid #dbcbbd;
}

.compte-nav ul li:last-of-type a.section {
    border-bottom: none;
}

.compte-nav li a.section::before {
    background: url(/build/images/icon-compte.e32e69d3.png) no-repeat scroll left center transparent;
    background-size: 528px 49px;
    width: 40px;
    display: block;
    position: absolute;
    left: 10px;
    top: 0;
    height: 100%;
    content: '';
}

.compte-nav li a:hover,
.site ul.compte-nav-contents > li > a:hover {
    opacity: 1;
}

.compte-nav li.active a,
.site ul.compte-nav-contents > li.active > a {
    opacity: 1;
}

.compte-nav li.active a::after,
.site ul.compte-nav-contents > li.active > a::after {
    position: absolute;
    right: -21px;
    width: 3px;
    top: 20px;
    bottom: 20px;
    background-color: #fe872c !important;
    content: '';
}

.compte-nav li:nth-child(2) a::before,
.compte-nav li:nth-child(5) a::before {
    background-position: -294px center;
}

.compte-nav li:nth-child(3) a::before {
    background-position: -194px center;
}

.compte-nav li:nth-child(4) a::before {
    background-position: -95px center;
}

.compte-nav li:nth-child(6) a::before {
    background-position: -488px center;
}

.compte-nav .account-access-page {
    padding: 30px 10px;
}

.compte-nav .account-access-page .bt {
    width: 100%;
}

.compte .bloc-compte {
    padding-left: 80px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 70px;
}

.compte .bloc-compte::after {
    background-color: #f1e9e0;
    content: '';
    width: 1px;
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.compte .form-control:disabled,
.compte .form-control[readonly] {
    background-color: #f1e9e0;
    border-color: #f1e9e0;
}

.compte label {
    font-size: 14px;
}

.compte .form-group {
    margin-bottom: 17px;
}

.compte .form-group label {
    font-size: 14px;
    padding: 5px 0;
    margin: 0;
}

.compte .form-group input {
    border-radius: 20px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    padding: 0 15px;
}

.compte .form-group .label-justi {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compte .form-group .label-justi span {
    font-size: 12px;
    text-align: right;
    color: #c7c7c7;
}

.compte .bloc-img {
    display: flex;
    align-items: center;
    padding: 40px 0 0;
}

.compte .bloc-img .bloc-g {
    text-align: center;
    padding-right: 25px;
    flex-shrink: 0;
    width: 155px;
}

.compte .bloc-img .bloc-g label {
    font-size: 14px;
}

.compte .bloc-img .bloc-d label {
    font-size: 14px;
    margin: 0 0 5px;
    font-weight: 700;
}

.compte .bloc-img .bloc-d .form-group {
    margin: 0;
}

.compte .bloc-img .upload-image-strip .bt {
    display: block;
    width: 100%;
    height: auto;
    min-width: auto;
    margin-top: 0;
}

#app_website_site_form_useredit_image input {
    border: none;
}

.compte .bloc-compte-auteur h4 {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 700;
}

.compte .frequence-block .form-group {
    display: inline-block;
    padding: 4px 10px;
    margin: 0;
}

.compte-notif-2 h4 {
    font-size: 14px;
    font-weight: 700;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-top: 1px solid rgb(192 160 130 / 30%);
}

.compte .news label {
    font-weight: 700;
}

.compte .bt-sup {
    display: inline-flex;
    align-items: center;
    font-size: smaller;
    padding: 8px 13px;
}

.compte .bt-sup i {
    padding-left: 10px;
}

.compte .compte-main h3.stat {
    text-align: center;
    border-bottom: 1px solid rgb(192 160 130 / 30%);
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 22px;
}

.compte .compte-main .highcharts-title,
.compte .compte-main .highcharts-title tspan {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #424242 !important;
}

/*********  table  ******************/
.actualite .compte-main .table {
    color: #424242;
    font-size: 14px;
}

.compte-main .table th {
    border-top: 1px solid rgb(192 160 130 / 30%);
    font: 400 15px/20px 'Cantata One', serif;
}

.compte-main .table td .badge {
    color: #fff;
    font-weight: 400;
}

.compte-main .table th span {
    font-size: 14px;
}

.compte-main .table-vote th,
.compte-main .table-vote td,
.compte-main .table-vote tr {
    width: 100%;
}

.compte-main .table-vote tbody,
.compte-main .table-vote thead {
    width: 100%;
    display: table;
}

.table td,
.table th {
    border-top: 1px solid rgb(192 160 130 / 30%);
}

.table tbody + tbody {
    border-top: 2px solid rgb(192 160 130 / 30%);
}

.table thead th {
    border-bottom: 1px solid rgb(192 160 130 / 30%);
    vertical-align: middle;
}

.table-bordered td,
.table-bordered th {
    border: 1px solid rgb(192 160 130 / 30%);
}

/***************** tab compet ********************/

.cell .see {
    border: 1px solid #c7c7c7;
    border-radius: 4px;
    display: inline-flex;
    padding: 2px 5px;
    font-size: 16px;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.cell .see .icon {
    padding-right: 10px;
    font-size: 22px;
}

.cell .article-cote {
    padding-bottom: 10px;
    font-size: 22px;
}

.cell .state-content {
    display: inline-flex;
    align-items: center;
}

.cell .state-content .icon {
    font-size: 34px;
}

/********************  oeuvre compte  ****************/
.compte-main .tab-pane .list-group-item {
    border: 1px solid rgb(192 160 130 / 30%);
    font-size: 14px;
    margin-bottom: 5px;
}

.compte-main .compte-nav-contents {
    border-bottom: 1px solid #f1e9e0;
    margin-bottom: 30px;
    justify-content: center;
}

.compte-main .compte-nav-contents a.active::after,
.compte-main .compte-nav-contents a:hover::after,
.compte-main .compte-nav-contents a:focus::after,
.compte-main .compte-nav-contents a:active::after {
    height: 3px;
}

.compte-main .compte-nav-contents a {
    display: flex;
    padding: 15px;
    position: relative;
    font-family: 'Cantata One', serif;
    font-size: 13px;
    line-height: 15px;
}

.compte-main .compte-nav-contents a.active,
.compte-main .compte-nav-contents a:hover,
.compte-main .compte-nav-contents a:focus,
.compte-main .compte-nav-contents a:active {
    color: #fe872c;
}

.compte-main .compte-nav-contents a::after {
    content: '';
    width: 40px;
    height: 0;
    background-color: #fe872c;
    position: absolute;
    bottom: -2px;
    left: calc(50% - 25px);
    transition: all 0.1s ease-in-out;
}

.compte-main .list-group i {
    color: #c7c7c7 !important;
}

.cell .article-vote .state-content {
    font-size: 12px;
    line-height: 16px;
}

.cell .article-vote .state-content span {
    display: inline-block;
}

.cell .article-vote .d-reco-reco {
    font-size: 12px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.picto-vote-reco {
    display: flex;
    color: #767676;
}

.picto-vote-reco .article-vote {
    display: flex;
    flex: 1;
}

.picto-vote-reco .article-vote .text-list-etat {
    font: 400 13px/16px 'Cantata One', serif;
    display: inline-block;
}

.picto-vote-reco .article-vote .text-list-etat2 {
    font-size: 12px;
    display: inline-block;
}

.picto-vote-reco .article-vote .state-content {
    display: block;
}

.cell .article-vote .article-vote-icon {
    font-size: 22px;
    margin-right: 7px;
}

/********************  oeuvre compte  ****************/

@media (max-width: 1350px) {
    .compte .compte-nav {
        padding-right: 15px;
    }
}

@media (max-width: 1199.8px) {
    .compte .compte-nav {
        padding: 0 15px 15px;
        display: flex;
        justify-content: center;
    }

    .compte .compte-nav ul {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 20px;
        margin-top: 20px;
    }

    .compte .compte-nav li {
        flex: 1;
    }

    .compte .compte-nav li a.section {
        border: none;
        justify-content: center;
        text-align: center;
        padding: 60px 5px 0;
    }

    .compte-nav li a.section::before {
        width: 40px;
        left: calc(50% - 15px);
        height: 50px;
    }

    .compte-nav li.active a.section::after,
    .site ul.compte-nav-contents > li.active > a.section::after {
        background: transparent !important;
    }
}

@media (max-width: 991.8px) {
    .compte .compte-nav {
        padding: 0 15px;
    }

    .compte .compte-nav ul {
        padding: 15px;
        display: flex;
        margin: 20px 0 0;
        flex-flow: row wrap;
        justify-content: center;
    }

    .compte .compte-nav li {
        display: flex;
        justify-content: center;
    }

    .compte-nav li a.section::before {
        width: 29px;
        background-size: auto 36px;
    }

    .compte-nav li a.section {
        min-height: 45px;
        padding: 50px 5px 0 !important;
        margin: 5px;
        border-bottom: none;
    }

    .compte-nav li:nth-child(2) a::before {
        background-position: -216px center;
    }

    .compte-nav li:nth-child(3) a::before {
        background-position: -143px center;
    }

    .compte-nav li:nth-child(4) a::before {
        background-position: -70px center;
    }

    .compte-nav li:nth-child(5) a::before {
        background-position: -287px center;
    }

    .compte-nav li:nth-child(6) a::before {
        background-position: -358px center;
    }
}

@media (max-width: 767.8px) {
    .compte .compte-nav a.section {
        width: 100%;
    }

    .compte .compte-nav ul {
        display: block;
        margin: 10px 30px 20px;
        list-style: none;
        padding: 5px 0 5px 30px;
        position: relative;
        background: transparent;
    }

    .compte .compte-nav li {
        display: block;
    }

    .compte .bloc-img {
        display: flex;
        align-items: center;
        padding: 40px 0 0;
        flex-direction: column;
    }

    .compte-nav li a.section::before {
        display: none;
    }

    .compte .compte-nav li a.section {
        border: none;
        text-align: left;
        padding: 5px 0 !important;
        display: block;
        width: 100%;
        min-height: auto;
        margin: 0;
        color: #424242 !important;
        opacity: 1;
        line-height: 1.2;
    }

    .compte .compte-nav li.active a.section::after {
        background-color: #d4bca1 !important;
    }

    .compte .compte-nav li a.section::after {
        content: '';
        height: 7px;
        width: 7px;
        background-color: #fff;
        position: absolute;
        left: -29px;
        top: 9px;
        border: 1px solid #d4bca1;
        border-radius: 50%;
    }

    .compte .compte-nav li.active a.section {
        font-weight: bold;
    }

    .compte .compte-nav ul::before {
        content: '';
        width: 1px;
        background-color: #d4bca1;
        position: absolute;
        left: 4px;
        top: 5px;
        bottom: 5px;
    }

    .compte .compte-nav ul li:last-child {
        margin-bottom: 20px;
    }

    .compte .compte-nav {
        display: block;
        border-bottom: 1px solid #f1e9e0;
    }

    .compte .compte-nav h1 {
        padding: 20px 0;
        text-align: center;
        margin: 0 0 20px;
        border-bottom: 1px solid #f1e9e0;
    }
}

@media (max-width: 576px) {
    .compte .bloc-compte {
        padding-left: 0;
    }

    .compte .bloc-compte .vertical-text,
    .compte .bloc-compte::after {
        display: none;
    }
}

/* ------------- Messagerie ------------- */

h1.messenger-title {
    padding: 30px 0;
    margin: 0 0 40px;
    border-bottom: 1px solid #f1e9e0;
    text-align: center;
}

h1.messenger-title .icon-tchat {
    margin-right: 10px;
}

.messenger-list {
    padding-left: 0;
    margin-bottom: 30px;
}

.messenger-list .new-messenger {
    margin-bottom: 50px;
}

.messenger-list .new-messenger label {
    color: #fe872c;
    font: 400 20px/20px 'Cantata One', serif;
}

.messenger-list .select2-container--default .select2-selection--single {
    background-color: #fe872c;
    border: none;
    border-radius: 23px;
    height: 45px;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.messenger-list .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 14px;
}

.messenger-list .select2-container .select2-selection--single .select2-selection__rendered .icon-search {
    font-size: 22px;
    margin-right: 10px;
}

.messenger-list .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff !important;
    display: flex;
    align-items: center;
}

.messenger-list .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 45px;
    right: 10px;
}

.messenger-list .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #fff transparent transparent;
}

.messenger .select2-container .select2-dropdown {
    background-color: #fe872c;
    border-radius: 0 0 23px 23px;
    color: #fff;
    border: none;
    padding: 0 15px 10px;
}

.messenger .select2-container .select2-dropdown .select2-search--dropdown {
    padding: 0;
}

.messenger .select2-container .select2-dropdown .select2-search--dropdown input {
    border: none;
    border-radius: 23px;
    background-color: #fff;
    padding: 10px;
    color: #262626;
}

.messenger .select2-container .select2-results ul li.select2-results__option {
    background: rgb(255 255 255 / 20%);
    margin-top: 2px;
    border-radius: 10px;
    padding: 10px;
}

.messenger .select2-container .select2-results ul li.select2-results__option h3 {
    color: #fff;
}

.messenger .select2-container .select2-results ul li.select2-results__option.select2-results__message {
    background: transparent;
}

.title-mess-bloc {
    display: block;
    max-width: 100%;
    padding-bottom: 5px;
    margin-bottom: 5px;
    font: 400 20px/20px 'Cantata One', serif;
}

.messenger-list a.messenger-list-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    background-color: #f8f4ef;
    border-radius: 40px;
}

.messenger-thread {
    padding: 0;
}

.messenger-thread .section-messages-append {
    padding: 20px;
    border-radius: 23px;
    min-height: 400px;
    background-color: #f1e9e0;
    border: 1px solid #f1e9e0;
    max-height: 440px;
    overflow: auto;
    overflow-x: hidden;
    margin-bottom: 15px;
}

.messenger-thread .section-messages-append.no-comments {
    min-height: 90px;
    height: 90px;
}

.messenger-list-content .messenger-intitule {
    padding-left: 10px;
    font-size: 14px;
    line-height: 16px;
    color: #424242;
}

.messenger-list-bloc .messenger-date {
    font-size: 10px;
    text-transform: uppercase;
    text-align: right;
    padding: 0 0 0 10px;
    color: #c7c7c7;
}

.messenger-list-bloc .bg-admin {
    background: transparent;
    border: 1px solid rgb(192 160 130 / 30%);
    color: #424242;
    border-radius: 10px;
    margin-left: 5px;
    font-size: 10px;
    padding: 4px 8px;
    display: inline-block;
    font-weight: 400;
    vertical-align: middle;
}

.messenger-list-bloc .messenger-list-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.messenger-list-content .img-round {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 40px;
    overflow: hidden;
}

.messenger-thread .title-mess-bloc {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.messenger-thread .fos_comment_comment_show {
    margin-top: 0;
}

.messenger-thread.comments .comment-content {
    display: block;
    max-width: 73%;
    width: auto;
    top: 0;
    background-color: #fff;
    border-radius: 10px;
    padding: 7px 13px;
    vertical-align: bottom;
    color: #000;
}

.messenger-thread .comment-content::before {
    width: 13px;
    height: 15px;
    background: url(/build/images/messenger-user1.d3240b9e.png) no-repeat center center;
    content: '';
    position: absolute;
    bottom: 5px;
    left: -13px;
}

.messenger-thread .fos_comment_comment_body {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.messenger-thread .fos_comment_comment_body .fos_comment_comment_metas img {
    margin-right: 0;
    float: none !important;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 40px;
}

.messenger-thread .comment-content {
    position: relative;
}

.list-group-item .messenger-list-content .content-new-message {
    font-weight: bold;
}

.messenger-thread .comment-content small.text-muted {
    position: absolute;
    right: -90px;
    top: 11px;
    width: 80px;
    line-height: 12px;
    color: #c7c7c7 !important;
    padding-right: 0 !important;
    font-size: 11px;
}

.messenger-thread .fos_comment_comment_body .comment-detail {
    padding-right: 0;
    font-size: 14px;
    line-height: 18px;
}

.messenger-thread .fos_comment_comment_body.user2 {
    justify-content: flex-end;
}

.messenger-thread .fos_comment_comment_body.user2 .fos_comment_comment_metas {
    justify-content: flex-end;
    margin: 0 0 0 20px;
    order: 2;
}

.messenger-thread .fos_comment_comment_body.user2 .fos_comment_comment_metas img {
    margin-right: 0;
}

.messenger-thread.comments .fos_comment_comment_body.user2 .comment-content {
    color: #fff;
    background-color: #626262;
}

.messenger-thread.comments .fos_comment_comment_body.user2 .comment-content::before {
    background: url(/build/images/messenger-user2.43c3e7d5.png) no-repeat center center;
    content: '';
    left: auto;
    right: -13px;
}

.messenger-thread .fos_comment_comment_body.user2 .comment-content small.text-muted {
    left: -90px;
    right: auto;
    text-align: right;
}

.messenger-thread .fos_comment_comment_body.user2 a.js-link-comment {
    color: #bbb;
}

.messenger-thread .fos_comment_comment_new_form {
    background-color: #fff;
    padding: 0;
    min-height: 150px;
    position: relative;
}

.messenger-thread .fos_comment_comment_new_form .bt-envoyer {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
}

.messenger-thread .fos_comment_comment_new_form .bt-envoyer input {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    background: transparent;
    position: relative;
    z-index: 1;
    border: none;
}

.messenger-thread .fos_comment_comment_new_form .bt-envoyer::after {
    content: '\e942';
    font-family: short-font !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 20px;
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 0;
    color: #fff;
    background-color: #fe872c;
}

.messenger-thread .fos_comment_comment_new_form .bt-envoyer:hover::after {
    background-color: #ff570a;
}

.messenger-thread .fos_comment_comment_new_form .rounded-circle {
    display: none;
}

.messenger-thread .fos_comment_comment_new_form img.img-circle {
    display: none !important;
}

.messenger-thread .fos_comment_comment_new_form .fos-new-comment-textarea {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    position: relative;
}

.messenger-thread .fos_comment_comment_new_form .fos-new-comment-textarea textarea {
    background-color: #fff;
    font-size: 16px;
    border-radius: 23px;
    border: 1px solid #f1e9e0;
    box-shadow: none;
    padding: 20px !important;
    resize: vertical;
}

.bt-messenger-more {
    margin: 50px 0 100px;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.bt-messenger-more .btn-group {
    margin: 0 0 10px 10px;
}

.bt-messenger-more .btn-group .dropdown-menu {
    border: none;
}

.messenger-thread .btn-group .btn .caret {
    display: none;
}

.messenger-thread .btn-group .btn.btn-danger {
    color: #fff;
}

.user-block {
    margin-bottom: 80px;
    padding: 10px 0;
}

.messenger-thread .fos_comment_comment_new_form .fos-new-comment-textarea .btn {
    width: 92px;
    top: 8px;
    right: 17px;
    line-height: 15px;
    position: absolute;
    white-space: normal;
    font-size: 12px;
    text-transform: uppercase;
    background: #fe872c url(/build/images/icon-enveloppe3.ba8ea5e7.png) no-repeat center 9px;
    padding: 34px 5px 5px;
    box-shadow: 0 2px 0 0 rgb(0 0 0 / 20%);
}

.block-user li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 5px 0;
    background-color: #f8f4ef;
    border-radius: 40px !important;
}

.block-user li span.bloc1 {
    display: flex;
    align-items: center;
}

.block-user li .bloc-img {
    border-radius: 40px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    overflow: hidden;
    display: inline-flex;
}

/** my profile **/
.compte-bloc {
    background-color: #fff;
    border-radius: 4px;
    margin: 5px 0 40px;
    padding-top: 20px;
}

.compte-bloc .edit-profil {
    background-color: #f8f4ef;
    padding: 10px 0;
}

.compte-bloc .edit-profil > div {
    padding-bottom: 10px;
}

/** Notification popover **/
.list-notification .list-group-item {
    padding: 2px 5px;
    font-size: 11px;
}

.dropdown-notification li {
    text-align: left;
}

.user-notification .list-notification .list-group-item:last-child {
    border-bottom: 1px solid rgb(255 255 255 / 20%) !important;
}

.user-notification .list-notification .list-group-item {
    background: none;
    text-align: left;
    border-top: 1px solid rgb(255 255 255 / 20%);
    color: #fff;
}

.user-notification .list-notification .list-group-item a.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-notification .list-notification .list-group-item a.notification .content-date {
    padding-left: 5px;
    text-align: right;
}

.user-notification .list-notification .list-group-item a.notification:hover .orange,
.user-notification .list-notification .list-group-item a.notification .orange:hover {
    color: #fe872c !important;
}

.list-notification .list-group-item.not-clicked,
.list-notification .list-group-item.not-clicked a,
.list-notification .list-group-item.not-clicked .content {
    background-color: #f1e9e0;
    color: #424242 !important;
}

.right-menu-bar .right1 .user-notification .dropdown-menu2.dropdown-menu-block {
    min-width: 450px;
    top: -17px;
}

.right-menu-bar .right1 .user-notification .dropdown-menu2.dropdown-menu-block.upper {
    top: -185px;
}

.right-menu-bar .right1 .user-notification .dropdown-menu2.dropdown-menu-block.upper::after {
    top: 185px;
}

@media (min-width: 1200px) {
    .messenger-list .new-messenger {
        padding-right: 50px;
    }
}

@media (max-width: 1199.8px) {
    .messenger-list {
        padding: 0 10px;
    }
}

@media (max-width: 991.8px) {
    .messenger-list .new-messenger label {
        text-align: center;
        display: block;
    }

    .title-mess-bloc {
        text-align: center;
    }

    .messenger-thread .title-mess-bloc {
        justify-content: center;
    }

    .bt-messenger-more {
        margin: 30px 0;
        justify-content: center;
    }

    /*
    .messenger-list .select2-container--default .select2-selection--single {
        justify-content: center;
    }
    */
    .messenger-main {
        margin-bottom: 0;
    }

    .messenger-section,
    .section-messages-append {
        height: auto;
    }

    .messenger-list .new-messenger {
        padding-right: 0;
    }

    .messenger-thread .section-messages-append {
        min-height: auto;
    }

    .messenger-thread .fos_comment_comment_new_form .fos-new-comment-textarea {
        position: relative;
    }

    .messenger-thread .fos_comment_comment_new_form .fos-new-comment-textarea textarea {
        padding: 25px;
        resize: vertical;
    }
}

@media (max-width: 767px) {
    .messenger-thread .section-messages-append {
        padding: 15px;
        margin-bottom: 10px;
    }

    .messenger-thread .fos_comment_comment_body .fos_comment_comment_metas {
        display: none;
    }

    .messenger-thread .comment-content small.text-muted {
        margin-bottom: 7px;
        display: block;
        position: relative;
        right: 0;
        top: 0;
    }

    .messenger-thread .fos_comment_comment_body.user2 .comment-content small.text-muted {
        left: 0;
        right: 0;
        text-align: left;
    }

    .messenger-thread.comments .comment-content {
        max-width: 85%;
    }
}

/*****************************************************************************   */

/* Wizard */

/*****************************************************************************   */

.site .wizard .wizard-step {
    padding: 11px 12px;
    margin-right: 5px;
    background-color: #efefef;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.site .wizard .wizard-step::before {
    width: 0;
    height: 0;
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #fff;
    position: absolute;
    content: '';
    top: 0;
    left: 0;
}

.site .wizard .wizard-step::after {
    width: 0;
    height: 0;
    border-top: 20px inset transparent;
    border-bottom: 20px inset transparent;
    border-left: 20px solid #efefef;
    position: absolute;
    content: '';
    top: 0;
    right: -20px;
    z-index: 2;
}

.site .wizard .wizard-step:first-child::before,
.site .wizard .wizard-step:last-child::after {
    border: none;
}

.site .wizard .wizard-step:first-child {
    border-radius: 4px 0 0 4px;
}

.site .wizard .wizard-step:last-child {
    border-radius: 0 4px 4px 0;
}

.site .wizard .badge {
    margin: 0 5px 0 18px;
    position: relative;
    top: -1px;
}

.site .wizard .wizard-step:first-child .badge {
    margin-left: 0;
}

.site .wizard .current {
    background-color: #007acc;
    color: #fff;
}

.site .wizard .current::after {
    border-left-color: #007acc;
}

/* Completed steps */

.site .wizard .wizard-step.active::after {
    border-left: 20px solid #d5e1f0;
}

.site .wizard .wizard-step.active,
.site .wizard .wizard-step.active::before {
    background-color: #d5e1f0;
}

.site .wizard .wizard-step.complete {
    margin-bottom: 2px;
}

.site .wizard .wizard-step.complete,
.site .wizard .wizard-step.complete::before {
    background-color: #dff0d8;
}

.site .wizard .wizard-step.complete::after {
    border-left: 20px solid #dff0d8;
}

@media (max-width: 767px) {
    .site .wizard .wizard-step {
        margin-top: 3px;
    }
}



