/* ==========================================================================
   Eleonex Variation Picker — evp-* styles
   Design tokens ported from ccb-* (styles.html in custom-checkout-builder).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Shimmer loading — overlay injected by JS into .evp-picker, .datatables-wrapper,
   and .evp-footer. Shown while body.evp-loading is set.
   -------------------------------------------------------------------------- */

@keyframes evp-shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.evp-shimmer-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.04) 25%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.04) 75%
  );
  background-size: 200% 100%;
}

body.evp-loading .evp-shimmer-overlay {
  display: block;
  animation: evp-shimmer 1.2s linear infinite;
}

body.evp-loading .evp-btn,
body.evp-loading .evp-addon {
  pointer-events: none;
}

/* --- evp-group-shimmer: opaque per-section loading overlay --- */
.evp-group-shimmer {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: inherit;
  background-color: var(--evp-bg);
  background-image: linear-gradient(
    90deg,
    rgba(1, 255, 205, 0) 25%,
    rgba(1, 255, 205, 0.14) 50%,
    rgba(1, 255, 205, 0) 75%
  );
  background-size: 200% 100%;
  pointer-events: none;
}

body.evp-initial-loading .evp-group-shimmer {
  display: block;
  animation: evp-shimmer 1.2s linear infinite;
}

/* --------------------------------------------------------------------------
   Inline error message
   -------------------------------------------------------------------------- */

.evp-error {
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #ff6b6b;
  font-size: 14px;
}

:root {
  --evp-bg: #10181f;
  --evp-accent: #01ffcd;
  --evp-border: rgba(255, 255, 255, 0.14);
  --evp-text: #ffffff;
  --evp-muted: #d7dde1;
  --evp-btn-bg: transparent;
  --evp-btn-border: #2b353d;
}

/* --------------------------------------------------------------------------
   Picker wrapper
   -------------------------------------------------------------------------- */

.evp-picker {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.evp-picker.evp-ready {
  opacity: 1;
}

.evp-back-link {
  color: var(--evp-muted);
  text-decoration: none;
  font-size: 14px;
}

.evp-back-link:hover {
  color: var(--evp-accent);
}

.evp-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--evp-text);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Attribute rows
   -------------------------------------------------------------------------- */

.evp-attr-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.evp-attr-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--evp-text);
}

.evp-attr-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.evp-btn {
  position: relative;
  height: 60px;
  padding: 0 16px;
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--evp-text);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
  white-space: normal;
  /* gradient border via ::before pseudo */
}

.evp-btn:hover,
.evp-btn:focus,
.evp-btn:active {
  color: var(--evp-text);
  background-color: transparent;
}

/* Gradient border (inactive state) */
.evp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(to bottom, #2b353d, rgba(43, 53, 61, 0.5));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

/* Selected-state overlay */
.evp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1px solid var(--evp-accent);
  background: linear-gradient(130deg, #151f27 25%, #11564f);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.evp-btn.is-selected::after {
  opacity: 1;
}

.evp-btn span,
.evp-btn-label {
  position: relative; /* above ::after overlay */
  z-index: 1;
}

/* Step attribute: four equal columns */
.evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn {
  flex: 1 1 calc(25% - 15px);
  max-width: calc(25% - 15px);
}

/* Plan attribute: three columns with icon space — padding lives on the inner span */
.evp-attr-row[data-attribute="attribute_pa_plan"] .evp-btn {
  flex: 1 1 28%;
  max-width: 28%;
  padding: 0;
  text-align: left;
}

/* Account type: four columns */
.evp-attr-row[data-attribute="attribute_pa_account-type"] .evp-btn {
  flex: 1 1 calc(25% - 15px);
  max-width: calc(25% - 15px);
}

/* Account size: five columns */
.evp-attr-row[data-attribute="attribute_pa_account-size"] .evp-btn {
  flex: 1 1 calc(20% - 16px);
  max-width: calc(20% - 16px);
}

/* Trading platform: fixed width — padding lives on inner span */
.evp-attr-row[data-attribute="attribute_pa_trading-platform"] .evp-btn {
  flex: 0 0 124px;
  max-width: 124px;
  padding: 0;
}

/* --------------------------------------------------------------------------
   Attribute-specific button decorations (icons, sub-labels, step numbers)
   -------------------------------------------------------------------------- */

/* ── Step buttons: numeral icon floated above the button text ── */
.evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn[data-value="1step"],
.evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn[data-value="2step"],
.evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn[data-value="3step"] {
  padding-top: 26px;
  overflow: visible;
}

.evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn-label {
  position: relative;
}

.evp-btn[data-value="1step"] .evp-btn-label::before,
.evp-btn[data-value="2step"] .evp-btn-label::before,
.evp-btn[data-value="3step"] .evp-btn-label::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 4px;
}
.evp-btn[data-value="1step"] .evp-btn-label::before {
  background-image: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/1.svg);
  width: 12px;
  height: 21px;
}
.evp-btn[data-value="2step"] .evp-btn-label::before {
  background-image: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/2.svg);
  width: 18px;
  height: 21px;
}
.evp-btn[data-value="3step"] .evp-btn-label::before {
  background-image: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/3.svg);
  width: 18px;
  height: 22px;
}

