/* v1.3.2 – Match2Pay UI polish for Checkout (auto-enqueued by plugin) */
:root{
  --m2p-accent:#f5c043;
  --m2p-accent-700:#d9a521;
  --m2p-bg:#fff;
  --m2p-border:#e6e7ea;
  --m2p-text:#111827;
  --m2p-muted:#6b7280;
  --m2p-success:#16a34a;
  --m2p-warning:#a16207;
  --m2p-radius:14px;
  --m2p-shadow:0 6px 18px rgba(17,24,39,.06);
}

/* Hide duplicate "raw" QR container injected by plugin core */
#match2pay-qr{display:none!important}

/* Outer card */
.match2pay-payment-setting{
  background:var(--m2p-bg);
  border:1px solid var(--m2p-accent);
  border-radius:var(--m2p-radius);
  padding:20px;
  box-shadow:var(--m2p-shadow);
}

/* Header */
.match2pay-header{
  display:flex;align-items:center;justify-content:space-between;
  margin:0 0 12px;
  grid-column:1/-1; /* span both columns in grid */
}
.match2pay-title{
  margin:0;font-size:22px;line-height:1.2;color:var(--m2p-text);font-weight:700;
}
.match2pay-currency-icon img{
  width:30px;height:30px;border-radius:999px;padding:6px;background:var(--m2p-accent);
  box-shadow:0 2px 8px rgba(245,192,67,.3);
}

/* React-Select skin */
.match2pay-select__control{
  border:1px solid var(--m2p-border)!important;border-radius:10px!important;
  min-height:42px!important;box-shadow:none!important;
}
.match2pay-select__control:hover{border-color:var(--m2p-accent)!important}
.match2pay-select__value-container{padding:4px 10px!important}
.match2pay-select__placeholder{color:var(--m2p-muted)!important}

/* "Change Currency" */
.match2pay-pay-with.button{
  height:42px;padding:0 14px;border-radius:10px;background:var(--m2p-accent);
  color:#111;border:1px solid var(--m2p-accent-700);
  transition:transform .02s ease,background .15s ease;
}
.match2pay-pay-with.button:hover{background:var(--m2p-accent-700)}
.match2pay-pay-with.button:active{transform:translateY(1px)}

/* Inner payment card – make a proper two-column grid */
.match2pay-payment-card{
  margin-top:14px;border:1px solid var(--m2p-border);border-radius:12px;
  padding:16px;background:#fff;
  display:grid;grid-template-columns:minmax(220px,280px) 1fr;gap:20px;align-items:start;
}
/* Ensure the header sits above both columns (first row) */
.match2pay-payment-card>.match2pay-header{grid-column:1/-1}

