/*
 * cf7-yardcard.css  (v3)
 * Yard Fairy Expressions — Booking Form Styles
 * All selectors scoped under .yfe-form-wrap
 */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ──────────────────────────────────────────────────────────
 * TOKENS
 * ────────────────────────────────────────────────────────── */
.yfe-form-wrap {
  --yfe-primary:   #7B2D8B;
  --yfe-accent:    #F7C948;
  --yfe-pink:      #F06292;
  --yfe-bg:        #FFF9FE;
  --yfe-surface:   #FFFFFF;
  --yfe-border:    #E8D5F0;
  --yfe-text:      #2D1B33;
  --yfe-muted:     #7C6B84;
  --yfe-error:     #E53935;
  --yfe-success:   #43A047;
  --yfe-radius:    14px;
  --yfe-radius-sm: 8px;
  --yfe-shadow:    0 4px 24px rgba(123,45,139,0.10);
  --yfe-shadow-lg: 0 8px 40px rgba(123,45,139,0.22);
  --yfe-font-h:    'Fredoka One', cursive, sans-serif;
  --yfe-font-b:    'Nunito', 'Segoe UI', system-ui, sans-serif;
  --yfe-ease:      0.2s ease;
}

/* ──────────────────────────────────────────────────────────
 * OUTER WRAP
 * ────────────────────────────────────────────────────────── */
.yfe-form-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 16px 60px;
  font-family: var(--yfe-font-b);
  color: var(--yfe-text);
  background: var(--yfe-bg);
  box-sizing: border-box;
}
.yfe-form-wrap *, .yfe-form-wrap *::before, .yfe-form-wrap *::after {
  box-sizing: border-box;
}

/* ──────────────────────────────────────────────────────────
 * HEADER
 * ────────────────────────────────────────────────────────── */
.yfe-header-block {
  text-align: center;
  padding: 48px 20px 32px;
}
.yfe-headline {
  font-family: var(--yfe-font-h);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--yfe-primary);
  margin: 0 0 8px;
  text-shadow: 2px 3px 0 rgba(247,201,72,0.4);
}
.yfe-tagline {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--yfe-pink);
  text-transform: uppercase;
  margin: 0;
}

/* ──────────────────────────────────────────────────────────
 * SECTIONS
 * ────────────────────────────────────────────────────────── */
.yfe-form-wrap .yfe-section {
  background: var(--yfe-surface);
  border: 2px solid var(--yfe-border);
  border-radius: var(--yfe-radius);
  padding: 28px 24px 24px;
  margin-bottom: 24px;
  box-shadow: var(--yfe-shadow);
}
.yfe-form-wrap fieldset.yfe-section {
  border-left: 5px solid var(--yfe-primary);
}
.yfe-legend {
  font-family: var(--yfe-font-h);
  font-size: 1.2rem;
  color: var(--yfe-primary);
  padding: 0 10px;
  background: var(--yfe-surface);
}
.yfe-section-hint {
  font-size: 0.83rem;
  color: var(--yfe-muted);
  margin: 0 0 18px;
}

/* ──────────────────────────────────────────────────────────
 * INPUTS / SELECTS / TEXTAREAS
 * ────────────────────────────────────────────────────────── */
.yfe-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--yfe-text);
}
.yfe-field-group { margin-bottom: 20px; }
.yfe-form-wrap .req { color: var(--yfe-error); margin-left: 2px; }

.yfe-form-wrap input[type="text"],
.yfe-form-wrap input[type="email"],
.yfe-form-wrap input[type="tel"],
.yfe-form-wrap input[type="number"],
.yfe-form-wrap input[type="date"],
.yfe-form-wrap textarea,
.yfe-form-wrap select {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--yfe-border);
  border-radius: var(--yfe-radius-sm);
  font-family: var(--yfe-font-b);
  font-size: 0.95rem;
  color: var(--yfe-text);
  background: #FAFAFA;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
  appearance: none;
}
.yfe-form-wrap input:focus,
.yfe-form-wrap textarea:focus,
.yfe-form-wrap select:focus {
  outline: none;
  border-color: var(--yfe-primary);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.14);
  background: #fff;
}
.yfe-form-wrap input.wpcf7-not-valid,
.yfe-form-wrap textarea.wpcf7-not-valid { border-color: var(--yfe-error); }
.yfe-form-wrap textarea { min-height: 110px; resize: vertical; }