/* Instant: first line "Instant" in teal, text constrained for two-line wrap */
.evp-btn[data-value="instant"] .evp-btn-label {
  display: block;
  max-width: 80px;
  margin: 0 auto;
}
.evp-btn[data-value="instant"] .evp-btn-label::first-line {
  color: #01ffcd;
}

/* ── Plan buttons: SVG icon on left, sub-label text below ── */
.evp-attr-row[data-attribute="attribute_pa_plan"] .evp-btn-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  padding-left: 78px;
  position: relative;
}

.evp-attr-row[data-attribute="attribute_pa_plan"] .evp-btn-label::before {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 4px;
}

.evp-btn[data-attribute="attribute_pa_plan"][data-value="ignite"]
  .evp-btn-label::before {
  content: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/Group-1073716068.svg);
  left: 30px;
}
.evp-btn[data-value="pulse"] .evp-btn-label::before {
  content: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/Group-1073716069.svg);
}
.evp-btn[data-value="forge"] .evp-btn-label::before {
  content: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/Group-10737160691.svg);
}

.evp-attr-row[data-attribute="attribute_pa_plan"] .evp-btn-label::after {
  display: block;
  font-size: 12px;
  color: #d7dde1;
  font-weight: 400;
}
.evp-btn[data-attribute="attribute_pa_plan"][data-value="ignite"]
  .evp-btn-label::after,
.evp-btn[data-value="pulse"] .evp-btn-label::after {
  content: "Trailing Drawdown";
}
.evp-btn[data-value="forge"] .evp-btn-label::after {
  content: "Static Drawdown";
}

/* Ignite plan button: decorative swirl image in the button background */
.evp-btn[data-attribute="attribute_pa_plan"][data-value="ignite"] {
  background-image: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027902.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
}

/* ── Account-type buttons: sub-label text below the name ── */
.evp-attr-row[data-attribute="attribute_pa_account-type"]
  .evp-btn-label::after {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #d7dde1;
}
.evp-btn[data-attribute="attribute_pa_account-type"][data-value="ignite"]
  .evp-btn-label::after {
  content: "Origin";
}
.evp-btn[data-value="core"] .evp-btn-label::after {
  content: "Classic Experience";
}
.evp-btn[data-value="flex"] .evp-btn-label::after {
  content: "For Swing Traders";
}
.evp-btn[data-value="prime"] .evp-btn-label::after {
  content: "Best Conditions";
}

/* ── Trading platform: logo icon + label in a row ── */
.evp-attr-row[data-attribute="attribute_pa_trading-platform"] .evp-btn-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  gap: 10px;
  padding-left: 11px;
}
.evp-attr-row[data-attribute="attribute_pa_trading-platform"]
  .evp-btn-label::before {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.evp-btn[data-value="ctrader"] .evp-btn-label::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/01/image-5.svg");
}

/* --------------------------------------------------------------------------
   Add-ons
   -------------------------------------------------------------------------- */

.evp-addons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.evp-addons-title {
  flex-basis: 100%;
  font-size: 14px;
  color: var(--evp-text);
  margin-bottom: 0;
}

.evp-addon {
  flex-basis: 266px;
  max-width: 266px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.evp-addon input[type="checkbox"] {
  position: absolute;
  visibility: hidden;
}

.evp-addon span {
  border: 1px solid var(--evp-btn-border);
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 41px;
  border-radius: 5px;
  padding-left: 33px;
  color: var(--evp-muted);
  position: relative;
  font-size: 14px;
}

.evp-addon span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #2c363e;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-position: center;
}

