.pxn__table { width: 100%; border-collapse: collapse; }
.pxn__table td { padding: 1rem; }
.pxn__amount { text-align: right; white-space: nowrap; }

.pxn__row--alt td { background: #f2f2f2; }

.pxn__divider {
  border-top: 3px solid #111;
  margin: .25rem 0;
}

.pxn__total td {
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.pxn__check { margin-right: .5rem; }

/* original css */
.my-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 100000; /* WP admin can have high z-index layers */
}

.my-modal.is-open {
  display: block;
}

.my-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity 150ms ease;
}

.my-modal.is-open .my-modal__backdrop {
  opacity: 1;
}

.my-modal__dialog {
  position: relative;
  margin: 1.75rem auto;
  max-width: 560px;
  width: calc(100% - 2rem);
  top: 10vh;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 150ms ease, opacity 150ms ease;
}

.my-modal.is-open .my-modal__dialog {
  transform: translateY(0);
  opacity: 1;
}

.my-modal__content {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.175);
}

.my-modal__header,
.my-modal__footer {
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.my-modal__header {
    position: relative;
  border-bottom: 1px solid #dee2e6;
  justify-content: space-between;
}

.my-modal__title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.my-modal__close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  /*border-radius: 50%;*/
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 120ms ease, color 120ms ease;
  outline: none;
  box-shadow: none;
}

.my-modal__close:hover {
  background-color: #e9ecef;
  color: #212529;
}

.my-modal__close:focus {
  outline: none;
  box-shadow: none;
}

.my-modal__close:focus-visible {
  background-color: #e9ecef;
  color: #212529;
}

.my-modal__close:active {
  background-color: #dee2e6;
}



.my-modal__body {
  padding: 1rem;
}

.my-modal__footer {
  border-top: 1px solid #dee2e6;
  justify-content: flex-end;
}

.my-btn {
  border: 1px solid transparent;
  border-radius: .375rem;
  padding: .375rem .75rem;
  font-size: 1rem;
  cursor: pointer;
}

.my-btn--primary {
  background: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.my-btn--secondary {
  background: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .my-modal__backdrop,
  .my-modal__dialog {
    transition: none;
  }
}
