@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap");
:root {
  --breakpoint-sp-min: 320px;
  --breakpoint-sp-max: 608px;
  --breakpoint-tab-max: 1024px;
  --main-key-color: #375623;
  --sub-key-color: var(--main-key-color);
  --hover-back-color: #e2efda;
  --default-font-color: #222222;
  --default-border-color: #8e8e8e;
  --a-color: #4f81bd;
  --a-hover-color: #ffffff;
  --a-hover-back-color: #4f81bd;
  --header-back-color: var(--main-key-color);
  --header-font-color: #ffffff;
  --body-back-color: #efefef;
  --btn-default-back-color: #ffe699;
  --btn-default-font-color: #000000;
  --btn-default-select-back-color: #ffc721;
  --btn-apply-back-color: #517ea9;
  --btn-apply-font-color: white;
  --btn-cancel-back-color: #c46262;
  --btn-cancel-font-color: white;
  --error-font-color: #e84d4d;
  --blue-font-color: #0000ff;
  --surturday-font-color: #4db4e8;
  --sunday-font-color: #e84d4d;
  --table-header-back-color: var(--main-key-color);
  --table-header-font-color: #fff;
  --table-row-default-height: 2.25rem;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 600;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
/* 共通部分 */
html {
  font-size: 100%;
  color: var(--default-font-color);
}

html.middle-font-size {
  font-size: 125%;
}

html.large-font-size {
  font-size: 150%;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background-color: var(--body-back-color);
  height: 100dvh;
  margin: 0;
}

.body-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

header {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--default-border-color);
  border-right: 1px solid var(--default-border-color);
}

header h1 {
  color: white;
  background-color: var(--main-key-color);
  border-bottom: 1px solid #222;
  padding: 0.5rem 0;
  text-align: center;
}

header h1:not(:last-of-type) {
  border-bottom: 1px solid color-mix(in srgb, var(--main-key-color), #fff 40%);
}

header h2 {
  background-color: #fff;
  border-bottom: 1px solid var(--main-key-color);
  padding: 0.5rem 0;
  text-align: center;
}

nav {
  width: 100%;
}

.body-container header {
  position: relative;
}
.body-container header h1 {
  position: relative;
  font-size: calc(1em + 0.4rem);
}
.body-container header h1 a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  padding: 0.35rem 0.5rem;
  color: var(--default-font-color);
  background-color: var(--body-back-color);
  font-size: calc(1em - 0.6rem);
  text-decoration: none;
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
}
.body-container header h1 a:hover {
  opacity: 0.8;
}
.body-container header div {
  display: flex;
}
.body-container header div h2 {
  flex: 1;
  font-size: calc(1em + 0.2rem);
  background-color: white;
}
.body-container header div button {
  width: 4rem;
  border: 1px solid var(--default-border-color);
  border-left: 0;
}
.body-container header div:has(button) h2 {
  text-indent: -4rem;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 1px;
}

h1 {
  font-size: 1.8rem;
  font-weight: 600;
}

h2 {
  font-size: 1.6rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
}

a {
  color: var(--a-color);
  text-decoration: none;
}

