/**
* NOTICE OF LICENSE
*
* This source file is subject to a commercial license from SARL DREAM ME UP
* Use, copy, modification or distribution of this source file without written
* license agreement from the SARL DREAM ME UP is strictly forbidden.
*
*   .--.
*   |   |.--..-. .--, .--.--.   .--.--. .-.   .  . .,-.
*   |   ;|  (.-'(   | |  |  |   |  |  |(.-'   |  | |   )
*   '--' '   `--'`-'`-'  '  `-  '  '  `-`--'  `--`-|`-'
*        w w w . d r e a m - m e - u p . f r       '
*
*  @author    Dream me up <prestashop@dream-me-up.fr>
*  @copyright 2007 - 2026 Dream me up
*  @license   All Rights Reserved
*/
/* ********* */
/* Page Avis */
/* ********* */
#module-dmugooglereviews-avis #wrapper{
    padding-top: 0 !important;
}
#module-dmugooglereviews-avis .breadcrumb-container{
    padding: 0 !important;
}
#gr-page_avis {
    margin: 0 0 80px;
    
}
#gr-page_avis h1.title_avis {
    font-size: 50px;
    font-weight: 700;
    line-height: 52px;
    text-align: center;
    margin: 30px auto 40px;
}
.gr-container{
    margin:  40px auto 60px;
    width: 100%;
    
}
#gr-page_avis .ratingStatus_dmugr {
    font-weight: bold;
    font-size: 20px;
    text-transform: capitalize;
}
#gr-page_avis .reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(100px, auto);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

/* Note globale occupe les 2 premières colonnes de la première ligne */
#gr-page_avis .review-score {
    grid-area: 1 / 1 / 2 / 3;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 296px;
    max-height: 296px;
    border-radius: 10px;
    background-color: var(--gr-bg-color);
}
#gr-page_avis .review-score .note_globale_badge_dmugr {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
#gr-page_avis .note_globale_badge_dmugr.noreviews{
    flex-direction: column;
}
#gr-page_avis .logo_google{
    margin-right: 1rem;
}
#gr-page_avis .google_rate_link{
    color: var(--gr-bg-color);
    background-color: var(--gr-text-color);
    border: 1px solid var(--gr-text-color);
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    padding: 5px 20px;
    border-radius: 40px;
    margin-top: 0;
}
#gr-page_avis .chevron{
    height: 11px;
    width: 11px;
    fill: var(--gr-bg-color);
    margin-left: 2px;
}

#gr-page_avis .google_rate_link:hover,
#gr-page_avis .google_rate_link:hover svg {
    text-decoration: none;
    color: var(--gr-text-color);
    fill: var(--gr-text-color);
    background-color: var(--gr-bg-color);
}

#gr-page_avis .gr-card {
    display: none;
}

#gr-page_avis .gr-card.visible {
    display: block;
}

#gr-page_avis #loadMoreReviews {
    margin: 40px 0;
    padding: 8px 30px;
    color: var(--gr-bg-color);
    background-color: var(--gr-text-color);
    border: 1px solid var(--gr-text-color);
}
#gr-page_avis #loadMoreReviews:hover {
    color: var(--gr-text-color);
    background-color: var(--gr-bg-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
#gr-page_avis  .note_globale_stars_dmugr{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    line-height: 1rem;
}
#gr-page_avis .note_globale_note_dmugr{
    margin-right: 6px;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
}

@media (max-width: 1200px) {
    #gr-page_avis .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 991px) {
    #gr-page_avis .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #gr-page_avis .gr-card {
        max-width: 100%;
    }
}
@media (max-width: 687px) {
    #gr-page_avis h1.title_avis {
        font-size: 40px;
        line-height: 42px;
        margin: 20px auto 30px;
    }
    #gr-page_avis .reviews-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    #gr-page_avis .review-score {
        grid-area: 1 / 1 / 1 / 2;
    }
}
@media (max-width: 350px) {
    #gr-page_avis h1.title_avis {
        font-size: 30px;
        line-height: 32px;
        margin: 10px auto 20px;
    }
    #gr-page_avis .reviews-grid .note_globale_badge_dmugr {
        flex-direction: column;
    }
    #gr-page_avis .reviews-grid .note_globale_badge_dmugr .logo_google{
        margin-right: 0;
        margin-bottom: 1rem;
    }
    #gr-page_avis .reviews-grid .note_globale_badge_dmugr .note_info .ratingStatus_dmugr{
        margin-bottom: 10px;
    }
}