#google-reviews {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0; 
    overflow: hidden;
}

.reviews{
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
}

.review-item {
    padding: 0.8em 1em;
    display: flex;
    flex-direction: column;
    align-content: stretch;
}

@media screen and (min-width: 768px){
    .review-item {
        font-size: 0.9em;
    }
} 

.review-header {
    display: flex;
    font-family: 'Roboto';
}

.review-picture {
    position: relative;
    width: 4.8em;
    height: 4.8em;
    align-self: center;
    margin-right: 1em;
}

.review-usergrade {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.review-meta, .review-stars {
    text-align: center;
    font-size: 115%;
}

.review-author {
    text-transform: capitalize;
    font-weight: 400;
    font-size: 1.1em;
}

.review-date {
    opacity: .6;
    display: block;
}

.review-text {
    max-width: 100%;
    font-size: 1.05em;
    text-align: left;
    margin: 20px 10px 0 30px;
    padding: 17px 10px;
    border-left: 2px solid rgb(31, 141, 255);
    background-color: rgba(31, 141, 255, 0.1);
    border-radius: 5px 20px 20px 5px;
}

.review-text::before {
    content:'\201E';
}

.review-text::after {
    content:'\201D';
}

.review-stars ul {
    display: inline-block;
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.review-stars ul li {
    float: left;
    list-style: none !important;
    margin-right: 1px;
    line-height: 1;
}

.review-stars ul li i {
    color: #eb6e00;
    font-size: 2em;
    font-style: normal;
}

.review-stars ul li i.inactive {
    color: #c6c6c6;
}

.star:after {
    content: "\2605";
}

/* to check! */

.review-stars ul li i.inactive .star:after {
    content: "\2606";
}

.review-top {
    background-color: rgb(31, 141, 255);
    color: #FFF;
    max-width: 100%;
    text-align: center;
    font-size: 1.3em;
    padding: 15px;
}

.more-reviews .write-review {
    text-align: center;
}

.more-reviews, .write-review a {
    margin: 15px auto 20px;
    border: 1px rgb(31, 141, 255) solid;
    border-radius: 40px;
    padding: 10px;
    background-color: rgb(31, 141, 255);
    color: #FFF;
    text-decoration: none;
    transition: 0.2s transform ease;
}

.more-reviews:hover{
    background-color: rgb(31, 103, 170);
    color: #FFF;
    text-decoration: none;
    transform: scaleX(1.05);
}