.breakdance .bde-code-block-721-104:has(.aussie-reviews) {
  width: 100%;
}

.aussie-reviews {
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 240px;
  min-height: 240px;
  padding: 8px 46px 30px;
  overflow: hidden;
  color: #171717;
  text-align: center;
}

.aussie-reviews__viewport {
  display: grid;
  width: 100%;
  place-items: center;
}

.aussie-reviews__review {
  display: grid;
  grid-area: 1 / 1;
  justify-items: center;
  width: 100%;
  animation: aussie-review-in 180ms ease-out;
}

.aussie-reviews__review[hidden] {
  display: none !important;
}

.aussie-reviews__stars {
  color: #fbbc04;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 1px;
}

.aussie-reviews blockquote {
  display: -webkit-box;
  max-width: 520px;
  margin: 10px 0;
  overflow: hidden;
  color: #171717;
  font-size: 16px;
  font-style: normal;
  line-height: 1.45;
  text-wrap: balance;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.aussie-reviews__source {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  place-items: center;
  border: 1px solid #e2e4e8;
  border-radius: 10px;
  background: #fff;
}

.aussie-reviews__source svg {
  width: 23px;
  height: 23px;
}

.aussie-reviews__author {
  color: #202124;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: underline;
}

.aussie-reviews__byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.aussie-reviews__verified {
  display: inline-grid;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  place-items: center;
  border-radius: 50%;
  background: #4285f4;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.aussie-reviews time {
  margin-top: 5px;
  color: #929292;
  font-size: 12px;
  line-height: 1;
}

.aussie-reviews__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  transform: translateY(-50%);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #929292;
  color: #fff;
  cursor: pointer;
  transition: background 120ms ease;
}

.aussie-reviews__arrow svg {
  display: block;
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aussie-reviews__arrow:hover {
  background: #01833d;
}

.aussie-reviews__arrow:focus-visible {
  background: #01833d;
  outline: 2px solid #01833d;
  outline-offset: 2px;
}

.aussie-reviews__arrow:hover,
.aussie-reviews__arrow:focus-visible {
  transform: translateY(-50%);
}

.aussie-reviews__arrow--previous {
  left: 4px;
}

.aussie-reviews__arrow--next {
  right: 4px;
}

.aussie-reviews__arrow[hidden] {
  display: none;
}

.aussie-reviews__dots {
  position: absolute;
  bottom: 3px;
  left: 50%;
  display: flex;
  gap: 4px;
  transform: translateX(-50%);
}

.aussie-reviews__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7b7b7;
  transition:
    width 120ms ease,
    background 120ms ease;
}

.aussie-reviews__dots span.is-active {
  width: 7px;
  background: #171717;
}

.aussie-reviews__counter {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes aussie-review-in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
}

@media (max-width: 767px) {
  .aussie-reviews {
    height: 274px;
    min-height: 274px;
    padding-right: 38px;
    padding-left: 38px;
  }

  .aussie-reviews blockquote {
    font-size: 14px;
    -webkit-line-clamp: 5;
  }

  .aussie-reviews__arrow {
    width: 30px;
    height: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aussie-reviews__review {
    animation: none;
  }
}
