.full-content.hidden {
    display: none;
}
.hidden-review-item {
    display: none;
}
.hidden-content {
    display: none;
}
.view-more {
    background: none;
    border: none;
    color: blue;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    text-decoration: underline;
}
  .ksm-testimonial-wrapper {
    max-width: 1600px;
    width:100%;/* Adjust as needed */
    margin: 0 auto;
    padding: 15px;
    background-color: #f9f9f9; /* Light gray background */
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Adjust the space between reviews */
}
.testimonial-top-wrapper {
  display: flex;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}
.hidden-review {
    display: none;
}
.testimonial-single {
    flex: 1 0 calc(50% - 15px); /* Two columns */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Separator line */
}
.ksm-star {
    display: inline-block;
    width: 30px;  /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    background-size: cover;
}

.ksm-full-star {
    background-image: url('full-star.svg');
}

.ksm-empty-star {
    background-image: url('empty-star.svg');
}


.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.testimonial-tagline {
    font-style: italic;
    color: #666;
  display: block;
}
.testimonial-avatar {
  width: 30%;
}
  .testimonial-details {
  width: 70%;
}
.testimonial-rating .ksm-stars {
    color: #d68126; /* Star color */
    font-size: 20px;
}

.testimonial-date {
    font-size: 14px;
    color: #999;
}

.testimonial-content {
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}
  .top-two-reviews .ksm-stars {
  height: 30px !important;
  width: 30px !important;
  font-size: 30px !important;
}
  .ksm-testimonial-wrapper [class^="ksm-icon-"]::before, .ksm-testimonial-wrapper [class*=" ksm-icon-"]::before {
  display: inline-block;
  width: auto;
  margin: 0;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 1;
  speak: none;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ksm-testimonial-wrapper .ksm-icon-star-empty::before {
  content: 'ee';

}
.ksm-reviews-summary-wrapper {
  background-color: #c0c0c0;
  padding: 2rem;
  border-radius: 20px;
} 
/* Styles for screens smaller than 992px */
@media (max-width: 992px) {
    .testimonial-single {
        flex-basis: 100%; /* One column */
    }
}