.product-button-group__wawi-button {
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #333;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: row;
  transition: all 100ms ease-in-out;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  gap: 12px;
  background: transparent;
  outline: none;
}
.product-button-group__wawi-button i {
  align-content: center;
}
.product-button-group__wawi-button:hover {
  background: #333;
  color: #fff;
  box-shadow: none;
}
.product-button-group__wawi-button:hover span {
  color: #fff;
}
.product-button-group__wawi-button:hover i {
  color: #fff;
}

.product-button-group__wawi-button.is-primary {
  background: #FF9A26;
  color: #fff;
  box-shadow: none;
}
.product-button-group__wawi-button.is-primary span {
  color: #fff;
}
.product-button-group__wawi-button.is-primary i {
  color: #fff;
}
.product-button-group__wawi-button.is-primary:hover {
  background: transparent;
  color: #333;
  box-shadow: inset 0 0 0 2px #333;
}
.product-button-group__wawi-button.is-primary:hover span {
  color: #333;
}
.product-button-group__wawi-button.is-primary:hover i {
  color: #333;
}

.product-button-group__wawi-button.has-wawi-gradient {
  color: #fff;
  box-shadow: none;
  background-image: linear-gradient(64deg, #FF9A26 0%, #FFC935 100%);
  background-color: #FF9A26;
  transition: none;
}
.product-button-group__wawi-button.has-wawi-gradient span {
  color: #fff;
}
.product-button-group__wawi-button.has-wawi-gradient i {
  color: #fff;
}

.product-button-group__wawi-button.has-wawi-gradient:hover {
  background: linear-gradient(64deg, #FFC935 0%, #FF9A26 100%);
}

.product-button-group__wawi-button.is-inverted {
  box-shadow: inset 0 0 0 2px #fff;
  background: #fff;
}
.product-button-group__wawi-button.is-inverted:hover {
  background: transparent;
}

.product-button-group__wawi-button.has-no-hover.is-inverted:hover {
  box-shadow: inset 0 0 0 2px #fff;
  color: inherit;
  background: #fff;
  transition-delay: 0ms;
}
.product-button-group__wawi-button.has-no-hover.is-inverted:hover span {
  color: #333;
}

@media (max-width: 991px) {
  .product-button-group__wawi-button {
    font-size: 14px;
    padding: 12px 16px;
  }
}
