@layer defaults {
  * {
    box-sizing: border-box;
  }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
    line-height: 1.5;
    tab-size: 4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  img {
    user-select: none;
  }
  a[href] {
    color: #0366d6;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  a[href]:not([tabindex="-1"]):focus-visible,
  area[href]:not([tabindex="-1"]):focus-visible,
  input:not([disabled]):not([tabindex="-1"]):focus-visible,
  select:not([disabled]):not([tabindex="-1"]):focus-visible,
  textarea:not([disabled]):not([tabindex="-1"]):focus-visible,
  button:not([disabled]):not([tabindex="-1"]):focus-visible,
  iframe:not([tabindex="-1"]):focus-visible,
  [tabindex]:not([tabindex="-1"]):focus-visible,
  [contentEditable=true]:not([tabindex="-1"]):focus-visible {
    outline-color: #3daee9;
    outline-offset: 0;
  }
  a[href]:hover {
    outline: none;
    text-decoration: underline;
  }
}
.link {
  background-color: transparent;
  border-radius: 0.5px;
  border: none;
  color: #0366d6;
  cursor: pointer;
  display: inline;
  padding: 0;
  text-decoration: none;
  user-select: text;
  transition: color 0.2s ease-in-out;
}

.link:focus-visible {
  outline: 2px solid #3daee9;
}

.link:hover {
  outline: none;
  text-decoration: underline;
}

a.link:not([href]),
.link:disabled {
  color: inherit;
  cursor: text;
  outline: none;
  text-decoration: none;
}

.input {
  border-radius: 0.5em;
  border: 1px solid #8f8f9d;
  padding: 0.25em 0.5em;
}

input.input[type=file] {
  padding: 0.5em;
}

.input:hover {
  border-color: #484851;
}

.input:active {
  border-color: #484851;
}

.input:focus,
.input:focus-visible {
  border-color: transparent;
  box-shadow: 0 0 0 0.25em #cff7ff;
  outline: 2px solid #3daee9;
}

.input:disabled {
  opacity: 0.5;
}

h1.title {
  font-size: 32px;
  font-weight: bold;
}

h2.title {
  font-size: 24px;
  font-weight: bold;
}

h3.title {
  font-size: 16px;
  font-weight: bold;
}

.margin:not(:first-child) {
  margin-top: 1em;
}

.margin:not(:last-child) {
  margin-bottom: 0.5em;
}

input.button-container[type=file]::file-selector-button,
.button {
  background-color: #e9e9ed;
  border-radius: 0.5em;
  border: 1px solid #8f8f9d;
  color: black;
  cursor: pointer;
  display: inline-block;
  padding: 0.25em 0.5em;
  text-decoration: none;
  user-select: none;
}

input.button-container[type=file]:hover::file-selector-button,
.button:hover {
  background-color: #d0d0d7;
  border-color: #484851;
  outline: none;
  text-decoration: none;
}

input.button-container[type=file]:active::file-selector-button,
.button:active {
  background-color: #b1b1b9;
  border-color: #484851;
}

.button:focus {
  border-color: transparent;
  box-shadow: 0 0 0 0.25em #cff7ff;
  outline: 2px solid #3daee9;
}

.button:focus-visible {
  border-color: transparent;
  box-shadow: 0 0 0 0.25em #cff7ff;
  outline: 2px solid #3daee9;
}

input.button-container[type=file]:disabled::file-selector-button,
a.button:not([href]),
.button:disabled {
  background-color: #e9e9ed;
  border-color: #8f8f9d;
  box-shadow: none;
  cursor: default;
  opacity: 0.5;
  outline: none;
  text-decoration: none;
}

.block {
  display: block;
}

.noselect {
  user-select: none;
}

.noninteractive {
  pointer-events: none;
}

.hidden {
  display: none !important;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 87.5%;
}

.b {
  font-weight: bold;
}

.i {
  font-style: italic;
}

.table {
  width: 100%;
}
.table th {
  font-weight: bold;
}
.table th, .table td {
  border: solid 1px lightgray;
  padding: 0.25em;
  vertical-align: middle;
}

.table + .table {
  margin-top: 1.5em;
}

.ul li {
  list-style: disc inside;
}

.ol li {
  list-style: decimal inside;
}

.button.blue {
  border-color: #0d6efd;
  background-color: #0d6efd;
  color: white;
}

.button.blue:hover {
  border-color: #0b5ed7;
  background-color: #0b5ed7;
}

.button.blue:focus {
  border-color: #0b5ed7;
  background-color: #0b5ed7;
  outline: 0.25rem solid rgba(49, 132, 253, 0.5019607843);
  box-shadow: none;
}

.button.blue:active {
  border-color: #0a58ca;
  background-color: #0a58ca;
}

a.button.blue:not([href]),
.button.blue:disabled {
  border-color: #0d6efd;
  background-color: #0d6efd;
}

.button.green {
  border-color: #198754;
  background-color: #198754;
  color: white;
}

.button.green:hover {
  border-color: #157347;
  background-color: #157347;
}

.button.green:focus {
  border-color: #157347;
  background-color: #157347;
  outline: 0.25rem solid rgba(60, 153, 110, 0.5019607843);
  box-shadow: none;
}

.button.green:active {
  border-color: #146c43;
  background-color: #146c43;
}

a.button.green:not([href]),
.button.green:disabled {
  border-color: #198754;
  background-color: #198754;
}

.button.red {
  border-color: #dc3545;
  background-color: #dc3545;
  color: white;
}

.button.red:hover {
  border-color: #bb2d3b;
  background-color: #b02a37;
}

.button.red:focus {
  border-color: #bb2d3b;
  background-color: #b02a37;
  outline: 0.25rem solid rgba(225, 83, 97, 0.5019607843);
  box-shadow: none;
}

.button.red:active {
  border-color: #b02a37;
  background-color: #a52834;
}

a.button.red:not([href]),
.button.red:disabled {
  border-color: #dc3545;
  background-color: #dc3545;
}

.form-field-error {
  background-color: rgba(255, 0, 0, 0.125);
  border-radius: 0.5em;
  padding: 2px 5px;
}

.container {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding: 0px 30px;
}

.container > * {
  flex-grow: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.page-content {
  display: flex;
  padding: 1em 0;
  flex-grow: 1;
}

.inputTest-page > * {
  display: block !important;
  margin: 0.5em 0 !important;
  max-height: 100px !important;
}

.details-page .personality-code {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-weight: bold;
  font-size: 2rem;
}
.details-page .questions {
  margin-top: 50px;
}

.site-header {
  border-top: 5px solid #424242;
  border-bottom: 1px solid #e8e8e8;
  transition: border-color 0.2s ease-in-out;
}
.site-header .header-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header .site-title {
  vertical-align: middle;
}
.site-header .site-name {
  font-size: 32px;
  font-weight: 300;
  font-variant: small-caps;
}
.site-header .site-description {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 5px;
  color: gray;
  transition: color 0.2s ease-in-out;
}
.site-header .site-nav {
  align-self: center;
  display: flex;
  align-items: baseline;
  justify-content: right;
}
.site-header .site-nav > * {
  display: inline-block;
}
.site-header .site-nav > :not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 600px) {
  .site-header .site-title {
    text-align: center;
  }
  .site-header .site-nav {
    text-align: center;
    margin: 0px;
  }
  .site-header .header-flex {
    flex-direction: column;
  }
}
.site-header .site-nav .highlight {
  padding: 5px 15px;
  border-radius: 100px;
  background-color: lightblue;
}

.index-page {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.index-page .highlight {
  font-weight: bold;
  font-size: large;
  padding: 15px 25px;
  border-radius: 100px;
  background-color: lightblue;
}

.error-page .error-title {
  text-align: center;
  font-size: 2em;
  color: red;
}
.error-page .status-code {
  font-weight: bold;
}
.error-page .exception {
  font-family: monospace;
  text-wrap-mode: wrap;
}
.error-page .exception .line:nth-child(even) {
  background-color: rgba(255, 255, 0, 0.25);
}

.login-page form.login {
  margin: auto;
  max-width: 500px;
}
.login-page form.login legend {
  font-weight: bold;
}
.login-page .form-fieldgroup > * {
  display: block;
  width: 100%;
}
.login-page .form-fieldgroup {
  margin: 0.5em 0;
}

.userForm-page form.userForm {
  margin: auto;
  max-width: 500px;
}
.userForm-page form.userForm legend {
  font-weight: bold;
}
.userForm-page .required::after {
  color: red;
  content: "*";
}
.userForm-page .form-fieldgroup > * {
  display: block;
  width: 100%;
}
.userForm-page .form-fieldgroup {
  margin: 10px 0;
}
.userForm-page .phoneSet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0.5em;
}
.userForm-page .phoneSet * {
  width: 100%;
}
.userForm-page p.hint {
  font-size: small;
}
.userForm-page #file-reset {
  margin-right: 5px;
}

.result-page .personality-code {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-weight: bold;
  font-size: 2rem;
}
.result-page .questions {
  margin-top: 50px;
}

.testPage-page .questions {
  margin: 20px 0;
}
.testPage-page .question {
  margin: 10px 0;
  border-top: 2px solid lightgray;
  border-bottom: 2px solid lightgray;
  padding: 10px;
}
.testPage-page .question-text {
  margin-bottom: 1.25em;
}
.testPage-page .question-option {
  display: block;
  padding: 1em;
  border-radius: 15px;
}
.testPage-page label.question-option:not(:has(input:disabled)):hover {
  outline: 0.25em solid rgba(49, 132, 253, 0.5019607843);
  cursor: pointer;
}
.testPage-page .navigation {
  width: 100%;
  table-layout: fixed;
}

.test-intro {
  margin-bottom: 1em;
}

/*# sourceMappingURL=all.css.map */