/* Name row */
.yfe-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.yfe-name-row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.yfe-name-row .wpcf7-form-control-wrap input { width: 100%; }

/* City/State/Zip */
.yfe-city-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 12px;
  margin-bottom: 0;
}
.yfe-city-item { display: flex; flex-direction: column; }
.yfe-city-item .wpcf7-form-control-wrap,
.yfe-city-item .wpcf7-form-control-wrap input { display: block; width: 100%; }

/* ──────────────────────────────────────────────────────────
 * RADIO & CHECKBOX GROUPS
 * ────────────────────────────────────────────────────────── */
.yfe-radio-group .wpcf7-radio,
.yfe-checkbox-group .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.yfe-radio-group .wpcf7-list-item,
.yfe-checkbox-group .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}
.yfe-radio-group input[type="radio"],
.yfe-checkbox-group input[type="checkbox"],
.yfe-addon-row input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--yfe-primary);
  cursor: pointer; flex-shrink: 0;
}

/* ──────────────────────────────────────────────────────────
 * PRODUCT CARD GRID
 *
 * Card structure:
 *  .yfe-card
 *    .yfe-card-img-wrap  ← image + overlaid badge + tick
 *      img
 *      .yfe-card-price-badge
 *      .yfe-card-select-ring
 *    .yfe-card-body
 *      .yfe-card-name
 *      .yfe-card-desc
 *
 * IMPORTANT: pointer-events must NOT be blocked on children
 * so clicks bubble up to .yfe-card. Only .yfe-card gets the
 * click listener via event delegation.
 * ────────────────────────────────────────────────────────── */
.yfe-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

/* The card itself */
.yfe-card {
  position: relative;
  background: var(--yfe-surface);
  border: 2.5px solid var(--yfe-border);
  border-radius: var(--yfe-radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--yfe-ease), box-shadow var(--yfe-ease), transform var(--yfe-ease);
  outline: none;
  /* All child content passes pointer events through to the card */
  -webkit-user-select: none;
  user-select: none;
}
.yfe-card:hover {
  border-color: var(--yfe-primary);
  box-shadow: var(--yfe-shadow-lg);
  transform: translateY(-4px);
}
.yfe-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(123,45,139,0.35);
}

/* Selected state */
.yfe-card.is-selected {
  border-color: var(--yfe-primary);
  box-shadow: 0 0 0 3px rgba(123,45,139,0.22), var(--yfe-shadow-lg);
  transform: translateY(-4px);
  background: #FBF4FF;
}

/* ── Image wrapper ── */
.yfe-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 68%;   /* 3:2 aspect ratio */
  overflow: hidden;
  background: #F0E5F5;
  /* Don't block pointer events */
  pointer-events: none;
}
.yfe-card-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
  pointer-events: none;
}
.yfe-card:hover .yfe-card-img-wrap img {
  transform: scale(1.04);
}

/* Price badge — top-left corner over image */
.yfe-card-price-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yfe-accent);
  color: var(--yfe-text);
  font-family: var(--yfe-font-h);
  font-size: 1rem;
  padding: 3px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 2;
  line-height: 1.4;
}

/* Select ring — top-right corner, shown always, filled when selected */
.yfe-card-select-ring {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--yfe-ease), border-color var(--yfe-ease), transform var(--yfe-ease);
  pointer-events: none;
  z-index: 2;
}
.yfe-card.is-selected .yfe-card-select-ring,
.yfe-card--bigheads.is-active .yfe-card-select-ring {
  background: var(--yfe-primary);
  border-color: var(--yfe-primary);
  transform: scale(1.1);
}
.yfe-card-tick {
  color: transparent;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  transition: color var(--yfe-ease);
  pointer-events: none;
}
.yfe-card.is-selected .yfe-card-tick,
.yfe-card--bigheads.is-active .yfe-card-tick {
  color: #fff;
}

