/**
 * Zap Cashier Specific Styles
 */
.zap-cashier-account {
  display: flex;
  flex-direction: column;
}

.zap-cashier-account-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 992px) {
  .zap-cashier-account-header {
    flex-direction: row;
  }
}
.zap-cashier-account-header__title {
  font-size: 1.5rem;
  margin: 0;
}
.zap-cashier-account-header__actions {
  display: flex;
  gap: 10px;
}
.zap-cashier-account-header__balance {
  font-size: 1.5rem;
  margin: 0;
}

.zap-cashier-account-transactions {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
}
.zap-cashier-account-transactions__type-debit .amount {
  color: red;
}
.zap-cashier-account-transactions__type-debit .amount::before {
  content: "(";
}
.zap-cashier-account-transactions__type-debit .amount::after {
  content: ")";
}

.zap-cashier-header {
  display: flex;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  gap: 0.5rem;
  height: 100%;
}

.zap-cashier-header-account {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  color: #171717;
  text-decoration: none !important;
  gap: 6px;
}
.zap-cashier-header-account i {
  font-size: 24px;
}

/**
 * Withdrawal Popup
 */
#zapc-account-withdrawal .modal-header {
  position: relative;
  align-items: center;
  justify-content: center;
}
#zapc-account-withdrawal .modal-header .modal-title {
  margin: auto;
}
#zapc-account-withdrawal .modal-header button.close {
  position: absolute;
  right: 1rem;
}
#zapc-account-withdrawal .modal-body {
  padding: 2rem 1rem;
  text-align: center;
}
#zapc-account-withdrawal .modal-body form {
  max-width: 80%;
  margin: auto;
}
#zapc-account-withdrawal .modal-body .form-control {
  text-align: center;
  border: 0;
  border-bottom: 1px solid #dee2e6;
  border-radius: 0;
}
#zapc-account-withdrawal .modal-body .floating-currency {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ccc;
  padding: 5px 10px;
  font-size: 1.25rem;
  position: relative;
  margin-top: -1rem;
}
@media (min-width: 992px) {
  #zapc-account-withdrawal .modal-body .floating-currency {
    font-size: 3.5rem;
  }
}
#zapc-account-withdrawal .modal-body .floating-currency .currency-symbol {
  margin-left: 4px;
  font-size: inherit;
}
#zapc-account-withdrawal .modal-body .floating-currency input {
  border: none;
  outline: none;
  text-align: center;
  font-size: inherit;
  width: 100%;
  padding: 0;
  box-shadow: none !important;
  font-weight: 500;
}
#zapc-account-withdrawal .modal-footer {
  border-top: 0;
  padding-top: 0;
  margin-top: -0.5rem;
  padding-bottom: 2rem;
  font-size: 0.75rem;
  text-align: center;
  justify-content: center;
  color: #626262;
}
#zapc-account-withdrawal .modal-footer .padlock {
  position: relative;
  width: 12px;
  height: 12px;
  background: #a9acac;
  border-radius: 3px;
  margin: 6px 5px 0 0;
}
#zapc-account-withdrawal .modal-footer .padlock::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 2px;
  width: 8px;
  height: 6px;
  border: 2px solid #a9acac;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: transparent;
}
#zapc-account-withdrawal .modal-footer .padlock::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/**
 * Zap Pay <=> DNA Payments
 */
body.dnapayments-hosted-fields #payment .payment_methods {
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom: none;
  margin-bottom: 1rem;
}
body.dnapayments-hosted-fields #payment .payment_methods > li {
  padding: 0;
  margin: 0;
  text-align: left;
}
body.dnapayments-hosted-fields #payment .payment_methods > li.payment_method_dnapayments .payment_box > p {
  display: none;
}
body.dnapayments-hosted-fields #payment .payment_methods > li > input[type=radio] {
  display: none;
}
body.dnapayments-hosted-fields #payment .payment_methods > li > input[type=radio]:checked + label:before {
  background-color: #000;
}
body.dnapayments-hosted-fields #payment .payment_methods > li > label {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  padding: 1rem;
  margin: 0;
  font-size: 0.85rem;
  width: 100%;
}
body.dnapayments-hosted-fields #payment .payment_methods > li > label:before {
  display: inline-block;
  position: relative;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  margin-right: 0.5rem;
  border-radius: 50%;
  background-color: #ccc;
  border: 3px solid #fff;
  content: "";
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  box-sizing: content-box;
}
body.dnapayments-hosted-fields #payment .payment_methods > li .payment_box {
  padding: 1rem;
  margin: 0;
  border: none;
  background-color: #f9f9f9;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
body.dnapayments-hosted-fields #payment .payment_methods > li .woocommerce-SavedPaymentMethods-saveNew {
  margin-right: 0;
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.dnapayments-hosted-fields #payment .payment_methods > li .woocommerce-SavedPaymentMethods-saveNew label {
  margin: 0;
}

.dnapayments-footer img {
  max-height: 50px;
  margin-top: 0.5rem;
}

#payment .payment_methods > li.payment_method_truelayer > label img, #payment .payment_methods > li.payment_method_dnapayments > label img, #payment .payment_methods > li.payment_method_dnapayments_apple_pay > label img, #payment .payment_methods > li.payment_method_dnapayments_google_pay > label img {
  max-height: 20px;
  margin-left: auto;
}

/*# sourceMappingURL=zap-cashier-public.css.map */
