/* ========================
 FILTER
======================== */
.button--filter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 217px;
    height: 60px;
    margin: 0 auto 50px auto;
    font-style: italic;
    color: var(--dolpo--color--neutral-white);
    background-color: var(--dolpo--color--primary-magenta);
    cursor: pointer;
}

/* FRAME */
.filter-frame {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.776);
    z-index: 999;
    transition: all .3s ease;
}

.filter-frame.active {
    opacity: 1;
    transition: all .3s ease;
    animation: FilterOpen .3s;
}

.filter-frame.active-display {
    display: block;
}

@keyframes FilterOpen {

    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

.frame--panel {
    position: fixed;
    width: 100vw;
    height: 80vh;
    text-align: center;
    padding: 48px 20px;
    background-color: var(--dolpo--color--neutral-white);
    overflow: scroll;
}

.frame--panel p {
    font-size: var(--dolpo--font-size--28px);
    margin-bottom: 32px;
}

.panel__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 10px;
    max-width: 500px;
    margin: 0 auto 46px auto;
}

.panel__item {
    position: relative;
    display: block;
    padding: 10px 20px;
    border: 2px solid #F9A5A5;
}

.panel__item-01 {
    border: 2px solid #F9A5A5;
}

.panel__item-02 {
    border: 2px solid #F9CDA5;
}

.panel__item-03 {
    border: 2px solid #93ED74;
}

.panel__item-04 {
    border: 2px solid #CEA7A7;
}

.panel__item-05 {
    border: 2px solid #FCB808;
}

.panel__item-06 {
    border: 2px solid #77E2F1;
}

.panel__item-07 {
    border: 2px solid #D78DEA;
}

.panel__item-08 {
    border: 2px solid #F8869B;
}

.panel__item-09 {
    border: 2px solid #7DC1FF;
}

.panel__list input:checked+label{
    background: var(--dolpo--color--secondary-yellow);
}

.result-number {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 5px;
    font-size: 0.8rem;
    color: var(--dolpo--color--neutral-white);
    background: #AC0030;
    border-radius: 40px;
}

.close__filter {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 18px 22px;
    width: 217px;
    height: 60px;
    font-style: italic;
    color: var(--dolpo--color--neutral-white);
    background: #555555;
    cursor: pointer;
}

@media (min-width: 1080px) {
    .button--filter {
        display: none;
    }
}


/* ========================
 categorie.html 
======================== */
body {
    color: var(--dolpo--color--primary-violet);
}

#top__banner {
    position: relative;
    background-image: url(../img/banner-01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 1252px;
    min-height: 213px;
    margin: 0 auto 70px auto;
}

.banner__title {
    position: absolute;
    display: inline-block;
    bottom: -60px;
    left: 50%;
    transform: translate(-50%);
    width: min-content;
    text-transform: uppercase;
    padding: 0 15px;
    text-align: center;
    font-family: 'Coda';
    font-weight: 800;
    font-size: 2.6rem;
    color: var(--dolpo--color--neutral-white);
    background-color: var(--dolpo--color--secondary-blue-p);
}

.banner__title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -50px;
    width: 50px;
    height: 75px;
    background-image: url(../img/img-pictos/deco-banner-title-left.svg);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.banner__title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: -40px;
    width: 40px;
    height: 75px;
    background-image: url(../img/img-pictos/deco-banner-title-right.svg);
    background-repeat: no-repeat;
    background-position: bottom right;
}

@media screen and (min-width: 768px){

    .banner__title {
        bottom: 0;
        left: auto;
        right: 60px;
        width: auto;
        transform: translate(0);
    }
}

.item--thumb {
    position: relative;
    display: block;
    width: 100%;
    /* max-width: 173px; */
}

.item--thumb img {
    width: 100%;
    height: auto;
}

.item--description {
    width: 60%;
    overflow: hidden;
}

.category-names {
    column-gap: 10px;
    height: 36px;
    margin-top: 2px;
    line-height: 1;
    overflow: hidden;
}

.category-name, .category-name-s {
    display: inline-block;
    text-transform: uppercase;
    color: var(--dolpo--color--neutral-grey);
    overflow: hidden;
}

