﻿@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700);

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: Poppins, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: inherit;
}

small,
.text-small {
  font-size: 1.5rem;
  line-height: 2.4rem;
}

p,
.p {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

h3,
.h3 {
  font-size: 3rem;
  line-height: 4.8rem;
}

h2,
.h2 {
  font-size: 3.6rem;
  line-height: 4.8rem;
}

h1,
.h1 {
  font-size: 4.2rem;
  line-height: 4.8rem;
}

article {
  max-width: calc(68ch + 4.8rem);
  margin: 0 auto 2.4rem auto;
}
article small,
article .text-small {
  margin-bottom: 0rem;
}
article p,
article .p {
  margin-bottom: 2.4rem;
}
article h3,
article .h3 {
  margin-bottom: 2.4rem;
}
article h2,
article .h2 {
  margin-bottom: 2.4rem;
}
article h1,
article .h1 {
  margin-bottom: 2.4rem;
}

em {
  font-style: normal;
}

input[type=checkbox],
input[type=radio] {
  accent-color: var(--highlight-color);
}

input[type=text],
input[type=email],
input[type=url],
input[type=number],
input[type=datetime],
input[type=datetime-local],
textarea,
select,
button {
  appearance: none;
  outline: none;
  margin: 1px;
  display: inline-block;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  border-radius: 0.3rem;
  border: 1px solid;
  padding: 0 1.5ch;
}

input[type=text]:disabled,
input[type=email]:disabled,
input[type=url]:disabled,
input[type=number]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
textarea:disabled,
select:disabled {
  opacity: 0.3;
}
input[type=text]:not(:disabled),
input[type=email]:not(:disabled),
input[type=url]:not(:disabled),
input[type=number]:not(:disabled),
input[type=datetime]:not(:disabled),
input[type=datetime-local]:not(:disabled),
textarea:not(:disabled),
select:not(:disabled) {
  opacity: 1;
}

textarea {
  resize: vertical;
}

input[type=text],
input[type=email],
input[type=url],
input[type=number],
input[type=datetime],
input[type=datetime-local],
textarea,
select {
  width: calc(100% - 2px);
  min-height: 3.6rem;
}

button {
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

select {
  min-height: 5.6rem;
  line-height: 5.6rem;
  background: white;
  font-weight: inherit;
}
select:not(:disabled) {
  cursor: pointer;
}

input[type=file] {
  display: none;
}

input[type=file] + label {
  min-height: 2.4rem;
  padding: 1ch;
  background: var(--primary);
  color: white;
  opacity: 1;
  cursor: pointer;
  border-radius: 0.3rem;
  display: inline-flex;
  align-items: center;
}

input[type=file]:disabled + label {
  min-height: 2.4rem;
  padding: 1ch;
  background: var(--grey-80);
  color: black;
  opacity: 0.3;
  width: fit-content;
  cursor: default;
}

table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  min-width: 42rem;
}
table thead th {
  border-bottom: 1px solid var(--elevated-border-color);
  font-size: 1.8rem;
  color: var(--grey-40);
}
table thead th span,
table tbody td span {
  display: flex;
  align-items: center;
  padding: 0 1ch;
}
table thead th span {
  min-height: 4.8rem;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--grey-30);
}
table tbody td span {
  min-height: 2.4rem;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--grey-30);
}
table tbody td span a {
  text-decoration: none;
}
table tbody tr:hover a {
  text-decoration: underline;
}

tbody tr:nth-child(odd) {
  background: var(--grey-90);
}

td {
  font-size: 1.5rem;
  line-height: 2.4rem;
  padding: 0 1ch;
}
td.right {
  text-align: right;
}
td.center {
  text-align: center;
}
td.left {
  text-align: center;
}

body {
  margin: 0;
}

html,
body,
.app-entry,
.docs-root {
  height: 0;
  width: 100dvw;
  max-width: 100%;
  position: static;
  overflow: visible;
}

.layout,
.layout > main,
main > section {
  position: relative;
  display: flex;
}

.layout,
.layout > main,
.layout > aside,
main > section {
  flex-direction: column;
}

div.main {
  padding-top: 13rem;
}

main {
  padding-top: 2.4rem;
}

.layout {
  z-index: 100;
  width: 100dvw;
}
.layout > header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.2rem;
  z-index: 2000;
  padding: 1.2rem;
}
.layout > header .header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
}
.layout > header .header-container > div {
  display: flex;
  gap: 2.4rem;
  padding: 0 2.4rem;
}
.layout > header .header-container > div:last-of-type small {
  align-self: center;
}
.layout > header img {
  max-width: 26.4rem;
  max-height: 4.8rem;
  height: 100%;
  width: auto;
}
.layout > aside .text-options {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
  gap: 0.6rem;
}
.layout > aside .text-options em {
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.2rem;
}
.layout > aside .text-options .form-control.inline {
  margin: 0;
  width: 100%;
}
.layout > aside .text-options .form-control.inline input[type=checkbox] {
  height: 12px;
  width: 12px;
  min-height: 12px;
  min-width: 12px;
}
.layout > aside > footer a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
}
.layout > aside > footer a:hover {
  text-decoration: underline;
}

section {
  padding: 2.4rem;
}

.content-container.small {
  max-width: 74.8rem;
  width: calc(100% - 7.2rem);
  text-align: center;
}
.content-container.small.left {
  text-align: left;
  align-items: flex-start;
}