/* Left: QR */
.match2pay-qr-section{display:block}
.match2pay-qr-container{
  display:grid;place-items:center;border:1px dashed var(--m2p-border);
  border-radius:12px;padding:10px;background:#fafafa;
}
.match2pay-qr-container img,
.match2pay-qr-container canvas {
  width: 256px;
  height: 256px;
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* Right: content wrapper */
.match2pay-payment-content{align-self:start}

/* Amount */
.match2pay-amount__title{font-size:14px;font-weight:600;color:var(--m2p-muted);margin-bottom:6px}
.match2pay-amount__value{font-size:22px;font-weight:800;color:var(--m2p-text)}
.match2pay-amount__fiat{font-size:13px;color:var(--m2p-muted);margin-top:2px}

/* Instructions */
.match2pay-instructions{margin:10px 0 8px}
.match2pay-instruction-item{font-size:14px;color:var(--m2p-text);margin:4px 0}

/* Address + copy */
.match2pay-address-instruction{margin-top:8px;font-size:14px;color:var(--m2p-text)}
.match2pay-address-section{margin-top:8px}
.match2pay-address-row{display:flex;gap:8px;align-items:stretch}
.match2pay-address-container{
  flex:1;background:#0b10211a;border:1px solid var(--m2p-border);border-radius:10px;
  padding:10px 12px;overflow:auto;
}
.match2pay-address-text{
  margin:0;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  letter-spacing:.2px;
  /* Fix vertical stacking of characters: use safe wrap, not break-all */
  white-space:normal;word-break:normal;overflow-wrap:anywhere;
  color:#0b1021;font-weight:600;
}

/* v1.3.5 – address row: never stack one char per line */
.match2pay-address-row{
  display:grid;
  grid-template-columns:minmax(0,1fr) max-content; /* first column can grow */
  gap:10px; align-items:center;
}
.match2pay-address-container{
  width:100%;
  min-width:0; /* allow shrinking inside grid */
  background:#0b10211a;
  border:1px solid var(--m2p-border);
  border-radius:10px;
  padding:10px 12px;
  overflow:auto;
}
.match2pay-address-text{
  display:block;
  margin:0;
  font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
  font-weight:600; color:#0b1021;
  /* Force horizontal writing and natural wrapping */
  writing-mode:horizontal-tb !important;
  text-orientation:mixed !important;
  white-space:normal !important;
  overflow-wrap:anywhere !important;
  word-break:break-word !important;
  letter-spacing:.2px;
  line-height:1.25;
}

/* Defensive reset in case anything upstream flips writing-mode */
.match2pay-address-container *{
  writing-mode:horizontal-tb !important;
  text-orientation:mixed !important;
}
.match2pay-copy-button{
  white-space:nowrap;border-radius:10px;border:1px solid var(--m2p-accent-700);
  background:var(--m2p-accent);color:#111;padding:0 12px;font-weight:700;height:40px;
  align-self:center;cursor:pointer
}
.match2pay-copy-button:hover{background:var(--m2p-accent-700)}
.match2pay-copy-feedback{display:inline-block;margin-left:6px;font-size:12px;color:var(--m2p-success);opacity:0;}

/* Warning */
.match2pay-payment-warning{
  margin-top:12px;display:flex;align-items:center;gap:8px;padding:10px 12px;border-radius:10px;
  background:#fff7ed;border:1px solid #ffedd5;color:var(--m2p-warning)
}
.match2pay-warning-icon img{width:18px;height:18px}

/* WC accordion spacing */
.wc-block-components-radio-control-accordion-content .match2pay-payment-setting{margin-top:8px}

/* Responsive */
@media (max-width:760px){
  .match2pay-payment-card{grid-template-columns:1fr}
  .match2pay-payment-card>.match2pay-header{grid-column:auto}
  .match2pay-address-row{flex-direction:column;align-items:stretch}
  .match2pay-copy-button{width:100%;height:44px}
}

/* QR-on-top stacked layout with timer pill and gradient copy button */
/* Scope */
#radio-control-wc-payment-method-options-match2pay__content {
  --m2p-yellow: #F4C542;
  --m2p-blue-1: #2563EB;
  --m2p-purple-1: #7C3AED;
  --m2p-gray-50: #F9FAFB;
  --m2p-gray-100: #F8FAFC;
  --m2p-gray-200: #E2E8F0;
  --m2p-gray-600: #475569;
  --m2p-gray-700: #334155;
  --m2p-text: #0b0b0b;
}

/* Hide the duplicate QR that some builds output above the card */
#radio-control-wc-payment-method-options-match2pay__content .watcher-widget > #match2pay-qr {
  display: none !important;
}

/* Main container - single border, consistent padding */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-setting {
  background: #fff;
  border: 2px solid var(--m2p-yellow);
  border-radius: 12px;
  padding: 24px;
  position: relative;
}

/* Remove inner card border - use single container with consistent spacing */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  box-shadow: none;
}

/* Info icon positioned in header grid */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-setting::after {
  content: "i";
  position: absolute;
  right: 24px; top: 24px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--m2p-yellow);
  color: #111;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* Timer pill (if your gateway outputs a timer element; see JS below to move it) */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-timer,
#radio-control-wc-payment-method-options-match2pay__content .m2p-timer {
  align-self: center;
  background: var(--m2p-yellow);
  color: #111;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

/* Small note under timer */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-expiry-note {
  text-align: center;
  color: var(--m2p-gray-700);
  font-size: 13px;
  line-height: 1.35;
}