.book-title {
    height: auto;
    margin-bottom: 9px;
    font-family: 'Coda';
    font-weight: 800;
    font-size: var(--dolpo--font-size--20px);
    line-height: 1.1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.book-title--small {
    display: block;
    line-height: 0.9;
    font-size: var(--dolpo--font-size--13px);
}

.author-name {
    height: 36px;
    text-transform: uppercase;
    margin-bottom: 5px;
    overflow: hidden;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dolpo-review {
    text-transform: uppercase;
    margin-right: 6px;
    margin-bottom: 0;
    font-weight: 700;
    color: var(--dolpo--color--neutral-grey);
}

.review--title {
    display: block;
    font-family: 'Coda';
    font-weight: 800;
    color: var(--dolpo--color--primary-magenta);
}
.review__count{
    font-size: 2rem;
}

.book-presentation {
    height: 70px;
    margin-bottom: 10px;
    line-height: 24px;
    font-weight: 400;
    overflow: hidden;
}

/* HOVER EFFECT */
a.item--thumb:hover, .book-title:hover a, .author-name:hover a, .category-name:hover a, .category-name-s:hover a {
    opacity: .8;
    transition: all .25s ease-in-out;
}

/* ======= Category slider item ======= */
#category__slider {
    margin-bottom: 105px;
}

.category__slider__item {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: repeat(2, auto);
    column-gap: 15px;
    width: 100%;
    max-width: 492px;
    height: 100%;
    padding: 10px 0 0 14px;
    margin-right: 20px;
}

.category__slider__item .item--thumb {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    display: block;
    width: fit-content;
    max-width: 250px;
}

.category__slider__item .item--thumb img {
    width: 100%;
    max-height: 310px;
}

.category__slider__item .item--description {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    width: 100%;
}

.category__slider__item .bloc__title-author {
    margin-bottom: 8px;
}
/* max-height book title */
.category__slider__item .book-title, .best-sale__item .book-title {
    height: auto;
    max-height: 64px;
}
/* max-height author name */
.category__slider__item .author-name, .best-sale__item .author-name {
    height: auto;
    max-height: 36px;
    margin-bottom: 12px;
}

.category__slider__item .dolpo-review {
    display: flex;
    flex-direction: column;
}

.category__slider__item .cta--product {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: end;
}

.category__slider__item .cta--product span {
    font-size: 1.4rem;
}

@media screen and (min-width: 400px){
    .review--title {
        display: inline-block;
    }
}

/* Quand il y a un seul element dans le slider */
@media screen and (min-width: 1px) and (max-width: 800px){
    .splide__slide {
        height: max-content;
    }

    .category__slider__item {
        width: 100%;
        max-width: 600px;
        column-gap: 10px;
    }

    .category__slider__item .item--description {
        width: 100%;
    }

    .category__slider__item .item--thumb img {
        max-height: none;
    }
}

@media screen and (min-width: 1080px){
    .category__slider__item {
        max-width: 492px;
    }

    .review--title {
        font-size: var(--dolpo--font-size--18px);
    }

    .category__slider__item .cta--product {
        column-gap: 32px;
    }

}

/* ETIQUETTE JAUNE SUR LES LIVRES */
.label--livre {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 5px;
    top: -8px;
    left: -8px;
    width: 36px;
    height: 36px;
    border-radius: 20px;
    background-color: var(--dolpo--color--secondary-yellow-o);
    background-position: center;
    background-repeat: no-repeat;
    animation: animationLabel-out .3s forwards;
    z-index: 9;
}

.label--livre span {
    opacity: 0;
    text-transform: uppercase;
    margin-left: 20px;
    font-weight: 700;
    font-size: var(--dolpo--font-size--12px);
}

@media (min-width: 400px){
    .label--livre span {
        font-size: var(--dolpo--font-size--16px);
    }
}

.all-books__item:hover .label--livre, .category__slider__item:hover .label--livre {
    animation: animationLabel 2s forwards;
}

.all-books__item:hover .label--livre span, .category__slider__item:hover .label--livre span {
    animation: animationLabel-span 2s forwards;
}

.label--nouveaute {
    background-image: url(../img/img-pictos/star.svg);
    background-size: 20px;
}

.label--coup-coeur {
    background-image: url(../img/img-pictos/pouce.svg);
    background-size: 20px;
}

.label--prix-litteraire {
    background-image: url(../img/img-pictos/prix-litteraire.svg);
    background-size: 30px;
}

.label--meilleur {
    background-image: url(../img/img-pictos/coupe.svg);
    background-size: 20px;
}

@keyframes animationLabel {
    0% {
        opacity: 1;
        left: -8px;
        transform: translate(0);
        width: 36px;
        height: 36px;
        border-radius: 20px;
    }

    10% {
        opacity: 1;
        left: 50%;
        transform: translate(-50%);
        width: calc(100% + 5px);
        height: auto;
        border-radius: 0;
        padding: 5px 0;
        background-position: center left 5px;
    }

    80% {
        opacity: 1;
        left: 50%;
        transform: translate(-50%);
        width: calc(100% + 5px);
        height: auto;
        border-radius: 0;
        padding: 5px 0;
        background-position: center left 5px;
    }

    100% {
        opacity: 0;
        left: 50%;
        transform: translate(-50%);
        width: calc(100% + 5px);
        height: auto;
        border-radius: 0;
        padding: 5px 0;
        background-position: center left 5px;
    }
}

@keyframes animationLabel-span {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes animationLabel-out {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 0;
    }

    80% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ======= Recommandation ======= */
#recommandation {
    margin-bottom: 98px;
}

.recommandation-thumb {
    max-width: 220px;
}

.recommandation__item .item--description {
    position: relative;
    width: 100%;
}

.recommandation__item .book-title {
    height: auto;
    margin-bottom: 20px;
    font-size: var(--dolpo--font-size--26px);
}

.recommandation__item .book-presentation {
    height: auto;
    padding-bottom: 30px;
}

@media screen and (min-width: 680px) {
    .recommandation__item {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        align-items: stretch;
        column-gap: 24px;
        margin-top: 0px;
    }

    .recommandation__item .item--description {
        max-width: 600px;
    }

    .recommandation__item .cta--product {
        position: absolute;
        bottom: 0;
    }
}

@media screen and (min-width: 900px){
    #recommandation .section-title {
        font-size: 2rem;
    }

    #recommandation .title__strong {
        font-size: 3rem;
    }
}

/* ======= 3 PICTOS CTA ======= */
.cta--product {
    display: flex;
    align-items: center;
    column-gap: 32px;
    margin-top: 10px;
}

.cta--product span {
    font-size: 1.4rem;
}

.cta--product .icon-picto-heart {
    color: var(--dolpo--color--primary-magenta);
}

.cta--product .icon-picto-cart {
    color: var(--dolpo--color--primary-blue);
}

.cta--product .icon-picto-library {
    color: var(--dolpo--color--secondary-orange);
}

@media screen and (min-width: 680px){
    .cta--product {
        column-gap: 46px;
    }

}

/* ======= SUB-GENRE ======= */
#sub-genre {
    margin-bottom: 59px;
}

#sub-genre .title__strong {
    display: block;
}

.sub-genre__list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    width: fit-content;
    margin: 0 auto;
}

