.typo * {
  font-family: "Google Sans", sans-serif !important;
}

img.logo-home {
  height: 8rem;
  margin-bottom: 2rem;
}

.container-centered {
  display: flex;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

body {
  font-family: sans-serif;
}

fieldset {
  margin: 1.5rem 0;
}

form.lookupForm {
  /* background: red; */
  max-width: calc(100% - 2rem);
  width: 24rem;
}

input.input-primary {
  width: 100%;
  height: 40px;
  padding: 3px 10px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 1px 0px,
    rgba(61, 59, 53, 0.16) 0px 0px 0px 1px,
    rgba(61, 59, 53, 0.08) 0px 2px 5px 0px;
  border: 0px;
  border-radius: 8px;
  outline: none;
  background-color: rgba(255, 255, 255, 0.5);
  color: rgb(55, 53, 47);
  caret-color: rgb(55, 53, 47);
  transition: box-shadow 0.15s ease;
}

input.input-primary:focus {
  box-shadow: rgba(58, 145, 224, 0.36) 0px 0px 0px 4px,
    rgba(61, 59, 53, 0.16) 0px 0px 0px 1px;
}

button.btn-primary {
  position: relative;
  cursor: pointer;
  transition: background-color 100ms ease-in-out, border-color 100ms ease-in-out,
    outline 100ms ease-in-out;
  line-height: 1;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  overflow: hidden;
  transform: translateZ(0px);
  border: 0px;
  outline: none;
  outline-offset: -1px;
  height: 36px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  padding: 0px 0.9em;
  gap: 0.5em;
  color: #fff;
  background: rgb(0, 122, 255);
}

label.input-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 11pt;
  opacity: 0.8;
  font-weight: 600;
}
button.btn-primary:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

button.btn-primary:focus-visible {
  box-shadow: rgba(58, 145, 224, 0.36) 0px 0px 0px 4px,
    rgba(61, 59, 53, 0.16) 0px 0px 0px 1px;
}
.dbrd-wrapper {
  max-width: calc(100% - 2rem);
  width: 24rem;
}

.surface-rounded {
  /* background: #eee; */
  /* border-radius: 1rem; */
  /* padding: 1rem; */
}

.appBar {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.ab-title {
  font-weight: bold;
  font-size: 15pt;
  opacity: 0.85;
}

table.info-tab-1 {
  width: 100%;
}

table.info-tab-1,
table.info-tab-1 td {
  border: 1px solid #ccc;
  margin-bottom: 1rem;
}

table.info-tab-1 td {
  padding: 6px 9px;
}
button.appbar-btn {
  cursor: pointer;
}
.p-stat-icon {
  font-size: 46pt;
}

.p-stat-icon.success {
  color: #4caf6f;
}

.pay-status h2 {
  font-size: 18pt;
  font-weight: 500;
  margin: 1rem 0;
}

.pay-status {
  margin-left: 1rem;
}
.p-stat-icon.failed {
  color: #ff4c3f;
}
.p-stat-icon.cancel {
  color: #ff5722;
}
.verify-loader {
  width: 64px;
  height: 44px;
  position: relative;
  border: 5px solid #000000;
  border-radius: 8px;
}
.verify-loader::before {
  content: "";
  position: absolute;
  border: 5px solid #000000;
  width: 32px;
  height: 28px;
  border-radius: 50% 50% 0 0;
  left: 50%;
  top: 0;
  transform: translate(-50%, -100%);
}
.verify-loader::after {
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 16px 0 #fff, -16px 0 #fff;
  animation: flash 0.5s ease-out infinite alternate;
}

@keyframes flash {
  0% {
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 16px 0 rgba(0, 0, 0, 0.25), -16px 0 rgba(0, 0, 0, 1);
  }
  50% {
    background-color: rgba(0, 0, 0, 1);
    box-shadow: 16px 0 rgba(0, 0, 0, 0.25), -16px 0 rgba(0, 0, 0, 0.25);
  }
  100% {
    background-color: rgba(0, 0, 0, 0.25);
    box-shadow: 16px 0 rgba(0, 0, 0, 1), -16px 0 rgba(0, 0, 0, 0.25);
  }
}
.verifying-spinner {
  opacity: 0.8;
  margin-top: 4rem;
}
.alert-error {
  background: #ffcdd2;
  display: flex;
  align-items: start;
  padding: 10px 10px;
  border-radius: 8px;
  margin-bottom: 1rem;
  gap: 5px;
  justify-content: start;
}
li[data-sonner-toast][data-type="error"] {
  background-color: #ffa9a8;
  color: #560000;
}
