#google-reviews{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#google-reviews_content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 15px;
    gap: 12px;
}

#grade-review{
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    background: white;
    box-shadow: var(--smp-shadow);
    border-radius: var(--smp-card-radius);
}
#grade-review-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
#grade-review-grade{
    font-size: 2rem;
}
#grade-review-google{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    font-size: 14px;
}
#grade-review-google-text{
    text-align: center;
}
#grade-review-google-text>a{
    text-decoration: underline;
}

#lastReviews{
    border: 1px solid black;
    width: 80%;
    height: 100%;

}


.smp-rating {
    font-size: 12px;
    color: #F8B707;
}

.reviewDate {
    font-size:13px;
    color:#70757a;
}


@media only screen and (max-width: 576px) {
    #google-reviews_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    #grade-review {
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        padding: 10px;
        background: #fff;
        margin-bottom: 10px;
        /*-webkit-box-shadow: none ;*/
        /*box-shadow: none ;*/
    }
    #grade-review-google{
        max-width: 50%;
    }

    .smp_card-content{
        flex-direction: row !important;
    }
    .smp_card-content-info{
        width: 33%;
        height: 100%;
        align-content: center !important;

    }
    .smp_card-content-info .name,.smp_card-content-info span {
        text-align: center;
    }
    .smp_card-content-text{
        width: 66%;
        height: 100%;
    }
}

/*MATERIALIZE*/
.smp-reviews__carousel {
    background: #fff;
    border-radius: var(--smp-card-radius);
    padding: 10px 0;
    justify-content: center;
    flex: 1 1 0;

}
.smp-reviews__carousel .smp-reviews__carousel__item {
    min-width: 100%
}

@media only screen and (min-width: 576px) {
    .smp-carrousel.smp-reviews__carousel {
        width: 75%;
    }
}

@media only screen and (min-width: 992px) {
    .smp-reviews__carousel .smp-reviews__carousel__item {
        min-width: 33%
    }
}


.smp_card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.smp_card-content-info{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.smp_card-content-info > img {
    width: 20%;
}

.smp_card-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.smp_card-content-comment{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}