.sub-genre__item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 133px;  
    height: 37px;
    padding-top: 2px;
    margin: 10px 22px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Coda';
    font-weight: 800;
    color: var(--dolpo--color--neutral-white);
    background-color: var(--dolpo--color--secondary-green-e);
}

.sub-genre__item--link {
    line-height: 1.1;
}

.sub-genre__item::before {
    content: "";
    position: absolute;
    left: -22px;
    width: 22px;
    height: 40px;
    background-image: url(../img/img-pictos/deco-ctg-left.svg);
    background-repeat: no-repeat;
    background-position: left;
}

.sub-genre__item::after {
    content: "";
    position: absolute;
    right: -20px;
    width: 20px;
    height: 43px;
    background-image: url(../img/img-pictos/deco-ctg-right-mobile.svg);
    background-repeat: no-repeat;
    background-position: right;
}

.sub-genre__title--small {
    font-size: 0.625rem;
}

@media screen and (min-width: 600px){

    #sub-genre .section-title::after {
        content: "";
        position: absolute;
        top: -80px;
        right: -60px;
        width: 263px;
        height: 305px;
        background-image: url(../img/img-decos/dragon-page.svg);
        background-repeat: no-repeat;
        background-position: right;
        z-index: -1;
    }

    .sub-genre__list {
        grid-template-columns: repeat(3, auto);
    }
}

@media screen and (min-width: 768px){
    .sub-genre__list {
        grid-template-columns: repeat(4, auto);
    }
    #sub-genre .title__strong {
        font-size: var(--dolpo--font-size--32px);
    }
}

@media screen and (min-width: 1080px){

    #sub-genre .section-title {
        text-align: center;
    }

    #sub-genre .title__strong {
        display: inline;
        font-size: var(--dolpo--font-size--32px);
    }

    .sub-genre__list {
        grid-template-columns: repeat(2, auto);
    }

    .sub-genre__item {
        width: 277px;  
        height: 37px;
    }

    .sub-genre__item--link {
        font-size: var(--dolpo--font-size--22px);
    }

    .sub-genre__title--small {
        font-size: 0.6875rem;
    }

    .sub-genre__item::before {
        left: -20px;
        width: 22px;
        height: 50px;
    }

    .sub-genre__item::after {
        right: -28px;
        width: 40px;
        height: 50px;
        background-image: url(../img/img-pictos/deco-ctg-right.svg);
    }
}

@media screen and (min-width: 1400px){
    .sub-genre__list {
        grid-template-columns: repeat(3, auto);
    }
}

/* ======= GALERIE DES LIVRES ======= */
#all-books {
    margin-bottom: 68px;
}

#all-books .section-title {
    font-size: 2rem;
}

.all-books__filter {
    text-align: center;
    margin-bottom: 10px;
}

.all-books__filter__item {
    text-decoration: underline;
    margin-left: 19px;
    cursor: pointer;
}

.all-books__filter__item:hover {
    color: var(--dolpo--color--secondary-green-p);
}

.all-books__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    row-gap: 50px;
}

/* Page categorie (+ filter gauche) */
/* .main__container--category .all-books__list {
    display: grid;
    grid-template-columns: repeat(2, min-content);
    justify-content: start;
    align-items: start;
    column-gap: 16px;
    row-gap: 50px;
} */

.all-books__item {
    display: flex;
    justify-self: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 220px;
    padding: 14px 3px;
    text-align: center;
}

.all-books__item .item--thumb {
    display: inline-block;
    width: 120px;
    height: 230px;
    margin-bottom: 25px;
}

.all-books__item .item--description {
    width: 100%;
}

.all-books__item .book-title {
    height: 63.5px;
    padding: 0 10px;
    font-size: var(--dolpo--font-size--19px);
}

.all-books__item .cta--product {
    justify-content: center;
    column-gap: 22px; 
}

.all-books__item .cta--product span {
    font-size: 1.4rem;
}

@media screen and (min-width: 400px){
    /* Page categorie (+ filter gauche) */
    /* .main__container--category .all-books__list {
        grid-template-columns: repeat(2, 220px);
    } */

    .all-books__item .item--thumb {
        /* width: 173px; */
        width: 150px;
    }
}

@media screen and (min-width: 768px){
    .all-books__titles {
        position: relative;
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 1000px;
    }

    /* Page categorie (+ filter gauche) */
    /* .main__container--category .all-books__list {
        grid-template-columns: repeat(4, 234px);
    } */
}

@media screen and (min-width: 1500px){
    /* Page categorie (+ filter gauche) */
    /* .main__container--category .all-books__list {
        grid-template-columns: repeat(5, 234px);
    } */

    .all-books__titles::before {
        content: "";
        position: absolute;
        top: -30px;
        left: -220px;
        width: 250px;
        height: 291px;
        background-image: url(../img/img-decos/flower-m.svg);
        background-repeat: no-repeat;
        background-position: top left;
        z-index: -1;
    }
}

/* ======= ARTICLE ======= */

#article {
    margin-bottom: 60px;
}

#article .section-title {
    font-size: 2rem;
}

.article__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    row-gap: 38px;
}

.article__item {
    display: flex;
    column-gap: 20px;
    width: 100%;
    max-width: 366px;
}

.article__item--link {
    width: 100%;
    max-width: 187px;
    height: 187px;
}

.article__item--link:hover {
    opacity: .8;
    transition: all .25s ease-in-out;
}

