@charset "UTF-8";
/*  FONTS  */
/*  COLORS  */
/*  BORDERS  */
/*  PADDING  */
/*  BOX SHADOW  */
/*  ICONS  */
.dummy-class {
  display: none;
}

.masonry-brick {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.masonry-brick:nth-child(odd) .profile-image {
  background-color: #ffcec1;
}
.masonry-brick:nth-child(even) .profile-image {
  background-color: #D2F1F3;
}

@media (min-width: 795px) {
  #container-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    grid-row-gap: 0px;
    grid-column-gap: 5rem;
    grid-auto-rows: 5px;
  }
}

#iahq-reviews .filters {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 794.98px) {
  #iahq-reviews .filters {
    flex-direction: column;
  }
}
#iahq-reviews .filters #reviews-search-component .search-destination-filter {
  display: flex;
  align-items: center;
  min-height: 44px;
}
@media (max-width: 794.98px) {
  #iahq-reviews .filters #reviews-search-component .search-destination-filter {
    flex-direction: column;
    align-items: flex-start;
  }
  #iahq-reviews .filters #reviews-search-component .search-destination-filter #search-results {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
#iahq-reviews .filters #reviews-search-component .search-destination-filter #reviews-selector {
  background-color: #fff;
  font-weight: 500;
  border: none;
  color: #383838;
  font-size: 1rem;
  border-radius: 0.4rem;
  border: 1px solid #B5B5B5;
}
#iahq-reviews .filters #filter-buttons.hidden {
  display: none !important;
}

h2.reviews-header {
  margin-bottom: 16px;
}

.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D3D3D3;
}
.review.single-review {
  border-bottom: none;
}
.review .featured {
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #F3F9FA;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.1);
}
.review .profile-image {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #383838;
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 794.98px) {
  .review .profile-image {
    width: 60px;
    height: 60px;
  }
}
.review li span {
  display: block;
}
.review .review-header {
  display: flex;
  margin-bottom: 1rem;
}
.review .review-header .volunteer-name {
  margin-bottom: 0.25rem;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 600;
  color: #383838;
}
.review .review-header .star-rating {
  margin-bottom: 0.25rem;
}
.review .review-header .star-rating::before {
  display: inline-block;
  content: "★★★★★";
  background: linear-gradient(90deg, gold 0%, gold var(--rating), #ddd var(--rating), #ddd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 1.4rem;
  line-height: 1.4rem;
}
.review .review-body {
  margin-bottom: 1rem;
}
.review .review-body p {
  margin-bottom: 1rem;
  font-family: Roboto, Arial, sans-serif;
  color: #383838;
}
.review .review-body p:last-child {
  margin-bottom: 0;
}
.review .review-body button.show-more, .review .review-body .show-more-ellipsis {
  display: none;
}
@media (max-width: 794.98px) {
  .review .review-body > .content {
    max-height: 96px;
    overflow: hidden;
  }
}
.review .review-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.review .review-footer .review-profile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin-top: 1rem;
  padding-right: 56px;
  text-align: left;
}
.review .review-footer .review-profile p {
  font-weight: 700;
  line-height: 0.9em;
  margin-bottom: 8px;
}
.review .review-footer .review-profile a {
  color: #383838;
  border-bottom: 1px #383838 solid;
}
.review .review-footer .review-profile a:hover {
  color: #F05F3C;
  border-bottom: 1px transparent solid;
}
.review .review-footer .review-profile span {
  color: #383838;
  text-align: left;
  display: block;
  font-size: 0.8em;
}

.more-reviews {
  padding: 20px 0;
  background-color: #F3F9FA;
}
.more-reviews h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
.more-reviews .card-default.site-review {
  background-color: #fff;
  text-align: center;
  color: #383838;
  text-decoration: none;
  padding: 24px 16px 14px 16px;
  border-bottom: 10px solid transparent;
  height: 100%;
}
.more-reviews .card-default.site-review:hover {
  border-bottom: 10px solid #007f9b;
}
.more-reviews .card-default.site-review p {
  font-size: 1.35em;
  font-weight: 600;
  margin-bottom: 0;
}
.more-reviews .card-default.site-review .card-top-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 16px;
  height: 80px;
}
.more-reviews .card-default.site-review .card-top-logo img {
  max-width: 100%;
  height: 80px;
  object-fit: contain;
}
.more-reviews .card-default.site-review .card-top-logo img.logo-rect {
  height: 60px;
}
.more-reviews .card-default.site-review .site-review-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 16px;
}
.more-reviews .card-default.site-review .site-review-rate img {
  margin-bottom: 16px;
  max-width: 130px;
  height: auto;
}
.more-reviews .card-default.site-review .site-review-rate span {
  color: #3A3A3A;
}

/*# sourceMappingURL=reviews.css.map */