:root {
  --sms-primary: #ffd600;
  --sms-primary-rgb: 255, 214, 0;

  --sms-primary-shade: #c7a500;
  --sms-primary-shade-rgb: 199, 165, 0;
  --sms-primary-tint: #ffff52;

  --sms-secondary: #ff5600;
  --sms-error: #b00020;

  --sms-on-primary: #000;
  --sms-on-primary-rgb: 0, 0, 0;

  --sms-background: #f5f5f5;
  --sms-on-background: #121212;
  --sms-on-background-rgb: 0, 0, 0;
  --sms-surface: #fff;
  --sms-on-surface-rgb: 18, 18, 18;
  --sms-th-rgb: 0, 0, 0;

  --sms-contrast-background: #e5e5e5;
  --sms-actions-color: #1e2c35;

  --sms-drawer-color: #1c2931;
  --sms-dark-color: #1c2931;
  --sms-background-inside: white;
  --sms-shadow: 0px 2px 1px -1px rgba(var(--sms-on-background-rgb), 0.2),
    0px 1px 1px 0px rgba(var(--sms-on-background-rgb), 0.14), 0px 1px 3px 0px rgba(var(--sms-on-background-rgb), 0.12);
  --sms-nav-border: #ddd;
}

:root.dark {
  --sms-background: #121212;
  --sms-on-background: #fff;
  --sms-on-background-rgb: 255, 255, 255;
  --sms-surface: #2e2e2e;
  --sms-on-surface-rgb: 255, 255, 255;
  --sms-th-rgb: 255, 255, 255;

  --sms-on-primary-rgb: 255, 255, 255;
  --sms-contrast-background: #1f1f1f;
  --sms-actions-color: #ffd600;
  --sms-background-inside: #1f1f1f;
  --sms-drawer-color: #1f1f1f;
  --sms-shadow: none;

  --button-disabled-background: #2e2e2e;
  --sms-nav-border: #2e2e2e;
}

html,
body {
  /* position: relative;
  width: 100%;
  height: 100%; */
}

body {
  color: var(--sms-on-background);
  margin: 0;
  padding: 0;
  background-color: var(--sms-background);
  box-sizing: border-box;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    'Helvetica Neue', sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border-color: var(--sms-background) !important;
  -webkit-text-fill-color: var(--sms-primary) !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--sms-background) inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

ul {
  list-style: square;
}
li::marker {
  color: var(--sms-primary);
}

.print {
  display: none;
}

@media print {
  body > *:not(.print) {
    display: none !important;
  }

  .print {
    display: block;
    color: black;
    max-height: unset;
    position: absolute;
    left: 0;
    top: 0;
  }
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

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

.align-center, .items-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}

.align-self-end {
  align-self: flex-end;
}

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

.justify-between {
  justify-content: space-between;
}
.justify-end {
  justify-content: flex-end;
}
.flex-col {
  flex-direction: column;
}
.flex0 {
  flex: 0;
}
.flex1 {
  flex: 1;
}
.flex-wrap {
  flex-wrap: wrap;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}
.p-3 {
  padding: 24px;
}
.p-4 {
  padding: 32px;
}
.pt-0 {
  padding-top: 0px;
}

.pt-1 {
  padding-top: 8px;
}
.px-1 {
  padding-right: 8px;
  padding-left: 8px;
}
.px-2 {
  padding-right: 16px;
  padding-left: 16px;
}
.pl-1 {
  padding-left: 8px;
}

.pl-2 {
  padding-left: 16px;
}

.pr-2 {
  padding-right: 16px;
}
.pb-1 {
  padding-bottom: 8px;
}
.pb-2 {
  padding-bottom: 16px;
}
.m-1 {
  margin: 8px;
}
.m-2 {
  margin: 8px;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}
.my-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-4 {
  margin-top: 32px;
}
.mr-1 {
  margin-right: 8px;
}
.mr-2 {
  margin-right: 16px;
}
.mb-1 {
  margin-bottom: 8px;
}
.ml-0 {
  margin-left: 0px;
}
.ml-1 {
  margin-left: 8px;
}
.ml-2 {
  margin-left: 16px;
}
.ml-3 {
  margin-left: 24px;
}
.ml-4 {
  margin-left: 32px;
}

.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}

.ml-auto {
  margin-left: auto;
}
.rounded {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.rounded-t {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.bottom-0 {
  bottom: 0px;
}
.right-0 {
  right: 0px;
}

.w-full {
  width: 100%;
}

.h-5 {
  height: 40px;
}
.h-8 {
  height: 64px;
}
.border {
  border-style: solid;
  border-width: 1px;
}
.border-black {
  border-color: black;
}
.border-grey {
  border-color: rgba(0, 0, 0, 0.12);
}

.border-on-background {
  border-color: rgba(var(--sms-on-background-rgb), 1);
}

.bold {
  font-weight: 700;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.green {
  color: green;
}

.text-primary {
  color: var(--sms-primary);
}
.text-error {
  color: red;
}

.italic {
  font-style: italic;
}
.bg-light {
  background-color: var(--sms-contrast-background);
}
.bg-lighter {
  background-color: var(--sms-contrast-background);
}
:root.dark .bg-light {
  background-color: var(--sms-contrast-background);
}
:root.dark .bg-lighter {
  background-color: var(--sms-contrast-background);
}

.bg-on-background-transparent {
  /*background-color: rgba(var(--sms-on-background-rgb), 0.2);*/
}

.link {
  padding-bottom: 2px;
  border-bottom: 2px dashed var(--sms-primary);
  color: inherit;
  text-decoration: none;
}

.dark .link {
  color: var(--sms-primary);
}

.flex {
  display: flex;
}

.fill {
  flex: 1;
}

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

.orange {
  color: #f36a27;
}

.grey {
  color: #424242;
}

:root.dark .grey {
  color: #999;
}

.blue {
  color: #054a9b;
}

.mr-4 {
  margin-right: 4px;
}

.black {
  color: black;
}

.secondary {
  color: var(--sms-actions-color) !important;
}

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

h4 {
  background: var(--sms-dark-color);
  color: white;
  font-weight: normal;
}

.dark h4 {
  color: #fff;
  background: var(--sms-surface);
}

.actions button {
  text-transform: uppercase;
}

.bg-constrast {
  background: var(--sms-contrast-background);
}

.dark input[type='time']::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
}

.dark .image-container {
  box-shadow: none !important;
  background: var(--sms-background-inside);
}

.top-0 {
  top: 0;
}
.left-0 {
  top: 0;
}
.z-\[99999\] {
  z-index: 99999;
}
.bg-gray-800 {
  background-color: rgb(31 41 55);
}
.h-2 {
  height: 8px;
}

.fixed {
  position: fixed;
}
.h-full {
  height: 100%;
}