.article--thumb {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.article-date {
    display: block;
    margin-bottom: 10px;
}

.article-title {
    height: 56px;
    overflow: hidden;
    font-size: var(--dolpo--font-size--24px);
    margin-bottom: 6px;
}

.article-content-thumb {
    line-height: 24px;
    height: 102px;
    overflow: hidden;
}

@media screen and (min-width: 480px){

    .article__list {
       flex-direction: row;
       column-gap: 55px;
    }
}

@media screen and (min-width: 600px){

    .main__container--category #article .section-title::before, .main__container--category #article .section-title::after {
        content: "";
        position: absolute;
        z-index: -1;
    }

    .main__container--category #article .section-title::before {
        top: -300px;
        left: calc(50% - 800px);
        width: 223px;
        height: 258px;
        background-image: url(../img/img-decos/dragon-page.svg);
        background-repeat: no-repeat;
    }
}

/* ======= BANNER ======= */

.banner--publicity {
    padding: 60px 0;
}

/* ======= BEST SALE ======= */

#best-sale, #serie {
    max-width: 1200px;
}

#best-sale .section-title {
    text-align: center;
}

.best-sale__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 61px;
    padding: 30px 0;
}

.best-sale__item {
    position: relative;
    display: grid;
    grid-template-columns: 160px auto;
    grid-template-rows: auto 1fr;
    align-items: start;
    column-gap: 8px;
    width: 100%;
    max-width: 500px;
    min-height: 366px;
}

.best-sale__item .item--thumb {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    width: 160px; 
    height: 260px;
}

.best-sale__item .ranking-num {
    position: absolute;
    bottom: -30px;
    left: -16px;
    font-family: 'Coda';
    font-weight: 900;
    font-size: 5rem;
    -webkit-text-stroke: 3px #FFF;
    text-stroke: 3px #FFF;
}

.best-sale__item .item--description {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    width: 100%;
}

.best-sale__item .category-names {
    height: 18px;
    overflow: hidden;
}

.best-sale__item .dolpo-review {
    display: block;
}

.best-sale__item .cta--product {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: start;
    position: relative;
    justify-content: left;
    column-gap: 30px;
    margin-bottom: 16px;
}

@media screen and (min-width: 768px){

    .best-sale__list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        column-gap: 24px;
        row-gap: 10px;
        width: 724px; /* item x 2 + column-gap=24px */
        margin: 0 auto;
    }

    .best-sale__item {
        position: relative;
        column-gap: 10px;
        width: 100%;
        max-width: 350px;
        min-height: 366px;
    }

    .best-sale__item .item--description .cta--product {
        justify-content: left;
        column-gap: 46px;
    }

    #best-sale .section-title::before, #best-sale .section-title::after {
        content: "";
        position: absolute;
        z-index: -1;
    }

    #best-sale .section-title::before  {
        top: 420px;
        left: calc(50% - 650px);
        width: 237px;
        height: 248px;
        background-image: url(../img/img-decos/flower-s.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    #best-sale .section-title::after {
        top: 0;
        right: calc(50% - 600px);
        width: 176px;
        height: 205px;
        background-image: url(../img/img-decos/flower-m.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .button--see-all::before, .button--see-all::after {
        content: "";
        position: absolute;
        z-index: -1;
        transform: scaleX(-100%);
    }

    .button--see-all::before {
        top: -100px;
        left: calc(50% - 700px);
        width: 330px;
        height: 530px;
        background: url(../img/img-decos/flower-l.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }

    .button--see-all::after {
        top: -150px;
        right: calc(50% - 600px);
        width: 213px;
        height: 223px;
        background: url(../img/img-decos/flower-s.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
    
}

@media screen and (min-width: 1080px) {

    #best-sale .section-title {
        text-align: left;
    }

    .best-sale__list {
        width: 784px;
    }
   
    .best-sale__item {
        align-items: start;
        max-width: 380px;
    }

    .best-sale__item .ranking-num {
        bottom: -50px;
        font-size: 6.25rem;
    }
}

@media screen and (min-width: 1228px) {
    .best-sale__list {
        width: 100%;
    }

    .main__container--category .best-sale__list {
        width: 784px;
    }
}

@media screen and (min-width: 1465px) {
    .main__container--category .best-sale__list {
        width: 100%;
    }
}

/* ========================
 fiche-livre.html
======================== */
#product__detail {
    width: 100%;
    max-width: 600px;
    margin-top: 50px;
}

.product__item {
    display: grid;
    grid-column: repeat(1, 1fr);
    justify-content: center;
}

#product__detail .product__titles {
    margin-bottom: 25px;
    justify-self: center;
}

#product__detail .book-title {
    height: auto;
    font-size: var(--dolpo--font-size--26px);
    display: block; /* Pas de trois petits points */
    -webkit-box-orient: auto;
    -webkit-line-clamp: auto;
}

#product__detail .book-title--small {
    font-size: var(--dolpo--font-size--18px);
}

#product__detail .category-name {
    display: inline-block;
    margin-right: 13px;
}

#product__detail .author-name {
    display: inline-block;
    height: auto;
    margin-right: 24px;
}

#product__detail .review--title {
    display: inline-block;
    margin-left: 18px;
    font-size: var(--dolpo--font-size--18px);
}

.product__visual {
    justify-self: center;
    text-align: center;
    margin-bottom: 25px;
    width: 100%;
    max-width: 364px;
}

.product__visual--img {
    width: 100%;
}

#product__detail .book-presentation {
    height: auto;
    margin-bottom: 25px;
    line-height: 24px;
}

.product__edition {
    display: grid;
    grid-template-columns: repeat(2, min-content);
    justify-content: center;
    column-gap: 21px;
    row-gap: 21px;
    width: fit-content;
    margin: 0 auto 45px auto;
    cursor: pointer;
}

.edition__item {
    display: block;
    width: 140px;
    height: 87px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    border: 1px solid #BCBCBC;
    border-radius: 18px;
}