/* ── Card body (below image) ── */
.yfe-card-body {
  padding: 12px 14px 14px;
  pointer-events: none;
}
.yfe-card-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--yfe-primary);
  margin: 0 0 4px;
  line-height: 1.3;
  pointer-events: none;
}
.yfe-card-desc {
  font-size: 0.78rem;
  color: var(--yfe-muted);
  margin: 0;
  line-height: 1.45;
  pointer-events: none;
}

/* ── Big Heads card — qty controls inside ── */
.yfe-card--bigheads {
  cursor: default;   /* pointer is on the buttons, not the card */
}
.yfe-card--bigheads:hover {
  transform: none;
}

/* Qty controls — pointer-events back ON for buttons/input */
.yfe-qty-wrap,
body .yfe-form-wrap .yfe-qty-wrap,
body .yfe-form-wrap #yfe-qty-wrap {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 10px !important;
  pointer-events: auto !important;
  list-style: none !important;
  padding: 0 !important;
}
.yfe-form-wrap .yfe-qty-btn,
.yfe-form-wrap button.yfe-qty-btn,
.yfe-form-wrap #yfe-qty-dec,
.yfe-form-wrap #yfe-qty-inc {
  width: 38px !important;
  height: 38px !important;
  min-height: unset !important;
  padding: 0 !important;
  border: none !important;
  background: #05B3FE !important;
  background-color: #05B3FE !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-family: 'Fredoka One', cursive !important;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  pointer-events: auto !important;
  box-shadow: 0 3px 10px rgba(5,179,254,0.35) !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  outline: none !important;
}
.yfe-form-wrap .yfe-qty-btn:hover,
.yfe-form-wrap button.yfe-qty-btn:hover,
.yfe-form-wrap #yfe-qty-dec:hover,
.yfe-form-wrap #yfe-qty-inc:hover {
  background: #009fe0 !important;
  background-color: #009fe0 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(5,179,254,0.45) !important;
}
.yfe-form-wrap .yfe-qty-btn:active,
.yfe-form-wrap button.yfe-qty-btn:active {
  transform: scale(0.94) !important;
  box-shadow: none !important;
}

/* Override CF7 number input width inside qty wrap */
.yfe-qty-wrap .wpcf7-form-control-wrap,
.yfe-qty-wrap input[type="number"] {
  width: 56px !important;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  padding: 5px 8px;
  pointer-events: auto;
}

/* ──────────────────────────────────────────────────────────
 * ADD-ONS SECTION
 * ────────────────────────────────────────────────────────── */
.yfe-addons-section { border-left-color: var(--yfe-accent) !important; }

.yfe-addon-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: #FAFAFA;
  border: 1.5px solid var(--yfe-border);
  border-radius: var(--yfe-radius-sm);
  margin-bottom: 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.yfe-addon-row:hover { background: rgba(123,45,139,0.04); border-color: var(--yfe-primary); }
.yfe-addon-meta {
  font-size: 0.80rem;
  color: var(--yfe-muted);
  margin: 2px 0 0;
  width: 100%;
  line-height: 1.45;
}
.yfe-addon-label {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--yfe-text);
  margin: 0;
}