.evp-addon input[type="checkbox"]:checked ~ span::before {
  background-color: var(--evp-accent);
  border-color: var(--evp-accent);
  background-image: url(https://checkout.eleonex.com/wp-content/uploads/2026/01/Group-51931.svg);
}

/* --------------------------------------------------------------------------
   Price row
   -------------------------------------------------------------------------- */

.evp-price-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(130deg, #0f5c53 10%, #141d24);
  padding: 21px 34px;
  border-radius: 20px;
}

.evp-price-label {
  font-weight: 700;
  color: var(--evp-text);
}

.evp-price-value bdi,
.evp-price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--evp-accent);
}

.evp-price-values {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.evp-price-original,
.evp-price-original bdi {
  font-size: 16px;
  font-weight: 600;
  color: #ffffffa8;
  text-decoration: line-through;
  margin-right: 8px;
}

/* --------------------------------------------------------------------------
   TradePoints row
   -------------------------------------------------------------------------- */

.evp-tradepoints-row {
  position: relative;
  width: 100%;
  padding: 3px 25px;
  border: 1px solid #0052ff;
  display: flex;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.evp-tradepoints-label {
  color: #ffffffa8;
  font-weight: 700;
}

.evp-tradepoints-value {
  color: var(--evp-text);
  font-weight: 700;
}

.evp-tradepoints-row img {
  width: auto;
  height: auto;
}

/* --------------------------------------------------------------------------
   Footer bar  (rendered by [evp_footer] shortcode, positioned by Elementor)
   -------------------------------------------------------------------------- */

.evp-footer {
  position: relative;
  display: flex;
  gap: 16px;
  background: linear-gradient(130deg, #0e6056, #141d23);
  padding: 14px 24px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  flex-direction: column;
  align-items: start;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.evp-footer.evp-footer-ready {
  opacity: 1;
}

.evp-footer-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.evp-footer-price-label {
  font-weight: 700;
  color: var(--evp-text);
  font-size: 15px;
}

.evp-footer-total,
.evp-footer-total bdi {
  font-size: 22px;
  font-weight: 700;
  color: var(--evp-accent);
}

.evp-footer-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  flex-wrap: wrap;
}

.evp-footer-original,
.evp-footer-original bdi {
  font-size: 14px;
  font-weight: 600;
  color: #ffffffa8;
  text-decoration: line-through;
}

/* Coupon section — wraps label, input-wrap or badge-wrap, and hint */
#evp-coupon-section {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.evp-coupon-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.evp-coupon-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.evp-coupon-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

input[type="text"].evp-coupon-input {
  height: 38px;
  width: 160px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--evp-text);
  padding: 0 12px;
  font-size: 14px;
  box-sizing: border-box;
}

input[type="text"].evp-coupon-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

button.evp-coupon-apply {
  height: 38px;
  padding: 0 14px;
  background: rgba(1, 255, 205, 0.15);
  border: 1px solid var(--evp-accent);
  border-radius: 7px;
  color: var(--evp-accent);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

button.evp-coupon-apply:hover,
button.evp-coupon-apply:focus {
  background: rgba(1, 255, 205, 0.28);
}

/* Coupon badge (after coupon is applied) */
.evp-coupon-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.evp-coupon-code {
  background: rgba(1, 255, 205, 0.12);
  border: 1px solid rgba(1, 255, 205, 0.35);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--evp-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

button[type="button"].evp-coupon-remove {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--evp-text);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

button[type="button"].evp-coupon-remove:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

/* Place Order button */
button.evp-place-order {
  flex: 0 0 auto;
  height: 50px;
  padding: 0 28px;
  background: var(--evp-accent);
  border: 1px solid var(--evp-accent);
  border-radius: 7px;
  color: #101920;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

button.evp-place-order:hover,
button.evp-place-order:focus {
  background: #ffffff;
  color: #101920;
}

/* --------------------------------------------------------------------------
   Mobile
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   WooCommerce checkout overrides
   (hides / resets native Woo elements replaced by EVP)
   -------------------------------------------------------------------------- */

.woocommerce-form-coupon-toggle {
  display: none !important;
}

form.woocommerce-form-coupon {
  position: absolute !important;
  left: -99999px !important;
  top: -99999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.home #order_review_heading,
.home #order_review .woocommerce-checkout-review-order-table {
  display: none !important;
}

#place_order {
  display: none !important;
}

table.variations th {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
table.variations td,
table.variations th {
  border: none !important;
  background: transparent !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
table.variations th .woo-selected-variation-item-name {
  display: none !important;
}

#customer_details > .col-2 {
  display: none !important;
}
#customer_details > .col-1 {
  width: 100% !important;
  float: none !important;
}

.wc_payment_methods {
  border: 1px solid rgba(44, 54, 62, 0.5) !important;
  margin: 20px 0 !important;
}

#add_payment_method #payment div.form-row,
.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background: none !important;
  padding: 0 !important;
}

.woocommerce-variation-price {
  display: none !important;
}

/* --------------------------------------------------------------------------
   DataTable styles
   -------------------------------------------------------------------------- */

body #content .datatable-item table {
  width: 100% !important;
}
body #content .datatable-item table td {
  background: transparent !important;
  border: none !important;
  font-size: 14px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body #content .datatable-item table td:first-of-type {
  color: #d7dde1 !important;
}
body #content .datatable-item table td:last-of-type {
  color: #fff !important;
}