.product__edition input:checked+label{
    border: 4px solid var(--dolpo--color--primary-blue);
}

.edition__price {
    font-size: var(--dolpo--font-size--24px);
}

.shipping-48h {
    color: var(--dolpo--color--secondary-green-e);
}

.shipping-long {
    color: var(--dolpo--color--primary-magenta);
}

.shipping-immed {
    color: var(--dolpo--color--secondary-blue-o);
}

/* ETOILES */

.product__scores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 33px;
    row-gap: 33px;
    margin-bottom: 80px;
}

.score__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 7px;
}

.score__title {
    text-transform: uppercase;
    font-weight: 700;
}

.score__item.item-01 .icon-star {
    color: var(--dolpo--color--primary-magenta);
}

.score__item.item-02 .icon-star {
    color: var(--dolpo--color--secondary-green-f);
}

.score__item.item-03 .icon-star {
    color: var(--dolpo--color--secondary-yellow);
}

.score__item.item-04 .icon-star {
    color: var(--dolpo--color--secondary-purple);
}

.score__item.item-05 .icon-star {
    color: var(--dolpo--color--secondary-green-e);
}

/* AVIS */

.product__reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 71px;
    width: 100%;    
    max-width: 1180px;
    margin: 0 auto 30px auto;
}

.review__title {
    text-transform: uppercase;
    text-align: left;
    font-family: 'Coda';
    font-weight: 700;
    font-size: var(--dolpo--font-size--32px);
    margin-bottom: 20px;
}

.review--customer {
    max-width: 380px;
    margin: 0px 0 0;
}

.review__graphic {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 365px;
    margin-bottom: 8px;
}

.review__graphic > * {
    width: 100%;
}

.review__buttons {
    display: flex;
    justify-content: space-between;
    column-gap: 24.5px;
}

.button--review {
    text-transform: uppercase;
    margin:0;
    min-height:44px;
}

.button--review--read {
    text-transform: uppercase;
    background-color: var(--dolpo--color--secondary-blue-o);
}

/* INFO PRODUCT */

.product__informations {
    display: flex;
    flex-direction: column;
    color: var(--dolpo--color--neutral-grey);
    width: 100%;
}

.product__informations li {
    margin-bottom: 8px;
}

/* CTA */

.product__cta {
    justify-self: center;
}

.product__cta .cta--product {
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    column-gap: 40px;
    width: 100%;
    margin: 0 auto 45px auto;
}
/* 2 pictos */
.product__cta .cta--product > div {
    display: flex;
    column-gap: 30px;
}

.product__cta .cta--product span {
    font-size: 2rem;
}

/* CTA COMMANDER */

.button-order {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
    width: 300px;
    height: 58px;
    text-transform: uppercase;
    font-size: var(--dolpo--font-size--22px);
    background-color: var(--dolpo--color--primary-blue);
    color: #fff;
}

.cta--product .button-order .icon-picto-cart {
    font-size: 2rem;
    color: #fff;
}

/* OTHER BOOKS OF THIS AUTHOR */

#authors-books > div:first-of-type {
    margin-bottom: 92px;
}

#authors-books .section-title {
    margin-bottom: 20px;
    font-size: var(--dolpo--font-size--32px);
}

/* MAPPEMONDE */

section#section__mappemonde {
    max-width: 1500px;
}

#section__mappemonde .section-title {
    text-align: center;
    margin-bottom: 20px;
}

#section__mappemonde p {
    text-align: center;
    line-height: 33px;
    font-size: var(--dolpo--font-size--24px);
    margin-bottom: 56px;
}

#mappemonde {
    position: relative;
    width: calc(100% + 24px);
    left: -12px;
}

#mappemonde #mappemonde__widget {
    width: 100%;
}

/* SUGGESTION OTHER PRODUCTS */

/* #authors-books .all-books__list {
    grid-template-columns: repeat(2, min-content);
} */

/* DONNER SON AVIS */

.my-review-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 570px;
    min-height: 420px;
    padding: 20px;
    background-color: var(--dolpo--color--neutral-white);
    box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.25);
}

.my-review-box p {
    font-family: 'Coda';
    font-weight: 800;
    font-size: var(--dolpo--font-size--22px);
}

.my-review-box textarea {
    width: 100%;
    min-height: 100px;
    margin: 12px 0 30px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.my-review-box .box--review--bottom {
    flex-direction: column;
}

.my-review-box .button--close-menu {
    top: 14px;
    display: block!important;
}

.review-sticker, .all-review--sticker {
    position: relative;
    width: 37px;
    height: 37px;
    border-radius: 30px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.review-sticker input {
    opacity: .2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border-radius: 30px;
    cursor: pointer;
}

.review-sticker.sticker-5 input, .all-review--sticker.sticker-5 {
    background-color: var(--dolpo--color--primary-magenta);
}

.review-sticker.sticker-4 input, .all-review--sticker.sticker-4 {
    background-color: var(--dolpo--color--secondary-yellow-o);
}

.review-sticker.sticker-3 input, .all-review--sticker.sticker-3 {
    background-color: var(--dolpo--color--secondary-green-p);
}

.review-sticker.sticker-2 input, .all-review--sticker.sticker-2 {
    background-color: var(--dolpo--color--secondary-green-e);
}

.review-sticker.sticker-1 input, .all-review--sticker.sticker-1 {
    background-color: var(--dolpo--color--secondary-green-pin);
}

.review-sticker input:checked {
   opacity: 1;
   width: 28px;
   height: 28px;
}

@media (min-width: 500px) {
    .product__edition {
        grid-template-columns: repeat(3, min-content);
    }

    .product__cta .cta--product {
        flex-direction: row;
        justify-content: flex-start;
    }

    .my-review-box textarea {
        min-height: 200px;
    }

    .my-review-box .box--review--bottom {
        flex-direction: row;
    }
}

/* @media (min-width: 700px) {
    #authors-books .all-books__list {
        grid-template-columns: repeat(3, max-content);
    }
} */

@media (min-width: 900px) {
    
    /* OTHER BOOKS OF THIS AUTHOR */
    #authors-books > div {
        margin-bottom: 92px;
    }

    #authors-books {
        width: 100%;
        margin: 0 auto;
    }

    /* #authors-books .all-books__list {
        grid-template-columns: repeat(4, max-content);
    } */

}

