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

.review-item {
  border: solid 1px rgba(190, 190, 190, .35);
  margin: 0 auto;
  padding: 1em;
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  max-width: 25vw;
}

.review-item-long {
  border: solid 1px rgba(190, 190, 190, .35);
  margin: 0 auto;
  padding: 1em;
  flex: 1 1 20%;
  display: flex;
  flex-direction: column;
  align-content: stretch;
  max-height: 20vw;
  max-width: 25vw;
  white-space: break-spaces;
  margin-left: 0.5em;
}
@media ( max-width:1200px) {
  .review-item {
    flex: 1 1 20%;
  }
  .review-item-long {
    flex: 1 1 20%;
  }
}

@media ( max-width:450px) {
  .review-item {
    flex: 1 1 60%;
    max-width: 100%;
    max-height: 82vw;
  }
  .review-item-long {
    max-width: 100%;
    max-height: 82vw;
    flex: 1 1 60%;
  }
}
.review-header{
  display: flex;
}

.review-picture{
  width: 5em;
  height: auto;
  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: bold;
}

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

.review-text {
  line-height: 1.55;
  text-align: left;
  max-width: 100%;
  text-align: justify;
  text-overflow: ellipsis ellipsis;
  overflow: hidden;
  font-size: small;
}

.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;
  /* Google's Star Orange in Nov 2017 */
  font-size: 1.4em;
  font-style: normal;
}

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

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


.buttons {
  margin: 20px 0 0 0; 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.more-reviews a,
.write-review a {
  margin: 5px;
  border: 1px #eb6e00 solid;
  border-radius: 40px;
  padding: 10px;
  background-color: #eb6e00;
  color: #FFF;
  text-decoration: none;
}

/* Marquee styles */
.marquee {
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 10s linear infinite;
}

/* Reverse animation */
.marquee--reverse .marquee__content {
  animation-direction: reverse;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}

/* Attempt to size parent based on content. Keep in mind that the parent width is equal to both content containers that stretch to fill the parent. */
.marquee--fit-content {
  max-width: fit-content;
}

/* A fit-content sizing fix: Absolute position the duplicate container. This will set the size of the parent wrapper to a single child container. Shout out to Olavi's article that had this solution 👏 @link: https://olavihaapala.fi/2021/02/23/modern-marquee.html  */
.marquee--pos-absolute .marquee__content:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.enable-animation .marquee--pos-absolute .marquee__content:last-child {
  animation-name: scroll-abs;
}

@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}

/* Other page demo styles */
.marquee__content > * {
  flex: 0 0 auto;
  margin: 2px;
}