@charset "UTF-8";
.agsb7-wizard {
  max-width: 800px;
}
@media (max-width: 768px) {
  .agsb7-wizard {
    max-width: 100%;
  }
}
.agsb7-wizard {
  margin: 20px auto;
  padding: 10px 20px 5px;
  background: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--text_color) !important;
}
.agsb7-wizard ::-webkit-input-placeholder {
  color: var(--text_color) !important;
}
.agsb7-wizard ::-moz-placeholder {
  color: var(--text_color) !important;
}
.agsb7-wizard :-ms-input-placeholder {
  color: var(--text_color) !important;
}
.agsb7-wizard ::-ms-input-placeholder {
  color: var(--text_color) !important;
}
.agsb7-wizard ::placeholder {
  color: var(--text_color) !important;
}
.agsb7-wizard input:not([type=submit]) {
  color: var(--text_color) !important;
}
.agsb7-wizard .agsb7-progress {
  margin: 25px auto 25px;
  position: relative;
  width: 100%;
  height: 8px;
  background: var(--lightgrey);
  border-radius: 4px;
  overflow: visible;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-bar {
  height: 100%;
  background: var(--primary_color);
  border-radius: 4px;
  width: 0%;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-bar[style="width: 100%;"] {
  background: #0ae743;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps .agsb7-step {
  width: 32px;
  height: 32px;
  background: #fff;
  border: 3px solid var(--lightgrey);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  font-weight: 400;
  color: var(--lightgrey);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps .agsb7-step.active {
  background: #fff;
  border-color: var(--primary_color);
  color: var(--primary_color);
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps .agsb7-step.completed {
  background: #fff;
  border-color: #0ae743;
  color: #0ae743;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps .agsb7-step.completed::after {
  content: "✓";
  line-height: 16px;
  height: 16px;
  position: absolute;
  background: #fff;
  color: #0ae743;
}
.agsb7-wizard .agsb7-progress .agsb7-progress-steps .agsb7-step.completed span {
  opacity: 0;
}
.agsb7-wizard .agsb7-slides {
  position: relative;
}
.agsb7-wizard .agsb7-slide {
  display: none;
  min-height: 350px;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.agsb7-wizard .agsb7-slide.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.agsb7-wizard .agsb7-slide .agsb7-content {
  width: 100%;
  text-align: center;
}
.agsb7-wizard .agsb7-slide .agsb7-content *, .agsb7-wizard .agsb7-slide .agsb7-content p {
  text-align: center;
}
.agsb7-wizard .agsb7-slide .agsb7-content h2 {
  margin-bottom: 15px;
  color: var(--text_color);
}
.agsb7-wizard .agsb7-slide .agsb7-content h3 {
  margin-bottom: 15px;
  color: var(--text_color);
}
.agsb7-wizard .agsb7-slide .agsb7-content h4 {
  margin-bottom: 15px;
  color: var(--text_color);
}
.agsb7-wizard .agsb7-slide .agsb7-content p {
  line-height: 140%;
  margin-bottom: 15px;
  color: var(--text_color);
}
.agsb7-wizard .agsb7-field-group {
  margin: 40px auto;
}
.agsb7-wizard .agsb7-field-group label {
  display: block;
  color: var(--text_color);
}
.agsb7-wizard .agsb7-input {
  max-width: 70%;
  min-width: 320px;
  padding: 0 15px;
  margin: 5px auto 0;
  border: 2px solid #b3b3b3;
  border-radius: 30px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.agsb7-wizard .agsb7-input:focus {
  outline: none;
  border-color: var(--primary_color);
  -webkit-box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
          box-shadow: 0 0 0 3px rgba(34, 113, 177, 0.1);
}
.agsb7-wizard .agsb7-textarea {
  padding: 15px 15px;
  border-radius: 15px;
  min-width: 320px;
  width: 100%;
  font-weight: 300;
  margin: 5px auto 0;
  border: 2px solid #b3b3b3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  resize: vertical;
  height: auto;
  min-height: 100px;
  max-height: none;
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: relative;
}
.agsb7-wizard .agsb7-textarea:focus {
  outline: none;
  border-color: var(--primary_color);
}
.agsb7-wizard .agsb7-prefix-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.agsb7-wizard .agsb7-prefix-field .agsb7-prefix {
  padding: 0.75rem 0;
  font-style: italic;
  text-align: right;
  color: var(--text_color);
  white-space: nowrap;
  min-width: 270px;
  max-width: 270px;
  width: 270px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.agsb7-wizard .agsb7-prefix-field .agsb7-input,
.agsb7-wizard .agsb7-prefix-field .agsb7-textarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.agsb7-wizard .agsb7-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.agsb7-wizard .agsb7-start {
  display: block;
  margin: 10px auto;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-box-inner-wrapper {
  background: #fff;
  border: 2px solid #b3b3b3;
  border-radius: 20px;
  padding: 15px;
  margin: 0 0 5px;
  position: relative;
}
.agsb7-wizard .agsb7-testimonial-box .quote-mark-left,
.agsb7-wizard .agsb7-testimonial-box .quote-mark-right {
  position: absolute;
  color: var(--primary_color) !important;
  font-family: "Playwrite NL", cursive;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  right: 23px;
  bottom: 0;
  font-size: 35px;
  line-height: 1;
  height: 20px;
}
.agsb7-wizard .agsb7-testimonial-box .quote-mark-left {
  left: 5px;
  top: 22px;
  right: unset;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-edit {
  width: 100%;
  min-height: 100px;
  max-height: 170px;
  max-width: unset !important;
  padding: 10px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 140%;
  resize: vertical;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-edit:focus {
  outline: none;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions small {
  font-size: 10px;
  line-height: 120%;
  text-align: left;
  min-width: calc(100% - 150px);
  color: var(--text_color);
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .button-tools-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .btn {
  font-size: 12px;
  width: 190px;
  min-width: 190px;
  max-width: 190px;
  padding: 5px 10px;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .btn.agsb7-copy-refined {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .btn {
  background-color: #fff;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .btn:hover {
  background-color: var(--primary_color);
  color: #fff;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .agsb7-edit-indicator {
  opacity: 0;
  font-size: 0.7rem;
  color: #0ae743;
  font-weight: bolder;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  background: #fff;
  border-radius: 20px;
  padding: 0 0;
  margin: 0 0;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .agsb7-edit-indicator:not(:empty) {
  opacity: 1;
}
.agsb7-wizard .agsb7-testimonial-box .agsb7-testimonial-actions .agsb7-copy {
  margin: 0;
}
.agsb7-wizard h2.thank-you {
  color: var(--primary_color) !important;
  font-family: "Playwrite NL", cursive;
  letter-spacing: -0.4rem;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 30px 0 25px !important;
}
.agsb7-wizard h3.testimonial-types {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bolder;
  text-align: left !important;
  color: #b3b3b3 !important;
  margin: 0px 0px 3px 15px !important;
}
.agsb7-wizard .agsb7-final-cta {
  text-align: center;
  padding-top: 0;
  background: var(--primary_color) !important;
  color: #fff;
  border-radius: 25px;
  padding: 25px;
}
.agsb7-wizard .agsb7-final-cta h3 {
  font-weight: normal;
  color: #fff !important;
  font-size: 1.5rem;
  line-height: 100%;
  margin: 0 auto 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--primary_color);
  max-width: 70%;
}
@media (min-width: 768px) {
  .agsb7-wizard .agsb7-final-cta h3 {
    min-width: 320px;
  }
}
.agsb7-wizard .agsb7-final-cta h3.subtitle {
  max-width: 80%;
  font-weight: 300;
}
.agsb7-wizard .agsb7-final-cta p {
  max-width: 60%;
}
@media (min-width: 768px) {
  .agsb7-wizard .agsb7-final-cta p {
    min-width: 320px;
  }
}
.agsb7-wizard .agsb7-final-cta p {
  margin: 0 auto;
  font-size: 12px;
  line-height: 140%;
  color: #fff !important;
}
.agsb7-wizard .agsb7-success {
  background: #0ae743;
  color: #0ae743;
  padding: 1rem;
  border-radius: 4px;
  margin: 1rem 0;
  display: none;
}
.agsb7-wizard .agsb7-success.show {
  display: block;
  -webkit-animation: fadeIn 0.5s;
          animation: fadeIn 0.5s;
}
.agsb7-wizard .agsb7-error {
  border: 2px solid var(--primary_color) !important;
}
.agsb7-wizard .agsb7-error-message {
  font-size: 0.8rem;
  max-width: 50%;
  min-width: 220px;
  margin: 5px 0 0 auto;
  background: var(--primary_color);
  border: 2px solid var(--primary_color);
  color: #fff;
  border-radius: 0 30px 30px 30px;
  padding: 3px 5px;
}

.textarea .agsb7-error-message {
  margin: 0 auto;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .agsb7-wizard .agsb7-prefix-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .agsb7-wizard .agsb7-prefix-field .agsb7-prefix {
    padding: 0.5rem 0;
  }
  .agsb7-wizard .agsb7-nav {
    gap: 1rem;
  }
  .agsb7-wizard .agsb7-nav .agsb7-btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.agsb7-testimonial-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0 10px;
}

.agsb7-testimonial-column h3 {
  margin-top: 0;
  margin-bottom: 5px;
}

.agsb7-testimonial-column small {
  display: block;
  margin-bottom: 15px;
  color: var(--mediumgrey);
}

.agsb7-loading {
  padding: 20px;
  text-align: center;
  color: var(--mediumgrey);
  font-style: italic;
}

@media (max-width: 768px) {
  .agsb7-testimonial-columns {
    grid-template-columns: 1fr;
  }
}
.agsb7-error-display {
  padding: 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 14px;
}

.agsb7-error-display details {
  margin-top: 10px;
  cursor: pointer;
}

.agsb7-error-display summary {
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.agsb7-error-display pre {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 3px;
  overflow-x: auto;
  font-size: 12px;
}

/* Add to inc/dist/css/ag-sb7-referral-system.css */
.agsb7-all-reviews {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}

.agsb7-review {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agsb7-review-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.agsb7-review-name {
  font-size: 16px;
  color: #333;
}

.agsb7-review-date {
  font-size: 14px;
  color: #666;
}

.agsb7-review-text {
  color: #444;
  line-height: 1.6;
  margin-bottom: 12px;
}

.agsb7-review-source {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.agsb7-review-google {
  border-left: 4px solid #4285f4;
}

.agsb7-review-local {
  border-left: 4px solid #34a853;
}

.referrals-slider {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: -webkit-grab;
  cursor: grab;
}
.referrals-slider:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.referrals-slider .slider-container {
  height: auto;
  position: relative;
  width: calc(100% - 40px);
  height: auto;
  margin: 0 auto;
}
.referrals-slider .slider-controls .prev-btn,
.referrals-slider .slider-controls .next-btn,
.referrals-slider .slider-controls .prev-btn:hover,
.referrals-slider .slider-controls .next-btn:hover {
  height: 30px;
  width: 30px;
  border-radius: 30px;
  color: #fff !important;
  background-color: rgba(161, 178, 179, 0.3);
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
}
.referrals-slider .slider-controls .prev-btn:hover,
.referrals-slider .slider-controls .next-btn:hover,
.referrals-slider .slider-controls .prev-btn:hover:hover,
.referrals-slider .slider-controls .next-btn:hover:hover {
  color: #fff !important;
  background-color: rgba(161, 178, 179, 0.2);
}
.referrals-slider .slider-controls .prev-btn {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M201.4 297.4C188.9 309.9 188.9 330.2 201.4 342.7L361.4 502.7C373.9 515.2 394.2 515.2 406.7 502.7C419.2 490.2 419.2 469.9 406.7 457.4L269.3 320L406.6 182.6C419.1 170.1 419.1 149.8 406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3L201.3 297.3z"/></svg>');
}
.referrals-slider .slider-controls .prev-btn:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M201.4 297.4C188.9 309.9 188.9 330.2 201.4 342.7L361.4 502.7C373.9 515.2 394.2 515.2 406.7 502.7C419.2 490.2 419.2 469.9 406.7 457.4L269.3 320L406.6 182.6C419.1 170.1 419.1 149.8 406.6 137.3C394.1 124.8 373.8 124.8 361.3 137.3L201.3 297.3z"/></svg>');
}
.referrals-slider .slider-controls .next-btn {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M439.1 297.4C451.6 309.9 451.6 330.2 439.1 342.7L279.1 502.7C266.6 515.2 246.3 515.2 233.8 502.7C221.3 490.2 221.3 469.9 233.8 457.4L371.2 320L233.9 182.6C221.4 170.1 221.4 149.8 233.9 137.3C246.4 124.8 266.7 124.8 279.2 137.3L439.2 297.3z"/></svg>');
}
.referrals-slider .slider-controls .next-btn:hover {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M439.1 297.4C451.6 309.9 451.6 330.2 439.1 342.7L279.1 502.7C266.6 515.2 246.3 515.2 233.8 502.7C221.3 490.2 221.3 469.9 233.8 457.4L371.2 320L233.9 182.6C221.4 170.1 221.4 149.8 233.9 137.3C246.4 124.8 266.7 124.8 279.2 137.3L439.2 297.3z"/></svg>');
}
.referrals-slider .slider-dots {
  text-align: center;
  margin-top: 20px;
}
.referrals-slider .slider-dots .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(161, 178, 179, 0.5);
  margin: 0 5px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.referrals-slider .slider-dots .dot.active {
  background: rgba(161, 178, 179, 0.7);
}
.referrals-slider .slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.referrals-slider .slider-controls button {
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  pointer-events: all;
  font-size: 18px;
  z-index: 10;
}
.referrals-slider .slider-controls button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.full-width-referral {
  max-width: 80%;
  margin: 0 10%;
}
@media (max-width: 576px) {
  .full-width-referral {
    max-width: 98%;
    margin: 0 2%;
  }
}
.full-width-referral blockquote {
  font-weight: 100;
  font-size: 1.6rem;
  line-height: 140%;
}
@media (max-width: 576px) {
  .full-width-referral blockquote {
    font-size: 1.2rem;
    line-height: 140%;
  }
}
.full-width-referral p, .full-width-referral p strong {
  font-weight: 100;
  font-size: 1rem;
  line-height: 140%;
}
@media (max-width: 576px) {
  .full-width-referral p, .full-width-referral p strong {
    font-size: 1.2rem;
    line-height: 140%;
  }
}

.agsb7-google-reviews .agsb7-review-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-author {
  font-weight: 600;
  color: #333;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-rating {
  color: #fbbc04;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-link {
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
}
.agsb7-google-reviews .agsb7-review-card .agsb7-review-link:hover {
  text-decoration: underline;
}