html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "Satoshi";
  src: url("/wp-content/uploads/2024/08/Satoshi-Regular.woff") format("woff"),
       url("/wp-content/uploads/2024/08/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("/wp-content/uploads/2024/08/Satoshi-Bold.woff") format("woff"),
       url("/wp-content/uploads/2024/08/Satoshi-Bold.ttf") format("truetype");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Stem";
  src: url("/wp-content/uploads/2024/11/Stem-Medium.ttf") format("truetype");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

.rt-google-reviews {
  --rt-review-blue: #5b57ff;
  --rt-review-ink: #202027;
  --rt-review-muted: #777887;
  --rt-review-line: rgba(32, 32, 39, .1);
  --rt-review-star: #f6b800;
  width: 100%;
  max-width: 100%;
  background: transparent !important;
  color: var(--rt-review-ink);
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  overflow-x: clip;
}

.rt-google-reviews,
.rt-google-reviews * {
  box-sizing: border-box;
}

.rt-google-reviews__viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 2px 10px;
  background: transparent !important;
}

.rt-google-reviews__summary {
  display: grid;
  gap: 6px;
  margin: 0 0 24px;
}

.rt-google-reviews__source {
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  color: var(--rt-review-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rt-google-reviews__summary strong {
  font-family: "Stem", "Satoshi", Arial, sans-serif !important;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 500;
  line-height: 1;
}

.rt-google-reviews__summary a,
.rt-google-reviews__summary a:hover {
  color: inherit;
  text-decoration: none;
}

.rt-google-reviews__stars,
.rt-google-review-card .rating {
  color: var(--rt-review-star);
  letter-spacing: 2px;
  white-space: nowrap;
}

.rt-google-reviews__list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  display: grid;
  grid-template-columns: repeat(var(--rt-review-columns, 3), minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.rt-google-reviews--carousel {
  --rt-review-gap: clamp(18px, 2vw, 28px);
  --rt-review-shift: 0;
}

.rt-google-reviews--carousel .rt-google-reviews__list {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  grid-template-columns: none;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: var(--rt-review-gap) !important;
  transform: translate3d(calc(var(--rt-review-shift) * -1px), 0, 0);
  transition: transform .58s cubic-bezier(.22, .85, .22, 1);
  will-change: transform;
}

.rt-google-reviews--view-1 {
  --rt-review-columns: 1;
}

.rt-google-reviews--view-2 {
  --rt-review-columns: 2;
}

.rt-google-reviews--view-3 {
  --rt-review-columns: 3;
}

.rt-google-reviews--view-4 {
  --rt-review-columns: 4;
}

.rt-google-review-card {
  min-width: 0;
  min-height: 260px;
  margin: 0 !important;
  padding: clamp(22px, 2.2vw, 32px) !important;
  background: #fff;
  border: 1px solid var(--rt-review-line);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(22, 22, 30, .035);
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px 18px;
  align-content: start;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.rt-google-review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 87, 255, .28);
  box-shadow: 0 14px 34px rgba(22, 22, 30, .06);
}

.rt-google-reviews--carousel .rt-google-review-card {
  flex: 0 0 calc((100% - (var(--rt-review-gap) * (var(--rt-review-columns, 3) - 1))) / var(--rt-review-columns, 3)) !important;
  width: calc((100% - (var(--rt-review-gap) * (var(--rt-review-columns, 3) - 1))) / var(--rt-review-columns, 3)) !important;
  max-width: none !important;
  display: grid !important;
  opacity: 1;
  transform: scale(1);
  pointer-events: none;
  transition: opacity .34s ease, transform .34s ease, box-shadow .28s ease, border-color .28s ease;
}

.rt-google-reviews--carousel .rt-google-review-card.is-visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.rt-google-reviews .rt-google-review-card__avatar {
  width: 54px !important;
  min-width: 54px !important;
  max-width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
  background: #f7f7fb;
  color: #5b57ff;
  border: 1px solid rgba(32, 32, 39, .08);
  box-shadow: inset 0 0 0 4px #fff, 0 8px 22px rgba(22, 22, 30, .08);
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  place-items: center !important;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1 !important;
  position: relative !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 0 0 54px !important;
}

.rt-google-reviews .rt-google-review-card__avatar a,
.rt-google-reviews .rt-google-review-card__avatar img,
.rt-google-reviews .rt-google-review-card__avatar span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  transform: none !important;
  position: static !important;
}

.rt-google-reviews .rt-google-review-card__avatar img {
  object-fit: cover !important;
  object-position: center center !important;
  background: #f7f7fb;
  filter: saturate(.92) contrast(1.02);
}

.rt-google-review-card__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding-top: 1px;
}

.rt-google-review-card .author-name,
.rt-google-review-card .author-name a {
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  max-width: 100%;
  color: var(--rt-review-ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.rt-google-review-card .relative-time-description {
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  color: var(--rt-review-muted);
  font-size: 13px;
  font-weight: 600;
}

.rt-google-review-card .text {
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  grid-column: 1 / -1;
  color: #3d3d46;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.65;
}

.rt-google-review-card .review-full-text {
  display: none;
}

.rt-google-review-card.is-expanded .review-full-text {
  display: inline;
}

.rt-google-review-card.is-expanded .review-more-placeholder {
  display: none;
}

.rt-google-review-card .review-more-placeholder {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--rt-review-blue);
  cursor: pointer;
  display: inline;
  margin: 0;
  padding: 0;
  font-family: "Satoshi", Raleway, Arial, sans-serif !important;
  font-size: inherit;
  line-height: inherit;
  font-weight: 800;
}

.rt-google-reviews__nav {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  overflow: hidden;
}

.rt-google-reviews__button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(91, 87, 255, .22);
  background: #fff;
  color: var(--rt-review-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.rt-google-reviews__button-icon {
  display: block;
  width: 22px;
  height: 22px;
  color: currentColor;
  overflow: visible;
  pointer-events: none;
}

.rt-google-reviews__button-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.rt-google-reviews__button-icon--prev {
  transform: rotate(180deg);
}

.rt-google-reviews__button:hover,
.rt-google-reviews__button:focus-visible {
  background: var(--rt-review-blue);
  border-color: var(--rt-review-blue);
  color: #fff;
  transform: translateY(-1px);
}

.rt-google-reviews__dots {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(220px, 42vw);
  overflow: hidden;
  justify-content: center;
}

.rt-google-reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(32, 32, 39, .2);
}

.rt-google-reviews__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--rt-review-blue);
}

@media (max-width: 1024px) {
  .rt-google-reviews--view-3,
  .rt-google-reviews--view-4 {
    --rt-review-columns: 2;
  }
}

@media (max-width: 767px) {
  .rt-google-reviews {
    --rt-review-columns: 1;
    --rt-review-gap: 16px;
    overflow-x: hidden;
  }

  .rt-google-reviews__nav {
    gap: 10px;
  }

  .rt-google-reviews__dots {
    gap: 6px;
    max-width: 74px;
  }

  .rt-google-reviews__dot {
    width: 6px;
    height: 6px;
  }

  .rt-google-reviews__dot.is-active {
    width: 16px;
  }

  .rt-google-review-card {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 14px 15px;
    padding: 20px !important;
    border-radius: 14px;
  }

  .rt-google-review-card__avatar {
    width: 48px;
    height: 48px;
  }

  .rt-google-review-card .author-name,
  .rt-google-review-card .author-name a {
    font-size: 16px;
  }

  .rt-google-review-card .text {
    font-size: 15px;
    line-height: 1.55;
  }
}
