/**
 * Discount card "Customize and Add to cart" wizard (Front Side / Back Side).
 */
.discount-card-add-cart-form .wizard-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 24px;
}
.discount-card-add-cart-form .wizard-step-indicator {
  display: flex;
  align-items: center;
  color: #9aa5ab;
}
.discount-card-add-cart-form .wizard-step-indicator .step-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #cfd8dc;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-right: 8px;
}
.discount-card-add-cart-form .wizard-step-indicator .step-check {
  display: none;
}
.discount-card-add-cart-form .wizard-step-indicator.is-active .step-circle,
.discount-card-add-cart-form .wizard-step-indicator.is-complete .step-circle {
  background: #0b5c70;
}
.discount-card-add-cart-form .wizard-step-indicator.is-complete .step-circle {
  background: #2e9e57;
}
.discount-card-add-cart-form .wizard-step-indicator.is-complete .step-number {
  display: none;
}
.discount-card-add-cart-form .wizard-step-indicator.is-complete .step-check {
  display: inline;
}
.discount-card-add-cart-form .wizard-step-indicator.is-active,
.discount-card-add-cart-form .wizard-step-indicator.is-complete {
  color: #0b5c70;
  font-weight: 600;
}
.discount-card-add-cart-form .wizard-step-indicator.is-complete {
  cursor: pointer;
}
.discount-card-add-cart-form .wizard-step-connector {
  width: 60px;
  height: 2px;
  background: #cfd8dc;
  margin: 0 10px;
}
.discount-card-add-cart-form .wizard-step-content .custom_add_cart_form_img {
  text-align: center;
}
.discount-card-add-cart-form .wizard-step-content .card_image_caption {
  font-size: 13px;
  color: #6c757d;
  margin-top: 6px;
}
.discount-card-add-cart-form .download-artwork-template,
.scratch-card-add-cart-form .download-artwork-template {
  position: relative;
  margin: 6px 0 16px;
}
.discount-card-add-cart-form .download-artwork-toggle,
.scratch-card-add-cart-form .download-artwork-toggle {
  color: #0d6efd;
  cursor: pointer;
  text-decoration: none;
}
.discount-card-add-cart-form .download-artwork-menu,
.scratch-card-add-cart-form .download-artwork-menu {
  display: none;
  position: absolute;
  z-index: 5;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
  padding: 6px 0;
  min-width: 160px;
}
.discount-card-add-cart-form .download-artwork-menu.is-open,
.scratch-card-add-cart-form .download-artwork-menu.is-open {
  display: block;
}
.discount-card-add-cart-form .download-artwork-menu a,
.scratch-card-add-cart-form .download-artwork-menu a {
  display: block;
  padding: 6px 14px;
  color: #464443;
  text-decoration: none;
}
.discount-card-add-cart-form .download-artwork-menu a:hover,
.scratch-card-add-cart-form .download-artwork-menu a:hover {
  background: #f5f5f5;
}
.discount-card-add-cart-form .wizard-nav {
  text-align: right;
  margin: 10px 0 6px;
}
.discount-card-add-cart-form .wizard-next-btn {
  background: #f38c0d;
  color: #fff;
  border: 1px solid #f38c0d;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
}
.discount-card-add-cart-form .wizard-next-btn:hover {
  background: #d97b09;
}
.discount-card-add-cart-form p.wizard-step1-error {
  color: red;
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}
