@-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%);
  }
}
.wc-block-components-product-sale-badge {
  background: #fff;
  border: 1px solid #43454b;
  border-radius: 3px;
  box-sizing: border-box;
  color: #43454b;
  display: inline-block;
  font-size: 0.875em;
  font-weight: 600;
  margin: 0 auto 12px;
  padding: 0.25em 0.75em;
  position: static;
  text-align: center;
  text-transform: uppercase;
  width: auto;
  z-index: 9;
}
.wc-block-components-product-sale-badge span {
  background-color: inherit;
  color: inherit;
}