@media (min-width: 1080px) {
    /* Break point */
    #product__detail {
        width: 100%;
        max-width: 1100px;
        margin-top: 30px;
    }

    .product__item {
        grid-template-columns: repeat(3, auto);
        grid-template-rows: repeat(6, max-content);
        column-gap: 40px;
    }

    .product__visual {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        justify-self: end;
    }

    #product__detail .product__titles {
        grid-column: 2 / 4;
        grid-row: 1 / 2;
        justify-self: start;
        margin-bottom: 0px;
    }

    #product__detail .product-categories {
        margin-bottom: 8px;
    }

    #product__detail .book-title {
        margin-bottom: 20px;
    }

    #product__detail .author-names {
        margin-bottom: 8px;
    }
    #product__detail .book-presentation{
        min-width: 764px;
    }

    .book-presentation {
        grid-column: 2 / 4;
        grid-row: 2 / 3;
    }

    .product__edition {
        grid-column: 2 / 4;
        grid-row: 3 / 4;
        justify-content: start;
        justify-self: start;
        row-gap: 6px;
        width: 100%;
    }

    .product__informations {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
        align-self: start;
        flex-direction: row;
        column-gap: 18px;
        margin-bottom: 72px;
    }

    .product__informations ul {
        width: 100%;
        min-width: 233px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;

    }

    .product__cta {
        grid-column: 2 / 4;
        grid-row: 4 / 5;
        justify-self: start;
    }

    .product__scores {
        grid-column: 1 / 4;
        grid-row: 5 / 6;
        margin-bottom: 94px;
    }

    .product__reviews {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        column-gap: 57px;
    }

    /* @cw added */
    .review--editor{
        max-width: 770px;
    }
    .review--customer {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 100%;
    }
    .review--customer.no-review-yet{
        display: block;
    }

    /* #authors-books .all-books__list {
        grid-template-columns: repeat(5, max-content);
    } */
 
    /* MAPPEMONDE */
    #section__mappemonde {
        margin-bottom: 100px;
    }

    #mappemonde {
        width: calc(100% + 40px);
        left: -20px;
    }
}

/* ALL REVIEWS */

/* #all-reviews {
    display: none;
} */

.all-review__item  {
    width: 100%;
    max-width: 1100px;
    padding: 10px;
    margin: 0 auto 30px auto;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.img-profil--review {
    width: 70px;
    height: 70px;
    border-radius: 40px;
}

/* ========================
 sous-categorie.html
======================== */
#top__banner.banner__sub-category {
    background-image: url(../img/banner-02.jpg);
}

.banner__sub-category .banner__title {
    background-color: var(--dolpo--color--secondary-green-f);
}

#sub-category__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 45px;
    margin-bottom: 87px;
}

#sub-category__feature .category__slider__item {
    grid-template-rows: auto 1fr;
    align-content: start;
    padding-right: 6px;
}

#sub-category__feature .category__slider__item .item--thumb {
    height: auto;
    max-width: auto;
}

#sub-category__feature .category__slider__item .cta--product {
    align-self: start;
}

@media (min-width: 800px){
    #sub-category__feature {
        flex-direction: row;
        align-items: stretch;
        justify-content: flex-start;
        column-gap: 30px;
    }

    #sub-category__feature .category__slider__item .item--thumb {
        height: 300px;
    }
}

/* ========================
 liste-auteur-grid.html
======================== */
section#author-grid-list, .subst--section#author-grid-list {
    max-width: 1300px;
}

.grid-list__item {
    position: relative;
    min-height: 350px;
    width: 100%;
    min-width: 278px;
    max-width: 278px;
}

.grid-list__visual {
    width: 100%;
    min-width: 278px;
    max-width: 278px;
}

.grid-list__visual img {
    width: 100%;
    min-height: 350px;
    border-radius: 30px;
}

.grid-author-name {
    position: absolute;
    left: 25px;
    bottom: 25px;
    font-family: 'Coda';
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dolpo--color--neutral-white);
    z-index: 9;
}

.surname {
    display: block;
}

/* ========================
 Hover sur les auteurs
======================== */

/* .author-list__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 68px;
    row-gap: 70px;
} */

.author--list__item {
    position: absolute;
    opacity: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 278px;
    padding: 14px;
    transition: all .3s ease;
}

.grid-list__item:hover .grid-list__visual {
    opacity: .15;
    z-index: -1;
    transition: all .3s ease;
}

.grid-list__item:hover .author--list__item {
    opacity: 1;
    z-index: 1;
    transition: all .3s ease;
}

.author-list--profil {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 10px;
}

.author-list--name {
    margin-bottom: 6px;
    font-family: 'Coda';
    font-weight: 800;
    font-size: var(--dolpo--font-size--24px);
}

.author-list--name .surname {
    display: block;
    text-transform: uppercase;
}

/* NOMBRE DE LIVRE / NOMBRE DE PRIX */ 
.profil--content--middle {
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dolpo--color--neutral-grey);

}

.profil--content--middle p:first-of-type {
    margin-bottom: 7px;
}

