﻿#map-plug {
    display: none;
}

#google-reviews {
    /*background: white;*/
    display: flex;
    flex-wrap: wrap;
    padding: 15px;
    max-width: 1140px;
    margin: auto;
  /*display: grid;
    grid-template-columns: repeat( auto-fit, minmax(320px, 1fr));*/
}

.review-item {
    background: white;
    border: solid 1px rgba(190,190,190,.35);
    margin: 0 auto;
    margin: 1em;
    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 !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: #E4B248;
    //font-size: 1.4em;
    font-style: normal;
}

.review-stars ul li i.inactive {
    color: #c6c6c6;
}

.star:after {
    content: "\2605";
}
.review-text {
    line-height: 1.55;
    text-align: left;
    max-width: 32em;
    margin: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}