.datatable-item {
  display: none;
  position: relative;
}
.datatable-item.is-active {
  display: block;
}

.datatables-wrapper.not-selected .datatable-item {
  display: none;
}

.datatables-wrapper {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.datatables-wrapper.evp-dt-ready {
  opacity: 1;
}
.datatables-wrapper.not-selected::after {
  content: "Please select variation to display table";
}

.tables-container {
  position: relative;
  overflow: hidden !important;
}
.tables-container::after {
  position: absolute;
  content: "" !important;
  width: 100%;
  height: 80%;
  right: 0;
  bottom: 0;
  background: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Ellipse-16.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
  display: block !important;
  pointer-events: none;
}

.ignite-active::before {
  position: absolute;
  content: "" !important;
  width: 100% !important;
  height: 140px !important;
  background: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027903.png");
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
  top: 0;
  display: block !important;
  pointer-events: none;
  border: none !important;
}

.datatable-item .wpDataTablesWrapper {
  margin-bottom: 0 !important;
}

.datatable-item .summary-table {
  color: #01ffcd;
  font-size: 14px;
  border-top: 1px solid #2c363e;
  padding-top: 15px;
  margin-top: 15px;
}
.datatable-item p.wpdt-c {
  display: none !important;
}

#ignite::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-1000002792.svg");
}
[id="1step_pulse_flex"]::before,
[id="1step_pulse_core"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027931.svg");
}
[id="2step_pulse_flex"]::before,
[id="2step_pulse_core"]::before,
[id="2step_pulse_prime"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027941.svg");
}
[id="3step_pulse_flex"]::before,
[id="3step_pulse_core"]::before,
[id="3step_pulse_prime"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027951.svg");
}
[id="1step_forge_flex"]::before,
[id="1step_forge_core"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027961.svg");
}
[id="2step_forge_flex"]::before,
[id="2step_forge_core"]::before,
[id="2step_forge_prime"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027971.svg");
}
[id="3step_forge_flex"]::before,
[id="3step_forge_core"]::before,
[id="3step_forge_prime"]::before {
  content: url("https://checkout.eleonex.com/wp-content/uploads/2026/02/Frame-10000027981.svg");
}

@media (max-width: 767px) {
  .evp-attr-buttons {
    gap: 10px;
  }

  .evp-attr-row[data-attribute="attribute_pa_step"] .evp-btn,
  .evp-attr-row[data-attribute="attribute_pa_account-type"] .evp-btn,
  .evp-attr-row[data-attribute="attribute_pa_account-size"] .evp-btn {
    flex: 1 1 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .evp-attr-row[data-attribute="attribute_pa_plan"] .evp-btn {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .evp-price-row {
    padding: 20px;
    border-radius: 10px;
  }

  .evp-addons-title {
    font-size: 14px;
  }

  .evp-addon span {
    font-size: 14px;
  }

  .evp-footer {
    padding: 12px 16px;
    gap: 10px;
  }

  .evp-footer-head {
    flex: 1 1 auto;
  }

  .evp-footer-total,
  .evp-footer-total bdi {
    font-size: 18px;
  }

  #evp-coupon-section {
    flex: 1 1 100%;
    /* order: 3; */
  }

  input[type="text"].evp-coupon-input {
    width: 120px;
    font-size: 13px;
  }

  button.evp-place-order {
    font-size: 16px;
    padding: 0 18px;
  }

  .evp-tradepoints-row img {
    width: 111px;
    height: 29px;
  }

  .evp-tradepoints-label {
    font-size: 14px;
  }
}