.text-qnt {
    color: var(--dolpo--color--primary-magenta);
}

/* NOMBRE PAR GENRE */
.profil--content--bottom {
    display: flex;
    column-gap: 15px;
    margin-bottom: 14px;
    font-weight: 700;
}

.profil--content--bottom > a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profil--content--bottom .genre-qnt {
    font-size: var(--dolpo--font-size--24px);
}

.profil--content--bottom .genre-title {
    text-transform: uppercase;
    font-size: var(--dolpo--font-size--12px);
}

.profil--content--follow {
    display: flex;
    column-gap: 11px;
    text-transform: uppercase;
    font-size: var(--dolpo--font-size--14px);
    font-weight: 700;
    color: var(--dolpo--color--primary-magenta);
}

/* LIVRES DE L'AUTEUR */
.profil--books {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.profil--books p {
    margin-bottom: 6px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--dolpo--color--neutral-grey);
}

.profil--books .principal-books--list {
    display: flex;
    column-gap: 12px;
    align-items: center;
}

.profil--books .principal-books--list img {
    width: 44px;
    height: auto;
    max-height: 70px;
}

.profil--books .last-book {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

/* ========================
 fiche-auteur.html
======================== */
section#author__detail, .subst--section#author-grid-list {
    margin-bottom: 52px;
}

.author-list--profil.profil--detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profil--detail .profil--pic {
    width: 100%;
    max-width: 360px;
}

.profil--detail .author-list--name {
    display: block;
    text-align: center;
    margin-bottom: 26px;
    font-size: var(--dolpo--font-size--32px);
}

.profil--detail .profil--content--follow {
    justify-content: center;
    margin-bottom: 28px;
}

.profil--detail .profil--content--bio {
    width: 100%;
    max-width: 400px;
    margin-bottom: 22px;
}

.profil--detail .bio--title {
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.profil--detail .profil--content--bottom__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    column-gap: 21px;
}

.profil--detail .profil--content--bottom__container p {
    margin-bottom: 6px;
    color: var(--dolpo--color--neutral-grey);
}

.profil--detail .profil--content--bottom {
    justify-content: center;
    align-items: center;
}

#authors-best {
    margin-bottom: 55px;
}

@media screen and (min-width: 400px){
    .profil--detail .profil--content--bottom__container {
        flex-direction: row;
    }
}

@media screen and (min-width: 768px){
    #author__detail {
        margin-bottom: 30px;
    }

    .author-list--profil.profil--detail {
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .profil--detail .author-list--name {
        text-align: left;
        font-size: var(--dolpo--font-size--44px);
    }

    .profil--detail .profil--content--follow {
        justify-content: flex-start;
    }

    .profil--detail .profil--content--bio {
        max-width: 493px;
    }

    .profil--detail .profil--content--bottom {
        justify-content: flex-start;
    }
}

/* ========================
 liste-blog.html
======================== */
/* BLOG */
#blog {
    margin-bottom: 85px;
}

#blog .section-title, #posdcast .section-title {
    margin-bottom: 6px;
    text-align: center;
}

.section-introduction {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto 28px auto;
}

.blog__list {
    display: grid;
    grid-template-columns: repeat(1, auto);
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.blog__item {
    justify-self: center;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    width: 100%;
    max-width: 237px;
}

.blog__item .item--thumb {
    display: block;
    width: 100%;
    max-width: 237px;
    max-height: 153px;
    text-align: center;
}

.blog__item .icon-user {
    color: var(--dolpo--color--primary-magenta);
    margin-right: 5px;
}

.blog-name {
    font-size: var(--dolpo--font-size--24px);
    font-weight: 700;
}

.button--blog {
    width: 237px;
    height: 32px;
    color: var(--dolpo--color--neutral-white);
    background-color: var(--dolpo--color--primary-magenta);
}

.button--blog .icon-arrow-down {
    display: block;
    margin-left: 6px;
    font-size: 0.5rem;
    transform: rotate(-90deg);
}

@media screen and (min-width: 520px){
    .blog__list {
        grid-template-columns: repeat(2, auto);
    }
}

@media screen and (min-width: 768px){
    .blog__list {
        grid-template-columns: repeat(3, auto);
    }
}

/* PODCAST */

#posdcast .section-introduction {
    margin-bottom: 38px;
}

.podcast__list {
    display: grid;
    grid-template-columns: repeat(1, 237px);
    justify-content: start;
    row-gap: 40px;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto 10px auto;
}

.podcast__item {
    justify-self: center;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    width: 237px;
}

.podcast__item a:hover {
    opacity: .8;
    transition: all .25s ease-in-out;
}

.podcast-name {
    font-weight: 700;
}

@media screen and (min-width: 520px){
    .podcast__list {
        grid-template-columns: repeat(2, 237px);
        column-gap: 18px;
    }
}

@media screen and (min-width: 780px){
    .podcast__list {
        grid-template-columns: repeat(3, 237px);
    }
}

@media screen and (min-width: 1080px){
    .podcast__list {
        grid-template-columns: repeat(4, 237px);
        column-gap: 18px;
    }
}

/* ========================
 top-100.html
======================== */
.section-title.section-title-xl .best-sale__list {
    margin-top: 90px;
}

/* ========================
 univers.html
======================== */
#univers {
    margin-bottom: 36px;
}

#best-series {
    margin-bottom: 50px;
}

.all-series--middle {
    margin-bottom: 58px;
}

.all-series--sort {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 10px;
    max-width: 822px;
    margin: 0 auto 83px auto;
}

.all-series--sort div {
    display: flex;
    flex-direction: column-reverse;
    white-space: nowrap;
}

.all-series--sort div input[type="checkbox"]{
    opacity: 0;
}