a:hover,
a:focus {
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

li > a:hover,
li > a:focus {
  background-color: var(--a-hover-back-color);
  color: white;
}

button {
  padding: 0;
  background-color: var(--btn-default-back-color);
  color: var(--btn-default-font-color);
  font-weight: 600;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
button:hover, button:focus {
  opacity: 0.8;
}
button a {
  background-color: inherit;
  color: inherit;
}
button a:hover {
  background-color: inherit;
  color: inherit;
  text-decoration: none;
}
button i {
  margin-right: 0.25rem;
}

[data-html_value] {
  padding: 0.25rem;
}

input {
  font-size: 1em;
  padding: 0.25rem;
  font-family: inherit;
  border-radius: 0;
  border: 1px solid var(--default-border-color);
  box-sizing: border-box;
  color: var(--default-font-color);
}

input[type=date] {
  min-width: 7.5rem;
  width: 7.5rem;
  background-color: white;
}

input:invalid:not(:focus) {
  outline: 1px solid red;
  background-color: #ffe6e6;
  color: red;
  position: relative;
}

input[type=time] {
  min-width: 4rem;
  width: 4rem;
  text-align: center;
}
@media (max-width: 1024px) {
  input[type=time] {
    min-width: 5rem;
    width: 5rem;
    background-color: white;
  }
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

.ipt-time-over {
  text-align: center;
}

input[type=file] {
  padding: 0.25rem 0;
  border: 0;
  cursor: pointer;
}

select {
  height: 100%;
  font-size: 1em;
  padding: 0 0.25rem;
  cursor: pointer;
  font-family: inherit;
  background-color: white;
  color: var(--default-font-color);
  box-sizing: border-box;
  border-radius: 0;
}

textarea {
  font-size: 1em;
  padding: 0.5rem;
  color: var(--default-font-color);
  font-family: inherit;
  box-sizing: border-box;
}

label {
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
  gap: 0.5rem;
  cursor: pointer;
}
label input[type=radio] {
  transform: translateY(0.1rem);
  cursor: pointer;
  margin: 0;
}
label input[type=checkbox] {
  cursor: pointer;
  margin: 0;
}

ul {
  list-style: none;
}

[inert] {
  background-color: #eee;
}

select[inert] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label:has([type=checkbox][inert]) {
  background-color: #eee !important;
  cursor: auto;
}

table {
  border-collapse: separate;
  height: 1px;
}

table thead tr:first-of-type th,
table thead tr:first-of-type td {
  border-top: 1px solid var(--default-border-color);
}

table tr {
  height: var(--table-row-default-height);
}

table th {
  vertical-align: middle;
  background-color: var(--table-header-back-color);
  color: var(--table-header-font-color);
  position: relative;
  border-right: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
  padding: 0 0.25rem;
}

table th.hidden-cell {
  visibility: hidden;
  border: 0;
}

table tr th:first-of-type,
table tr td:first-of-type {
  border-left: 1px solid var(--default-border-color);
}

table td {
  height: 1px;
  vertical-align: middle;
  border-right: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
}

table td.hidden-cell {
  border: 0;
  visibility: hidden;
}

table label {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

table input {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

table input[type=date] {
  width: 100%;
}

table input[type=time] {
  width: 100%;
}

table input[type=checkbox] {
  width: 1.2rem;
  height: 1.2rem;
  cursor: pointer;
}

table select {
  width: 100%;
  height: 100%;
  border: 0;
}

table button {
  width: 100%;
  height: 100%;
  border: 0;
}

table tfoot td {
  border-top: 0;
}

dl dt,
dl dd {
  display: flex;
  align-items: center;
}

p {
  line-height: 1.25;
}

.bg-white {
  background-color: white !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.disp-none {
  display: none !important;
}

.flex-column-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.flex-row {
  display: flex;
  align-items: center;
  height: 100%;
}

.flex-row > div {
  min-height: 1.5rem;
  padding: 0.25rem;
}

.flex-row-title {
  color: var(--blue-font-color);
}

.border-top {
  border-top: 1px solid var(--default-border-color) !important;
}

.border-left {
  border-left: 1px solid var(--default-border-color) !important;
}

.border-right {
  border-right: 1px solid var(--default-border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--default-border-color) !important;
}

.border-top-none {
  border-top: 0 !important;
}

.border-left-none {
  border-left: 0 !important;
}

.border-right-none {
  border-right: 0 !important;
}

.border-bottom-none {
  border-bottom: 0 !important;
}

.flex-spacing-container {
  flex: 1;
}

.page-footer-container {
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--default-border-color);
  border-bottom: 2px solid var(--default-border-color);
}
.page-footer-container div {
  display: flex;
}
.page-footer-container > div:not(:first-of-type) {
  border-top: 2px solid var(--default-border-color);
}
.page-footer-container div > button:not(:first-of-type) {
  border-left: 2px solid var(--default-border-color);
}
.page-footer-container button {
  flex: 1 1 0;
  height: 3.5rem;
  white-space: nowrap;
  font-size: calc(1em + 0.2rem);
}

.page-header-right-container {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.page-header-right-container button {
  font-size: calc(1em - 0.2rem);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--default-border-color);
}

.condition-container {
  display: flex;
  gap: 1rem;
}
.condition-container dl {
  display: flex;
  gap: 1rem;
}
.condition-container dl > div {
  display: flex;
  height: var(--table-row-default-height);
}
.condition-container dl > div dt {
  background-color: var(--main-key-color);
  color: white;
  padding: 0.25rem 0.5rem;
}
.condition-container dl > div dd input, .condition-container dl > div dd select {
  height: 100%;
}
.condition-container table tr:first-of-type th,
.condition-container table tr:first-of-type td {
  border-top: 1px solid var(--default-border-color);
}
.condition-container table tr > th:first-of-type,
.condition-container table tr > td:first-of-type {
  border-left: 1px solid var(--default-border-color);
}
.condition-container table td > div {
  display: flex;
  align-items: center;
  height: 100%;
}
.condition-container table td > div div, .condition-container table td > div input, .condition-container table td > div select {
  display: flex;
  align-items: center;
  height: 100%;
}
.condition-container .condition-code {
  width: 5rem;
}
.condition-container .condition-name {
  min-width: 12rem;
  flex: 1;
}
.condition-container .condition-label-check {
  background-color: white;
}
.condition-container .condition-label-check > label {
  justify-content: flex-start;
}
.condition-container .condition-between {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--default-border-color);
  border-right: 1px solid var(--default-border-color);
  padding: 0 0.25rem;
  background-color: white;
}

.report-text {
  text-align: right;
}

.inner-scroll-page {
  overflow: hidden;
}

.main-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  overflow: hidden;
}

.imutable-container p {
  color: var(--sub-key-color);
  margin-bottom: 0.25rem;
}
.imutable-container table td {
  background-color: white;
  padding: 0 0.25rem;
}

.scroll-container {
  overflow-y: auto;
}
.scroll-container.report table td {
  background-color: white;
}
.scroll-container table {
  width: 100%;
}
.scroll-container table thead {
  position: sticky;
  top: -1px;
  z-index: 1;
}
.scroll-container table thead tr:first-of-type th {
  border-top: 0;
}
.scroll-container table thead tr th,
.scroll-container table tbody tr td {
  border-left: 0;
}
.scroll-container table tr th:last-of-type,
.scroll-container table tr td:last-of-type {
  border-right: 0;
}
.scroll-container table:not(:has(tfoot)) tbody tr:last-of-type th,
.scroll-container table:not(:has(tfoot)) tbody tr:last-of-type td {
  border-bottom: 0;
}
.scroll-container table:has(tbody:not(:has(tr))) thead th {
  border-bottom: 0;
}
.scroll-container tfoot tr:last-of-type th,
.scroll-container tfoot tr:last-of-type td {
  border-bottom: 0;
}
.scroll-container .table-group-body tbody {
  position: relative;
}
.scroll-container .table-group-body tbody::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom: 4px double var(--default-border-color);
}
.scroll-container table:not(.table-group-body) tbody tr:nth-of-type(even) input:not([type=button]), .scroll-container table:not(.table-group-body) tbody tr:nth-of-type(even) select, .scroll-container table:not(.table-group-body) tbody tr:nth-of-type(even) textarea, .scroll-container table:not(.table-group-body) tbody tr:nth-of-type(even) label, .scroll-container table:not(.table-group-body) tbody tr:nth-of-type(even) td,
.scroll-container table.table-group-body tbody:nth-of-type(even) input:not([type=button]),
.scroll-container table.table-group-body tbody:nth-of-type(even) select,
.scroll-container table.table-group-body tbody:nth-of-type(even) textarea,
.scroll-container table.table-group-body tbody:nth-of-type(even) label,
.scroll-container table.table-group-body tbody:nth-of-type(even) td {
  background-color: #f6f6f6;
}

.scroll-container:has(table) {
  border: 1px solid var(--default-border-color);
}

.code {
  width: 8rem;
  min-width: 8rem;
}

.no {
  width: 3rem;
  min-width: 3rem;
}

td.no {
  text-align: center;
}

.short {
  width: 2rem;
  min-width: 2rem;
}

.short-name {
  width: 6rem;
  min-width: 6rem;
}
.short-name input {
  text-align: center;
}

td.short-name {
  text-align: center;
}

.name {
  width: 22rem;
  min-width: 6rem;
}

.category {
  width: 6rem;
  min-width: 6rem;
}

.order-number {
  width: 6rem;
  min-width: 6rem;
}
.order-number input {
  text-align: center;
}

td.order-number {
  text-align: center;
}

.is-enabled {
  width: 4rem;
  min-width: 4rem;
}

.time:not(td) {
  min-width: 5.5rem;
  white-space: nowrap;
  padding: 0.5rem;
}

.time input {
  width: 100%;
}

.password {
  min-width: 7rem;
}
.password div {
  width: 100%;
  height: 100%;
  display: flex;
}
.password input[type=button] {
  width: auto;
  height: auto;
  background-color: var(--btn-default-back-color);
  font-weight: 600;
  cursor: pointer;
}

.password-status {
  justify-content: center;
  align-items: center;
  background-color: white;
}
.password-status input[type=button] {
  padding: 0.1rem 1rem;
  border: 1px solid var(--default-border-color);
}

.password-update input[type=password] {
  flex: 1;
  min-width: 10rem;
}
.password-update input[type=button] {
  padding: 0 0.25rem;
  border-left: 1px solid var(--default-border-color);
}

.check {
  min-width: 3rem;
}

.check label {
  background-color: white;
}

.between {
  width: 2rem;
  min-width: 2rem;
}

td.between {
  text-align: center;
  background-color: white;
}

.week {
  width: 4rem;
  min-width: 4rem;
}

.date {
  width: 8.5rem;
  min-width: 8.5rem;
}

.date-text {
  width: 6rem;
  min-width: 6rem;
  text-align: center;
}

.memo {
  min-width: 4rem;
}

.control {
  width: 8rem;
  min-width: 8rem;
}

td.control {
  width: 4rem;
  min-width: 4rem;
}

.vehicle-register-number {
  width: 10rem;
  min-width: 10rem;
}

.slip-no {
  width: 5rem;
  min-width: 5rem;
}

.week-day-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 100%;
  border: 1px solid gray;
  margin-left: 1rem;
  letter-spacing: 2px;
}

.layer-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layer-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.layer-header .layer-title {
  display: flex;
  align-items: center;
  border-left: 8px solid var(--main-key-color);
  padding-left: 0.5rem;
}
.layer-header .layer-close {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
}

.layer-condition-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.layer-condition-list > div {
  display: flex;
}
.layer-condition-list > div dt {
  min-width: 6rem;
  background-color: var(--main-key-color);
  color: white;
  font-weight: 600;
  justify-content: center;
}
.layer-condition-list > div .layer-condition-list-date {
  display: flex;
  gap: 0.5rem;
}
.layer-condition-list > div .layer-condition-list-date input {
  text-align: center;
}
.layer-condition-list > div .layer-condition-list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid var(--default-border-color);
}

.layer-result-message-container {
  margin-bottom: 1rem;
  min-height: 24rem;
  max-height: 24rem;
  overflow-y: auto;
  border: 1px solid var(--default-border-color);
}
.layer-result-message-container table {
  width: 100%;
}
.layer-result-message-container table thead {
  position: sticky;
  top: 0;
}
.layer-result-message-container table th {
  background-color: var(--main-key-color);
  color: white;
  border-left: 0 !important;
  border-right: 0 !important;
}
.layer-result-message-container table td {
  padding: 0.25rem;
  border-left: 0 !important;
  border-right: 0 !important;
}

.layer-footer-container {
  display: flex;
  justify-content: flex-end;
}
.layer-footer-container button {
  padding: 0.5rem 2rem;
  border: 1px solid var(--default-border-color);
}

@media print {
  @page {
    margin: 5mm;
  }
  body {
    background-color: transparent !important;
  }
  tr {
    page-break-inside: avoid;
  }
  tfoot {
    display: table-row-group;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  * {
    overflow: visible !important;
  }
}
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-surturday {
  color: var(--surturday-font-color);
}

.text-sunday {
  color: var(--sunday-font-color);
}

.ipt-count {
  text-align: right;
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}

.require {
  position: relative;
}
.require::after {
  content: "*";
  color: red;
  position: absolute;
  top: 0;
  right: -1rem;
}

.layer {
  display: none;
  position: absolute;
  background-color: #fff;
  margin: 0;
  padding: 1em;
  border-radius: 0.5rem;
  box-shadow: 2px 4px 8px 2px rgba(80, 80, 80, 0.4);
  border: 0;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  overflow: hidden;
  z-index: 11000;
}
.layer.open {
  display: flex;
  flex-direction: column;
  opacity: 1;
  pointer-events: inherit;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
.overlay.open {
  display: block;
}

.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: gray;
  color: white;
}

.center-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: var(--breakpoint-sp-max);
  margin: 0 auto;
}
.center-container h2 {
  display: block;
  margin-bottom: 2rem;
}

.form-container dl {
  margin-bottom: 3rem;
}
.form-container dl > div:not(:last-of-type) {
  margin-bottom: 1rem;
}
.form-container dt {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  margin-bottom: 1rem;
  font-weight: 600;
}
.form-container dd {
  border-radius: 5px;
  border-color: var(--default-border-color);
  white-space: nowrap;
}
.form-container dd input {
  width: 100%;
  height: inherit;
  font-size: 1.75rem;
  padding: 0.75rem 0.5rem;
  border: 1px solid var(--default-border-color);
  border-radius: 5px;
}
.form-container dd input[type=checkbox] {
  width: initial;
}

