/* src/styles.css */
html,
body {
  height: 100%;
  min-height: 100%;
  min-height: var(--aza-viewport-height, 100dvh);
  width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --aza-green: #94a775;
  --aza-text: #484848;
  --aza-screen-pad: 24px;
  --aza-background: #feeed5;
  --aza-yellow: #FBCC58;
  --aza-blue: #a0cdff;
  --aza-brown: #DDA161;
  --aza-red: #EB7E5E;
  --aza-orange: #e07a2f;
  --aza-question-size: 22px;
  --aza-subtext-size: 17px;
}
body {
  margin: 0;
  background: #feeed5;
  color: var(--aza-text);
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.aza-screen {
  width: 100%;
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  min-height: var(--aza-viewport-height, 100dvh);
  height: var(--aza-viewport-height, 100dvh);
  display: flex;
  padding: calc(env(safe-area-inset-top) + var(--aza-screen-pad)) calc(env(safe-area-inset-right) + var(--aza-screen-pad)) calc(env(safe-area-inset-bottom) + var(--aza-screen-pad)) calc(env(safe-area-inset-left) + var(--aza-screen-pad));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: calc(env(safe-area-inset-top) + var(--aza-screen-pad));
  scroll-padding-bottom: calc(env(safe-area-inset-bottom) + var(--aza-screen-pad) + var(--aza-keyboard-inset, 0px));
}
@supports (-webkit-touch-callout: none) {
  input,
  textarea,
  select {
    font-size: 16px;
  }
}
.aza-title {
  margin: 0;
  color: var(--aza-green);
  font-weight: 800;
}
.aza-subtitle {
  margin: 0;
  color: var(--aza-text);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.25;
}
.aza-text {
  color: var(--aza-text);
  font-weight: 400;
}
.aza-hint {
  margin: 0;
  color: var(--aza-text);
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}
.aza-btn {
  height: 44px;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.aza-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.aza-btn--primary {
  border: none;
  background: var(--aza-green);
  color: #ffffff;
}
.aza-btn--secondary {
  background: #ffffff;
  color: var(--aza-green);
  border: 1px solid var(--aza-green);
}
.aza-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(148, 167, 117, 0.25);
}
.aza-btn {
  min-height: 44px;
  min-width: 44px;
}
.aza-touch-target {
  position: relative;
}
.aza-touch-target::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 44px;
  min-height: 44px;
}
a.aza-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 4px;
}
input:not([type=hidden]),
textarea,
select {
  min-height: 44px;
  padding: 10px 12px;
}
input[type=checkbox],
input[type=radio] {
  min-width: 44px;
  min-height: 44px;
  cursor: pointer;
}
.aza-text,
.aza-title,
.aza-subtitle,
.aza-hint,
p,
label,
span {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
}
.aza-text-container {
  overflow: visible;
  min-height: fit-content;
}
.aza-no-overflow {
  max-width: 100%;
  overflow-x: hidden;
}
.aza-button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (orientation: portrait) {
  .aza-screen {
    padding-top: calc(env(safe-area-inset-top) + var(--aza-screen-pad));
    padding-bottom: calc(env(safe-area-inset-bottom) + var(--aza-screen-pad));
    min-height: 100dvh;
    min-height: var(--aza-viewport-height, 100dvh);
    height: var(--aza-viewport-height, 100dvh);
  }
  .aza-button-group {
    flex-direction: column;
  }
  .aza-button-group .aza-btn {
    flex: initial;
    min-width: 44px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .aza-screen {
    padding-top: calc(env(safe-area-inset-top) + 12px);
    padding-bottom: calc(env(safe-area-inset-bottom) + 12px);
  }
  .aza-title {
    margin-bottom: 8px;
  }
  .aza-subtitle {
    margin-bottom: 8px;
  }
  .aza-button-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .aza-button-group .aza-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }
}
.aza-error {
  color: var(--aza-red);
  font-size: 14px;
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aza-error p {
  margin: 0;
}
input.aza-input-error,
textarea.aza-input-error,
select.aza-input-error {
  border-color: var(--aza-red);
  outline-color: var(--aza-red);
}
.aza-error .aza-btn {
  align-self: flex-start;
}
:focus-visible {
  outline: 2px solid var(--aza-green);
  outline-offset: 2px;
}
:focus:not(:focus-visible) {
  outline: none;
}
.aza-btn[disabled],
.aza-btn.aza-loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@supports (-webkit-touch-callout: none) {
  input,
  textarea,
  select {
    font-size: max(16px, 1rem);
  }
}
.aza-full-width {
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
* {
  touch-action: manipulation;
}
.aza-screen,
.content,
main {
  touch-action: pan-y;
}
html {
  overscroll-behavior: none;
}
body {
  overscroll-behavior-y: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
li,
td,
th,
blockquote,
figcaption {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.aza-screen * {
  max-width: 100%;
}
.aza-screen img {
  max-width: 100%;
  height: auto;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-6B2RNI2P.css.map */
