/* ==========================================================================
   EMK – Event Tickets & Attendee-Registration Overrides
   Scoped to the single-event template sidebar + modal
   ========================================================================== */

/* ---------- Variables (inherit from main overrides) ---------- */
:root {
  --emk-deep-purple: #480ca8;
  --emk-violet: #7757ff;
  --emk-shell: #f2ebe4;
  --emk-ink: #093532;
}

/* ==========================================================================
   1. SIDEBAR TICKET WIDGET  (inside the 280px card)
   ========================================================================== */

/* Clean up the ticket widget wrapper – MUST stay inside sidebar card */
.event-tickets {
  font-family: 'Poppins', sans-serif;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Form wrapper */
.tribe-tickets__tickets-form {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Title */
.tribe-tickets__tickets-title {
  font-family: 'Raleway', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--emk-ink) !important;
  margin-bottom: 16px !important;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--emk-shell);
}

/* Each ticket item – stack vertically inside narrow sidebar */
.tribe-tickets__tickets-item {
  padding: 16px 12px !important;
  border-bottom: 1px solid #eee;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-tickets__tickets-item:last-child {
  border-bottom: none;
}

/* Ticket content (name + price row) */
.tribe-tickets__tickets-item-content-title-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  width: 100% !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

/* Ticket name */
.tribe-tickets__tickets-item-content-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--emk-ink) !important;
}

