body {
  margin: 0;
  font-family: "Roboto", -apple-system, "Helvetica Neue", "Droid Sans",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: contain;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}


:root {
  --safe-area-inset-bottom: 0px;
  --safe-area-inset-top: 0px;
}

@supports (padding-bottom: constant(safe-area-inset-bottom))
  and (padding-bottom: constant(safe-area-inset-top)) { /*iOS < 11.2*/
  :root {
    --safe-area-inset-bottom: constant(safe-area-inset-bottom);
    --safe-area-inset-top: constant(safe-area-inset-top);
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom))
  and (padding-bottom: env(safe-area-inset-top)) {  /*iOS >= 11.2*/
  :root {
    --safe-area-inset-bottom: env(safe-area-inset-bottom);
    --safe-area-inset-top: env(safe-area-inset-top);
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  div.landing {
    justify-content: center;
  }
  div.landing .landingContent {
    border-radius: 40px;
  }
}
.landing {
  padding-top: 100px;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("/landing.svg");
  background-size: auto 100vh;
  background-color: #81b31e;
  background-repeat: no-repeat;
  background-position: top center;
}
.landingGhostTitle {
  flex: 0 0 20vh;
  opacity: 0;
}
.landingContent {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex: 1 0;
  background-color: white;
  padding-top: 40px;
  padding-bottom: calc(8px + var(--safe-area-inset-bottom) / 2);
  padding-right: 24px;
  padding-left: 24px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  max-height: 460px;
  padding-top: 20px;
}
.landingContent button.nextButton {
  margin-top: calc(10px / 2);
  margin-left: 0px;
  margin-right: 0px;
  border-radius: 24px;
  width: unset;
  border: none;
  color: white;
  height: 48px;
}
.landingContent .boldTitle {
  font-weight: 500;
}
.landingContent form > .loginFills {
  width: 100%;
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.landingContent form > .loginFills .inputFilled {
  margin-top: calc(8px * 2);
}
.landingContent form {
  display: flex;
  justify-content: space-between;
}
.landingContent form > .loginBottom {
  width: 100%;
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.landingContent p.bottomLink {
  margin-top: 8px;
}

.inputFilled {
  flex: 0 0 48px;
}
.inputFilled label {
  top: -2px;
}
.inputFilled label.Mui-focused {
  color: #acb5c8;
}
.inputFilled.required label .requiredStar::after {
  padding-left: 5px;
  color: #F68922;
  content: '*';
}
.inputFilled .MuiInputLabel-outlined:not(.Mui-focused) {
  color: #acb5c8;
}
.inputFilled .MuiOutlinedInput-root > fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root > input::-webkit-input-placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root > input:-ms-input-placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root > input::placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root.Mui-focused > fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root.Mui-disabled {
  background-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root.Mui-disabled > fieldset {
  background-color: none;
  border: unset;
}
.inputFilled .MuiOutlinedInput-root:hover fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root {
  height: calc(48px - 8px);
  border-radius: 4px;
  height: 48px;
  background-color: #f7f9fc;
  color: #2C2F3A;
}
.inputFilled fieldset.Mui-focused {
  border-color: inherit;
}
.inputFilled .helperText {
  color: inherit;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: -0.6rem;
  right: 0px;
  text-align: right;
  margin-right: 14px;
  padding: 0px 3px;
  background-color: white;
}
.inputFilled.hasError .MuiOutlinedInput-root.Mui-focused > fieldset {
  border-color: #e4e9f2;
}
.inputFilled.hasError .MuiOutlinedInput-root fieldset {
  border-color: red;
}
.inputFilled.hasError .helperText {
  color: red;
}

#login {
  flex: 1 1;
  height: calc(100vh - 48px - var(--safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  width: 100%;
}
#login .subTitle {
  margin-top: calc(8px * 3);
}
#login .bottomLink {
  color: #909299;
}
#login form {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.agreementPaper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: calc(100% - var(--safe-area-inset-bottom));
  padding: 8px calc(24px * 1.5);
  padding-bottom: var(--safe-area-inset-bottom);
}
.agreementPaper .agreementTitle {
  color: #47525E;
}
.agreementPaper .agreementContent {
  border: 1px #81b31e solid;
  flex-grow: 0;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex-grow: 1;
  -webkit-overflow-scrolling: touch;
}
.agreementPaper .agreementContent .agreementContentText {
  font-size: 0.9rem;
  padding: 0px calc(24px / 2) 24px;
  color: #5A6978;
  text-align: left;
}
.agreementPaper .agreementContent .aggrementCheck {
  position: absolute;
  bottom: 0px;
}
.agreementPaper .agreementContent .aggrementCheck h6 {
  font-weight: normal;
}
.agreementPaper .agreementContent .aggrementCheck .box {
  color: #81b31e;
}
.agreementPaper .stepper {
  background-color: unset;
  width: 100%;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 600px;
}
.agreementPaper .stepper button:first-child {
  padding-left: 0px;
}
.agreementPaper .stepper button:last-child {
  padding-right: 0px;
}
.agreementPaper .agreementAction {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  margin: 0px 0px;
  width: 100%;
  padding-left: calc(24px / 2);
  padding-right: calc(24px / 2);
  max-width: 600px;
}

.greenMainStyle {
  background-color: #81b31e;
  color: #81b31e;
  border-color: #81b31e;
}
.stepBasic {
  display: flex;
  align-items: center;
}
.stepBasic .circle {
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #e4e9f2;
  border: 1px solid #e4e9f2;
  background-color: #f7f9fc;
  transition: all 0.2s ease;
  transition-delay: 0.1s;
}
.stepBasic.greenMain.active .circle {
  background-color: #81b31e;
  color: #81b31e;
  border-color: #81b31e;
  transition-delay: 0.2s;
  flex-shrink: 0;
}
.stepper {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
li.step {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
li.step .circle {
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #e4e9f2;
  border: 1px solid #e4e9f2;
  background-color: #f7f9fc;
  transition: all 0.2s ease;
  transition-delay: 0.1s;
}
li.step.greenMain.active .circle {
  background-color: #81b31e;
  color: #81b31e;
  border-color: #81b31e;
  transition-delay: 0.2s;
  flex-shrink: 0;
}
li.step > .line {
  content: '';
  height: 0.0625rem;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
li.step.greenMain > .line {
  background: linear-gradient(to right, #81b31e, 50%, #e4e9f2 50%);
  background-size: 200% 200%;
  background-position: right bottom;
}
li.step.active > .line {
  background-position: left bottom;
}
li.stepFirst {
  display: flex;
  align-items: center;
}
li.stepFirst .circle {
  border-radius: 50%;
  width: 9px;
  height: 9px;
  background-color: #e4e9f2;
  border: 1px solid #e4e9f2;
  background-color: #f7f9fc;
  transition: all 0.2s ease;
  transition-delay: 0.1s;
}
li.stepFirst.greenMain.active .circle {
  background-color: #81b31e;
  color: #81b31e;
  border-color: #81b31e;
  transition-delay: 0.2s;
  flex-shrink: 0;
}

.checkBlock {
  margin: unset;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.checkBlock > * {
  position: relative;
}
.checkBlock > fieldset {
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 0px;
  margin: 0px;
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  top: -4px;
  left: -4px;
}
.checkBlock > fieldset legend {
  display: none;
}
.checkBlock li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.checkBlock.error > fieldset {
  border-color: red;
  border-radius: 4px;
  -webkit-transform: scale(1);
          transform: scale(1);
  font-size: 0.75rem;
}
.checkBlock.error > fieldset legend {
  display: block;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: -0.6rem;
  right: 0px;
  text-align: right;
  margin-right: 14px;
  padding: 0px 3px;
  background-color: white;
  color: red;
}

.inputFilled {
  flex: 0 0 48px;
}
.inputFilled label {
  top: -2px;
}
.inputFilled label.Mui-focused {
  color: #acb5c8;
}
.inputFilled.required label .requiredStar::after {
  padding-left: 5px;
  color: #F68922;
  content: '*';
}
.inputFilled .MuiInputLabel-outlined:not(.Mui-focused) {
  color: #acb5c8;
}
.inputFilled .MuiOutlinedInput-root > fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root > input::-webkit-input-placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root > input:-ms-input-placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root > input::placeholder {
  color: #acb5c8;
  opacity: 0.7;
}
.inputFilled .MuiOutlinedInput-root.Mui-focused > fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root.Mui-disabled {
  background-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root.Mui-disabled > fieldset {
  background-color: none;
  border: unset;
}
.inputFilled .MuiOutlinedInput-root:hover fieldset {
  border-color: #e4e9f2;
}
.inputFilled .MuiOutlinedInput-root {
  height: calc(48px - 8px);
  border-radius: 4px;
  height: 48px;
  background-color: #f7f9fc;
  color: #2C2F3A;
}
.inputFilled fieldset.Mui-focused {
  border-color: inherit;
}
.inputFilled .helperText {
  color: inherit;
  margin: 0px;
  padding: 0px;
  position: absolute;
  top: -0.6rem;
  right: 0px;
  text-align: right;
  margin-right: 14px;
  padding: 0px 3px;
  background-color: white;
}
.inputFilled.hasError .MuiOutlinedInput-root.Mui-focused > fieldset {
  border-color: #e4e9f2;
}
.inputFilled.hasError .MuiOutlinedInput-root fieldset {
  border-color: #cc0000;
}
.inputFilled.hasError .helperText {
  color: #cc0000;
}
form {
  flex: 1 0 65%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
form .inputFilled {
  margin-top: 13px;
}
.stepper {
  padding: 0px 45%;
  flex: 1 1;
}
.contentForm {
  display: flex;
  flex-direction: column;
}
.contentForm > div {
  flex: 1 1;
}
#onboarding .checkBlock {
  padding-top: 8px;
  width: 90%;
}
#onboarding .checkBlock li {
  color: #909299;
  display: flex;
  justify-content: center;
}
#agreeTerms-open-button {
  color: #F68922;
}

.sideDrawer {
  width: 250px;
  padding-left: 24px;
}
.sideDrawer .drawerHeader {
  background-color: #81b31e;
  color: white;
}
.sideDrawer .drawerButton {
  display: flex;
  justify-content: flex-start;
  opacity: 0.7;
}
.sideDrawer .drawerButton svg {
  margin-right: 24px;
  opacity: 0.8;
}
.sideDrawer .drawerButton span {
  flex: 1 1;
  text-align: left;
}
.switcher {
  padding: 0 16px;
}
.switcher .fieldset {
  display: inline-block;
  position: relative;
  text-align: center;
  padding: 2px;
  border-radius: 50em;
  background-color: rgba(84, 92, 119, 0.1);
}
.switcher input[type="radio"] {
  position: absolute;
  opacity: 0;
}
.switcher label {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 55px;
  height: 31px;
  line-height: 32px;
  cursor: pointer;
  font-size: 12px;
  color: #000;
  opacity: 0.6;
}
.switcher .switch {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 31px;
  width: 55px;
  background-color: #fff;
  border-radius: 50em;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.switcher input[type="radio"]:checked + label + .switch,
.switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
  -webkit-transform: translateX(55px);
  transform: translateX(55px);
}

#user-select {
  display: flex;
  align-items: center;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 1100;
}
.userSelectList {
  background-color: unset;
  font-size: 1.25rem;
  color: white;
}
.triangleIcon {
  position: absolute;
  right: -24px;
}

html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
li {
  list-style: none;
}
ul {
  -webkit-padding-start: unset;
          padding-inline-start: unset;
}
a {
  color: inherit;
  text-decoration: inherit;
}
#tsaitung-content {
  min-height: calc(100vh - var(--safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header {
  font-size: 28pt;
  height: calc(48px + var(--safe-area-inset-top));
  align-items: center;
  padding: var(--safe-area-inset-top) 24px 0px 24px;
  display: flex;
  justify-content: space-between;
}
.headerBeneath {
  font-size: 28pt;
  height: calc(48px + var(--safe-area-inset-top));
  align-items: center;
  padding: var(--safe-area-inset-top) 24px 0px 24px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  opacity: 0;
}
.headerNarrowLeft {
  padding-left: calc(24px / 2);
}
.headerNarrowRight {
  padding-right: calc(24px / 2);
}
.bottomBar {
  padding-bottom: var(--safe-area-inset-bottom);
}
.hidden {
  display: none;
}
.invisible {
  visibility: hidden;
}
.topGutter {
  height: calc((100vw - 2 * 24px) * 30 / 100);
  max-height: calc(600px/3);
}
.styledList li:before {
  content: "\203b";
}
.bold {
  font-weight: bolder;
}


/*# sourceMappingURL=main.3146018d.css.map*/