.bhub-coupons {
  --bhub-blocker-extra-space: 15px;
}

.bhub-coupon-form__wrapper {
  display: none;
  padding-top: 16px;
}
.bhub-coupon-form__wrapper__grid {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bhub-coupon-form__toggle {
  cursor: pointer;
}
.bhub-coupon-form .bhub-form-field {
  flex-grow: 1;
}
.bhub-coupon-form .bhub-form-field--label-outside > label:not(.error) {
  display: none;
}
.bhub-coupon-form__apply {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  transition: 250ms;
  border-radius: 50%;
  color: inherit;
}
.bhub-coupon-form__apply:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.bhub-coupon-form__error {
  display: block;
  margin-top: 5px;
  color: var(--bhub-color-error);
  font-size: 80%;
}
.bhub-coupon-form__question {
  font-weight: 700;
}
.bhub-coupon-form__enter {
  text-decoration: underline;
  cursor: pointer;
}

.bhub-active-coupons {
  display: grid;
  gap: 8px;
}
.bhub-active-coupons__coupon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px solid var(--bhub-color-border);
  border-radius: var(--bhub-border-r);
  font-size: 13px;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
}
.bhub-active-coupons__remove {
  padding: 0;
  border: 0;
  box-shadow: none;
  background: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  width: 25px;
  height: 25px;
  font-size: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 250ms;
  color: var(--bhub-color-subtitle-text);
}
.bhub-active-coupons__remove:hover {
  background-color: #ededed;
}
