.cms-rating {
  height: var(--star-height, 20px);
  position: relative;
  width: calc(var(--star-width, 30px) * 5);
}
.cms-rating:before,
.cms-rating > span:before {
  background-repeat: repeat-x;
  background-size: var(--star-width, 30px) var(--star-height, 20px);
  bottom: 0;
  content: "";
  display: block;
  height: var(--star-height, 20px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.cms-rating:before {
  background-image: url("https://img.cdndtl.co.uk/sites/moneysupermarket/stitcher/star--inactive.svg?s=a8f99eac1aa97380dde51463a5b0e2a6");
}
.cms-rating:before,
.cms-rating > span {
  width: calc(var(--star-width, 30px) * 5);
}
.cms-rating > span {
  display: block;
  height: var(--star-height, 20px);
  overflow: hidden;
  position: absolute;
  text-indent: -10000px;
}
.cms-rating > span:before {
  background-image: url("https://img.cdndtl.co.uk/sites/moneysupermarket/stitcher/star--active.svg?s=fc1ad7d11c8ecf4770dc8e14ce4c7321");
  text-indent: 10000px;
}
.customer-review {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
  color: #554565;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  min-width: 228px;
  padding: var(--customer-review-padding, 16px);
}
.customer-reviews {
  --customer-review-padding: 16px;
  display: grid;
  gap: var(--customer-review-padding, 16px);

  overflow-x: auto;
  padding: 24px 20px 20px;
}
.customer-review__comment {
  border-bottom: 1px solid #decfe7;
  height: 100%;
  margin-bottom: var(--customer-review-padding, 16px);
  padding: var(--customer-review-padding, 16px) 0;
}
.customer-review__name {
  font-weight: 700;
}
.customer-review__footer {
  display: flex;
  font-size: 14px;
  justify-content: space-between;
  justify-self: flex-end;
}
@media only screen and (min-width: 768px) {
  .customer-reviews {
    padding-top: 64px;
  }
}
@media only screen and (min-width: 842px) {
  .customer-reviews {
    overflow-x: visible;
    padding: 24px 0 0;
  }

  .customer-reviews{
    grid-template-columns: 1fr 1fr 1fr;
  }


}
@media only screen and (min-width: 992px) {
  .customer-reviews {
    --customer-review-padding: 24px;
  }
}
.dtl-cta {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0 solid transparent;
  border-radius: 15px;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: inherit;
  line-height: 1.2;
  margin: 0;
  outline: 0;
  padding: 14px 18px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: color 0.1s ease-in-out, background 0.1s ease-in-out,
    box-shadow 0.1s ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}
.dtl-cta,
.dtl-cta:active,
.dtl-cta:focus,
.dtl-cta:hover {
  text-decoration: none;
}
.dtl-cta:hover {
  cursor: pointer;
}
.dtl-cta__content-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.dtl-cta__text {
  text-transform: none;
}
.dtl-cta--primary {
  background: #3283e0;
  border-color: #3283e0;
  border-width: 0;
  box-shadow: none;
  color: #fff;
}
.dtl-cta--primary:active,
.dtl-cta--primary:focus,
.dtl-cta--primary:hover {
  background: #7a3f9d;
  border-color: #7a3f9d;
  color: #fff;
}
.dtl-cta--primary-inverted {
  background: #e40ecd;
  color: #fff;
}
.dtl-cta--primary-inverted:active,
.dtl-cta--primary-inverted:focus,
.dtl-cta--primary-inverted:hover {
  background: #d10abc;
  color: #fff;
}
.dtl-cta--primary-inverted:focus:before {
  border: 2px solid #011054;
  border-radius: 6px;
  bottom: -4px;
  content: " ";
  left: -4px;
  pointer-events: none;
  position: absolute;
  right: -4px;
  top: -4px;
}
.dtl-cta--secondary {
    background: transparent;
    border-color: #0974f1;
    border-width: 0;
    box-shadow: inset 0 0 0 2px #0974f1;
    color: #0974f1;
}
.dtl-cta--secondary:active,
.dtl-cta--secondary:focus,
.dtl-cta--secondary:hover {
    background: transparent;
    border-color: #0974f1;
    border-width: 0;
    box-shadow: inset 0 0 0 5px #0974f1;
    color: #0974f1;
}
.dtl-cta--secondary-inverted {
  background: transparent;
  box-shadow: inset 0 0 0 3px #fff;
  color: #fff;
}
.dtl-cta--secondary-inverted:active,
.dtl-cta--secondary-inverted:focus,
.dtl-cta--secondary-inverted:hover {
  box-shadow: inset 0 0 0 5px #fff;
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .dtl-cta {
    font-size: 16px;
    padding: 14px 18px;
  }
}
.review-comments-only__content {
  text-align: center;
}
.review-comments-only__title {
  margin-bottom: 8px;
}
.review-comments-only__cta-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .review-comments-only__content {
    gap: 16px;
  }
  .review-comments-only__title {
    margin-bottom: 16px;
  }
  .review-comments-only__description {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) {
  .review-comments-only {
    max-width: 446px;
  }
}
