/*
 * Product-review primary action.
 * Loaded after Porto dynamic styles without forced-priority declarations.
 */
body.single-product #review_form #submit.storefront-review-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 130px;
  min-height: 51px;
  margin: 0;
  padding: 14px 20px 12px;
  overflow: hidden;
  border: 1px solid #ffcc00;
  border-radius: 3px;
  background: #ffcc00;
  box-shadow: none;
  color: #000;
  cursor: pointer;
  font-family: "Jost", Arial, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 23px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap;
}

body.single-product #review_form #submit.storefront-review-submit:hover {
  border-color: #000;
  background: #fff;
  color: #000;
}

body.single-product #review_form #submit.storefront-review-submit:focus {
  outline: none;
}

body.single-product #review_form #submit.storefront-review-submit:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

body.single-product #review_form #submit.storefront-review-submit:active {
  border-color: #cda500;
  background: #e0b400;
  color: #000;
}

body.single-product #review_form #submit.storefront-review-submit:disabled,
body.single-product #review_form #submit.storefront-review-submit[disabled] {
  border-color: #c1c1c1;
  background: #c1c1c1;
  color: #fff;
  cursor: default;
  opacity: 1;
  pointer-events: none;
}

body.single-product #review_form form#commentform[aria-busy="true"]
#submit.storefront-review-submit {
  border-color: #ffcc00;
  background: #ffcc00;
  color: transparent;
  opacity: 1;
}

body.single-product #review_form form#commentform[aria-busy="true"]
#submit.storefront-review-submit::after {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.24);
  border-top-color: #000;
  border-radius: 50%;
  content: "";
  animation: storefront-review-submit-spin 0.75s linear infinite;
}

@keyframes storefront-review-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 575px) {
  body.single-product #review_form #submit.storefront-review-submit {
    width: 100%;
  }
}
