.google-reviews{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.google-reviews .review{
    display: flex;
    width:18%;
    flex-direction: column;
    margin: 10px;
    border: 1px solid #eeeeee;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    background-color: #fff;
}

.google-reviews .review .text{
        height:310px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .google-reviews .review:after{
        content:"...";
        display: block;
    }

.google-reviews .author .author-image{
    border-radius: 50%;
    width:50px;
    height:50px;
    background-position: center center;
    background-size: cover
}

.google-reviews .author .author-name{
    font-weight: bold;
}


.reviews-summary {
    margin-bottom: 20px;
}

.average-rating {
    margin-bottom: 10px;
    display:flex;
    justify-content: center;
}

.average-rating img{
    object-fit: contain;
}

.star-rating-ccf {
    color: #ffc400 !important;
    font-size: 24px;
}

.star-rating-ccf .star {
    display: inline-block;
}

.star-rating-ccf .star.full {
    color: #ffc400 !important;
}

.star-rating-ccf .star.half {
    position: relative;
    color: #ffc400 !important;
}

.star-rating-ccf .star.half::before {
    content: '&#9733;';
    position: absolute;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #ffc400;
}

.star-rating-ccf-ccf .star.empty {
    color: #ddd;
}

.total-reviews{
    margin-left:20px;
}

.total-reviews a {
    color: #1a73e8;
    text-decoration: none;
}

.total-reviews a:hover {
    text-decoration: underline;
}

.author {
    font-weight: bold;
    margin-bottom: 5px;
}


.rating {
    color: #ffc400;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.text {
    font-size: 14px;
    line-height: 1.5;
}

@media only screen and (max-width: 1000px) {
    .google-reviews-parent{
    }

    .google-reviews{
        display:flex;
        flex-direction: column;
        flex-wrap: wrap;
        width:fit-content;
        padding:10px;
        gap:20px;
    }

    .google-reviews .review{
        width:100%;
        padding:10px;
        margin: 0px;
        padding-bottom:10px;
    }

    .google-reviews .review .text{
        overflow: hidden;
        text-overflow: ellipsis;
        height: auto;
    }

    .google-reviews .review:after{
        content:"...";
        display: block;
    }
}