/* QR centered and a bit larger */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-qr-section {
  display: flex;
  justify-content: center;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-qr-container img {
  width: 100%;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Content sections with consistent spacing */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Amount box (yellow) - contained within card bounds */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-amount-display {
  background: var(--m2p-yellow);
  color: var(--m2p-text);
  border-radius: 10px;
  padding: 16px;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-amount__title {
  font-size: 11px;
  text-transform: uppercase;
  opacity: .9;
  margin-bottom: 4px;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-amount__value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-amount__fiat {
  font-size: 13px;
  opacity: .85;
}

/* Steps */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-instructions {
  color: var(--m2p-gray-700);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-instruction-item {
  margin: 0 0 8px;
}

/* Address + copy button - clean two-column grid */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-address-instruction {
  font-size: 14px;
  color: #111827;
  margin: 0 0 12px;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-address-container {
  background: var(--m2p-gray-100);
  border: 1px solid var(--m2p-gray-200);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 0;
  box-sizing: border-box;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-address-text {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  word-break: break-word;
  line-height: 1.4;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-copy-button {
  background: linear-gradient(90deg, var(--m2p-purple-1) 0%, var(--m2p-blue-1) 100%);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-copy-button:hover {
  filter: brightness(0.98);
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-copy-feedback {
  display: none;
  font-size: 12px;
  color: #059669;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-copy-feedback.is-visible {
  display: inline-block;
}

/* Warning box */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-warning {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff7e0;
  border: 1px solid #f8e3a1;
  border-radius: 12px;
  padding: 12px;
  color: #7a5d00;
  font-size: 13px;
}

/* Minor header cleanup */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-header:empty { display: none; }

/* Currency select + "Change Currency" button - Fix button alignment */
.match2pay-payment-setting > div[style*="display: flex"] {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 8px !important;
  flex-wrap: nowrap !important;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-select__control {
  border-radius: 12px !important;
  min-height: 48px !important;
  border-color: var(--m2p-gray-200) !important;
  box-shadow: none !important;
  min-width: 200px;
  max-width: 250px;
  font-size: 14px !important;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-select__single-value {
  font-weight: 600;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-pay-with.button {
  background: var(--m2p-yellow);
  color: #111;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 14px;
  height: 48px;
  align-self: center;
  margin: 0;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-pay-with.button:hover {
  filter: brightness(0.97);
}

/* Ensure button positioning is correct in all contexts */
.match2pay-pay-with.button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important; /* Prevent button from shrinking */
}

/* Ensure the currency selector container maintains horizontal layout */
.match2pay-select-isolation-wrapper {
  flex-shrink: 1 !important;
  min-width: 200px !important;
  max-width: 250px !important;
}

/* Card header (title + icon) */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-currency-icon img {
  width: 22px; height: 22px;
}

/* Mobile – already stacked; just tighten spacing if needed */
@media (max-width: 640px) {
  #radio-control-wc-payment-method-options-match2pay__content .match2pay-qr-container img {
    max-width: 230px;
  }
}

/* Payment Progress and Visual Enhancements */
/* Scope to this gateway content */
#radio-control-wc-payment-method-options-match2pay__content {
  --m2p-yellow: #F4C542;
  --m2p-gray-50: #F9FAFB;
  --m2p-gray-100: #F8FAFC;
  --m2p-gray-200: #E2E8F0;
  --m2p-gray-600: #475569;
  --m2p-gray-700: #334155;
  --m2p-text: #0b0b0b;
}

/* 1) Remove duplicate note under the timer (you already show a note once) */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-expiration-warning {
  display: none !important;
}

/* 2) Payment Progress card */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary {
  background: #fff;
  border: 1px solid var(--m2p-gray-200);
  border-radius: 12px;
  padding: 14px;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: grid;
  gap: 8px;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__label {
  color: var(--m2p-gray-700);
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__value {
  color: #111827;
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__item--total .match2pay-summary__label {
  font-weight: 700;
}

#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__item--total .match2pay-summary__value {
  font-weight: 800;
}

/* Optional: color hints */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__item:first-child .match2pay-summary__value {
  color: #16a34a; /* Already paid – green */
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-summary__item:nth-child(2) .match2pay-summary__value {
  color: #b45309; /* Remaining – amber */
}

/* Progress bar */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-progress-bar {
  height: 8px;
  border-radius: 6px;
  background: var(--m2p-gray-100);
  overflow: hidden;
}
#radio-control-wc-payment-method-options-match2pay__content .match2pay-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  transition: width .4s ease;
}

/* 3) Address chunking: force newlines to appear (plugin prints inline white-space: normal) */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-address-text {
  white-space: pre-wrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  margin: 0;
}

/* Optional: tighten the big warning at bottom */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-payment-warning {
  background: #fff7e0;
  border: 1px solid #f8e3a1;
  border-radius: 12px;
  padding: 12px;
  color: #7a5d00;
  font-size: 13px;
}

/* Timer pill spacing (if needed) */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-timer {
  margin-bottom: 6px;
}

/* Keep QR centered and with a subtle frame */
#radio-control-wc-payment-method-options-match2pay__content .match2pay-qr-container img {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 6px #f2f4f8;
}

/* ===================================================================
   CLASSIC CHECKOUT STACKED LAYOUT (Matching Blocks Appearance)
   =================================================================== */
/* Target Classic checkout container (not inside radio-control) */
.payment_method_match2pay .match2pay-payment-card {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
  grid-template-columns: none !important; /* Override default two-column grid */
}

.watcher-widget .match2pay-timer {
  display: none;
}

/* Timer styling for Classic */
.payment_method_match2pay .match2pay-countdown,
.payment_method_match2pay .match2pay-timer {
  align-self: center;
  background: #F0AD4E;
  color: #000;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Warning note under timer */
.payment_method_match2pay .match2pay-expiry-note {
  text-align: center;
  color: var(--m2p-gray-700, #334155);
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 16px;
}

/* Hide duplicate warning */
.payment_method_match2pay .match2pay-expiration-warning {
  display: none !important;
}

/* QR Section - Center and enlarge */
.payment_method_match2pay .match2pay-qr-section {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}

.payment_method_match2pay .match2pay-qr-container {
  border: none;
  background: transparent;
  padding: 0;
  max-width: 320px;
  width: 100%;
}

.payment_method_match2pay .match2pay-qr-container img,
.payment_method_match2pay .match2pay-qr-container canvas {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Content sections */
.payment_method_match2pay .match2pay-payment-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: stretch;
  grid-column: unset !important; /* Reset grid */
}

/* Amount box (yellow) */
.payment_method_match2pay .match2pay-amount-display {
  background: #FFC107;
  color: #000;
  border-radius: 12px;
  padding: 20px;
  margin: 0 0 24px;
  width: 100%;
  text-align: center;
}

.payment_method_match2pay .match2pay-amount__title {
  font-size: 11px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 6px;
  font-weight: 600;
}

.payment_method_match2pay .match2pay-amount__value {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.payment_method_match2pay .match2pay-amount__fiat {
  font-size: 14px;
  opacity: .75;
}

/* Instructions - NO left border, plain list */
.payment_method_match2pay .match2pay-instructions {
  color: var(--m2p-gray-700, #334155);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: transparent;
}

.payment_method_match2pay .match2pay-instruction-item {
  margin: 0 0 10px;
  padding: 0;
  border-left: none;
  background: transparent;
}

/* Address section */
.payment_method_match2pay .match2pay-address-instruction {
  font-size: 14px;
  color: #111827;
  margin: 0 0 12px;
}

.payment_method_match2pay .match2pay-address-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.payment_method_match2pay .match2pay-address-container {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 14px 16px;
  min-width: 0;
}

.payment_method_match2pay .match2pay-address-text {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  word-break: break-word;
  line-height: 1.4;
}

.payment_method_match2pay .match2pay-copy-button {
  background: #17a2b8;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  height: 48px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.payment_method_match2pay .match2pay-copy-button:hover {
  background: #138496;
}

/* Warning box */
.payment_method_match2pay .match2pay-payment-warning {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #fff7e0;
  border: 1px solid #f8e3a1;
  border-radius: 12px;
  padding: 12px;
  color: #7a5d00;
  font-size: 13px;
}

/* Outer container styling */
.payment_method_match2pay #match2pay-payment-form {
  background: #fff;
  border: 2px solid #FFC107;
  border-radius: 12px;
  padding: 28px;
  margin-top: 16px;
}

.payment_method_match2pay .match2pay-payment-card {
  max-width: 480px;
  margin: 0 auto;
}

/* Mobile responsiveness for Classic */
@media (max-width: 640px) {
  .payment_method_match2pay .match2pay-qr-container img,
  .payment_method_match2pay .match2pay-qr-container canvas {
    max-width: 260px;
  }

  .payment_method_match2pay .match2pay-address-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .payment_method_match2pay .match2pay-copy-button {
    width: 100%;
  }

  .payment_method_match2pay #match2pay-payment-form {
    padding: 20px;
  }
}