.googleReviews{
    display: flex;
    /* flex-direction: column; */
    float: left;
    width: 100%;
    padding: 20px;
    background: #ffffff;
    color: #202124;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
    .googleReviews_header{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 20px;
        float: left;
        /* width: 100%; */
        width: 10%;
    }
        .googleReviews_name{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
            .googleReviews_logo{
                float: left;
                height: 36px;
            }
            .googleReviews_place{
                float: left;
                font-size: 24px;
                font-weight: bold;
            }
        .googleReviews_rating{
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
            .googleReviews_rating-score{
                font-size: 56px;
            }
            .googleReviews_rating-stars{
                float: left;
                background: #dadce0;
                position: relative;
            }
                .googleReviews_rating-stars-value{
                    float: left;
                    height: 100%;
                    background: #f6b500;
                    position: absolute;
                    left: 0;
                    top: 0;
                    z-index: 1;
                }
                .googleReviews_rating-stars-mask{
                    float: left;
                    width: 70px;
                    position: relative;
                    z-index: 2;
                }
            .googleReviews_rating-total-reviews{
                line-height: 24px;
                color: #70757a;
                font-size: 12px;
            }
    .googleReviews_main{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* width: 100%; */
        width: 90%;
    }
        .googleReviews_reviews{
            display: flex;
            flex-direction: column;
            width: 100%;
            gap: 20px;
        }
            .googleReviews_reviews-title{
                float: left;
                font-size: 16px;
                font-weight: bold;
            }
            .googleReviews_reviews-items{
                display: flex;
                align-items: center;
                gap: 20px;
            }
                .googleReviews_reviews-item{
                    width: 100%;
                    height: 300px;
                    display: flex;
                    flex-direction: column;
                    padding: 20px;
                    gap: 10px;
                    border: 1px solid #dadce0;
                    border-radius: 8px;
                }
                .googleReviews_reviews-item:not(:last-child){
                    padding-bottom: 20px;
                    margin-bottom: 20px;
                    border-bottom: 1px solid #dadce0;
                }
                    .googleReviews_reviews-item-header{
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                    }
                        .googleReviews_reviews-item-author{
                            flex-grow: 1;
                            display: flex;
                            flex-direction: row;
                            align-items: center;
                            gap: 10px;
                            float: left;
                        }
                            .googleReviews_reviews-item-author-image{
                                float: left;
                                width: 40px;
                            }
                            .googleReviews_reviews-item-author-info{
                                display: flex;
                                flex-direction: column;
                                float: left;
                            }
                                .googleReviews_reviews-item-author-name{
                                    float: left;
                                    font-weight: bold;
                                }
                                .googleReviews_reviews-item-author-time{
                                    float: left;
                                    color: #70757a;
                                }
                        .googleReviews_reviews-item-rating{
                            flex-shrink: 0;
                            float: left;
                            font-size: 32px;
                            position: relative;
                            width: 100px;
                        }
                            .googleReviews_reviews-item-rating-stars-value{
                                float: left;
                                height: 100%;
                                background: #f6b500;
                                position: absolute;
                                left: 0;
                                top: 0;
                                z-index: 1;
                            }
                            .googleReviews_reviews-item-rating-stars-mask{
                                float: left;
                                width: 100px;
                                position: relative;
                                z-index: 2;
                            }
                    .googleReviews_reviews-item-comment{
                        float: left;
                        line-height: 20px;
                        font-size: 14px;
                    }
        .googleReviews_link{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            float: left;
            height: 40px;
            margin-top: 10px;
            border-radius: 20px;
            background: #1a73e8;
            transition: all .2s ease-in-out;
        }
        .googleReviews_link:hover{
            background: #1b66ca;
            box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3),
                        0 1px 3px 1px rgba(60, 64, 67, 0.15);
        }
            .googleReviews_link-label{
                float: left;
                padding: 0 20px;
                color: #ffffff;
                font-size: 14px;
                font-weight: bold;
            }

.collectionCrossSelling_items-button{
    cursor: pointer;
}

@media (max-width: 768px) {

    .googleReviews{
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 20px;
    }
    .googleReviews_header{
        flex-direction: row-reverse;
    }

}

@media (max-width: 600px) {

    .googleReviews_logo{
        height: 28px;
    }
    .googleReviews_rating-score{
        font-size: 52px;
    }
    .googleReviews_place {
        font-size: 18px;
    }
    .googleReviews_reviews-item-author-image{
        display: none;
    }
    .googleReviews_reviews-item-comment{
        padding-left: 0;
    }

}