/* src/reset.css */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  font-size: 10px;
  font-family:
    "Noto Sans TC",
    "Helvetica Neue",
    sans-serif;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* src/styles.scss */
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "Noto Sans TC",
    "Helvetica Neue",
    sans-serif;
}
:root {
  --black: #000000;
  --white: #ffffff;
  --color-red: #ff3b30;
  --color-blue: #0094ff;
  --az-color-main-1: #0f69af;
  --az-color-main-2: #2dbecd;
  --az-color-main-3: #eb3c96;
  --az-color-main-4: #503291;
  --az-color-sub-1: #a5cd50;
  --az-color-sub-2: #ffc832;
  --az-color-sub-3: #149b5f;
  --az-color-sub-4: #e61e50;
  --az-gray-8-333333: #333333;
  --az-gray-7-666666: #666666;
  --az-gray-6-858585: #858585;
  --az-gray-5-9E9E9E: #9e9e9e;
  --az-gray-4-DADCE0: #dadce0;
  --az-gray-3-ECEDEF: #ecedef;
  --az-gray-2-F5F5F5: #f5f5f5;
  --az-gray-1-FAFAFA: #fafafa;
}
.az-page-intro {
  margin: 14px 0;
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
}
.az-page-intro h1,
.az-page-intro h2 {
  margin: 0 0 8px;
  color: #064f73;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}
.az-page-intro p {
  margin: 0;
  color: #364456;
  font-size: 14px;
  line-height: 22px;
}
.az-primary-button,
.az-sub-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(100%, 311px);
  height: 48px;
  border: 0;
  border-radius: 24px;
  padding: 14px 16px;
  color: var(--white);
  font-family:
    "Noto Sans TC",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.az-primary-button {
  background: #830051;
}
.az-sub-button {
  background: #f0ab00;
}
.az-text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #830051;
  font-family:
    "Noto Sans TC",
    "Helvetica Neue",
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.az-action-bar {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 18px 0 0;
}
.az-field {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: #8d005d;
  font-size: 13px;
  font-weight: 700;
}
.az-field select,
.az-field input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e2dce6;
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: #24364b;
  outline: none;
}
.az-list-card {
  margin: 14px 0;
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
}
mat-dialog-container .mat-mdc-dialog-surface {
  border-radius: 8px;
}
mat-form-field .mat-mdc-form-field-infix {
  min-height: 44px;
}
mat-form-field .mat-mdc-text-field-wrapper {
  background-color: var(--white);
}
mat-form-field .mdc-text-field {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
mat-form-field .mdc-text-field--outlined .mat-mdc-form-field-infix,
mat-form-field .mdc-text-field--no-label .mat-mdc-form-field-infix {
  padding-top: 12px;
  padding-bottom: 12px;
}
mat-form-field .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mat-mdc-notch-piece {
  border-color: var(--az-gray-4-DADCE0);
}
mat-form-field .mdc-notched-outline__leading {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
mat-form-field .mdc-notched-outline__trailing {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
app-uitoolkit {
  grid-row: 2;
  height: 100%;
}
.self-view,
.user-view {
  width: 100% !important;
  max-width: 100% !important;
}
.videokit {
  width: 95% !important;
  margin-bottom: 0px !important;
  gap: 6px !important;
  padding-top: 6px !important;
  flex-direction: column-reverse !important;
}
@media (min-width: 768px) {
  .videokit {
    flex-direction: row !important;
  }
}

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