.button--category--series {
    padding: 10px 20px;
    margin: 0 auto;
    text-transform: uppercase;
    background-color: #D5D5D5;
    cursor: pointer;
}

.all-series--sort input:checked+label {
    background: var(--dolpo--color--secondary-yellow);
}

.all-series__list {
    display: grid;
    grid-template-columns: repeat(2, 150px);
    column-gap: 15px;
    row-gap: 33px;
    width: 100%;
    max-width: fit-content;
    margin: 0 auto 50px auto;
}

.all-series__item {
    position: relative;
    width: 150px;
    height: 226px;
    object-fit: contain;
}

.all-series__item--gradation {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #00000000 50%, #000 80%);
    z-index: 2;
}

.all-series__item img {
    width: 100%;
    z-index: -1;
}

.serie-name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    margin-bottom: 0;
    line-height: 1.2;
    text-align: center;
    font-family: 'Coda';
    font-weight: 800;
    color: var(--dolpo--color--neutral-white);
    z-index: 3;
}

@media screen and (min-width: 400px){

    .all-series__list {
        display: grid;
        grid-template-columns: repeat(2, 165px);
        column-gap: 36px;
    }

    .all-series__item {
        width: 165px;
        height: 249px;
    }
}

@media screen and (min-width: 600px){

    .all-series__list {
        display: grid;
        grid-template-columns: repeat(3, 165px);
    }
}

@media screen and (min-width: 768px){
    .all-series--middle {
        flex-direction: row;
        column-gap: 50px;
        align-items: flex-end;
    }

    .all-series--middle p {
        width: 100%;
    }

    .all-series__list {
        display: grid;
        grid-template-columns: repeat(4, 165px);
    }
}

@media screen and (min-width: 950px){

    .all-series__list {
        display: grid;
        grid-template-columns: repeat(5, 165px);
    }
}

/* ========================
 serie.html
======================== */
#serie .section-introduction {
    margin-bottom: 109px;
}

/* ========================
 wiki.html
======================== */

.wiki-introduction {
    padding-bottom: 50px;
}

.wiki-columns .section-title {
    font-size: var(--dolpo--font-size--26px);
}

.section-sub-title {
    font-size: var(--dolpo--font-size--22px);
}

.wiki-columns {
    position: relative;
    padding: 50px 0;
}

.wiki-columns::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 500px;
    height: 1px;
    background-color: var(--dolpo--color--neutral-black);
}

.wiki-2-columns {
    display: flex;
    flex-direction: column;
}

.wiki-2-columns.columns-2-4 {
    margin-bottom: 50px;
}

.wiki-2-columns .all-books__list {
    grid-template-columns: repeat(2, max-content);
}

@media screen and (min-width: 400px){
    .wiki-2-columns .all-books__list {
        grid-template-columns: repeat(2, 220px);
    }
}

@media screen and (min-width: 900px){

    .wiki-introduction {
        padding-bottom: 90px;
    }  

    .wiki-columns {
        padding: 90px 0;
    }

    .wiki-2-columns {
        flex-direction: row;
        column-gap: 30px;
    }

    .wiki-2-columns > * {
        width: 50%;
    }

    .wiki-2-columns .all-books__list {
        width: 540px; /* 1080/2 */ 
        margin-right: 40px;
    }
}

/* ========================
 result.html
======================== */
#result .section-title {
    text-align: center;
    margin-bottom: 15px;
}

.result-nb {
    margin-bottom: 28px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Coda';
    font-weight: 800;
    font-size: var(--dolpo--font-size--26px);
    color: var(--dolpo--color--primary-magenta);
}

.result-sorte__bloc {
    margin-bottom: 30px;
    font-size: var(--dolpo--font-size--20px);
    color: var(--dolpo--color--neutral-grey-d);
}

#result-sorte {
    position: relative;
    width: max-content;
    padding: 5px;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
}

.result-sorte-wrapper {
    position: relative;
    display: inline-block;
    width: max-content;
}

.result-sorte-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/img-pictos/arrow-down-black.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 15px;
    z-index: -1;
}

.nav-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    margin-top: 30px;
}

@media (min-width: 600px) {
    .nav-result {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 21px;
        margin-top: 96px;
    }
}

.nav-result a:nth-child(2){
    justify-self: center;
}

.nav-result a:last-of-type{
    justify-self: end;
}

/* les boutons */

.button-next-result {
    position: relative;
}

.button-return-top {
    opacity: 1;
    position: fixed;
    bottom: 60px;
    right: 60px;
    width: 66px;
    height: 66px;
    background-color: rgba(255, 255, 255, 0.65);
    color: var(--dolpo--color--neutral-grey)!important;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    z-index: 99;
    transition: all .3s ease-in-out;
}

.button-return-top.btn-appear {
    opacity: 1;
    transition: all .3s ease-in-out;
}

.button-next-result { 
    background-color: var(--dolpo--color--primary-violet);
}

.button-return-top .icon-arrow-right-fat {
    display: inline-block;
    transform: rotate(-90deg);
}

/* ========================
 actualites.html
======================== */
.actualite__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 20px;
    margin-bottom: 30px;
}

.actualite__item > *:first-of-type {
    width: 100%;
}

.actualite__item > *:last-of-type {
    width: 100%;
}

.actualite__item img {
    width: 100%;
    max-width: 370px;
}

@media (min-width: 600px) {
    .actualite__item {
        flex-direction: row;
        column-gap: 20px;
        margin-bottom: 50px;
    }

    .actualite__item:nth-child(even) {
        flex-direction: row-reverse;
    }

    .actualite__item > *:first-of-type {
        width: 30%;
    }
    
    .actualite__item > *:last-of-type {
        width: 70%;
    }
}