.message-container {
  text-align: center;
  margin-top: 2em;
}
.message-container h2 {
  display: inline-block;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.message-container a {
  padding: 0.25rem 0.5rem;
}

.flex {
  display: flex;
}

.flex-auto {
  flex: 1;
}

.inline-flex {
  display: inline-flex;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.gap-0 {
  gap: 0rem;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-9 {
  gap: 2.25rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-11 {
  gap: 2.75rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-13 {
  gap: 3.25rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-15 {
  gap: 3.75rem;
}

.gap-16 {
  gap: 4rem;
}

.w-0 {
  width: 0rem;
}

.w-1 {
  width: 0.25rem;
}

.w-2 {
  width: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-9 {
  width: 2.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-11 {
  width: 2.75rem;
}

.w-12 {
  width: 3rem;
}

.w-13 {
  width: 3.25rem;
}

.w-14 {
  width: 3.5rem;
}

.w-15 {
  width: 3.75rem;
}

.w-16 {
  width: 4rem;
}

.w-17 {
  width: 4.25rem;
}

.w-18 {
  width: 4.5rem;
}

.w-19 {
  width: 4.75rem;
}

.w-20 {
  width: 5rem;
}

.w-21 {
  width: 5.25rem;
}

.w-22 {
  width: 5.5rem;
}

.w-23 {
  width: 5.75rem;
}

.w-24 {
  width: 6rem;
}

.w-25 {
  width: 6.25rem;
}

.w-26 {
  width: 6.5rem;
}

.w-27 {
  width: 6.75rem;
}

.w-28 {
  width: 7rem;
}

.w-29 {
  width: 7.25rem;
}

.w-30 {
  width: 7.5rem;
}

.w-31 {
  width: 7.75rem;
}

.w-32 {
  width: 8rem;
}

.w-33 {
  width: 8.25rem;
}

.w-34 {
  width: 8.5rem;
}

.w-35 {
  width: 8.75rem;
}

.w-36 {
  width: 9rem;
}

.w-37 {
  width: 9.25rem;
}

.w-38 {
  width: 9.5rem;
}

.w-39 {
  width: 9.75rem;
}

.w-40 {
  width: 10rem;
}

.w-41 {
  width: 10.25rem;
}

.w-42 {
  width: 10.5rem;
}

.w-43 {
  width: 10.75rem;
}

.w-44 {
  width: 11rem;
}

.w-45 {
  width: 11.25rem;
}

.w-46 {
  width: 11.5rem;
}

.w-47 {
  width: 11.75rem;
}

.w-48 {
  width: 12rem;
}

.w-49 {
  width: 12.25rem;
}

.w-50 {
  width: 12.5rem;
}

.w-51 {
  width: 12.75rem;
}

.w-52 {
  width: 13rem;
}

.w-53 {
  width: 13.25rem;
}

.w-54 {
  width: 13.5rem;
}

.w-55 {
  width: 13.75rem;
}

.w-56 {
  width: 14rem;
}

.w-57 {
  width: 14.25rem;
}

.w-58 {
  width: 14.5rem;
}

.w-59 {
  width: 14.75rem;
}

.w-60 {
  width: 15rem;
}

.w-61 {
  width: 15.25rem;
}

.w-62 {
  width: 15.5rem;
}

.w-63 {
  width: 15.75rem;
}

.w-64 {
  width: 16rem;
}

.w-65 {
  width: 16.25rem;
}

.w-66 {
  width: 16.5rem;
}

.w-67 {
  width: 16.75rem;
}

.w-68 {
  width: 17rem;
}

.w-69 {
  width: 17.25rem;
}

.w-70 {
  width: 17.5rem;
}

.w-71 {
  width: 17.75rem;
}

.w-72 {
  width: 18rem;
}

.w-73 {
  width: 18.25rem;
}

.w-74 {
  width: 18.5rem;
}

.w-75 {
  width: 18.75rem;
}

.w-76 {
  width: 19rem;
}

.w-77 {
  width: 19.25rem;
}

.w-78 {
  width: 19.5rem;
}

.w-79 {
  width: 19.75rem;
}

.w-80 {
  width: 20rem;
}

.w-81 {
  width: 20.25rem;
}

.w-82 {
  width: 20.5rem;
}

.w-83 {
  width: 20.75rem;
}

.w-84 {
  width: 21rem;
}

.w-85 {
  width: 21.25rem;
}

.w-86 {
  width: 21.5rem;
}

.w-87 {
  width: 21.75rem;
}

.w-88 {
  width: 22rem;
}

.w-89 {
  width: 22.25rem;
}

.w-90 {
  width: 22.5rem;
}

.w-91 {
  width: 22.75rem;
}

.w-92 {
  width: 23rem;
}

.w-93 {
  width: 23.25rem;
}

.w-94 {
  width: 23.5rem;
}

.w-95 {
  width: 23.75rem;
}

.w-96 {
  width: 24rem;
}

.w-97 {
  width: 24.25rem;
}

.w-98 {
  width: 24.5rem;
}

.w-99 {
  width: 24.75rem;
}

.w-100 {
  width: 25rem;
}

.w-full {
  width: 100%;
}

.h-0 {
  height: 0rem;
}

.h-1 {
  height: 0.25rem;
}

.h-2 {
  height: 0.5rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-11 {
  height: 2.75rem;
}

.h-12 {
  height: 3rem;
}

.h-13 {
  height: 3.25rem;
}

.h-14 {
  height: 3.5rem;
}

.h-15 {
  height: 3.75rem;
}

.h-16 {
  height: 4rem;
}

.h-17 {
  height: 4.25rem;
}

.h-18 {
  height: 4.5rem;
}

.h-19 {
  height: 4.75rem;
}

.h-20 {
  height: 5rem;
}

.h-21 {
  height: 5.25rem;
}

.h-22 {
  height: 5.5rem;
}

.h-23 {
  height: 5.75rem;
}

.h-24 {
  height: 6rem;
}

.h-25 {
  height: 6.25rem;
}

.h-26 {
  height: 6.5rem;
}

.h-27 {
  height: 6.75rem;
}

.h-28 {
  height: 7rem;
}

.h-29 {
  height: 7.25rem;
}

.h-30 {
  height: 7.5rem;
}

.h-31 {
  height: 7.75rem;
}

.h-32 {
  height: 8rem;
}

.h-33 {
  height: 8.25rem;
}

.h-34 {
  height: 8.5rem;
}

.h-35 {
  height: 8.75rem;
}

.h-36 {
  height: 9rem;
}

.h-37 {
  height: 9.25rem;
}

.h-38 {
  height: 9.5rem;
}

.h-39 {
  height: 9.75rem;
}

.h-40 {
  height: 10rem;
}

.h-41 {
  height: 10.25rem;
}

.h-42 {
  height: 10.5rem;
}

.h-43 {
  height: 10.75rem;
}

.h-44 {
  height: 11rem;
}

.h-45 {
  height: 11.25rem;
}

.h-46 {
  height: 11.5rem;
}

.h-47 {
  height: 11.75rem;
}

.h-48 {
  height: 12rem;
}

.h-49 {
  height: 12.25rem;
}

.h-50 {
  height: 12.5rem;
}

.h-51 {
  height: 12.75rem;
}

.h-52 {
  height: 13rem;
}

.h-53 {
  height: 13.25rem;
}

.h-54 {
  height: 13.5rem;
}

.h-55 {
  height: 13.75rem;
}

.h-56 {
  height: 14rem;
}

.h-57 {
  height: 14.25rem;
}

.h-58 {
  height: 14.5rem;
}

.h-59 {
  height: 14.75rem;
}

.h-60 {
  height: 15rem;
}

.h-61 {
  height: 15.25rem;
}

.h-62 {
  height: 15.5rem;
}

.h-63 {
  height: 15.75rem;
}

.h-64 {
  height: 16rem;
}

.h-65 {
  height: 16.25rem;
}

.h-66 {
  height: 16.5rem;
}

.h-67 {
  height: 16.75rem;
}

.h-68 {
  height: 17rem;
}

.h-69 {
  height: 17.25rem;
}

.h-70 {
  height: 17.5rem;
}

.h-71 {
  height: 17.75rem;
}

.h-72 {
  height: 18rem;
}

.h-73 {
  height: 18.25rem;
}

.h-74 {
  height: 18.5rem;
}

.h-75 {
  height: 18.75rem;
}

.h-76 {
  height: 19rem;
}

.h-77 {
  height: 19.25rem;
}

.h-78 {
  height: 19.5rem;
}

.h-79 {
  height: 19.75rem;
}

.h-80 {
  height: 20rem;
}

.h-81 {
  height: 20.25rem;
}

.h-82 {
  height: 20.5rem;
}

.h-83 {
  height: 20.75rem;
}

.h-84 {
  height: 21rem;
}

.h-85 {
  height: 21.25rem;
}

.h-86 {
  height: 21.5rem;
}

.h-87 {
  height: 21.75rem;
}

.h-88 {
  height: 22rem;
}

.h-89 {
  height: 22.25rem;
}

.h-90 {
  height: 22.5rem;
}

.h-91 {
  height: 22.75rem;
}

.h-92 {
  height: 23rem;
}

.h-93 {
  height: 23.25rem;
}

.h-94 {
  height: 23.5rem;
}

.h-95 {
  height: 23.75rem;
}

.h-96 {
  height: 24rem;
}

.h-97 {
  height: 24.25rem;
}

.h-98 {
  height: 24.5rem;
}

.h-99 {
  height: 24.75rem;
}

.h-100 {
  height: 25rem;
}

.h-full {
  height: 100%;
}

.p-0 {
  padding: 0rem;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-7 {
  padding: 1.75rem;
}

.p-8 {
  padding: 2rem;
}

.p-9 {
  padding: 2.25rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-11 {
  padding: 2.75rem;
}

.p-12 {
  padding: 3rem;
}

.p-13 {
  padding: 3.25rem;
}

.p-14 {
  padding: 3.5rem;
}

.p-15 {
  padding: 3.75rem;
}

.p-16 {
  padding: 4rem;
}

.pt-0 {
  padding-top: 0rem;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-13 {
  padding-top: 3.25rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-15 {
  padding-top: 3.75rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pl-0 {
  padding-left: 0rem;
}

.pl-1 {
  padding-left: 0.25rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-7 {
  padding-left: 1.75rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pl-9 {
  padding-left: 2.25rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pl-11 {
  padding-left: 2.75rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pl-13 {
  padding-left: 3.25rem;
}

.pl-14 {
  padding-left: 3.5rem;
}

.pl-15 {
  padding-left: 3.75rem;
}

.pl-16 {
  padding-left: 4rem;
}

.pr-0 {
  padding-right: 0rem;
}

.pr-1 {
  padding-right: 0.25rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-3 {
  padding-right: 0.75rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.pr-7 {
  padding-right: 1.75rem;
}

.pr-8 {
  padding-right: 2rem;
}

.pr-9 {
  padding-right: 2.25rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.pr-11 {
  padding-right: 2.75rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-13 {
  padding-right: 3.25rem;
}

.pr-14 {
  padding-right: 3.5rem;
}

.pr-15 {
  padding-right: 3.75rem;
}

.pr-16 {
  padding-right: 4rem;
}

.pb-0 {
  padding-bottom: 0rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-7 {
  padding-bottom: 1.75rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-9 {
  padding-bottom: 2.25rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-11 {
  padding-bottom: 2.75rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-13 {
  padding-bottom: 3.25rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-15 {
  padding-bottom: 3.75rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.m-0 {
  margin: 0rem;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 0.75rem;
}

.m-4 {
  margin: 1rem;
}

.m-5 {
  margin: 1.25rem;
}

.m-6 {
  margin: 1.5rem;
}

.m-7 {
  margin: 1.75rem;
}

.m-8 {
  margin: 2rem;
}

.m-9 {
  margin: 2.25rem;
}

.m-10 {
  margin: 2.5rem;
}

.m-11 {
  margin: 2.75rem;
}

.m-12 {
  margin: 3rem;
}

.m-13 {
  margin: 3.25rem;
}

.m-14 {
  margin: 3.5rem;
}

.m-15 {
  margin: 3.75rem;
}

.m-16 {
  margin: 4rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-9 {
  margin-top: 2.25rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-11 {
  margin-top: 2.75rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-13 {
  margin-top: 3.25rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.mt-15 {
  margin-top: 3.75rem;
}

.mt-16 {
  margin-top: 4rem;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.ml-10 {
  margin-left: 2.5rem;
}

.ml-11 {
  margin-left: 2.75rem;
}

.ml-12 {
  margin-left: 3rem;
}

.ml-13 {
  margin-left: 3.25rem;
}

.ml-14 {
  margin-left: 3.5rem;
}

.ml-15 {
  margin-left: 3.75rem;
}

.ml-16 {
  margin-left: 4rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

.mr-7 {
  margin-right: 1.75rem;
}

.mr-8 {
  margin-right: 2rem;
}

.mr-9 {
  margin-right: 2.25rem;
}

.mr-10 {
  margin-right: 2.5rem;
}

.mr-11 {
  margin-right: 2.75rem;
}

.mr-12 {
  margin-right: 3rem;
}

.mr-13 {
  margin-right: 3.25rem;
}

.mr-14 {
  margin-right: 3.5rem;
}

.mr-15 {
  margin-right: 3.75rem;
}

.mr-16 {
  margin-right: 4rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-9 {
  margin-bottom: 2.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-11 {
  margin-bottom: 2.75rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-13 {
  margin-bottom: 3.25rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mb-15 {
  margin-bottom: 3.75rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.min-w-0 {
  min-width: 0rem;
}

.min-w-1 {
  min-width: 0.25rem;
}

.min-w-2 {
  min-width: 0.5rem;
}

.min-w-3 {
  min-width: 0.75rem;
}

.min-w-4 {
  min-width: 1rem;
}

.min-w-5 {
  min-width: 1.25rem;
}

.min-w-6 {
  min-width: 1.5rem;
}

.min-w-7 {
  min-width: 1.75rem;
}

.min-w-8 {
  min-width: 2rem;
}

.min-w-9 {
  min-width: 2.25rem;
}

.min-w-10 {
  min-width: 2.5rem;
}

.min-w-11 {
  min-width: 2.75rem;
}

.min-w-12 {
  min-width: 3rem;
}

.min-w-13 {
  min-width: 3.25rem;
}

.min-w-14 {
  min-width: 3.5rem;
}

.min-w-15 {
  min-width: 3.75rem;
}

.min-w-16 {
  min-width: 4rem;
}

.min-w-17 {
  min-width: 4.25rem;
}

.min-w-18 {
  min-width: 4.5rem;
}

.min-w-19 {
  min-width: 4.75rem;
}

.min-w-20 {
  min-width: 5rem;
}

.min-w-21 {
  min-width: 5.25rem;
}

.min-w-22 {
  min-width: 5.5rem;
}

.min-w-23 {
  min-width: 5.75rem;
}

.min-w-24 {
  min-width: 6rem;
}

.min-w-25 {
  min-width: 6.25rem;
}

.min-w-26 {
  min-width: 6.5rem;
}

.min-w-27 {
  min-width: 6.75rem;
}

.min-w-28 {
  min-width: 7rem;
}

.min-w-29 {
  min-width: 7.25rem;
}

.min-w-30 {
  min-width: 7.5rem;
}

.min-w-31 {
  min-width: 7.75rem;
}

.min-w-32 {
  min-width: 8rem;
}

.min-w-33 {
  min-width: 8.25rem;
}

.min-w-34 {
  min-width: 8.5rem;
}

.min-w-35 {
  min-width: 8.75rem;
}

.min-w-36 {
  min-width: 9rem;
}

.min-w-37 {
  min-width: 9.25rem;
}

.min-w-38 {
  min-width: 9.5rem;
}

.min-w-39 {
  min-width: 9.75rem;
}

.min-w-40 {
  min-width: 10rem;
}

.min-w-41 {
  min-width: 10.25rem;
}

.min-w-42 {
  min-width: 10.5rem;
}

.min-w-43 {
  min-width: 10.75rem;
}

.min-w-44 {
  min-width: 11rem;
}

.min-w-45 {
  min-width: 11.25rem;
}

.min-w-46 {
  min-width: 11.5rem;
}

.min-w-47 {
  min-width: 11.75rem;
}

.min-w-48 {
  min-width: 12rem;
}

.min-w-49 {
  min-width: 12.25rem;
}

.min-w-50 {
  min-width: 12.5rem;
}

.min-w-51 {
  min-width: 12.75rem;
}

.min-w-52 {
  min-width: 13rem;
}

.min-w-53 {
  min-width: 13.25rem;
}

.min-w-54 {
  min-width: 13.5rem;
}

.min-w-55 {
  min-width: 13.75rem;
}

.min-w-56 {
  min-width: 14rem;
}

.min-w-57 {
  min-width: 14.25rem;
}

.min-w-58 {
  min-width: 14.5rem;
}

.min-w-59 {
  min-width: 14.75rem;
}

.min-w-60 {
  min-width: 15rem;
}

.min-w-61 {
  min-width: 15.25rem;
}

.min-w-62 {
  min-width: 15.5rem;
}

.min-w-63 {
  min-width: 15.75rem;
}

.min-w-64 {
  min-width: 16rem;
}

.min-w-65 {
  min-width: 16.25rem;
}

.min-w-66 {
  min-width: 16.5rem;
}

.min-w-67 {
  min-width: 16.75rem;
}

.min-w-68 {
  min-width: 17rem;
}

.min-w-69 {
  min-width: 17.25rem;
}

.min-w-70 {
  min-width: 17.5rem;
}

.min-w-71 {
  min-width: 17.75rem;
}

.min-w-72 {
  min-width: 18rem;
}

.min-w-73 {
  min-width: 18.25rem;
}

.min-w-74 {
  min-width: 18.5rem;
}

.min-w-75 {
  min-width: 18.75rem;
}

.min-w-76 {
  min-width: 19rem;
}

.min-w-77 {
  min-width: 19.25rem;
}

.min-w-78 {
  min-width: 19.5rem;
}

.min-w-79 {
  min-width: 19.75rem;
}

.min-w-80 {
  min-width: 20rem;
}

.min-w-81 {
  min-width: 20.25rem;
}

.min-w-82 {
  min-width: 20.5rem;
}

.min-w-83 {
  min-width: 20.75rem;
}

.min-w-84 {
  min-width: 21rem;
}

.min-w-85 {
  min-width: 21.25rem;
}

.min-w-86 {
  min-width: 21.5rem;
}

.min-w-87 {
  min-width: 21.75rem;
}

.min-w-88 {
  min-width: 22rem;
}

.min-w-89 {
  min-width: 22.25rem;
}

.min-w-90 {
  min-width: 22.5rem;
}

.min-w-91 {
  min-width: 22.75rem;
}

.min-w-92 {
  min-width: 23rem;
}

.min-w-93 {
  min-width: 23.25rem;
}

.min-w-94 {
  min-width: 23.5rem;
}

.min-w-95 {
  min-width: 23.75rem;
}

.min-w-96 {
  min-width: 24rem;
}

.min-w-97 {
  min-width: 24.25rem;
}

.min-w-98 {
  min-width: 24.5rem;
}

.min-w-99 {
  min-width: 24.75rem;
}

.min-w-100 {
  min-width: 25rem;
}

.fs-1 {
  font-size: calc(1em - 1px);
}

.fs-2 {
  font-size: calc(1em - 2px);
}

.fs-3 {
  font-size: calc(1em - 3px);
}

.fs-4 {
  font-size: calc(1em - 4px);
}

.fs-5 {
  font-size: calc(1em - 5px);
}

.fs-6 {
  font-size: calc(1em - 6px);
}

.fs-7 {
  font-size: calc(1em - 7px);
}

.fs-8 {
  font-size: calc(1em - 8px);
}

.fs-9 {
  font-size: calc(1em - 9px);
}

.fs-10 {
  font-size: calc(1em - 10px);
}

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  margin: 0;
  padding: 1em;
  border-radius: 0.5rem;
  box-shadow: 2px 4px 8px 2px rgba(80, 80, 80, 0.4);
  border: 0;
  outline: 0 !important;
}

dialog form {
  text-align: right;
}

dialog p {
  text-align: left;
  line-height: 1.5;
}

dialog button {
  flex: 1;
  padding: 1em 2em;
  text-align: center;
  box-shadow: 0 1px 2px 0 rgba(80, 80, 80, 0.2);
}

.normal-dialog {
  z-index: 14000;
  max-width: 48rem;
  min-height: 4rem;
  height: 1px;
}

.normal-dialog p {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: calc(1em + 0.2rem);
}

.check-dialog {
  z-index: 15000;
  max-width: 48rem;
}

.confirm-dialog {
  z-index: 16000;
  max-width: 48rem;
}

.confirm-dialog input {
  margin-top: 1em;
  width: 100%;
}

.confirm-dialog button {
  width: 50%;
}

.loading-dialog {
  z-index: 17000;
  max-width: 40rem;
  min-height: 20rem;
  height: 1px;
  padding: 1em 0;
}

@media (max-width: 608px) {
  .loading-dialog {
    min-height: 16rem;
  }
}
.loading-dialog-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.loading-dialog p {
  color: color-mix(in srgb, var(--main-key-color) 90%, transparent);
  text-align: center;
  animation: loading-text-blink 1s ease-in-out infinite alternate;
  font-size: calc(1em + 1rem);
  transform: translateY(-2rem);
}

@media (max-width: 608px) {
  .loading-dialog p {
    font-size: calc(1em + 0.4rem);
  }
}
:root {
  --loader-vehicle-duration: 6s;
}

.loading-dialog.loading-stop * {
  animation-play-state: paused !important;
}

.loader-vehicle {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: vehicle var(--loader-vehicle-duration) infinite;
}
.loader-vehicle path, .loader-vehicle circle {
  stroke: #a6dead !important;
}

@keyframes vehicle {
  0%, 100% {
    transform: translateX(0);
  }
}
.loader-vehicle .vehicle-move {
  animation: vehicle-move var(--loader-vehicle-duration) linear infinite;
}

@keyframes vehicle-move {
  0% {
    transform: translate(-800px, 0);
  }
  30% {
    transform: translate(70px, 0);
  }
  80% {
    transform: translate(70px, 0);
  }
  100% {
    transform: translate(600px, 0);
  }
}
.loader-vehicle .cover-open {
  transform-box: fill-box;
  transform-origin: top right;
  animation: cover-open var(--loader-vehicle-duration) linear infinite;
}

@keyframes cover-open {
  0%, 35% {
    transform: rotate(0deg);
  }
  40% {
    transform: translate(5px, 5px) rotate(70deg);
  }
  70% {
    transform: translate(5px, 5px) rotate(70deg);
  }
  75% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.loader-vehicle .wheel-spin {
  transform-box: fill-box;
  transform-origin: center;
  animation: wheel-spin var(--loader-vehicle-duration) linear infinite;
}

@keyframes wheel-spin {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(1440deg);
  }
  80% {
    transform: rotate(1440deg);
  }
  100% {
    transform: rotate(2880deg);
  }
}
.loader-vehicle .dust {
  opacity: 0;
  animation-duration: var(--loader-vehicle-duration);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.loader-vehicle .dust1 {
  animation-name: dust1;
}

@keyframes dust1 {
  0%, 38% {
    opacity: 0;
    transform: translate(0, 0);
  }
  44% {
    opacity: 1;
    transform: translate(0, 0);
  }
  59% {
    opacity: 1;
    transform: translate(150px, -20px);
  }
  70%, 100% {
    opacity: 0;
    transform: translate(150px, -10px);
  }
}
.loader-vehicle .dust2 {
  animation-name: dust2;
}

@keyframes dust2 {
  0%, 38% {
    opacity: 0;
    transform: translate(0, 0);
  }
  44%, 49% {
    opacity: 1;
    transform: translate(0, 0);
  }
  59% {
    opacity: 1;
    transform: translate(80px, -50px);
  }
  70%, 100% {
    opacity: 0;
    transform: translate(150px, -40px);
  }
}
.loader-vehicle .dust3 {
  animation-name: dust3;
}

@keyframes dust3 {
  0%, 38% {
    opacity: 0;
    transform: translate(0, 0);
  }
  44%, 54% {
    opacity: 1;
    transform: translate(0, 0);
  }
  59% {
    opacity: 1;
    transform: translate(80px, -50px);
  }
  70%, 100% {
    opacity: 0;
    transform: translate(150px, -35px);
  }
}
.loader-wave {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
}
.loader-wave div {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(300deg, #5B8D18, #89CA6E);
  animation: loader-wave 0.6s ease-in-out infinite;
  border-radius: 50%;
  transform: translateY(20px);
}
.loader-wave div:nth-child(1) {
  animation-delay: -0.6s;
}
.loader-wave div:nth-child(2) {
  animation-delay: -0.5s;
}
.loader-wave div:nth-child(3) {
  animation-delay: -0.4s;
}
.loader-wave div:nth-child(4) {
  animation-delay: -0.3s;
}
.loader-wave div:nth-child(5) {
  animation-delay: -0.2s;
}
.loader-wave div:nth-child(6) {
  animation-delay: -0.1s;
}

@keyframes loader-wave {
  0%, 100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(-50px);
  }
}
.loader-jump {
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 100%;
}
.loader-jump div {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(300deg, #5B8D18, #89CA6E);
  transform-origin: center;
  animation: loader-jump 1.5s ease-in-out infinite;
  border-radius: 50%;
}
.loader-jump div:nth-child(1) {
  animation-delay: 0s;
}
.loader-jump div:nth-child(2) {
  animation-delay: 0.25s;
}
.loader-jump div:nth-child(3) {
  animation-delay: 0.5s;
}
.loader-jump div:nth-child(4) {
  animation-delay: 0.75s;
}
.loader-jump div:nth-child(5) {
  animation-delay: 1s;
}
.loader-jump div:nth-child(6) {
  animation-delay: 1.25s;
}
.loader-jump div:nth-child(7) {
  animation-delay: 1.5s;
}
.loader-jump div:nth-child(8) {
  animation-delay: 1.75s;
}

@keyframes loader-jump {
  0%, 9.6%, 100% {
    transform: translateY(0) scale(1);
  }
  4.8% {
    transform: translateY(-30px) scale(1.06);
  }
  7.2% {
    transform: translateY(12px) scale(1.06);
  }
}
@media (max-width: 608px) {
  .loader-jump {
    gap: 1rem;
  }
  .loader-jump div {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.dialog-btn-container {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1em;
}

.dialog-apply-btn {
  background-color: var(--btn-apply-back-color);
  color: var(--btn-apply-font-color);
  padding-left: 0;
  padding-right: 0;
}

.dialog-cancel-btn {
  background-color: transparent;
  color: gray;
  padding-left: 0;
  padding-right: 0;
  border: 2px solid var(--default-border-color);
}

@keyframes loading-text-blink {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.layer-search {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  max-width: 80rem;
  max-height: 40rem;
  min-width: 20rem;
  min-height: 24rem;
}
.layer-search .layer-search-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.layer-search .layer-search-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.layer-search .layer-search-header h3 {
  display: flex;
  align-items: center;
}
.layer-search .layer-search-header .layer-search-close {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 2rem;
  text-align: center;
  cursor: pointer;
}
.layer-search h4 {
  margin-bottom: 0.5rem;
}
.layer-search dl {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.layer-search dl > div {
  display: flex;
  min-height: 2rem;
}
.layer-search dl > div dt {
  width: 5rem;
  justify-content: center;
  font-weight: 600;
}
.layer-search dl > div select {
  min-width: 11rem;
}
.layer-search .layer-search-result-container table tr td:first-of-type {
  text-align: center;
}
.layer-search .layer-search-result-container table td {
  padding: 0.25rem;
}
.layer-search .layer-search-result-container table tbody tr {
  cursor: pointer;
}
.layer-search .layer-search-result-container table tbody tr:hover {
  opacity: 0.8;
}

.layer-list-work-staff {
  position: fixed;
  width: 60rem;
  max-width: 80vw;
  height: 40rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.layer-list-work-staff .layer-condition-container dl {
  display: flex;
}
.layer-list-work-staff .layer-condition-container dl > div {
  display: flex;
}
.layer-list-work-staff .layer-condition-container dl > div dt {
  background-color: var(--main-key-color);
  color: white;
  padding: 0.25rem;
}
.layer-list-work-staff .layer-body-container table {
  width: 100%;
}
.layer-list-work-staff .layer-body-container table thead {
  position: sticky;
  top: 0;
}
.layer-list-work-staff .layer-body-container table th, .layer-list-work-staff .layer-body-container table td {
  padding: 0 0.25rem;
}

.login-page .login-form-wrapper {
  flex: 1;
  padding: 2rem;
}
.login-page .login-btn, .login-page .register-btn {
  background-color: var(--main-key-color);
  color: white;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  border-radius: 5px;
  height: 5rem;
}
.login-page .login-forget-text {
  margin-bottom: 1rem;
}
.login-page .register-btn {
  border: 0;
}
.login-page .register-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: white;
  color: var(--main-key-color);
  border: 1px solid var(--main-key-color);
  border-radius: 5px;
}
.login-page .login-page-version {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.logout-page {
  background-color: var(--body-back-color);
}

.logout-auto-login-off-container {
  width: 48rem;
  margin: auto;
  margin-top: 4rem;
}

.logout-auto-login-off-message {
  margin: 2rem;
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.4rem;
}

.logout-auto-login-off-btn {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  padding: 1rem;
  background-color: var(--main-key-color);
  color: white;
}

.logout-auto-login-off-btn:hover {
  opacity: 0.8;
}

.menu-page .menu-page-list-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
.menu-page .menu-page-list {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.5rem;
  max-width: var(--breakpoint-tab-max);
}
.menu-page .menu-page-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  background-color: var(--main-key-color);
  cursor: pointer;
}
.menu-page .menu-page-list li:hover {
  opacity: 0.8;
}
.menu-page .menu-page-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: white;
  text-decoration: none;
  background-color: transparent;
}

.entry-time-record-page main {
  align-items: center;
}
@media (min-width: 1024px) {
  .entry-time-record-page main {
    overflow-y: hidden;
  }
}
.entry-time-record-page .entry-time-record-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  max-width: var(--breakpoint-tab-max);
}
@media (min-width: 1024px) {
  .entry-time-record-page .entry-time-record-container {
    height: 100%;
    padding: 0 1rem 1rem;
  }
}
.entry-time-record-page .entry-time-record-staff-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  height: 2.5rem;
  font-size: 1.4rem;
  padding: 0.25rem;
}
.entry-time-record-page .entry-time-record-staff-container div {
  display: flex;
  align-items: center;
}
.entry-time-record-page .entry-time-record-datetime {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background-color: var(--main-key-color);
  color: white;
}
.entry-time-record-page .entry-time-record-date {
  text-align: center;
}
.entry-time-record-page .entry-time-record-time {
  text-align: center;
  padding: 0.5rem;
  font-size: calc(1em + 1.2rem);
}
.entry-time-record-page .entry-time-record-select {
  display: flex;
}
.entry-time-record-page .entry-time-record-select button {
  flex: 1;
  padding: 0.75rem 0.25rem;
  border-left: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
  font-size: 1em;
}
.entry-time-record-page .entry-time-record-select button.select {
  background-color: var(--btn-default-select-back-color);
}
.entry-time-record-page .entry-time-record-select button:last-of-type {
  border-right: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-punch-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
.entry-time-record-page .entry-time-record-punch-container button {
  width: 20rem;
  padding: 1rem 0.5rem;
  border: 1px solid var(--default-border-color);
  font-size: calc(1em + 0.8rem);
}
.entry-time-record-page .entry-time-record-title {
  background-color: var(--main-key-color);
  color: white;
  font-size: 1em;
  padding: 0.5rem 0.25rem;
}
.entry-time-record-page .entry-time-record-history-header {
  display: flex;
}
.entry-time-record-page .entry-time-record-history-header button {
  min-width: 4rem;
  max-width: 8rem;
  padding: 0.5rem;
  border-left: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-history-header .entry-time-record-history-date {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-left: 1px solid var(--default-border-color);
  background-color: white;
}
.entry-time-record-page .entry-time-record-history-header button:last-of-type {
  border-right: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-history-body {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--default-border-color);
  position: relative;
  background-color: white;
}
.entry-time-record-page .entry-time-record-history-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: gray;
  transform: translateX(-50%);
}
.entry-time-record-page .entry-time-record-history-table {
  width: 100%;
}
.entry-time-record-page .entry-time-record-history-table thead {
  position: sticky;
  top: 0;
  background-color: var(--main-key-color);
  color: white;
}
.entry-time-record-page .entry-time-record-history-table th, .entry-time-record-page .entry-time-record-history-table td {
  width: 50%;
  text-align: center;
}
.entry-time-record-page .entry-time-record-history-table thead th {
  border: 0;
  border-bottom: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-history-table thead tr th:first-of-type {
  border-right: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-history-table tbody td {
  background-color: white;
  border: 0;
}
.entry-time-record-page .entry-time-record-history-table tbody tr td:first-of-type {
  border-right: 1px solid var(--default-border-color);
}
.entry-time-record-page .entry-time-record-history-table:has(tbody:empty) thead th {
  border-bottom: 0;
}
.entry-time-record-page .select-manage-date-dialog {
  width: 30rem;
  box-sizing: border-box;
}
.entry-time-record-page .select-manage-date-dialog p {
  text-align: center;
}
@media (max-width: 608px) {
  .entry-time-record-page .select-manage-date-dialog {
    width: 100dvw;
  }
}
.entry-time-record-page .select-manage-date-dialog-list-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.entry-time-record-page .select-manage-date-dialog-list-container button {
  flex: 0;
  max-width: 20rem;
  width: 100%;
  font-size: 1em;
}

.check-manifest-page .check-manifest-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: hidden;
}
.check-manifest-page .check-manifest-container table {
  width: 100%;
}
.check-manifest-page .check-manifest-header-table th {
  width: 10rem;
  background-color: var(--main-key-color);
  color: white;
}
.check-manifest-page .check-manifest-body-table-container {
  overflow-y: auto;
}
.check-manifest-page .check-manifest-body-table-container thead {
  position: sticky;
  top: 0;
  background-color: var(--body-back-color);
}
.check-manifest-page .check-manifest-body-table-container tbody tr {
  height: 3rem;
}
.check-manifest-page .check-manifest-body-table-container th {
  background-color: var(--main-key-color);
  color: white;
}
.check-manifest-page .check-manifest-body-table-container td {
  background-color: white;
}
.check-manifest-page .check-manifest-body-table-manifest-id {
  width: 8rem;
}
.check-manifest-page .check-manifest-body-table-is-loading-manifest {
  width: 3rem;
}

.entry-collection-inspection-page .entry-collection-inspection-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: scroll;
}
.entry-collection-inspection-page .entry-collection-inspection-container table {
  width: 100%;
}
.entry-collection-inspection-page .entry-collection-inspection-container table tr {
  height: 3rem;
}
.entry-collection-inspection-page .entry-collection-inspection-container table [type=time] {
  width: 100%;
  text-align: left;
  background-color: white;
}

.entry-collection-detail-list-page .entry-collection-detail-list-body-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: scroll;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container table {
  width: 100%;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container table th {
  background-color: var(--main-key-color);
  color: white;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container table td {
  background-color: white;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container table tbody tr {
  height: 3rem;
  cursor: pointer;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container .entry-collection-detail-list-arrival-time {
  width: 4rem;
}
.entry-collection-detail-list-page .entry-collection-detail-list-body-container .entry-collection-detail-list-is-departure-text {
  width: 3rem;
}

.entry-collection-detail-page .entry-collection-detail-waste-site-container table {
  width: 100%;
}
.entry-collection-detail-page .entry-collection-detail-waste-site-arrival {
  width: 6rem;
}
.entry-collection-detail-page .entry-collection-detail-body-container {
  flex: 1;
  overflow-y: auto;
}
.entry-collection-detail-page .entry-collection-detail-body-container table {
  width: 100%;
}
.entry-collection-detail-page .entry-collection-detail-body-container table thead {
  position: sticky;
  top: 0;
}
.entry-collection-detail-page .entry-collection-detail-body-container table th {
  background-color: var(--main-key-color);
  color: white;
}
.entry-collection-detail-page .entry-collection-detail-body-container table tbody tr {
  height: 3rem;
}
.entry-collection-detail-page .entry-collection-detail-body-container .entry-collection-detail-body-is-construct {
  width: 3rem;
}
.entry-collection-detail-page .entry-collection-detail-body-container .entry-collection-detail-body-waste-cateogry-id {
  width: 6rem;
}
.entry-collection-detail-page .entry-collection-detail-body-container .entry-collection-detail-body-bag-count {
  width: 4rem;
}
.entry-collection-detail-page .entry-collection-detail-body-container .entry-collection-detail-body-kg-count {
  width: 4rem;
}
.entry-collection-detail-page .entry-collection-detail-footer-container table {
  width: 100%;
}
.entry-collection-detail-page .entry-collection-detail-footer-container table th {
  background-color: var(--main-key-color);
  color: white;
}
.entry-collection-detail-page .entry-collection-detail-footer-container table .entry-collection-detail-footer-slip-number {
  width: 6rem;
}
.entry-collection-detail-page .entry-collection-detail-footer-container table .entry-collection-detail-footer-departure {
  width: 6rem;
}
.entry-collection-detail-page .has-time {
  background-color: #99caff;
}

.edit-collection-page .edit-collection-body-table tfoot {
  position: sticky;
  bottom: 0;
}
.edit-collection-page .edit-collection-body-table tfoot tr:first-of-type th,
.edit-collection-page .edit-collection-body-table tfoot tr:first-of-type td {
  border-top: 1px solid gray;
}
.edit-collection-page .edit-collection-body-table tfoot td {
  background-color: var(--body-back-color);
}
.edit-collection-page .layer-edit-collection-template {
  width: 60rem;
}
.edit-collection-page .layer-edit-collection-template .layer-edit-collection-template-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}
.edit-collection-page .layer-edit-collection-replace {
  width: 60rem;
}
.edit-collection-page .layer-edit-collection-replace .layer-edit-collection-replace-condition {
  margin: 1rem;
}
.edit-collection-page .layer-edit-collection-replace .layer-edit-collection-replace-condition table th {
  background-color: var(--main-key-color);
  color: white;
  width: 8rem;
  border-top: 1px solid var(--default-border-color);
  border-left: 1px solid var(--default-border-color);
}
.edit-collection-page .layer-edit-collection-replace .layer-edit-collection-replace-condition table td {
  border-left: 1px solid var(--default-border-color);
}
.edit-collection-page .layer-edit-collection-replace .layer-edit-collection-replace-condition table input[type=date] {
  text-align: center;
}
.edit-collection-page .layer-edit-collection-replace .layer-edit-collection-replace-condition .layer-edit-collection-replace-condition-between {
  width: 3rem;
  text-align: center;
  border: 0 !important;
  background-color: transparent !important;
  font-size: calc(1em + 0.2rem);
}
@media print {
  .edit-collection-page .edit-collection-container {
    overflow: visible !important;
  }
  .edit-collection-page .edit-collection-header-vehicle-container {
    overflow: visible !important;
  }
  .edit-collection-page .edit-collection-body-container {
    overflow: visible !important;
  }
}

.edit-company-page .edit-company-container {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.edit-company-page .edit-company-header {
  width: 48rem;
}
.edit-company-page .edit-company-header h3 {
  margin-bottom: 0.5rem;
}
.edit-company-page .edit-company-header .edit-company-header-short {
  width: 24rem;
}
.edit-company-page .edit-company-header dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}
.edit-company-page .edit-company-header dl > div:not(:last-of-type) input {
  border-bottom: 0;
}
.edit-company-page .edit-company-header dl > div {
  display: flex;
}
.edit-company-page .edit-company-header dl > div dt {
  background-color: var(--main-key-color);
  color: white;
  padding: 0.25rem;
  width: 8rem;
  justify-content: center;
}
.edit-company-page .edit-company-header dl > div dd {
  flex: 1;
}
.edit-company-page .edit-company-header dl > div dd input {
  width: 100%;
}
.edit-company-page .edit-company-body {
  display: flex;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.edit-company-page .edit-company-body .edit-company-body-salary {
  display: flex;
  flex-direction: column;
  width: 48rem;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header .edit-company-body-salary-header-title-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header h3 {
  margin-bottom: 0.25rem;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header dl {
  display: flex;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header dl dt {
  width: 4rem;
  justify-content: center;
  background-color: var(--main-key-color);
  color: white;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header dl input {
  width: 5rem;
  height: 2rem;
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-salary-header button {
  border: 1px solid var(--default-border-color);
  padding: 0.25rem 1rem;
  font-size: calc(1em + 0.1rem);
}
.edit-company-page .edit-company-body .edit-company-body-salary-table thead th {
  background-color: var(--main-key-color);
  color: white;
}
.edit-company-page .edit-company-body .edit-company-body-salary-table tbody td {
  background-color: white;
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-salary-table tbody td input {
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-salary-table .edit-company-body-salary-table-month {
  width: 6rem;
}
.edit-company-page .edit-company-body .edit-company-body-round h3 {
  padding: 0.75rem 0;
}
.edit-company-page .edit-company-body .edit-company-body-round-table th {
  background-color: var(--main-key-color);
  color: white;
}
.edit-company-page .edit-company-body .edit-company-body-round-table td {
  background-color: white;
}
.edit-company-page .edit-company-body .edit-company-body-round-table .edit-company-body-round-table-name {
  width: 10rem;
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-round-table .edit-company-body-round-table-time input {
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-round-table .edit-company-body-round-table-unit {
  width: 3rem;
  text-align: center;
}
.edit-company-page .edit-company-body .edit-company-body-round-table .edit-company-body-round-table-round select {
  width: 8rem;
}
.edit-company-page .edit-company-body .edit-company-body-round-break-table tr th:first-of-type {
  width: 21rem;
}
.edit-company-page .edit-company-body .edit-company-body-round-break-table th {
  background-color: var(--main-key-color);
  color: white;
}
.edit-company-page .edit-company-body .edit-company-body-round-break-table td {
  text-align: center;
  background-color: white;
}
.edit-company-page .edit-company-footer dl {
  display: flex;
}
.edit-company-page .edit-company-footer dl dt {
  background-color: var(--main-key-color);
  color: white;
  padding: 0 0.5rem;
}
.edit-company-page .edit-company-footer dl input {
  width: 8rem;
}

.edit-company-schedule-page main {
  align-items: center;
}
.edit-company-schedule-page .edit-company-schedule-container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  width: 90vw;
  max-width: var(--breakpoint-tab-max);
  overflow: hidden;
}
@media (max-width: 1024px) {
  .edit-company-schedule-page .edit-company-schedule-container {
    width: 100%;
    padding-right: 3.5rem;
  }
}
.edit-company-schedule-page .edit-company-schedule-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.edit-company-schedule-page .edit-company-schedule-header button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.1rem 0.5rem;
  border: 1px solid var(--default-border-color);
  font-size: calc(1em + 0.2rem);
}
.edit-company-schedule-page .edit-company-schedule-header button span {
  padding-bottom: 0.25rem;
}
.edit-company-schedule-page .edit-company-schedule-header dl {
  display: flex;
}
.edit-company-schedule-page .edit-company-schedule-header dl dt {
  background-color: var(--main-key-color);
  color: white;
  padding: 0.5rem 1rem;
}
.edit-company-schedule-page .edit-company-schedule-header dl input {
  text-align: center;
}

.edit-attendance-daily-page .edit-attendance-daily-condition-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}
.edit-attendance-daily-page .edit-attendance-daily-condition-container .edit-attendance-daily-condition-text {
  flex: 1;
  min-width: 20rem;
  max-height: 10rem;
  line-height: 1.75rem;
  color: var(--main-key-color);
  font-size: calc(1em - 2px);
  font-weight: 600;
  overflow: auto;
}
.edit-attendance-daily-page .edit-attendance-daily-condition-container .edit-attendance-daily-condition-date {
  min-width: 8rem;
  text-align: center;
}
.edit-attendance-daily-page .edit-attendance-daily-condition-container .edit-attendance-daily-condition-time {
  min-width: 8rem;
  text-align: center;
}
.edit-attendance-daily-page .edit-attendance-daily-condition-container .edit-attendance-daily-condition-round {
  min-width: 8rem;
  background-color: white;
}
.edit-attendance-daily-page .edit-attendance-daily-condition-container .edit-attendance-daily-condition-round select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
}
.edit-attendance-daily-page .edit-attendance-daily-table tr.focus-row:not(.closed-row) td:not([data-is_not_null=true]), .edit-attendance-daily-page .edit-attendance-daily-table tr.focus-row:not(.closed-row) input:not([data-is_not_null=true]), .edit-attendance-daily-page .edit-attendance-daily-table tr.focus-row:not(.closed-row) select:not([data-is_not_null=true]), .edit-attendance-daily-page .edit-attendance-daily-table tr.focus-row:not(.closed-row) label:not([data-is_not_null=true]) {
  background-color: #c6ffca;
}
.edit-attendance-daily-page .edit-attendance-daily-table td [data-is_not_null=true], .edit-attendance-daily-page .edit-attendance-daily-table input [data-is_not_null=true], .edit-attendance-daily-page .edit-attendance-daily-table select [data-is_not_null=true], .edit-attendance-daily-page .edit-attendance-daily-table label [data-is_not_null=true] {
  background-color: #c4edff !important;
}
.edit-attendance-daily-page .edit-attendance-daily-period-table td {
  text-align: center;
}

.edit-waste-site-page #editWasteSiteTable [name=waste_site_code] {
  font-size: calc(1em + 4px);
}
.edit-waste-site-page #editWasteSiteTable [data-html_value=waste_site_name] {
  vertical-align: bottom;
  padding-bottom: 0.5rem;
}
.edit-waste-site-page #editWasteSiteTable textarea[name=memo] {
  width: 100%;
  height: 100%;
  border: 0;
  resize: none;
}

.edit-template-collection-page #editTemplateCollectionTable [data-html_value=waste_site_name] {
  vertical-align: bottom;
  padding-bottom: 0.5rem;
  white-space: pre-wrap;
}
.edit-template-collection-page #editTemplateCollectionTable [data-html_value=waste_site_memo] {
  height: 100%;
  padding: 0.5rem;
  padding-left: 2.5em;
  font-size: calc(1em - 2px);
  white-space: pre-wrap;
  overflow-y: auto;
}

.report-collection-daily-page .report-list-container {
  display: flex;
  border: 1px solid var(--default-border-color);
  background-color: white;
  overflow: auto;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.report-collection-daily-page .report-list-container ul {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.report-collection-daily-page .report-list-container > ul:not(:first-of-type) {
  border-left: 1px solid var(--default-border-color);
}
.report-collection-daily-page .report-list-container li {
  display: flex;
  min-height: var(--table-row-default-height);
  max-height: var(--table-row-default-height);
}
.report-collection-daily-page .report-list-container li > div {
  display: flex;
  align-items: center;
  padding: 0.25rem;
  border-right: 1px solid var(--default-border-color);
  border-bottom: 1px solid var(--default-border-color);
  white-space: nowrap;
}
.report-collection-daily-page .report-list-container li > div:last-of-type {
  border-right: 0;
}
.report-collection-daily-page .report-list-container ul li:first-of-type {
  position: sticky;
  top: 0;
}
.report-collection-daily-page .report-list-container ul li:nth-of-type(2) {
  position: sticky;
  top: var(--table-row-default-height);
}
.report-collection-daily-page .report-list-container .report-list-header {
  background-color: var(--main-key-color);
  color: white;
}
.report-collection-daily-page .report-list-container .report-list-vehicle {
  background-color: aliceblue;
}
.report-collection-daily-page .report-list-container .report-list-body {
  background-color: white;
}
.report-collection-daily-page .report-list-container .report-list-time {
  min-width: 6rem;
  justify-content: center;
}
.report-collection-daily-page .report-list-container .report-list-name {
  flex: 1;
}

.report-waste-site-monthly-page .report-waste-site-monthly-container table td {
  padding: 0 0.25rem;
}
.report-waste-site-monthly-page .report-waste-site-monthly-container .report-waste-site-monthly-code {
  min-width: 4rem;
  text-align: center;
}
.report-waste-site-monthly-page .report-waste-site-monthly-container .report-waste-site-monthly-name {
  min-width: 8rem;
}
.report-waste-site-monthly-page .report-waste-site-monthly-container .report-waste-site-monthly-short-name {
  min-width: 5rem;
}
.report-waste-site-monthly-page .report-waste-site-monthly-container .report-waste-site-monthly-count {
  min-width: 4rem;
  text-align: center;
}

.report-collection-detail-daily-page .report-collection-detail-daily-container table td {
  padding: 0 0.25rem;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-short {
  min-width: 2rem;
  text-align: center;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-time {
  min-width: 3rem;
  text-align: center;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-name {
  min-width: 7rem;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-number {
  min-width: 3rem;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-count {
  min-width: 4rem;
  text-align: center;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-memo {
  min-width: 3rem;
}
.report-collection-detail-daily-page .report-collection-detail-daily-container .report-collection-dateil-daily-check {
  min-width: 3rem;
  text-align: center;
}

.entry-board-page .entry-board-list-container {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  background-color: white;
  padding: 0.5rem;
  gap: 0.5rem;
  border: 1px solid var(--default-border-color);
}
.entry-board-page .entry-board-list-item {
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
  border: 1px solid #bbb;
}
.entry-board-page .entry-board-list-item-header {
  display: flex;
}
.entry-board-page .entry-board-list-item-header div {
  padding: 0.25rem;
}
.entry-board-page .entry-board-list-item-header div:not(:last-of-type) {
  border-right: 1px solid #bbb;
}
.entry-board-page .entry-board-list-item-body {
  display: flex;
  min-height: 6rem;
  border-top: 1px solid #bbb;
}
.entry-board-page .entry-board-list-item-body-content {
  flex: 1;
  border-right: 1px solid #bbb;
  padding: 0.25rem;
  white-space: pre-wrap;
}
.entry-board-page .entry-board-list-item-delete-btn {
  display: block;
  min-width: 4rem;
}
.entry-board-page .entry-board-form-container {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--default-border-color);
}
.entry-board-page .entry-board-form-condition {
  display: flex;
  height: 2.25rem;
}
.entry-board-page .entry-board-form-condition div:first-of-type {
  min-width: 6rem;
  background-color: var(--main-key-color);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--default-border-color);
}
.entry-board-page .entry-board-form-condition div:last-of-type {
  display: flex;
  flex: 1;
  background-color: white;
}
.entry-board-page .entry-board-form-condition input {
  border: 0;
}
.entry-board-page .entry-board-form-container .entry-board-form-condition:first-of-type {
  border-bottom: 1px solid var(--default-border-color);
}
.entry-board-page .entry-board-form-content {
  display: flex;
  border-top: 1px solid var(--default-border-color);
  height: 10rem;
}
@media (max-width: 1024px) {
  .entry-board-page .entry-board-form-content {
    height: 8rem;
  }
}
.entry-board-page .entry-board-form-content textarea {
  width: 100%;
  border: 0;
}
.entry-board-page .entry-board-form-content button {
  min-width: 4rem;
  max-width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--default-border-color);
}/*# sourceMappingURL=common.css.map */