/************************************************************************************/
/*
/* reviews
/*
/************************************************************************************/

ul.customer-reviews {
  list-style: none;
  position: relative;
  padding-bottom: 0px !important;
}

ul.customer-reviews>li {
  opacity: 0;
  animation: grow 1s ease-in-out forwards;
  -webkit-animation: grow 1s ease-in-out forwards;

  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc; 
}

@media (min-width: 768px) {
  ol.commentlist>li {
    grid-template-columns: 120px 1fr;
  }
}

@-webkit-keyframes grow {
  to {
    max-height: 4000px;	/* just a really big number */
    opacity: 1;
  }
}

@keyframes grow {
  to {
    max-height: 4000px;
    opacity: 1;
  }
}

ul.customer-reviews li p {
  margin: 8px 0;
}

ul.customer-reviews li p.review-author {
  margin-top: 16px;
}

ul.customer-reviews li p.review-rating {
  margin: 0;
}

ul.customer-reviews li p.review-title {
  margin-top: 0px;
  font-weight: 700;
}

ul.customer-reviews li p.review-content {
  white-space: pre-wrap;
}

ul.customer-reviews li p.review-date {
  font-size: 14px;
  color: var(--sub-text); 
}

/************************************************************************************/
/*
/* star rating
/*
/************************************************************************************/

svg.star-rating {
  color: var(--review-star-rating);
  width: 15px;
  height: 15px;
}

svg.star-rating.checked {
  color: var(--review-star-rating-checked);
}

/************************************************************************************/
/*
/* load more reviews
/*
/************************************************************************************/

.load-more-reviews-btn {
  cursor: pointer;
}

.container article section p.load-more-reviews-btn {
  display: inline-block;
  margin-top: 20px;
}

.load-more-reviews-btn:hover {

}

/************************************************************************************/
/*
/* find more reviews
/*
/************************************************************************************/

.find-more-reviews {  
  display: none;
  opacity: 0;
  transition: 0.5s;
}

.find-more-reviews.visible {
  opacity: 1;  
}

.container article section .find-more-reviews ul {
  list-style: none;
  padding: 0;
}

.find-more-reviews ul li {
  margin: 8px 0;
}

.find-more-reviews ul.icons li svg.icon {
  margin-bottom: -2px;
}