/* Tip row */
.yfe-tip-row { flex-direction: column; cursor: default; }
.yfe-tip-row:hover { background: #FAFAFA; border-color: var(--yfe-border); }

.yfe-tip-presets,
body .yfe-form-wrap .yfe-tip-presets,
body .yfe-form-wrap #yfe-tip-presets {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 10px 0 4px !important;
  list-style: none !important;
  padding: 0 !important;
}
.yfe-tip-preset-label {
  font-family: 'Fredoka One', cursive;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yfe-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.yfe-form-wrap .yfe-tip-btn,
.yfe-form-wrap button.yfe-tip-btn {
  padding: 7px 20px !important;
  border: none !important;
  background: #05B3FE !important;
  background-color: #05B3FE !important;
  color: #fff !important;
  font-family: 'Fredoka One', cursive !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: 22px !important;
  cursor: pointer !important;
  box-shadow: 0 3px 10px rgba(5,179,254,0.35) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  min-height: unset !important;
  line-height: 1.4 !important;
  text-shadow: none !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  outline: none !important;
  display: inline-block !important;
}
.yfe-form-wrap .yfe-tip-btn:hover,
.yfe-form-wrap button.yfe-tip-btn:hover {
  background: #009fe0 !important;
  background-color: #009fe0 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(5,179,254,0.45) !important;
}
.yfe-form-wrap .yfe-tip-btn.is-active,
.yfe-form-wrap button.yfe-tip-btn.is-active {
  background: #7B2D8B !important;
  background-color: #7B2D8B !important;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(123,45,139,0.35) !important;
  transform: translateY(-2px) !important;
}
.yfe-form-wrap .yfe-tip-btn--none,
.yfe-form-wrap button.yfe-tip-btn--none {
  background: #bdbdbd !important;
  background-color: #bdbdbd !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12) !important;
  color: #fff !important;
}
.yfe-form-wrap .yfe-tip-btn--none:hover,
.yfe-form-wrap button.yfe-tip-btn--none:hover {
  background: #9e9e9e !important;
  background-color: #9e9e9e !important;
}
.yfe-tip-selected-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--yfe-success);
  margin: 0 0 6px;
  display: none;
}
.yfe-tip-manual { margin-top: 8px; }
.yfe-tip-manual-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--yfe-muted);
  margin-bottom: 6px;
}
.yfe-tip-manual .wpcf7-form-control-wrap,
.yfe-tip-manual input[type="number"] {
  max-width: 180px !important;
  width: 180px !important;
}

/* ──────────────────────────────────────────────────────────
 * ORDER TOTAL BAR  (inside add-ons section, after tip)
 * ────────────────────────────────────────────────────────── */
.yfe-total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--yfe-primary) 0%, #9C27B0 100%);
  color: #fff;
  border-radius: var(--yfe-radius);
  padding: 16px 22px;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(123,45,139,0.35);
}
.yfe-total-label {
  font-family: var(--yfe-font-h);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.yfe-total-amount {
  font-family: var(--yfe-font-h);
  font-size: 1.9rem;
  color: var(--yfe-accent);
  text-shadow: 1px 2px 0 rgba(0,0,0,0.18);
}

/* ──────────────────────────────────────────────────────────
 * PAYMENT / SCREENSHOT
 * ────────────────────────────────────────────────────────── */
.yfe-payment-note { font-size: 0.85rem; color: var(--yfe-muted); margin-top: 12px; }
.yfe-screenshot-section { border-left-color: var(--yfe-pink) !important; }
.yfe-form-wrap input[type="file"] { margin-top: 8px; font-size: 0.9rem; padding: 8px 0; }
.yfe-file-error { display: none; font-size: 0.85rem; color: var(--yfe-error); font-weight: 700; margin-top: 6px; }
.yfe-file-error.is-visible { display: block; }

/* ──────────────────────────────────────────────────────────
 * TERMS
 * ────────────────────────────────────────────────────────── */
.yfe-terms-section { border-left-color: var(--yfe-pink) !important; }
.yfe-terms-wrap {
  background: rgba(240,98,146,0.06);
  border: 1.5px solid rgba(240,98,146,0.25);
  border-radius: var(--yfe-radius-sm);
  padding: 14px 16px;
  font-size: 0.93rem;
  line-height: 1.6;
}
.yfe-terms-wrap .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.yfe-terms-wrap .wpcf7-acceptance input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--yfe-primary);
  flex-shrink: 0;
  cursor: pointer;
}
.yfe-terms-wrap .wpcf7-acceptance a {
  color: var(--yfe-primary);
  font-weight: 700;
  text-decoration: underline;
}
.yfe-terms-wrap .wpcf7-acceptance a:hover { color: var(--yfe-pink); }

