<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#map-plug {
    display: none;
}

#google-reviews {
    display: flex;
    flex-wrap: wrap;
/*    display: grid;
*//*    grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));
*/}

.review-item {
    border: solid 1px rgba(190,190,190,.35);
    margin: 10px /*auto*/;
    padding: 1em;
    flex: 1 1 20%;
}

@media ( max-width:1200px) {
    .review-item {
        flex: 1 1 40%;
    }
}

@media ( max-width:450px) {
    .review-item {
        flex: 1 1 90%;
    }
}

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

.review-author {
    text-transform: capitalize;
    font-weight: bold;
}

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

.review-text {
    line-height: 1.55;
    text-align: left;
    max-width: 32em;
    margin: auto;
}



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

    .review-stars ul li {
        float: left;
        margin-right: 1px;
        line-height: 1;
    }

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

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

.star:after {
    content: "\2605";
}
</pre></body></html>