/* Ticket description toggle */
.tribe-tickets__tickets-item-details-summary {
  font-size: 13px !important;
  color: var(--emk-violet) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ticket description content */
.tribe-tickets__tickets-item-details-content {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: #555 !important;
  padding: 8px 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Price */
.tribe-tickets__tickets-sale-price,
.tribe-tickets__tickets-item-extra-price {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--emk-deep-purple) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* Extra row – prevent price overflow */
.tribe-tickets__tickets-item-extra {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

/* Quantity controls – keep inline, contained */
.tribe-tickets__tickets-item-quantity {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-tickets__tickets-item-quantity-remove,
.tribe-tickets__tickets-item-quantity-add {
  width: 32px !important;
  min-width: 32px !important;
  height: 32px !important;
  border: 1px solid #ddd !important;
  border-radius: 50% !important;
  background: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  font-size: 16px !important;
  color: var(--emk-ink) !important;
  transition: all 0.2s ease;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.tribe-tickets__tickets-item-quantity-remove:hover,
.tribe-tickets__tickets-item-quantity-add:hover {
  background: var(--emk-violet) !important;
  border-color: var(--emk-violet) !important;
  color: #fff !important;
}

.tribe-tickets__tickets-item-quantity-number {
  flex-shrink: 0 !important;
}

.tribe-tickets__tickets-item-quantity-number-input {
  width: 40px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  padding: 4px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--emk-ink) !important;
}

/* Total per ticket item */
.tribe-tickets__tickets-item-total {
  width: 100% !important;
  text-align: right !important;
}

/* Footer totals – contained inside card */
.tribe-tickets__tickets-footer {
  padding: 16px 12px 8px !important;
  border-top: 2px solid var(--emk-shell);
  margin-top: 8px;
  width: 100% !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
}

.tribe-tickets__tickets-footer-quantity,
.tribe-tickets__tickets-footer-total {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: #555 !important;
  display: flex !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-tickets__tickets-footer-total-label,
.tribe-tickets__tickets-footer-quantity-label {
  font-weight: 400 !important;
}

.tribe-tickets__tickets-footer-total-wrap {
  font-weight: 700 !important;
  color: var(--emk-ink) !important;
}

/* Get Tickets / Submit button – full width inside card */
.tribe-tickets__tickets-buy {
  background: var(--emk-violet) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
  margin-top: 8px;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-tickets__tickets-buy:hover {
  background: var(--emk-deep-purple) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(72, 12, 168, 0.35);
}

/* Notice / sale info */
.tribe-tickets-notice__content {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: #555 !important;
}

/* Tribe's default layouts use wide table-like grids – force them to stack */
.tribe-tickets__tickets-item > div,
.tribe-tickets__tickets-item > article {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Ensure formatted currency never overflows */
.tribe-formatted-currency-wrap {
  white-space: nowrap !important;
}

/* ==========================================================================
   2. ATTENDEE REGISTRATION MODAL
   ========================================================================== */

/* Modal overlay */
.tribe-dialog__overlay.tribe-modal__overlay {
  background: rgba(0, 0, 0, 0.55) !important;
  z-index: 100000 !important;
}

/* Modal wrapper (the white card) – plugin default is width:800px, override to fit content */
.tribe-common .tribe-dialog__wrapper.tribe-modal__wrapper--ar,
.tribe-dialog__wrapper.tribe-modal__wrapper--ar {
  width: auto !important;
  max-width: 540px !important;
  min-width: 340px !important;
  height: auto !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.3) !important;
  padding: 28px !important;
  z-index: 100001 !important;
}

/* Inner document container – prevent space-between stretching */
.tribe-modal__wrapper--ar div[role="document"],
.tribe-common .tribe-dialog__wrapper.tribe-modal__wrapper--ar div[role="document"] {
  justify-content: flex-start !important;
  align-items: stretch !important;
  min-height: 0 !important;
  height: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Modal content panel */
.tribe-modal__wrapper--ar .tribe-dialog__content.tribe-modal__content {
  font-family: 'Poppins', sans-serif !important;
  width: 100% !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

/* Modal title (e.g. "Learn, Connect... Tickets") */
.tribe-modal__wrapper--ar .tribe-dialog__title.tribe-modal__title,
.tribe-common .tribe-dialog__wrapper.tribe-modal__wrapper--ar .tribe-dialog__title {
  font-family: 'Raleway', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--emk-ink) !important;
  padding: 0 0 16px 0 !important;
  padding-right: 40px !important; /* room for close button */
  margin: 0 !important;
  border-bottom: 2px solid var(--emk-shell);
  align-self: stretch !important;
}

/* Close button – visible circle with × */
.tribe-common .tribe-dialog.tribe-modal__wrapper--ar .tribe-dialog__close-button,
.tribe-common .tribe-modal__wrapper--ar .tribe-dialog__close-button,
.tribe-common div.tribe-dialog .tribe-dialog__wrapper.tribe-modal__wrapper--ar .tribe-dialog__close-button,
.tribe-modal__wrapper--ar .tribe-dialog__close-button.tribe-modal__close-button {
  top: 20px !important;
  right: 20px !important;
  z-index: 10 !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  border-radius: 50% !important;
  background: var(--emk-shell, #f2ebe4) !important;
  background-image: none !important;
  border: 1.5px solid #ddd !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 0 !important;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease !important;
  overflow: hidden !important;
  text-indent: -9999px !important; /* hide any inline text */
}

/* Override plugin's !important background-image SVG */
.tribe-common .tribe-dialog__close-button[class*="tribe-modal__close"] {
  background-image: none !important;
}

/* × icon via ::after pseudo-element */
.tribe-common .tribe-dialog.tribe-modal__wrapper--ar .tribe-dialog__close-button::after,
.tribe-common .tribe-modal__wrapper--ar .tribe-dialog__close-button::after,
.tribe-modal__wrapper--ar .tribe-dialog__close-button.tribe-modal__close-button::after {
  content: '\2715' !important; /* ✕ */
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--emk-ink, #093532) !important;
  line-height: 1 !important;
  display: block !important;
  text-indent: 0 !important;
}

.tribe-common .tribe-dialog.tribe-modal__wrapper--ar .tribe-dialog__close-button:hover,
.tribe-common .tribe-modal__wrapper--ar .tribe-dialog__close-button:hover,
.tribe-modal__wrapper--ar .tribe-dialog__close-button.tribe-modal__close-button:hover {
  background: #e8e0d8 !important;
  background-image: none !important;
  border-color: #bbb !important;
  transform: scale(1.08) !important;
}

.tribe-common .tribe-modal__wrapper--ar .tribe-dialog__close-button:hover::after {
  color: #333 !important;
}

/* ---- Cart section inside modal ---- */
.tribe-modal__wrapper--ar .tribe-modal-cart.tribe-modal__cart {
  padding: 0 !important;
}

/* Ticket item INSIDE the modal — grid with explicit placement */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item {
  padding: 16px 0 !important;
  border-bottom: 1px solid #eee !important;
  display: grid !important;
  grid-template-columns: 1fr auto auto auto !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 4px 12px !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-item > * {
  min-width: 0 !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-item:last-child {
  border-bottom: none !important;
}

/* Row 1, Col 1: Ticket name */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-content-title-container {
  grid-column: 1 / 2 !important;
  grid-row: 1 !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-content-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--emk-ink) !important;
}

/* Row 1, Col 2: Price */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-extra {
  grid-column: 2 / 3 !important;
  grid-row: 1 !important;
}

/* Row 1, Col 3: Quantity */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-quantity {
  grid-column: 3 / 4 !important;
  grid-row: 1 !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

/* Row 1, Col 4: Item total */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-total-wrap {
  grid-column: 4 / 5 !important;
  grid-row: 1 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  text-align: right !important;
}

/* Row 2 full-width: More/Less toggle */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-details-summary {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
}

/* Row 3 full-width: Description text */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-details-content {
  grid-column: 1 / -1 !important;
  grid-row: 3 !important;
  width: 100% !important;
}

/* Hidden input — don't affect layout */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item input[type="hidden"] {
  display: none !important;
}

/* Price styling in modal */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-sale-price,
.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-extra-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--emk-deep-purple) !important;
  white-space: nowrap !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-item-quantity-number-input {
  width: 48px !important;
  text-align: center !important;
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  padding: 6px !important;
  font-weight: 600 !important;
}

/* Modal footer (Quantity + Total) */
.tribe-modal__wrapper--ar .tribe-tickets__tickets-footer {
  padding: 16px 0 !important;
  border-top: 2px solid var(--emk-shell) !important;
  margin-top: 4px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-footer-quantity,
.tribe-modal__wrapper--ar .tribe-tickets__tickets-footer-total {
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  display: flex !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__tickets-footer-total-wrap {
  font-weight: 700 !important;
  color: var(--emk-ink) !important;
  white-space: nowrap !important;
}

/* ---- Attendee registration section inside modal ---- */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets {
  padding: 0 !important;
}

/* Ticket heading in attendee section (e.g. "Registration") */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-container {
  padding: 0 !important;
}

.tribe-modal__wrapper--ar .tribe-ticket__tickets-heading,
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-container h3 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--emk-deep-purple) !important;
  padding: 20px 0 8px !important;
  margin: 0 !important;
  border-top: 2px solid var(--emk-shell);
}

/* Attendee item (e.g. "Attendee 1") */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-item {
  padding: 16px !important;
  margin: 0 0 12px 0 !important;
  background: #fafafa !important;
  border: 1px solid #eee !important;
  border-radius: 12px !important;
}

/* Attendee header */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-item-header {
  padding: 0 0 8px !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-item-title {
  font-family: 'Poppins', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--emk-ink) !important;
  margin: 0 !important;
}

/* Field wrapper in modal */
.tribe-modal__wrapper--ar .tribe-tickets__form-field {
  margin-bottom: 12px !important;
}

/* Field label in modal */
.tribe-modal__wrapper--ar .tribe-tickets__form-field-label {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #555 !important;
  display: block !important;
  margin-bottom: 6px !important;
}

/* Required asterisk */
.tribe-modal__wrapper--ar .tribe-tickets__form-field-label .tribe-required {
  color: #e74c3c !important;
  margin-left: 2px;
}

/* Input fields in modal */
.tribe-modal__wrapper--ar .tribe-tickets__form-field-input,
.tribe-modal__wrapper--ar .tribe-common-form-control-text__input {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1.5px solid #ddd !important;
  border-radius: 10px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  color: var(--emk-ink) !important;
  background: #fff !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__form-field-input:focus,
.tribe-modal__wrapper--ar .tribe-common-form-control-text__input:focus {
  border-color: var(--emk-violet) !important;
  box-shadow: 0 0 0 3px rgba(119, 87, 255, 0.12) !important;
  background: #fff !important;
  outline: none !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__form-field-input::placeholder {
  color: #999 !important;
  font-style: italic;
}

/* Validation error in modal */
.tribe-modal__wrapper--ar .tribe-tickets__form-field-input-helper--error {
  font-family: 'Poppins', sans-serif !important;
  font-size: 12px !important;
  color: #e74c3c !important;
  margin-top: 4px;
}

/* Modal attendee footer / action buttons */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer {
  padding: 16px 0 24px !important;
  border-top: 2px solid var(--emk-shell) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  margin-top: 8px !important;
}

.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-divider {
  display: none !important;
}

/* Save and View Cart link in modal */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-cart-button {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: var(--emk-violet) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  background: transparent !important;
  border: 2px solid var(--emk-violet) !important;
  border-radius: 50px !important;
  padding: 10px 24px !important;
  transition: all 0.2s ease;
}

.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-cart-button:hover {
  background: rgba(119, 87, 255, 0.08) !important;
}

/* Checkout Now / Submit button in modal */
.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-checkout-button {
  background: var(--emk-violet) !important;
  color: #fff !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-checkout-button:hover {
  background: var(--emk-deep-purple) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(72, 12, 168, 0.35);
}

/* Validation notice in modal */
.tribe-modal__wrapper--ar .tribe-tickets__notice--error {
  background: #fdf0f0 !important;
  border-left: 4px solid #e74c3c !important;
  border-radius: 8px !important;
  padding: 12px 20px !important;
  margin: 12px 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: #333 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Barred notice container in modal */
.tribe-modal__wrapper--ar .tribe-tickets__notice--barred {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 8px 0 !important;
}

/* Non-AR notice in modal */
.tribe-modal__wrapper--ar .tribe-tickets__notice--non-ar {
  font-family: 'Poppins', sans-serif !important;
  font-size: 13px !important;
  color: #555 !important;
  padding: 8px 0 !important;
}

/* ==========================================================================
   3. RSVP SUCCESS CONFIRMATION BANNER
   ========================================================================== */

.emk-rsvp-success {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: emk-slide-down 0.4s ease-out;
}

.emk-rsvp-success__icon {
  font-size: 32px;
  flex-shrink: 0;
}

.emk-rsvp-success__text h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.emk-rsvp-success__text p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
}

@keyframes emk-slide-down {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   4. RESPONSIVE
   ========================================================================== */

@media (max-width: 991px) {
  .tribe-modal__wrapper--ar .tribe-dialog__content.tribe-modal__content {
    max-width: 100% !important;
    border-radius: 12px !important;
    max-height: 85vh !important;
  }

  .tribe-modal__wrapper--ar .tribe-dialog__title.tribe-modal__title {
    font-size: 20px !important;
    padding: 20px 20px 12px !important;
  }

  .tribe-modal__wrapper--ar .tribe-modal-cart.tribe-modal__cart {
    padding: 0 20px !important;
  }

  .tribe-modal__wrapper--ar .tribe-tickets__tickets-item {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-item {
    margin: 0 20px 12px !important;
    padding: 12px 16px !important;
  }

  .tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer {
    padding: 12px 20px 20px !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-cart-button,
  .tribe-modal__wrapper--ar .tribe-tickets__attendee-tickets-footer-checkout-button {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}