.page-title figure {
  margin: 0;
  height: 9.6rem;
  width: 9.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
.page-title figure img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.page-title {
  margin-top: 4.8rem;
}

.page-title > .content-container {
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}

.content-container.form {
  width: 100%;
}
.content-container.form form {
  max-width: 74.8rem;
  width: calc(100% - 7.2rem);
}

:root {
  --background-color: #fdfdfd;
  --elevated-background-color: white;
  --elevated-border-color: #e9e9e9;
  --text-color: #393246;
  --text-color-em: black;
  --text-color-muted: #a8a5ad;
  --text-color-inverted: white;
  --grey-100: white;
  --grey-90: #FBFAFA;
  --grey-80: #dfdee0;
  --grey-70: #c4c1c7;
  --grey-60: #a8a5ad;
  --grey-50: #8c8893;
  --grey-40: #706b79;
  --grey-30: #554f60;
  --grey-20: #393246;
  --grey-10: #1D152C;
  --grey-0: black;
  --primary: #0C62B1;
  --primary-shade: #095399;
  --primary-tint: #0c72d1;
  --success: #366D4A;
  --success-shade: #285338;
  --success-tint: #207e42;
  --warning: #C79A4F;
  --warning-shade: #967337;
  --warning-tint: #f3af3a;
  --danger: #9F1922;
  --danger-shade: #79171d;
  --danger-tint: #c41521;
}
:root ::selection {
  background: #D0212E;
  color: white;
}
:root .layout {
  background-color: var(--background-color);
  color: var(--text-color);
}
:root input:not(:disabled),
:root textarea:not(:disabled),
:root select:not(:disabled) {
  border-color: var(--grey-70);
}
:root input:not(:disabled):hover,
:root textarea:not(:disabled):hover,
:root select:not(:disabled):hover {
  border-color: var(--grey-50);
}
:root input:not(:disabled):focus,
:root textarea:not(:disabled):focus,
:root select:not(:disabled):focus {
  box-shadow: 0 0 0 1px #0c72d1;
}
:root textarea {
  resize: vertical;
  min-height: 19.2rem;
  padding-top: 1ch;
  padding-bottom: 1ch;
}
:root .layout.layout-dashboard {
  background-color: var(--grey-90);
}
:root .layout.layout-dashboard > header, :root .layout.layout-dashboard > aside, :root .layout.layout-dashboard > footer {
  background-color: var(--elevated-background-color);
}
:root .layout.layout-dashboard > header {
  border-bottom: 1px solid var(--elevated-border-color);
}
:root .layout.layout-dashboard > aside {
  border-right: 1px solid var(--elevated-border-color);
}
:root .layout.layout-dashboard > footer {
  border-top: 1px solid var(--elevated-border-color);
}

.layout.layout-center {
  background-color: var(--elevated-background-color);
}
.layout.layout-center > header {
  background-color: var(--grey-90);
  border-bottom: 1px solid var(--elevated-border-color);
}
.layout.layout-center > header img {
  mix-blend-mode: multiply;
}

.accordion, .accordion > .item {
  position: relative;
  display: flex;
  flex-direction: column;
}
.accordion .accordion-selects {
  gap: 1.2rem;
  display: flex;
  flex-direction: column;
}

.accordion > .item header {
  height: 4.8rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  cursor: pointer;
  border-bottom: 1px solid var(--elevated-border-color);
}
.accordion > .item header em {
  font-style: normal;
  font-weight: 500;
}
.accordion > .item .body {
  height: 0;
  transition: all 160ms ease-out;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.accordion.item-0-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-0-open .item:nth-child(1) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-1-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-1-open .item:nth-child(2) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-2-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-2-open .item:nth-child(3) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-3-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-3-open .item:nth-child(4) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-4-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-4-open .item:nth-child(5) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-5-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-5-open .item:nth-child(6) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-6-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-6-open .item:nth-child(7) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-7-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-7-open .item:nth-child(8) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-8-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-8-open .item:nth-child(9) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-9-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-9-open .item:nth-child(10) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-10-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-10-open .item:nth-child(11) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-11-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-11-open .item:nth-child(12) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

.accordion.item-12-open ::-webkit-scrollbar {
  display: none;
}
.accordion.item-12-open .item:nth-child(13) > .body {
  height: 28.8rem;
  overflow-y: auto;
  scrollbar-width: 0;
  border-bottom: 1px solid var(--elevated-border-color);
  padding: 1.2rem;
}

button {
  min-height: 4.8rem;
  min-width: 4.8rem;
}
button:not(:disabled) {
  cursor: pointer;
  opacity: 1;
}
button:not(:disabled).primary {
  background-color: #0C62B1;
  color: white;
}
button:not(:disabled).primary:hover {
  background-color: #095399;
}
button:not(:disabled).default {
  background-color: #554f60;
  color: white;
}
button:not(:disabled).default:hover {
  background-color: #3b3842;
}
button:not(:disabled).cancel {
  background-color: #d2cfd4;
  color: black;
}
button:not(:disabled).cancel:hover {
  background-color: #beb9c1;
}
button:not(:disabled).success {
  background-color: #366D4A;
  color: white;
}
button:not(:disabled).success:hover {
  background-color: #285338;
}
button:not(:disabled).warning {
  background-color: #C79A4F;
  color: white;
}
button:not(:disabled).warning:hover {
  background-color: #967337;
}
button:not(:disabled).danger {
  background-color: #9F1922;
  color: white;
}
button:not(:disabled).danger:hover {
  background-color: #79171d;
}

button.delete {
  background: transparent;
  border: 1px solid var(--danger);
  color: var(--danger-shade);
}
button.delete:hover {
  background: var(--danger);
  color: white;
}
button.confirm-delete {
  background: var(--danger);
  color: white;
}
button.confirm-delete:hover {
  background: var(--danger-shade);
}
button.primary.subtle, button.primary.subtle:hover {
  background: transparent;
  color: var(--primary);
}
button.subtle.remove {
  font-size: 2.4rem;
  aspect-ratio: 1;
  align-self: flex-end;
  max-height: 4.8rem;
  margin-bottom: 2.4rem;
}

.toolbar-btn {
  border: 1px solid var(--grey-80);
  padding: 0;
  aspect-ratio: 1;
  min-height: 3.6rem;
  min-width: 3.6rem;
  position: relative;
  background: var(--background-color);
  color: var(--grey-50);
}
.toolbar-btn .bead {
  position: absolute;
  min-height: 1.2rem;
  min-width: 1.2rem;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  border-radius: 2.4rem;
}
.toolbar-btn.record {
  aspect-ratio: unset;
  padding: 0 2ch;
}
.toolbar-btn.record small {
  display: inline-flex;
  flex-wrap: nowrap;
}
.toolbar-btn.record b,
.toolbar-btn.record span {
  font-size: 1.2rem;
  white-space: nowrap;
}
.toolbar-btn.record span {
  overflow: hidden;
  text-overflow: ellipsis;
}

form,
fieldset {
  display: flex;
  flex-direction: column;
}

fieldset {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
fieldset legend {
  font-size: 2.4rem;
  color: var(--grey-60);
}

form {
  max-width: 96rem;
  margin: 2.4rem auto;
}
form footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.4rem;
}
form footer button {
  min-width: 12rem;
}

form .row {
  flex-direction: row;
  gap: 2.4rem;
}
form .row,
form .col {
  display: flex;
}
form .col {
  align-items: stretch;
  flex-direction: column;
}
form .col .form-control {
  flex: 1;
  width: 100%;
}

.form-control {
  display: flex;
  flex-direction: column;
  position: relative;
  width: fit-content;
  flex: 0 auto;
  margin-bottom: 2.4rem;
}
.form-control.width-auto {
  flex: 1 0 auto;
}
.form-control label {
  flex: 1;
  font-size: 1.5rem;
  line-height: 2.4rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  margin-left: 1px;
  margin-right: 1px;
  justify-content: flex-end;
}
.form-control label small {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.form-control input {
  min-height: 4.8rem;
  min-width: 4ch;
  border: 1px solid;
  border-radius: 3px;
  padding: 0 1ch;
  width: calc(100% - 2px);
}
.form-control input[type=date] {
  margin: 1px;
}
.form-control input,
.form-control textarea,
.form-control select {
  min-width: 30rem;
}
.form-control input:not(:disabled),
.form-control textarea:not(:disabled),
.form-control select:not(:disabled) {
  border-color: var(--grey-70);
}
.form-control input:not(:disabled):hover,
.form-control textarea:not(:disabled):hover,
.form-control select:not(:disabled):hover {
  border-color: var(--grey-50);
}
.form-control input:not(:disabled):focus,
.form-control textarea:not(:disabled):focus,
.form-control select:not(:disabled):focus {
  box-shadow: 0 0 0 1px #0c72d1;
}
.form-control select {
  width: 100%;
  max-height: 4.8rem;
  min-height: 4.8rem;
}
.form-control input[type=radio], .form-control input[type=checkbox] {
  min-height: 1.2rem;
  min-width: 1.2rem;
  height: 1.2rem;
  width: 1.2rem;
  aspect-ratio: 1;
}
.form-control.error input:not(:disabled), .form-control.error input:not(:disabled):hover,
.form-control.error textarea:not(:disabled),
.form-control.error textarea:not(:disabled):hover,
.form-control.error select:not(:disabled),
.form-control.error select:not(:disabled):hover {
  border-color: var(--danger-shade);
}
.form-control.error input:not(:disabled):focus,
.form-control.error textarea:not(:disabled):focus,
.form-control.error select:not(:disabled):focus {
  box-shadow: 0 0 0 1px #c41521;
}
.form-control.error small.control-error {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  font-size: 1.2rem;
  color: var(--danger-shade);
}

.form-control.inline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4.8rem;
}
.form-control.inline label {
  white-space: nowrap;
}
.form-control.inline input {
  max-width: 12px;
}
.form-control.inline input[type=checkbox],
.form-control.inline input[type=radio], .form-control.inline.error input[type=checkbox],
.form-control.inline.error input[type=radio] {
  padding: 0;
  outline: none;
  box-shadow: none;
}

.form-control.image {
  flex: 1;
}
.form-control.image > input[type=url] {
  padding-right: 5rem;
}
.form-control.image .form-control.inline {
  position: absolute;
  right: 0;
  top: 2.88rem;
}
.form-control.image .form-control.inline label {
  height: 4.7rem;
  width: 4.7rem;
}

.record-form {
  position: relative;
  width: 100%;
}
.record-form header h2 {
  font-weight: 500;
  color: var(--grey-40);
}
.record-form.small .tabbed-view {
  padding: 1px;
  width: 100%;
}

.edit-record-form select,
.create-record-form select {
  line-height: 42px;
}
.edit-record-form .form-control label,
.create-record-form .form-control label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.edit-record-form .form-control label span,
.create-record-form .form-control label span {
  padding-left: 0.5ch;
}
.edit-record-form .row.address,
.create-record-form .row.address {
  margin-bottom: 24px;
}
.edit-record-form .row.address label,
.create-record-form .row.address label {
  flex: 0;
}
.edit-record-form .row.address .form-control,
.create-record-form .row.address .form-control {
  margin-bottom: 0;
  flex: auto;
}
.edit-record-form .row.address textarea,
.create-record-form .row.address textarea {
  min-height: 160px;
}
.edit-record-form .row.address .col,
.create-record-form .row.address .col {
  justify-content: space-between;
}
.edit-record-form .input-grid,
.create-record-form .input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.toggle {
  position: relative;
  gap: 0.6rem;
  min-height: 4.8rem;
}
.toggle input[type=radio] {
  visibility: hidden;
  position: absolute;
  height: 0;
  width: 0;
  padding: 0;
  margin: 0;
}
.toggle label {
  color: var(--grey-50);
  border: 2px solid var(--grey-70);
  border-radius: 0.3rem;
  min-height: 3.8rem;
  line-height: 3.8rem;
  padding: 0 1.5ch;
}
.toggle,
.toggle label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.toggle input[type=radio]:checked + label {
  color: var(--primary);
  border-color: var(--primary-tint);
}

.card {
  min-width: 21.6rem;
  max-width: 28.8rem;
  width: fit-content;
  background: var(--elevated-background-color);
  border: 1px solid var(--elevated-border-color);
  padding: 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 53.2rem) {
  .card {
    margin: 0 auto;
  }
}
.card,
.card figure {
  border-radius: 0.3rem;
}
.card.selectable {
  cursor: pointer;
}
.card.selectable:hover {
  border-color: var(--grey-60);
}
.card.selectable.selected {
  border-color: var(--primary);
}
.card figure {
  flex: 1;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 0 1.8rem 0;
  overflow: hidden;
  display: grid;
  place-content: center;
  position: relative;
}
.card figure img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.card .body,
.card .body p {
  font-size: 1.5rem;
}
.card .body em {
  font-size: 1.8rem;
  font-weight: 400;
}

.card-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin: 0 auto;
}
.card-grid .card {
  flex: 1;
  min-width: 250px;
}
@media screen and (min-width: 1060px) {
  .card-grid.edit-product {
    min-width: 960px;
    max-width: 960px;
  }
}

.subtle-card {
  width:350px;
  cursor: pointer;
  margin:15px;
  background-color:#e5e5e5;
  padding:15px;
  border-radius:15px;
}
.subtle-card p {
  font-size: 1.2rem;
  line-height: 1.8rem;
  min-height: 3.6rem;
}
.subtle-card a.icon {
  font-size: 9.6rem;
  margin: 2.4rem auto;
  width: fit-content;
  color: inherit;
  display: flex;
  opacity: 0.8;
}
.subtle-card h3 {
  font-size: 2.4rem;
  text-align: center;
  color: inherit;
}
.subtle-card a {
  text-decoration: none;
  color: var(--primary);
}
.subtle-card:hover a:not(.icon) {
  text-decoration: underline;
}

.selectable-frame {
  cursor: pointer;
}
.selectable-frame, .selectable-frame > div {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}
.selectable-frame figure {
  margin: 0;
  display: grid;
  place-content: center;
  width: 4.8rem;
  aspect-ratio: 1;
  position: relative;
}
.selectable-frame figure.selected {
  box-shadow: 0 0 0 3px var(--primary);
  border: 2px solid var(--elevated-background-color);
}
.selectable-frame figure, .selectable-frame figure > img {
  border-radius: 0.3rem;
}
.selectable-frame figure img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.selectable-frame figure button {
  position: absolute;
  padding: 0;
  min-height: 1.8rem;
  min-width: 1.8rem;
  line-height: 0;
  top: 0;
  right: 0;
  transform: translate(0, 0);
  z-index: -100;
  transition: transform 80ms ease-out;
  background: var(--grey-10);
  border-radius: 1.86rem;
  color: var(--grey-90);
  opacity: 0;
}
.selectable-frame figure:hover button {
  opacity: 1;
  transform: translate(50%, -50%);
  z-index: 100;
}
.selectable-frame > div:last-of-type button {
  min-height: 3.6rem;
  min-width: 3.6rem;
  padding: 0;
  background: linear-gradient(white 50%, var(--grey-90));
  border-color: var(--grey-80);
}
.selectable-frame > div:last-of-type button small {
  font-size: 1.2rem;
  padding: 0 2ch;
}

.tabbed-view {
  min-height: 28.8rem;
  gap: 2.4rem;
}
.tabbed-view,
.tabbed-view header,
.tabbed-view .body {
  display: flex;
  position: relative;
}
.tabbed-view,
.tabbed-view .body {
  flex-direction: column;
}
.tabbed-view .body {
  width: 100%;
  min-height: 40%;
  overflow-y: auto;
  flex: 1;
}
.tabbed-view header {
  gap: 0.6rem;
}
.tabbed-view header .tab {
  min-height: 3.8rem;
  border: 1px solid var(--grey-70);
  position: relative;
  border-radius: 0.3rem;
  overflow: hidden;
}
.tabbed-view header .tab label {
  height: 100%;
  display: flex;
  align-items: center;
}
.tabbed-view header input {
  position: absolute;
  top: 0;
  left: -100dvw;
  opacity: 1;
  z-index: -1000;
}
.tabbed-view header input:checked + label {
  background: var(--grey-20);
  color: var(--grey-90);
}
.tabbed-view header label {
  padding: 0 1.5ch;
}
.tabbed-view header .tab,
.tabbed-view header label {
  cursor: pointer;
}

.stepper-frame {
  max-width: 96rem;
  margin: 0 auto 4.8rem;
  flex-direction: column;
}
.stepper-frame,
.stepper-frame footer {
  display: flex;
}
.stepper-frame footer {
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.4rem;
  margin-top: 2.4rem;
}
.stepper-frame footer button {
  min-width: 16.6rem;
}

.select-image-frame {
  max-height: 20rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  flex: 1;
}
.select-image-frame img {
  object-fit: cover;
  height: 79px;
  width: 79px;
  border-radius: 3px;
  cursor: pointer;
}
.select-image-frame img.selected {
  border: 2px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}

.select-divider-frame {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.select-divider-frame img.selected {
  border: 2px solid white;
  box-shadow: 0 0 0 3px var(--primary);
}

.select-image-frame + .file-btn label {
  width: 100%;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.carousel-root {
  position: relative;
  width: 100%;
  margin-top: 4.8rem;
}
.carousel-root > em {
  padding-left: 64px;
  font-size: 3.6rem;
}
.carousel-root .carousel {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.carousel-root .carousel > button {
  align-self: center;
  border-radius: 4.8rem;
  background: var(--grey-30);
  color: white;
  font-size: 24px;
  aspect-ratio: 1;
  opacity: 0.4;
}
.carousel-root .carousel > button:hover {
  opacity: 1;
}
.carousel-root .carousel .track.card-grid {
  margin: 0;
  flex-wrap: nowrap;
  width: 70dvw;
}
.carousel-root .carousel .card {
  opacity: 0;
  animation: fade-in 200ms ease-out forwards;
}

.modal-root > .body.cart header > em {
  font-size: 2.4rem;
}
.modal-root > .body.cart .item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
}
.modal-root > .body.cart .item:not(:last-of-type) {
  border-bottom: 1px solid var(--elevated-border-color);
}
.modal-root > .body.cart .item button {
  font-size: 4.2rem;
  color: var(--danger);
  padding: 0;
  line-height: 0;
  background: transparent;
}
.modal-root > .body.cart .item button:hover {
  background: var(--danger-shade);
  color: white;
}
.modal-root > .body.cart .item figure {
  margin: 0;
  height: 56px;
  width: 56px;
  position: relative;
  border: 1px solid var(--elevated-border-color);
  border-radius: 0.3rem;
}
.modal-root > .body.cart .item figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.modal-root > .body.cart .item p {
  flex: 1;
  text-align: center;
}
.modal-root > .body.cart footer button {
  min-width: 20rem;
}

.modal-root.proceed .checkboxes {
  display: flex;
  flex-direction: column;
}
.modal-root.proceed .checkboxes input {
  min-height: 12px;
  min-width: 12px;
}
.modal-root.proceed .checkboxes .form-control.inline {
  flex-direction: row-reverse;
  gap: 0.6rem;
  margin: 0;
}
.modal-root.proceed .checkboxes .form-control.inline label {
  white-space: nowrap;
}
.modal-root.proceed .stack button {
  justify-content: flex-start;
}

.field-array .fieldnames span {
  display: inline-block;
  min-width: 302px;
  font-weight: 700;
  color: var(--grey-40);
}
.field-array .items button {
  background: transparent;
  color: var(--danger);
}
.field-array .new-item button {
  background: var(--primary);
  color: white;
}

.search-records-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: calc(100% - 7.2rem);
  max-width: 76rem;
  margin: 0 auto;
  overflow-x: hidden;
}
@Media screen and (min-width: 1000px) {
  .search-records-container {
    display: grid;
    grid-template-columns: 1fr 200px;
  }
  .search-records-container input {
    grid-column: span 2;
  }
  .search-records-container table {
    order: 1;
  }
  .search-records-container .recent {
    order: 2;
  }
}
.search-records-container table {
  order: 2;
}
.search-records-container table td.sm {
  width: 12rem;
}
.search-records-container .table-action {
  font-size: 1.8rem;
  padding: 0;
}
.search-records-container .table-action, .search-records-container .table-action.primary {
  background: transparent;
  color: grey;
}
.search-records-container .table-action:hover {
  color: var(--success);
  background: rgba(128, 128, 128, 0.08);
}
.search-records-container .table-action.primary:hover {
  color: var(--primary);
  background: rgba(128, 128, 128, 0.08);
}
.search-records-container .recent em {
  font-weight: 700;
  color: var(--grey-40);
  text-align: center;
}
.search-records-container .recent,
.search-records-container .recent ul {
  display: flex;
  flex-direction: column;
}
.search-records-container .recent ul {
  padding: 0;
  list-style: none;
}
.search-records-container .recent ul li {
  overflow-x: hidden;
  text-overflow: ellipsis;
  line-height: 2.4rem;
}

.content-container {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center;
}

.force-center-content {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.force-center {
  justify-self: center;
  align-self: center;
  text-align: center;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.v-center {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.editor-viewport {
  background: #f3f2f2;
  position: fixed;
  z-index: 0;
  top: 168px;
  left: 0;
  width: 100svw;
  height: calc(100svh - 168px);
  border-top: 1px solid var(--grey-80);
}
.editor-viewport .workspace {
  overflow: scroll;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 4.8rem 0;
  max-height: 100%;
}
.editor-viewport .workspace .canvasContainer {
  height: 1056px;
  width: 816px;
  position: relative;
  margin: 0 auto;
}
.editor-viewport .workspace canvas {
  display: block;
  margin: 0 auto 4.8rem;
  background: transparent;
  border: 1px solid var(--grey-70);
  position: absolute;
  top: 0;
  left: 0;
}
.editor-viewport header {
  background: var(--grey-90);
  border-bottom: 1px solid var(--grey-80);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
}
.editor-viewport header .right {
  flex: 1;
  justify-content: center;
}
.editor-viewport header .left {
  position: absolute;
}
.editor-viewport header .left a {
  text-decoration: none;
}
.editor-viewport header .left a:hover {
  text-decoration: underline;
}
.editor-viewport header,
.editor-viewport header .right {
  display: flex;
  align-items: center;
}
.editor-viewport .view-switch {
  display: flex;
  height: 3.6rem;
}
.editor-viewport .view-switch .radio {
  display: inline-flex;
}
.editor-viewport .view-switch .radio label {
  padding: 0.6rem 1.2rem;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.editor-viewport .view-switch .radio input {
  position: absolute;
  opacity: 0;
}
.editor-viewport .view-switch .radio input:checked + label {
  background: var(--primary);
  color: white;
}
.editor-viewport .view-switch .radio:not(:last-of-type) {
  border-right: 1px solid var(--grey-80);
}

.editor-viewport .data-menu-left,
.editor-viewport .data-menu-right {
  position: absolute;
  right: 0;
  z-index: 1000;
  background: white;
  border-left: 1px solid var(--grey-70);
  padding: 1.2rem 2.4rem;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.13);
  width: 36rem;
  max-width: 36rem;
  overflow-y: auto;
}
.editor-viewport .data-menu-left .title-control,
.editor-viewport .data-menu-right .title-control {
  display: flex;
  align-items: center;
}
.editor-viewport .data-menu-left .title-control button,
.editor-viewport .data-menu-right .title-control button {
  padding: 0;
  background: transparent;
}
.editor-viewport .data-menu-left .title-control button i,
.editor-viewport .data-menu-right .title-control button i {
  font-size: 2rem;
  color: var(--grey-50);
}
.editor-viewport .data-menu-left .title-control:hover button i,
.editor-viewport .data-menu-right .title-control:hover button i {
  color: var(--danger-tint);
}
.editor-viewport .data-menu-left .justify,
.editor-viewport .data-menu-right .justify {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.editor-viewport .data-menu-left .color-control,
.editor-viewport .data-menu-right .color-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.editor-viewport .data-menu-left .color-control input,
.editor-viewport .data-menu-right .color-control input {
  height: 48px;
  min-width: 55px;
  width: 55px;
  max-height: 48px;
  padding: 0 2px;
  border-radius: 2px;
  display: inline-block;
  background: white;
  cursor: pointer;
}
.editor-viewport .data-menu-left .sub-radio,
.editor-viewport .data-menu-right .sub-radio {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 24px;
}
.editor-viewport .data-menu-left .title-bar,
.editor-viewport .data-menu-right .title-bar {
  font-size: 2.4rem;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.editor-viewport .data-menu-left .title-bar i,
.editor-viewport .data-menu-right .title-bar i {
  opacity: 0.67;
  font-size: 3.6rem;
  color: var(--danger-tint);
}
.editor-viewport .data-menu-left .menu,
.editor-viewport .data-menu-right .menu {
  margin-bottom: 1.8rem;
}
.editor-viewport .data-menu-left .menu-position div,
.editor-viewport .data-menu-right .menu-position div {
  display: flex;
  gap: 1.2rem;
}
.editor-viewport .data-menu-left .v-radio-group,
.editor-viewport .data-menu-right .v-radio-group {
  display: flex;
  flex-direction: column;
}
.editor-viewport .data-menu-left .v-radio-group .radio,
.editor-viewport .data-menu-right .v-radio-group .radio {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.6rem;
  gap: 0.6rem;
}
.editor-viewport .data-menu-left select,
.editor-viewport .data-menu-right select {
  line-height: 4.8rem;
}
.editor-viewport .data-menu-left select:disabled,
.editor-viewport .data-menu-right select:disabled {
  opacity: 0.6;
  color: black;
  border-color: var(--grey-80);
}

.editor-viewport .data-menu-right {
  top: 23.7rem;
  padding-bottom: 4.8rem;
  max-height: calc(100svh - 40.6rem);
}
.editor-viewport .data-menu-right .dims, .editor-viewport .data-menu-right .dims-col {
  display: flex;
}
.editor-viewport .data-menu-right .dims {
  gap: 2ch;
  flex-direction: row;
  margin-bottom: 2.4rem;
}
.editor-viewport .data-menu-right #changeCurrentNodeImage {
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
}
.editor-viewport .data-menu-right .font-size-control {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 2ch;
}
.editor-viewport .data-menu-right .font-size-control select {
  min-width: 6ch;
  flex: 0;
  text-align: center;
}
.editor-viewport .data-menu-right .dims-col {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 164px;
  margin-right: auto;
  flex: 1;
}
.editor-viewport .data-menu-right .dims-col span {
  display: none;
}
.editor-viewport .data-menu-right .dims-col input {
  min-width: 6ch;
  flex: 0;
  padding: 1ch;
}

.editor-viewport .data-menu-left {
  top: 3.7rem;
  border-top: 1px solid var(--grey-70);
  border-bottom: 1px solid var(--grey-70);
}
.editor-viewport .data-menu-left .title-bar {
  font-size: 2.4rem;
  margin-top: 1.2rem;
  margin-bottom: 2.4rem;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.editor-viewport .data-menu-left .title-bar i {
  opacity: 0.67;
  font-size: 3.6rem;
  color: var(--danger-tint);
}

.pdf-doc {
  height: 11in;
  width: 8.5in;
  position: relative;
  margin: 96px auto;
  box-shadow: 0 0 0 1px var(--grey-70);
}
.pdf-doc .background,
.pdf-doc .content {
  position: absolute;
  height: 100%;
  width: 100%;
  border: 0.25in solid white;
}
.pdf-doc .content {
  display: flex;
  flex-direction: column;
}
.pdf-doc .background {
  object-fit: contain;
  z-index: 1;
}
.pdf-doc .background img {
  width: 100%;
  height: 100%;
}
.pdf-doc .panel {
  overflow: hidden;
}
.pdf-doc .content {
  z-index: 10;
}
.pdf-doc .italic {
  font-style: italic;
}
.pdf-doc .full {
  flex: 1;
}
.pdf-doc .serif {
  font-family: Georgia, "Times New Roman", Times, serif;
}
.pdf-doc .center-content {
  display: grid;
  place-content: center;
}
.pdf-doc .bottom-content {
  display: grid;
  align-content: flex-end;
}
.pdf-doc .bold {
  font-weight: 700;
}
.pdf-doc .center {
  text-align: center;
}
.pdf-doc .lg {
  font-size: 48px;
  line-height: 60px;
}

#blazor-error-ui {
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--danger);
  color: white;
  z-index: 3000;
  border-radius: 0 3px 0 0;
  font-size: 12px;
  padding: 0 12px;
  opacity: 0.4;
  font-weight: 500;
  transition: opacity 80ms ease-out;
}
#blazor-error-ui:hover {
  opacity: 1;
}
#blazor-error-ui a,
#blazor-error-ui a:visited {
  color: white;
}

.min-btn {
  display: inline-flex;
  margin: 24px 0;
  align-self: flex-start;
}

.content-container.lg {
  max-width: 96rem;
}

.stepper-frame.md input {
  width: 100%;
  min-width: 8ch;
}

.submenu {
  padding-left: 72px;
  padding: 2px 2px 72px 2px;
  max-height: 48px;
  border-bottom: 1px solid var(--grey-80);
}
.submenu .selectable-frame {
  max-width: fit-content;
  margin: 0 auto 0 0;
  padding-left: 72px;
}
.submenu .selectable-frame button {
  opacity: 0;
  height: 0;
  width: 0;
  padding: 0;
}
.submenu .selectable-frame figure {
  height: 48px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 10px;
  line-height: 12px;
}

div.main:has(.submenu) {
  padding-top: 72px;
}

.modal-root {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-root,
.modal-root .backdrop {
  top: 0;
  left: 0;
}
.modal-root .backdrop {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: blur(3px);
}
.modal-root .body {
  min-height: 28.8rem;
  min-width: 28.8rem;
  max-width: 96rem;
  background: white;
  border-radius: 0.6rem;
  padding: 2.4rem;
  border: 1px solid var(--elevated-border-color);
  width: calc(100% - 96px);
  flex-direction: column;
  gap: 2.4rem;
}
.modal-root .body,
.modal-root .body header,
.modal-root .body footer {
  display: flex;
}
.modal-root .body .body-container {
  flex: 1;
  max-height: 60dvh;
  overflow: auto;
}
.modal-root .body header,
.modal-root .body footer {
  justify-content: space-between;
}
.modal-root .body header {
  align-items: center;
  border-bottom: 1px solid var(--elevated-border-color);
  padding-bottom: 1.2rem;
}
.modal-root .body header button {
  font-size: 4.8rem;
  padding: 0;
  line-height: 0;
  background: transparent;
  opacity: 0.4;
}
.modal-root .body header button:hover {
  opacity: 1;
}
.modal-root .body footer {
  align-items: flex-end;
}

.layout.layout-center {
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: 0;
}
.layout.layout-center article h1 {
  opacity: 0.7;
}
.layout.layout-center main {
  max-width: 100%;
  flex: 1;
}
.layout.layout-center main > section:first-of-type {
  padding-bottom: 0;
}
.layout.layout-center main > section:nth-of-type(2) {
  padding-top: 0;
}
.layout.layout-center .page-title {
  opacity: 0.7;
}
.layout.layout-center article {
  margin-bottom: 0;
}
.layout.layout-center .page-title + p {
  display: flex;
  justify-content: space-between;
}
.layout.layout-center .page-title + p b {
  color: var(--grey-40);
}

.layout.layout-center.preview main {
  background: var(--grey-80);
}
.layout.layout-center.preview aside {
  position: fixed;
  top: 7.2rem;
  right: 0;
  background: white;
  height: calc(100dvh - 7.2rem);
  padding: 1.2rem;
  border-left: 1px solid var(--grey-70);
  min-width: 34.8rem;
}
.layout.layout-center.preview aside header {
  text-align: center;
}
.layout.layout-center.preview aside,
.layout.layout-center.preview aside footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.layout.layout-center.preview aside .body {
  flex: 1;
}
.layout.layout-center.preview .image-grid {
  margin: 4.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  max-width: 27rem;
}
.layout.layout-center.preview .image-grid img {
  border-radius: 0.3rem;
  border: 1px solid white;
  object-fit: cover;
  object-position: center center;
}
.layout.layout-center.preview .image-grid img.selected {
  box-shadow: 0 0 0 4px var(--primary);
}

.large-icon {
  height: 30rem;
  min-width: 30rem;
  width: 100%;
  margin-bottom: 9.6rem;
}
.large-icon .fill {
  height: 19.2rem;
  width: 19.2rem;
  border-radius: 19.2rem;
  background: var(--success);
  font-size: 18.8rem;
  color: white;
}
.large-icon,
.large-icon .fill {
  display: grid;
  place-content: center;
}

.open-existing .search-area {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.4rem;
}
.open-existing .recent-card {
  border: 1px solid;
  border-radius: 0.3rem;
  border-color: var(--grey-70);
}
.open-existing .recent-card header {
  font-size: 2.4rem;
  padding: 1ch;
  background: var(--grey-90);
  border-bottom: 1px solid var(--grey-70);
  text-align: center;
}
.open-existing .recent-card ul {
  padding: 2ch;
  margin: 0;
  list-style: none;
  display: flex;
  max-width: calc(320px + 4ch);
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
}
.open-existing .recent-card ul li {
  max-width: 98px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
}

.open-existing .search-results {
  position: absolute;
  z-index: 10;
  border-radius: 0.3rem;
  border: 1px solid var(--grey-70);
  background: white;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(calc(100% + 3px));
  box-shadow: 0 3px 18px -8px rgba(0, 0, 0, 0.2);
}
.open-existing .search-results ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.open-existing .search-results ul li {
  font-size: 1.2rem;
  padding: 0 1.5ch;
  cursor: pointer;
  user-select: none;
}
.open-existing .search-results ul li:not(:last-child) {
  border-bottom: 1px solid var(--grey-70);
}
.open-existing .search-results ul li:hover {
  background: var(--grey-90);
}

.modal-root {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-root,
.modal-root .backdrop {
  top: 0;
  left: 0;
}
.modal-root .backdrop {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: blur(3px);
}
.modal-root .body {
  min-height: 28.8rem;
  min-width: 28.8rem;
  max-width: 96rem;
  background: white;
  border-radius: 0.6rem;
  padding: 2.4rem;
  border: 1px solid var(--elevated-border-color);
  width: calc(100% - 96px);
  flex-direction: column;
  gap: 2.4rem;
}
.modal-root .body,
.modal-root .body header,
.modal-root .body footer {
  display: flex;
}
.modal-root .body .body-container {
  flex: 1;
  max-height: 60dvh;
  overflow: auto;
}
.modal-root .body header,
.modal-root .body footer {
  justify-content: space-between;
}
.modal-root .body header {
  align-items: center;
  border-bottom: 1px solid var(--elevated-border-color);
  padding-bottom: 1.2rem;
}
.modal-root .body header button {
  font-size: 4.8rem;
  padding: 0;
  line-height: 0;
  background: transparent;
  opacity: 0.4;
}
.modal-root .body header button:hover {
  opacity: 1;
}
.modal-root .body footer {
  align-items: flex-end;
}

::-webkit-scrollbar {
  display: none;
}

.layout.layout-dashboard {
  padding-left: 28.8rem;
}
.layout.layout-dashboard > header > .header-container > div:last-child {
  gap: 0.6rem;
}
.layout.layout-dashboard > header .toolbar-btn {
  min-width: 3.6rem;
}
.layout.layout-dashboard > header .success,
.layout.layout-dashboard > header .undo,
.layout.layout-dashboard > header .reset,
.layout.layout-dashboard > header .toolbar-btn {
  min-height: 3.6rem;
  max-height: 3.6rem;
  padding-top: 0;
  padding-bottom: 0;
}
.layout.layout-dashboard > header .reset {
  background: var(--grey-30);
  color: white;
}
.layout.layout-dashboard > header .success,
.layout.layout-dashboard > header .undo,
.layout.layout-dashboard > header .reset {
  font-size: 1.2rem;
}
.layout.layout-dashboard > aside, .layout.layout-dashboard > footer {
  position: fixed;
  z-index: 500;
}
.layout.layout-dashboard aside {
  top: 7.2rem;
  height: calc(100dvh - 7.3rem);
  width: 28.8rem;
  left: 0;
  display: flex;
  flex-direction: column;
}
.layout.layout-dashboard aside .aside-container {
  flex: 1;
}
.layout.layout-dashboard aside footer {
  padding: 1.2rem;
  text-align: center;
}
.layout.layout-dashboard > footer {
  min-height: 7.2rem;
  left: 28.8rem;
  bottom: 0;
  width: calc(100dvw - 28.8rem);
  padding: 0 1.2rem;
}
.layout.layout-dashboard .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.2rem;
  min-height: 4.8rem;
  max-height: 4.8rem;
}
.layout.layout-dashboard .footer-container button {
  min-width: 14.4rem;
}
.layout.layout-dashboard .footer-container .paging > div {
  padding: 0 1.2rem;
}
.layout.layout-dashboard .footer-container .paging > div input[type=number] {
  min-height: 4.8rem;
  min-width: 4.8rem;
  max-width: 4.8rem;
  appearance: textfield;
  text-align: center;
  padding: 0;
}
.layout.layout-dashboard .footer-container .paging > div input[type=number]::-webkit-outer-spin-button, .layout.layout-dashboard .footer-container .paging > div input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.layout.layout-dashboard .footer-container .paging > div input[type=number]:read-only {
  border-color: transparent;
}
.layout.layout-dashboard .footer-container .paging > div input[type=number].subtle {
  border-color: transparent;
}
.layout.layout-dashboard .footer-container .paging > div input[type=number].subtle:hover {
  border-color: var(--grey-70);
}
.layout.layout-dashboard .footer-container .paging,
.layout.layout-dashboard .footer-container .paging > div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.layout.layout-dashboard .footer-container .paging button {
  max-width: 4.8rem;
  min-width: 4.8rem;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
}
.layout.layout-dashboard .footer-container .paging button:disabled {
  opacity: 0.4;
}
.layout.layout-dashboard .footer-container .paging button:not(:disabled) {
  opacity: 1;
}
.layout.layout-dashboard .footer-container .paging button:not(:disabled):hover {
  background: var(--grey-90);
  border-color: var(--grey-80);
}

.imagebutton {
  margin-bottom: 9px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2rem;
}
