/**
* ACH Frontend
*/

label.wc-ach-saved-account-notice {
  font-size: 90%;
  padding: 10px;
  display: block;
}

label.wc-ach-saved-account-notice input {
  display: block;
  margin: 5px 0;
}

/**
*  Native Dialog CSS
*/

dialog {
  position: absolute;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  margin: auto;
  border: solid;
  padding: 1em;
  background: white;
  color: black;
  display: block;
}

dialog:not([open]) {
  display: none;
}

dialog + .backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
}

._dialog_overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

dialog.fixed {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
}

/* dialog layout */

.ach-dialog-body {
  max-width: 550px;
  padding: 1rem;
}
.ach-dialog-actions {
  border-top: 1px solid #eeeeee;
  padding-top: 1rem;
  text-align: right;
  margin-top: 1rem;
}
.ach-dialog-input {
  margin: 1rem 0;
  width: calc(50% - 0.5rem);
}
.ach-dialog-input + .ach-dialog-input {
  margin-left: 1rem;
}

#achOkButton {
  background: #00bcd4;
  color: #fff;
  margin-left: 1rem;
}
