@keyframes bhub-loader {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bhub-c-loader {
  --bhub-c-loader-size: 60px;
  --bhub-c-loader-color: var(--bhub-color-primary);
  --bhub-c-loader-speed: 1.2s;
  --bhub-c-loader-height: calc(var(--bhub-c-loader-size) * 0.22);
  --bhub-c-loader-width: calc(var(--bhub-c-loader-size) * 0.08);
  --bhub-c-loader-radius: calc(var(--bhub-c-loader-size) * 0.35);
  color: var(--bhub-c-loader-color);
  display: inline-block;
  position: relative;
  width: var(--bhub-c-loader-size);
  height: var(--bhub-c-loader-size);
}

.bhub-c-loader,
.bhub-c-loader div,
.bhub-c-loader div::after {
  box-sizing: border-box;
}

.bhub-c-loader div {
  transform-origin: calc(var(--bhub-c-loader-size) * 0.5) calc(var(--bhub-c-loader-size) * 0.5);
  animation: bhub-loader var(--bhub-c-loader-speed) linear infinite;
}

.bhub-c-loader div::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--bhub-c-loader-size) * 0.5 - var(--bhub-c-loader-radius) - var(--bhub-c-loader-height) * 0.5);
  left: calc(var(--bhub-c-loader-size) * 0.5 - var(--bhub-c-loader-width) * 0.5);
  width: var(--bhub-c-loader-width);
  height: var(--bhub-c-loader-height);
  border-radius: 20%;
  background: currentColor;
}

.bhub-c-loader div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.bhub-c-loader div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.bhub-c-loader div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.bhub-c-loader div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.bhub-c-loader div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.bhub-c-loader div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.bhub-c-loader div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.bhub-c-loader div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.bhub-c-loader div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.bhub-c-loader div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.bhub-c-loader div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.bhub-c-loader div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

.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;
}
.bhub-coupon-form__apply:hover, .bhub-coupon-form__apply:focus, .bhub-coupon-form__apply:active {
  background: none;
  outline: none;
}
.bhub-coupon-form__apply {
  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__apply[type=button] {
  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[type=button]:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.bhub-coupon-form__apply[type=submit] {
  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[type=submit]: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, .bhub-active-coupons__remove:focus, .bhub-active-coupons__remove:active {
  background: none;
  outline: none;
}
.bhub-active-coupons__remove:hover {
  background-color: #ededed;
}