/* ──────────────────────────────────────────────────────────
 * SUBMIT
 * ────────────────────────────────────────────────────────── */
.yfe-submit-wrap { text-align: center; margin-top: 32px; }
.yfe-form-wrap input[type="submit"],
.yfe-form-wrap #yfe-submit {
  display: inline-block;
  padding: 16px 52px;
  background: linear-gradient(135deg, var(--yfe-pink) 0%, var(--yfe-primary) 100%);
  color: #fff;
  font-family: var(--yfe-font-h);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(123,45,139,0.40);
  transition: transform var(--yfe-ease), box-shadow var(--yfe-ease);
  -webkit-appearance: none;
  appearance: none;
}
.yfe-form-wrap input[type="submit"]:hover,
.yfe-form-wrap #yfe-submit:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 36px rgba(123,45,139,0.50);
}

/* ──────────────────────────────────────────────────────────
 * CF7 MESSAGES
 * ────────────────────────────────────────────────────────── */
.yfe-form-wrap .wpcf7-response-output {
  border-radius: var(--yfe-radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  margin: 16px 0 0;
  font-weight: 600;
}
.yfe-form-wrap .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: var(--yfe-error);
  margin-top: 4px;
  display: block;
}

/* ──────────────────────────────────────────────────────────
 * RESPONSIVE
 * ────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .yfe-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .yfe-product-grid { grid-template-columns: 1fr; }
  .yfe-name-row,
  .yfe-city-row { grid-template-columns: 1fr; }
  .yfe-form-wrap .yfe-section { padding: 18px 14px; }
  .yfe-total-amount { font-size: 1.5rem; }
  .yfe-form-wrap input[type="submit"],
  .yfe-form-wrap #yfe-submit { width: 100%; padding: 16px; }
}

/* ──────────────────────────────────────────────────────────
 * THEME OVERRIDE — maximum specificity for buttons
 * Overrides Hello Elementor / Elementor button base styles
 * ────────────────────────────────────────────────────────── */
body .yfe-form-wrap button.yfe-qty-btn,
body .yfe-form-wrap button#yfe-qty-dec,
body .yfe-form-wrap button#yfe-qty-inc {
  background: #05B3FE !important;
  background-color: #05B3FE !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  font-family: 'Fredoka One', cursive !important;
  font-weight: 600 !important;
  font-size: 1.3rem !important;
  width: 38px !important;
  height: 38px !important;
  min-width: unset !important;
  min-height: unset !important;
  padding: 0 !important;
  box-shadow: 0 3px 10px rgba(5,179,254,0.35) !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1 !important;
}
body .yfe-form-wrap button.yfe-qty-btn:hover,
body .yfe-form-wrap button#yfe-qty-dec:hover,
body .yfe-form-wrap button#yfe-qty-inc:hover {
  background: #009fe0 !important;
  background-color: #009fe0 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(5,179,254,0.45) !important;
}

body .yfe-form-wrap button.yfe-tip-btn {
  background: #05B3FE !important;
  background-color: #05B3FE !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 22px !important;
  font-family: 'Fredoka One', cursive !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  padding: 7px 20px !important;
  min-width: unset !important;
  min-height: unset !important;
  box-shadow: 0 3px 10px rgba(5,179,254,0.35) !important;
  text-shadow: none !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.4 !important;
  display: inline-block !important;
}
body .yfe-form-wrap button.yfe-tip-btn:hover {
  background: #009fe0 !important;
  background-color: #009fe0 !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 14px rgba(5,179,254,0.45) !important;
}
body .yfe-form-wrap button.yfe-tip-btn.is-active {
  background: #7B2D8B !important;
  background-color: #7B2D8B !important;
  color: #ffffff !important;
}
body .yfe-form-wrap button.yfe-tip-btn--none {
  background: #bdbdbd !important;
  background-color: #bdbdbd !important;
  color: #ffffff !important;
}
body .yfe-form-wrap button.yfe-tip-btn--none:hover {
  background: #9e9e9e !important;
  background-color: #9e9e9e !important;
}