@-webkit-keyframes spinner__animation {
  0% {
    -webkit-animation-timing-function: cubic-bezier(
      0.5856,
      0.0703,
      0.4143,
      0.9297
    );
    animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes spinner__animation {
  0% {
    -webkit-animation-timing-function: cubic-bezier(
      0.5856,
      0.0703,
      0.4143,
      0.9297
    );
    animation-timing-function: cubic-bezier(0.5856, 0.0703, 0.4143, 0.9297);
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes loading__animation {
  to {
    transform: translateX(100%);
  }
}
@keyframes loading__animation {
  to {
    transform: translateX(100%);
  }
}
.wp-block-woocommerce-product-reviews img {
  max-width: 600px;
}
.wp-block-woocommerce-product-reviews .submit {
  margin-top: 2rem;
}
.wp-block-woocommerce-product-reviews__editor__row {
  align-items: center;
  display: flex;
  gap: 2rem;
}
.wp-block-woocommerce-product-reviews__editor__row > span {
  flex-basis: 20%;
}
.wp-block-woocommerce-product-reviews__editor__row
  .wp-block-woocommerce-product-reviews__editor__stars,
.wp-block-woocommerce-product-reviews__editor__row textarea {
  flex-grow: 1;
  margin-right: 1rem;
}
.wp-block-woocommerce-product-reviews__editor__row textarea {
  flex-grow: 1;
  height: 8rem;
}
.wp-block-woocommerce-product-reviews__editor__stars {
  display: inline-block;
  font-family: star;
  font-size: 1em;
  font-weight: 400;
  height: 1.618em;
  line-height: 1.618;
  overflow: hidden;
  position: relative;
  width: 5.3em;
}
.wp-block-woocommerce-product-reviews__editor__stars:before {
  color: inherit;
  content: "SSSSS";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  white-space: nowrap;
}
