/*

https://tailwindcss.com/docs/preflight

based on https://unpkg.com/tailwindcss@3.1.6/src/css/preflight.css

taken as is, only removed the tailwind specific theme functions
dunno what to do about those yet

*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html {
  height: 100%;
}

/* iOS fix - on keyboard show without this whole
* layout would break */
html,
body {
  height: 100%;
  overflow: hidden;
  position: fixed;
}

* {
  margin: 0px;
  padding: 0px;
}


html[data-theme="light"] body {
  background-color: #f0f0f0;
  color: #484848;
}

html[data-theme="light"] input::placeholder,
textarea::placeholder {
  color: #828282;
}


html[data-theme="dark"] body {
  color: #dddddd;
  background-color: #262626;
}


html[data-theme="dark"] input::placeholder,
textarea::placeholder {
  color: #828282;
}


/* ==================== LIGHT ==================== */

html[data-theme="light"] {
  --font-family: 'Montserrat';

  /* Background */
  --background: #f0f0f0;
  --background-p1: #f5f6f8;
  --background-p2: #fbfbfb;
  --background-m1: #cccccc;
  --background-neutral: #f0f0f0;
  --background-positive: #e8f8f1;
  --background-negative: #f0d4d4;
  --background-warn: #ffdcc6;
  --background-lighter: #f5f6f8;

  /* Colors */
  --color-positive: #e8f8f1;
  --color-negative: #B56B6B;
  --color-warn: #7C9FB2;
  --color-important: #C6C9C6;
  --color-exception: #736D9B;
  --color-neutral: #C6C9C6;
  --color-inactive: #828282;
  --color-normal: #484848;
  /*--color-m2: #828282;*/
  --color-m2: #c6c6c6;
  --color-m1: #656565;
  --color: #484848;
  --color-p1: #1a1a1a;
  --color-p2: #000000;


  /* Modal */
  --modal-bg: #f2f2f2;
  --modal-layer-bg: #aaaaaac4;
  --modal-layer-bg-filter: blur(2px);
  --modal-close: #fefefe;
  --modal-close-hover: #000000;


  /* Borders */
  --border-normal-m1: #C6C9C6;
  --border-normal-p1: #575757;
  --border-normal: #C6C9C6;
  --border-negative: #c5a4a4;
  --border-positive: #b3d1c5;
  --border-warning: #d2b49f;
  --border-hover: #689579;
  --border-click: #477759;


  /* Calendar */
  --cd-other-color: #d1d1d1;
  --cd-hover-color: #689579;
  --cd-hover-border: #C6C9C6;
  --cd-selected-color: #484848;
  --cd-selected-border: #C6C9C6;
  --cd-period-marker-bg: #d1d1d1;
  --cd-period-marker-color: #484848;
  --calendar-button-color: #828282;
  --calendar-button-color-hover: #000000;
  --calendar-button-border-hover: transparent;

  /* Button */
  --button-positive-color: #e5e5e5;
  --button-positive-hover-color: #95e87a;
  --button-positive-bg: #4a4a4a;
  --button-positive-hover-bg: #4a4a4a;

  --button-negative-color: #e5e5e5;
  --button-negative-hover-color: #ff7267;
  --button-negative-bg: #4a4a4a;
  --button-negative-hover-bg: #4a4a4a;

  /*--button-neutral-color: #e5e5e5;*/
  --button-neutral-color: #e9e9e9;
  --button-neutral-bg: #4a4a4a;
  --button-neutral-hover-bg: #4a4a4a;
  --button-neutral-hover-color: #ffffff;


  --button-disabled-color: #ffffff;
  --button-disabled-bg: #aaaaaa;


  /* Tooltip */
  --tooltip-color: #ffffff;
  --tooltip-bg: #4a4a4a;
  --tooltip-border: #C6C9C6;
  --tooltip-positive: #e8f8f1;
  --tooltip-positive-text: #161616;
  --tooltip-positive-border: #689579;
  --tooltip-negative: #f0d4d4;
  --tooltip-negative-text: #161616;
  --tooltip-negative-border: #B56B6B;
  --tooltip-warn: #ffdcc6;
  --tooltip-warn-text: #161616;
  --tooltip-warn-border: #E7A387;
  --tooltip-important: #C6C9C6;
  --tooltip-important-text: #161616;
  --tooltip-important-border: #C6C9C6;
  --tooltip-exception: #736D9B;
  --tooltip-exception-text: #161616;
  --tooltip-exception-border: #736D9B;
  --tooltip-neutral: #C6C9C6;
  --tooltip-neutral-text: #161616;
  --tooltip-neutral-border: #C6C9C6;


  /* Notifications */
  --notification-positive: #e8f8f1;
  --notification-negative: #f0d4d4;
  --notification-warn: #ffdcc6;
  --notification-neutral: #f5f6f8;

  /* Fields */
  --placeholder-normal: #787b78;
  --field-label: #484848;
  --field-text: #2F3732;
  --field-border: #C6C9C6;
  --field-border-hover: #689579;
  --field-border-active: #C6C9C6;
  --field-bg: transparent;
  --field-bg-hover: #E7EAE8;
  --field-bg-active: #E7EAE8;
  --dropdown-bg: #E7EAE8;
  --dropdown-border: #C6C9C6;
  --input-normal-click: input-normal-click-light;
  --box-button-normal-click: box-button-normal-click-light;

  /* Tag */
  --tag-color-normal: #020202;
  --tag-bg-normal: #cacaca;
  --tag-border-normal: #cacaca;
  --tag-border-normal-hover: #cacaca;

  --tag-color-positive: #161616;
  --tag-bg-positive: #b4e3ce;
  --tag-border-positive: #b4e3ce;
  --tag-border-positive-hover: #b4e3ce;
  --tag-positive-remove-hover: #000;

  --tag-bg-negative: #ebc4c4;
  --tag-border-negative: #ebc4c4;
  --tag-color-negative: #161616;
  --tag-border-negative-hover: #ebc4c4;
  --tag-negative-remove-hover: #000;

  --avatar-bg: #ffffffa1;

  --link-color: #2c569d;

  /* Table */
  --table-bg: #f4f4f4;
  --table-text: #484848;
  --table-border: #C6C9C6;
  --table-hover-bg: #eaeaea;
  --table-hover-border: transparent;

  --scroll-shadow-top: radial-gradient(ellipse 100% 30% at center, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0), transparent);
  --scroll-shadow-bottom: radial-gradient(ellipse 100% 20% at center, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0), transparent);
  --scroll-shadow-modal-bottom: radial-gradient(ellipse 100% 20% at center, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0), transparent);
}

/* ======================== DARK ======================= */

html[data-theme="dark"] {
  --font-family: 'Montserrat';

  /* Background */
  --background: #262626;
  --background-p1: #202020;
  --background-p2: #000000;
  --background-m1: #474747;
  --background-neutral: #262626;
  --background-positive: #253d33;
  --background-negative: #4c2222;
  --background-warn: #6f3221;


  /* Colors */
  --color-positive: #689579;
  --color-negative: #B56B6B;
  --color-warn: #7C9FB2;
  --color-important: #C6C9C6;
  --color-exception: #736D9B;
  --color-neutral: #eaeaea;
  --color-inactive: #828282;
  /*--color-normal: #eaeaea;*/
  --color-normal: #dddddd;
  --color-m2: #686868;
  --color-m1: #828282;
  /*--color: #eaeaea;*/
  --color: #dddddd;
  --color-p1: #ffffff;
  --color-p2: #ffffff;


  /* Modal */
  --modal-bg: #1f1f1f;
  --modal-layer-bg: #232323c4;
  --modal-layer-bg-filter: blur(2px);
  --modal-close: #f3f3f3;
  --modal-close-hover: #ffffff;


  /* Borders */
  --border-normal-m2: #656565;
  --border-normal-m1: #7a7a7a;
  --border-normal: #838383;
  --border-normal-p1: #898989;
  --border-positive: #416657;
  --border-negative: #854040;
  --border-warning: #a6462c;
  --border-highlighted: #575757;
  --border-hover: #689579;
  --border-click: #477759;


  /* Calendar */
  --cd-other-color: #474747;
  --cd-hover-color: #689579;
  --cd-hover-border: #C6C9C6;
  --cd-selected-color: #efefef;
  --cd-selected-border: #505050;
  --cd-period-marker-bg: #494949;
  --cd-period-marker-color: #efefef;
  /*--calendar-button-bg-hover: #E7EAE8;*/
  --calendar-button-color: #828282;
  --calendar-button-color-hover: #ffffff;
  --calendar-button-border-hover: transparent;

  /* Button */
  --button-positive-color: #e5e5e5;
  --button-positive-hover-color: #95e87a;
  --button-positive-bg: #000000;
  --button-positive-hover-bg: #000000;

  --button-negative-color: #e5e5e5;
  --button-negative-hover-color: #ff7267;
  --button-negative-bg: #000000;
  --button-negative-hover-bg: #000000;

  /*--button-neutral-color: #e5e5e5;*/
  --button-neutral-color: #e9e9e9;
  --button-neutral-bg: #000000;
  --button-neutral-hover-bg: #000000;
  --button-neutral-hover-color: #ffffff;


  --button-disabled-color: #a1a1a1;
  --button-disabled-bg: #393939;


  /* Tooltip */
  --tooltip-color: #eaeaea;
  --tooltip-bg: #000000;
  --tooltip-border: #C6C9C6;
  --tooltip-positive: #3b6a57;
  --tooltip-positive-text: #eaeaea;
  --tooltip-positive-border: #3b6a57;
  --tooltip-negative: #7c3333;
  --tooltip-negative-text: #eaeaea;
  --tooltip-negative-border: #7c3333;
  --tooltip-warn: #943e25;
  --tooltip-warn-text: #eaeaea;
  --tooltip-warn-border: #943e25;
  --tooltip-neutral: #C6C9C6;
  --tooltip-neutral-text: #161616;
  --tooltip-neutral-border: #C6C9C6;


  /* Notifications */
  --notification-positive: #3b6a57;
  --notification-negative: #7c3333;
  --notification-warn: #943e25;
  --notification-neutral: #000000;

  /* Fields */
  --placeholder-normal: #838383;
  --field-label: #757575;
  --field-text: #bfbfbf;
  --field-border: #464646;
  --field-border-hover: #689579;
  --field-border-active: #959595;
  --field-bg: transparent;
  --field-bg-hover: #1e1e1e;
  --field-bg-active: #1e1e1e;
  --dropdown-bg: #1e1e1e;
  --dropdown-border: #959595;
  --input-normal-click: input-normal-click-dark;
  --box-button-normal-click: box-button-normal-click-dark;

  /* Tag */
  --tag-color-normal: #ffffff;
  --tag-bg-normal: #686868;
  --tag-border-normal: #686868;
  --tag-border-normal-hover: #686868;

  --tag-color-positive: #ffffff;
  --tag-bg-positive: #3b6a57;
  --tag-border-positive: #3b6a57;
  --tag-border-positive-hover: #3b6a57;

  --tag-color-negative: #ffffff;
  --tag-bg-negative: #7c3333;
  --tag-border-negative: #7c3333;
  --tag-border-negative-hover: #7c3333;

  /*--avatar-bg: #ffffffa1;*/
  --avatar-bg: #ffffff3d;
  --link-color: #73a7ff;

  /* Table */
  /*--table-bg: #1e1e1e;*/
  /*--table-text: #bfbfbf;*/
  /*--table-border: #959595;*/
  /*--table-hover-bg: #262626;*/
  --table-bg: #3b3b3b;
  --table-text: #eaeaea;
  --table-border: #656565;
  --table-hover-bg: #262626;
  --table-hover-border: transparent;

  --scroll-shadow-top: radial-gradient(ellipse 100% 30% at center, rgba(172, 172, 172, 0.2), rgba(0, 0, 0, 0), transparent);
  --scroll-shadow-bottom: radial-gradient(ellipse 100% 20% at center, rgba(172, 172, 172, 0.3), rgba(0, 0, 0, 0), transparent);
  --scroll-shadow-modal-bottom: radial-gradient(ellipse 100% 40% at center, rgba(172, 172, 172, 0.3), rgba(0, 0, 0, 0), transparent);
}




html[data-theme="dark"] .tbody .simplebar-scrollbar:before {
  background: #222222;
}

textarea::placeholder {
  color: #838383;
}

body {

  background-size: contain;
  background-repeat: no-repeat;
  margin: 0;
  font-family: var(--font-family);
  height: 100%;
  width: 100%;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


pre {
  font-size: 0.675rem;
  font-family: var(--font-family);
}



#app {
  height: 100%;
  width: 100%;
}

a:hover,
select:hover {
  cursor: pointer;

}

input,
textarea {
  background: transparent;

}

input::placeholder,
textarea::placeholder {
  font-weight: 400;
  color: var(--placeholder-normal);
}


input:focus,
textarea:focus {
  outline: 0;
  outline-offset: 0;
}


h1 {
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
}


h2 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}


h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}


h4 {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}



::selection {
  background: #B9B9B9;
  color: #101010;
}

::-moz-selection {
  background: #67fda7;
  color: black;
}

::-webkit-selection {
  background: #67fda7;
  color: black;
}


.simplebar-scrollbar:before {
  background: #232323;
}

.outside .simplebar-track.simplebar-vertical {
  transform: translate3d(12px, 0px, 100)
}

.outside .simplebar-track.simplebar-horizontal {
  transform: translate3d(0px, 12px, 100)
}

.disabled,
[disabled] {
  pointer-events: none;
  cursor: not-allowed;
}


@keyframes login-processing {
  0% {
    box-shadow: 0 8px 39px -9px rgb(104 253 167);
  }

  50% {
    box-shadow: 0 8px 39px -9px rgb(104 100 167);
  }

  100% {
    box-shadow: 0 8px 39px -9px rgb(104 253 167);
  }
}


@keyframes pop-in {
  100% {
    transform: scale(0.8);
    opacity: .5;
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pop-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.5);
    opacity: .5;
  }
}



@keyframes input-normal-click-light {
  0% {
    border-color: #689579;
  }

  45% {
    border-color: #2F3732;
  }

  100% {
    border-color: #C6C9C6;
  }
}

@keyframes input-normal-click-dark {
  0% {
    border-color: #689579;
  }

  45% {
    border-color: #477759;
  }

  100% {
    border-color: #959595;
  }
}


@keyframes box-button-normal-click-light {
  0% {
    color: #689579;
  }

  45% {
    color: #2F3732;
  }

  100% {
    color: #C6C9C6;
  }
}


@keyframes box-button-normal-click-dark {
  0% {
    color: #689579;
  }

  45% {
    color: #477759;
  }

  100% {
    color: #C6C9C6;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fade-in .7s ease-in-out forwards;
}


.tooltip.show,
.dropdown-popup,
.notification {
  animation: pop-in 0.1s ease-in-out;
}


.tooltip.hide,
.dropdown.hide,
.notification.hide {
  animation: pop-out 0.1s ease-in-out;
}


.card-fade-in {
  animation: fade-in 1s ease-in-out forwards;
}


@keyframes modal-show {
  0% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}


.modal-background,
.modal-dialog,
.modal-pavement {
  animation: modal-show 0.3s ease-in-out;
}


h1 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

h2 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}

h3 {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

h4 {
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
}


body {
  background-color: white;
}

html[data-theme="dark"] hr {
  border-color: #838383;
}

html[data-theme="light"] hr {
  border-color: #C6C9C6;
}



/* Simplebar */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start
}

[data-simplebar="init"] {
  /*overflow: hidden;*/
}

/* Inner shadow styles */
[data-simplebar="init"]::before,
[data-simplebar="init"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}


[data-simplebar="init"]::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  height: 80px;
  /* Adjust height for a larger glow area */
  background: var(--scroll-shadow-top);
  clip-path: inset(50% 0 0 0);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
  /* Initially hidden */
}

[data-simplebar="init"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 60px;
  background: var(--scroll-shadow-bottom);
  clip-path: inset(0 0 50% 0);
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.modal-dialog [data-simplebar="init"]::after {
  bottom: -30px;
  height: 60px;
  background: var(--scroll-shadow-modal-bottom);
}



.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0
}

.simplebar-content:after,
.simplebar-content:before {
  content: ' ';
  display: table
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: #373737;
  border-radius: 2px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity .4s linear
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
  transition: opacity 0s linear
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0
}

/*inset 0 -10px 8px -12px rgb(0 0 0 / 29%)*/

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.toddler_showcase_layout__L22_C21 {
  align-items: center;
}
.toddler_showcase_layout__L25_C24 {
  background: var(--background-p1);
  border-color: var(--border-normal);
  border-radius: 50px;
  border-width: 1px;
  margin-top: 1rem;
  width: 300px;
}
.toddler_showcase_layout__L25_C24 .element {
  background: var(--background-m1);
  border-color: var(--border-normal-p1);
  border-radius: 50px;
  border-width: 1px;
  max-width: 50px;
  min-height: 50px;
}
.toddler_showcase_layout__L40_C31 {
  margin-top: 1rem;
  width: 300px;
}
.toddler_showcase_layout__L49_C21 {
  align-items: center;
}
.toddler_showcase_layout__L51_C31 {
  margin-top: 4rem;
  width: 300px;
}
.toddler_showcase_layout__L54_C27 {
  background: var(--background-p1);
  border-color: var(--border-normal);
  border-radius: 25px;
  border-width: 1px;
  min-height: 400px;
}
.toddler_showcase_layout__L54_C27 .element {
  background: var(--background-m1);
  border-color: var(--border-normal-p1);
  border-radius: 50px;
  border-width: 1px;
  max-height: 50px;
}
.toddler_showcase_layout__L66_C24 {
  margin-top: 1.25rem;
  width: 300px;
}
.toddler_showcase_layout__L199_C18 {
  padding: 1rem;
}
.toddler_showcase_layout__L199_C18 .details img {
  margin-top: 0.75rem;
}
.toddler_showcase_layout__L199_C18 .card {
  background: var(--background-p1);
  border-color: var(--border-normal);
  border-radius: 0.375rem;
  border-width: 1px;
  padding: 0.5rem;
}
.toddler_showcase_layout__L212_C27 {
  margin-left: 1rem;
}
.toddler_showcase_layout__L212_C27 .name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.toddler_showcase_layout__L212_C27 .info {
  color: var(--color);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
}
.toddler_showcase_layout__L212_C27 label {
  color: var(--color);
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.125rem;
  margin-right: 0.5rem;
}
.toddler_showcase_layout__L222_C24 {
  align-self: flex-start;
  margin-top: 0.25rem;
  max-width: 200px;
}
.toddler_showcase_layout__L222_C24 label {
  color: var(--color-m1);
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
}
.toddler_showcase_layout__L222_C24 p {
  font-size: 0.6875rem;
  line-height: 1.125rem;
}
.toddler_showcase_layout__L236_C20 {
  margin-top: 2rem;
}
.toddler_showcase_layout__L276_C21 {
  margin-bottom: 1rem;
}
.toddler_showcase_layout__L282_C25 {
  margin-top: 0.5rem;
}
.toddler_showcase_layout__L309_C21 {
  overflow: hidden;
}
.toddler_showcase_layout__L311_C24 {
  margin-bottom: 1rem;
  margin-top: 1rem;
  max-width: 200px;
}
.toddler_showcase_layout__L319_C21 {
  overflow: hidden;
}
.toddler_showcase_layout__L320_C20 {
  align-items: center;
  display: flex;
  font-size: 1.25rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  line-height: 1.75rem;
  width: 100%;
}
.toddler_showcase_layout__L331_C41 {
  background-color: #ef4444;
}
.toddler_showcase_layout__L332_C41 {
  background-color: #22c55e;
}
.toddler_showcase_layout__L333_C43 {
  background-color: #eab308;
}
.toddler_showcase_layout__L334_C42 {
  background-color: #06b6d4;
}
.toddler_showcase_layout__L360_C26 .component {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.toddler_ui_elements__L32_C18 {
  transition: box-shadow 0.3s ease-in-out;
}
.toddler_ui_elements__L32_C18.shadow-top:before {
  opacity: 1 !important;
  z-index: 100;
}
.toddler_ui_elements__L32_C18.shadow-bottom:after {
  opacity: 1 !important;
  z-index: 100;
}
.toddler_ui_elements__L39_C17 .simplebar-track {
  display: none;
}
.toddler_ui_elements__L115_C18 {
  border-width: 0px;
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.toddler_ui_elements__L123_C18 {
  border: none;
  outline: none;
}
.toddler_ui_elements__L129_C18 {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-color: var(--border-normal);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-width: 1px;
  display: flex;
  min-height: 2em;
}
.toddler_ui_elements__L129_C18 button {
  min-width: 6em;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.toddler_ui_elements__L129_C18 button:hover {
  color: var(--color-p2);
}
.toddler_ui_elements__L129_C18 button:not(:last-child) {
  border-color: var(--border-normal);
  border-right-width: 1px;
}
.toddler_ui_elements__L149_C3 {
  align-items: center;
  animation-duration: .5s;
  animation-name: var(--input-normal-click);
  background-color: var(--button-neutral-bg);
  border-color: var(--button-neutral-border);
  border-radius: 0.25rem;
  color: var(--button-neutral-color);
  cursor: pointer;
  display: flex;
  font-size: 0.76rem;
  font-weight: 600;
  justify-content: center;
  line-height: 2;
  margin-bottom: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  min-height: 2rem;
  min-width: 80px;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  transition: all .2s ease-in;
  user-select: none;
}
.toddler_ui_elements__L149_C3:hover {
  background-color: var(--button-neutral-hover-bg);
  border-color: var(--button-neutral-hover-border);
  color: var(--button-neutral-hover-color);
}
.toddler_ui_elements__L149_C3.positive {
  background-color: var(--button-positive-bg);
  color: var(--button-positive-color);
}
.toddler_ui_elements__L149_C3.positive:hover {
  background-color: var(--button-positive-hover-bg);
  border-color: var(--button-positive-hover-border);
  color: var(--button-positive-hover-color);
}
.toddler_ui_elements__L149_C3.negative {
  background-color: var(--button-negative-bg);
  color: var(--button-negative-color);
}
.toddler_ui_elements__L149_C3.negative:hover {
  background-color: var(--button-negative-hover-bg);
  border-color: var(--button-negative-hover-border);
  color: var(--button-negative-hover-color);
}
.toddler_ui_elements__L149_C3[disabled] {
  background-color: var(--button-disabled-bg);
  border-color: var(--button-disabled-border);
  color: var(--button-disabled-color);
}
.toddler_ui_elements__L197_C3 {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  justify-content: center;
  line-height: 24px;
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
  position: relative;
  transition: color .3s ease-in-out;
  user-select: none;
}
.toddler_ui_elements__L197_C3 .icon {
  height: 1rem;
  margin-right: 0.25rem;
  width: 1rem;
}
.toddler_ui_elements__L197_C3[disabled] {
  cursor: default;
}
.toddler_ui_elements__L252_C3 .row .name {
  color: #a3a3a3;
}
.toddler_ui_elements__L252_C3 .row.selected .name, .toddler_ui_elements__L252_C3 .row:hover .name {
  color: #525252;
}
.toddler_ui_elements__L302_C3.toddler-labeled-row {
  display: flex;
  flex-direction: column;
}
.toddler_ui_elements__L302_C3.toddler-labeled-row > .toddler-row-label {
  font-size: 1em;
  font-weight: 700;
  margin: 0.25rem;
  text-transform: uppercase;
}
.toddler_ui_elements__L302_C3.toddler-row, .toddler_ui_elements__L302_C3 .toddler-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  margin: 0.25rem;
}
.toddler_ui_elements__L321_C17 {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
.toddler_ui_elements__L326_C16 {
  justify-content: flex-start;
}
.toddler_ui_elements__L327_C17 {
  justify-content: center;
}
.toddler_ui_elements__L328_C14 {
  justify-content: flex-end;
}
.toddler_ui_elements__L329_C18 {
  justify-content: space-between;
}
.toddler_ui_elements__L337_C20 {
  display: flex;
  flex-direction: column;
}
.toddler_ui_elements__L337_C20 .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_elements__L366_C3 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.toddler_ui_elements__L366_C3 > .toddler-column-label {
  font-size: 0.75rem;
  margin: 4px 4px 4px 4px;
  padding-bottom: 2px;
  text-transform: uppercase;
}
.toddler_ui_elements__L381_C17 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.toddler_ui_elements__L381_C17 > .toddler-column-label {
  font-size: 0.75em;
  font-weight: 700;
  margin: 4px 4px 4px 4px;
  padding-bottom: 2px;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_elements__L392_C16 {
  justify-content: flex-start;
}
.toddler_ui_elements__L393_C17 {
  justify-content: center;
}
.toddler_ui_elements__L394_C14 {
  justify-content: flex-end;
}
.toddler_ui_elements__L395_C18 {
  justify-content: space-between;
}
.toddler_ui_elements__L415_C3 {
  background-color: var(--dropdown-bg);
  border-color: var(--dropdown-border);
  border-radius: 0.375rem;
  border-width: 1px;
  display: flex;
  flex-direction: column;
  margin: 0;
  position: relative;
}
.toddler_ui_elements__L415_C3 .simplebar-scrollbar:before {
  max-height: 400px;
  pointer-events: none;
}
.toddler_ui_elements__L415_C3 .toddler-dropdown-option {
  align-items: center;
  background: transparent;
  border-color: var(--border-normal);
  border-radius: 0.125rem;
  border-top-width: 1px;
  color: var(--color-m1);
  cursor: pointer;
  display: flex;
  font-size: 0.76rem;
  font-weight: 600;
  justify-content: flex-start;
  line-height: 1.25rem;
  padding: 0.5rem;
  transition: color .2s ease-in,background-color .2s ease-in;
}
.toddler_ui_elements__L415_C3 .toddler-dropdown-option .avatar {
  background: var(--avatar-bg);
  border-radius: 0.125rem;
  margin-right: 0.5rem;
}
.toddler_ui_elements__L415_C3 .toddler-dropdown-option:hover {
  color: var(--color-p2);
}
.toddler_ui_elements__L415_C3 .toddler-dropdown-option.selected {
  color: var(--color-p1);
}
.toddler_ui_elements__L415_C3 .toddler-dropdown-option:first-child {
  border-top: none;
}
.toddler_ui_elements__L475_C28 .simplebar-content {
  display: flex;
  flex-direction: column;
}
.toddler_ui_elements__L475_C28 .simplebar-content-wrapper {
  padding-right: 0.5rem;
}
.toddler_ui_elements__L486_C28 .simplebar-content {
  display: flex;
  flex-direction: column;
}
.toddler_ui_elements__L538_C3.positive .remove:hover {
  color: var(--tag-positive-remove-hover) !important;
}
.toddler_ui_elements__L538_C3.negative .remove:hover {
  color: var(--tag-negative-remove-hover) !important;
}
.toddler_ui_elements__L538_C3.positive {
  background-color: var(--tag-bg-positive);
  border-color: var(--tag-border-positive);
  color: var(--tag-color-positive);
}
.toddler_ui_elements__L538_C3 .remove {
  height: 1rem;
  opacity: 0.6;
  width: 1rem;
}
.toddler_ui_elements__L538_C3 .remove:hover {
  color: var(--tag-remove-hover);
  opacity: 1;
}
.toddler_ui_elements__L538_C3.positive:hover {
  border-color: var(--tag-border-positive-hover);
}
.toddler_ui_elements__L538_C3:hover {
  border-color: var(--tag-border-normal-hover);
}
.toddler_ui_elements__L538_C3.selected {
  border-color: var(--border-normal-p1);
}
.toddler_ui_elements__L538_C3 {
  align-items: center;
  background-color: var(--tag-bg-normal);
  border-color: var(--tag-border-normal);
  border-radius: 0.25rem;
  border-width: 1px;
  color: var(--tag-color-normal);
  cursor: pointer;
  display: flex;
  font-size: 0.625rem;
  font-weight: 600;
  justify-content: center;
  line-height: 1.125rem;
  min-height: 26px;
  padding-left: 12px;
  padding-right: 12px;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_elements__L538_C3.negative {
  background-color: var(--tag-bg-negative);
  border-color: var(--tag-border-negative);
  color: var(--tag-color-negative);
}
.toddler_ui_elements__L538_C3.fun {
  background-color: var(--tag-bg-negative);
  color: var(--tag-color-negative);
}
.toddler_ui_elements__L538_C3 .avatar {
  background-color: var(--avatar-bg);
  border-radius: 0.125rem;
  margin-left: -0.5rem;
  margin-right: 0.5rem;
}
.toddler_ui_elements__L538_C3.negative:hover {
  border-color: var(--tag-border-negative-hover);
}
.toddler_ui_elements__L577_C3 {
  align-items: center;
  background-color: var(--tooltip-bg);
  border: 1px solid var(--tooltip-border) ;
  border-color: var(--border-normal);
  border-radius: 5px;
  border-width: 1px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-sizing: border-box;
  color: var(--tooltip-color);
  font-size: 0.625rem;
  font-weight: 600;
  justify-content: center;
  opacity: 0;
  padding-bottom: 0.375rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.375rem;
  user-select: none;
}
.toddler_ui_elements__L577_C3.success, .toddler_ui_elements__L577_C3.positive {
  background-color: var(--tooltip-positive);
  border-color: var(--tooltip-positive-border);
  color: var(--tooltip-positive-text);
}
.toddler_ui_elements__L577_C3.warn, .toddler_ui_elements__L577_C3.warning,  .toddler_ui_elements__L577_C3.danger {
  background-color: var(--tooltip-warn);
  border-color: var(--tooltip-warn-border);
  color: var(--tooltip-warn-text);
}
.toddler_ui_elements__L577_C3.error, .toddler_ui_elements__L577_C3.negative {
  background-color: var(--tooltip-negative);
  border-color: var(--tooltip-negative-border);
  color: var(--tooltip-negative-text);
}
.toddler_ui_elements__L577_C3.exception {
  background-color: var(--tooltip-exception);
  border-color: var(--tooltip-exception-border);
  color: var(--tooltip-exception-text);
}
.toddler_ui_elements__L577_C3 pre {
  font-size: 0.625rem;
  font-weight: 600;
}
.toddler_ui_elements__L577_C3.show {
  opacity: 1;
  transform: scale(1);
}
.toddler_ui_elements__L676_C21 {
  align-items: center;
  border-radius: 32px;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}
.toddler_ui_elements__L683_C20 {
  align-items: center;
  border-radius: 26px;
  color: #929292;
  cursor: pointer;
  display: flex;
  height: 26px;
  justify-content: center;
  transition: color,background-color .2s ease-in-out;
  width: 26px;
}
.toddler_ui_elements__L683_C20 svg {
  height: 14px;
  width: 14px;
}
.toddler_ui_elements__L695_C21:hover {
  background-color: #06b6d4;
  color: #fff8f3;
}
.toddler_ui_elements__L698_C22:hover {
  background-color: #ef4444;
  color: #fff8f3;
}
.toddler_ui_elements__L714_C17 {
  position: absolute;
  right: -16px;
  top: -16px;
}
.toddler_ui_elements__L714_C17 .wrapper {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.toddler_ui_elements__L733_C15 {
  background-color: #eaeaea;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  min-width: 180px;
  padding: 10px 10px 5px 10px;
  position: relative;
  transition: box-shadow .2s ease-in-out;
}
.toddler_ui_elements__L733_C15 .card-actions {
  opacity: 0;
  transition: opacity .4s ease-in-out;
}
.toddler_ui_elements__L733_C15:hover .card-actions {
  opacity: 1;
}
.toddler_ui_elements__L733_C15 .avatar {
  background: var(--avatar-bg);
  left: -10px;
  position: absolute;
  top: -10px;
  transition: all .1s ease-in-out;
}
.toddler_ui_elements__L733_C15:hover {
  box-shadow: 1px 4px 11px 1px #ababab;
}
.toddler_ui_elements__L798_C3 {
  color: #525252;
  cursor: pointer;
  height: 1.25rem;
  opacity: 0.5;
  transition: opacity .3s ease-in-out;
  width: 1.25rem;
}
.toddler_ui_elements__L798_C3:hover {
  opacity: 1;
}
.toddler_ui_elements__L816_C3 {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  position: relative;
}
.toddler_ui_elements__L816_C3 .tabs {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.toddler_ui_elements__L824_C3 {
  align-items: center;
  border-radius: 0.375rem;
  cursor: pointer;
  display: flex;
  font-size: 0.6875rem;
  font-weight: 600;
  height: 1.5rem;
  justify-content: center;
  line-height: 1.125rem;
  min-width: 5em;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  text-transform: uppercase;
  user-select: none;
  z-index: 10;
}
.toddler_ui_elements__L824_C3:hover {
  color: var(--color-p2);
  text-decoration: none;
}
.toddler_ui_elements__L824_C3.selected {
  color: var(--color-p2);
}
.toddler_ui_elements__L875_C17 {
  background-color: var(--background-p1);
  border: 1px solid var(--color-m2);
  border-radius: 0.375rem;
  position: absolute;
  transition: width .2s ease-in-out, height .2s ease-in-out, left .2s ease-in-out;
  z-index: 0;
}
.toddler_ui_elements__L910_C3 {
  align-items: center;
  border-bottom-width: 1px;
  border-color: var(--border-normal);
  border-left-width: 1px;
  border-right-width: 1px;
  cursor: pointer;
  display: flex;
  font-size: 0.6875rem;
  font-weight: 600;
  height: 1.5rem;
  justify-content: center;
  line-height: 1.125rem;
  min-width: 5em;
  padding-right: 10px;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_elements__L910_C3 .icon {
  height: 0.75rem;
  margin-left: 6px;
  width: 0.75rem;
}
.toddler_ui_elements__L910_C3 .name {
  margin-left: 6px;
}
.toddler_ui_elements__L910_C3:first-child {
  margin-right: 1rem;
}
.toddler_ui_elements__L910_C3[disabled] {
  color: var(--color-m1);
  pointer-events: none;
}
.toddler_ui_elements__L910_C3:hover {
  color: var(--color-p2);
  text-decoration: none;
}
.toddler_ui_elements__L961_C3 .option {
  align-items: center;
  border: 1px solid var(--border-normal);
  border-radius: 1px;
  display: flex;
  font-size: 0.6875rem;
  line-height: 1.125rem;
  min-height: 1.5rem;
  padding-left: 3px;
  padding-right: 8px;
  user-select: none;
}
.toddler_ui_elements__L961_C3 .option.PERSON, .toddler_ui_elements__L961_C3 .option.ACCESS {
  border-radius: 16px;
}
.toddler_ui_elements__L961_C3 .option .avatar {
  background: var(--avatar-bg);
  border-radius: 1px;
  height: 18px;
  margin-right: 6px;
  overflow: hidden;
  width: 18px;
}
.toddler_ui_elements__L961_C3 .option.selected {
  border-color: var(--border-highlighted);
}
.toddler_ui_elements__L961_C3 .option.PERSON .avatar, .toddler_ui_elements__L961_C3 .option.ACCESS .avatar {
  background: var(--avatar-bg);
  border-radius: 50px;
}
.toddler_ui_elements__L1005_C21 .option {
  cursor: pointer;
}
.toddler_ui_elements__L1009_C19 {
  position: relative;
}
.toddler_ui_elements__L1009_C19 .actions {
  display: flex;
  position: absolute;
  right: 1rem;
  top: 0px;
  z-index: 10;
}
.toddler_ui_elements__L1009_C19 .actions .action {
  background-color: var(--box-action-bg);
  color: var(--box-action-color);
  cursor: pointer;
  padding: 0.25rem;
  transition: color .3s ease-in-out;
}
.toddler_ui_elements__L1009_C19 .actions .action:hover {
  color: var(--box-action-color-hover);
}
.toddler_ui_elements__L1009_C19 .actions .action.selected {
  color: var(--box-action-color-selected);
}
.toddler_ui_elements__L1009_C19 .actions .action svg {
  height: 1rem;
  width: 1rem;
}
.toddler_ui_elements__L1009_C19 .options {
  display: flex;
  padding-top: 0.25rem;
}
.toddler_ui_elements__L1035_C19 {
  font-size: 0.875rem;
  line-height: 1.5rem;
  overflow: hidden;
  padding: 1.5rem;
  transition: height .2s ease-in-out;
  z-index: 20;
}
.toddler_ui_elements__L1051_C19 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
}
.toddler_ui_elements_modal__L19_C3 {
  backdrop-filter: var(--modal-layer-bg-filter);
  background: var(--modal-layer-bg);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.toddler_ui_elements_modal__L19_C3:hover:not(.block) {
  cursor: pointer;
}
.toddler_ui_elements_modal__L19_C3 .close {
  color: var(--modal-close);
  height: 2rem;
  margin: 0.25rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 2rem;
}
.toddler_ui_elements_modal__L19_C3:hover:not(.block) .close {
  color: var(--modal-close-hover);
}
.toddler_ui_elements_modal__L55_C3 {
  background: var(--modal-bg);
  border-color: var(--border-normal);
  border-radius: 0.5rem;
  border-width: 1px;
  color: var(--color);
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  line-height: 1.25rem;
  position: relative;
}
.toddler_ui_elements_modal__L55_C3 > .content {
  padding-left: 2rem;
  padding-right: 2rem;
}
.toddler_ui_elements_modal__L55_C3 > .title {
  color: var(--color-p1);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1.5rem;
}
.toddler_ui_elements_modal__L55_C3.positive {
  background-color: var(--background-positive);
  border-color: var(--border-positive);
}
.toddler_ui_elements_modal__L55_C3.negative {
  background-color: var(--background-negative);
  border-color: var(--border-negative);
}
.toddler_ui_elements_modal__L55_C3.warn {
  background-color: var(--background-warn);
  border-color: var(--border-warning);
}
.toddler_ui_elements_modal__L55_C3 > .buttons, .toddler_ui_elements_modal__L55_C3 > .footer {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
}
.toddler_ui_elements_modal__L55_C3 > .buttons button, .toddler_ui_elements_modal__L55_C3 > .footer button {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}
.toddler_ui_elements_modal__L97_C16 {
  display: flex;
  justify-content: center;
}
.toddler_ui_elements_modal__L103_C19 {
  align-items: center;
  animation: fade-in .4s ease-in-out;
  display: flex;
  justify-content: center;
  z-index: 20;
}
.toddler_ui_elements_modal__L126_C16 {
  color: var(--color-p2);
  height: 1.5rem;
  pointer-events: none;
  position: absolute;
  right: -24px;
  top: -24px;
  user-select: none;
  width: 1.5rem;
}
.toddler_ui_elements_modal__L134_C3 {
  align-self: flex-end;
  background-color: var(--background);
  border-color: var(--border-normal);
  border-width: 1px;
  color: var(--color);
  display: flex;
}
.toddler_ui_elements_modal__L153_C16 {
  display: flex;
  justify-content: center;
}
.toddler_ui_elements_modal__L177_C3 {
  align-self: stretch;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0.75rem;
  position: relative;
}
.toddler_ui_elements_modal__L177_C3 .close {
  color: var(--color-m1);
  height: 2em;
  transition: all .3s ease-in-out;
  width: 2em;
}
.toddler_ui_elements_modal__L177_C3 .title {
  align-items: flex-end;
  color: var(--color-p1);
  display: flex;
  font-weight: 700;
  opacity: 0.8;
}
.toddler_ui_elements_modal__L205_C21 {
  box-sizing: border-box;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  max-height: 10%;
  padding-top: 1rem;
}
.toddler_ui_elements_modal__L221_C22 {
  align-items: flex-end;
  display: flex;
  justify-content: center;
}
.toddler_ui_elements_modal__L229_C21 {
  display: flex;
  flex-grow: 1;
  height: 1.75rem;
  justify-content: flex-end;
  max-height: 10%;
}
.toddler_ui_elements_modal__L236_C22 {
  align-items: center;
  display: flex;
  justify-content: center;
}
.toddler_ui_elements_modal__L244_C24 {
  display: flex;
  flex-direction: column;
  flex-grow: 10;
}
.toddler_showcase_i18n__L128_C3 table tbody {
  margin-top: 0.5rem;
  padding: 0.25rem;
}
.toddler_showcase_i18n__L128_C3 h4 {
  margin-top: 1rem;
}
.toddler_showcase_i18n__L128_C3 .hljs {
  background: var(--background-p1);
}
.toddler_showcase_i18n__L128_C3 p > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_showcase_i18n__L128_C3 .code {
  margin-top: 0.5rem;
}
.toddler_showcase_i18n__L128_C3 b, .toddler_showcase_i18n__L128_C3 strong {
  font-weight: 600;
}
.toddler_showcase_i18n__L128_C3 ul li {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_showcase_i18n__L128_C3 a {
  color: var(--link-color);
  font-weight: 600;
}
.toddler_showcase_i18n__L128_C3 li > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_showcase_i18n__L128_C3 ul {
  border: none;
  border-width: 1px;
  list-style-type: disc;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
.toddler_showcase_i18n__L128_C3 {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 6rem;
  margin-top: 1rem;
}
.toddler_showcase_i18n__L128_C3 pre > code {
  border-radius: 0.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.toddler_showcase_i18n__L128_C3 h3 {
  margin-top: 1rem;
}
.toddler_showcase_i18n__L128_C3 h2 {
  margin-top: 3rem;
}
.toddler_showcase_i18n__L128_C3 h1,.toddler_showcase_i18n__L128_C3 h2,.toddler_showcase_i18n__L128_C3 h3,.toddler_showcase_i18n__L128_C3 h4 {
  text-transform: uppercase;
}
.toddler_showcase_i18n__L128_C3 br {
  height: 8px;
}
.toddler_showcase_i18n__L128_C3 table tr {
  font-size: 0.6875rem;
  height: 1.5rem;
  line-height: 1.125rem;
}
.toddler_showcase_i18n__L128_C3 .table-container {
  background: var(--background-p1);
  border-color: var(--border-normal-p1);
  border-radius: 0.5rem;
  border-width: 1px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem;
}
.toddler_showcase_i18n__L128_C3 p {
  margin-top: 0.5rem;
}
.toddler_showcase_i18n__L162_C16 {
  font-weight: 700;
}
.toddler_showcase_i18n__L167_C36 td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.toddler_showcase_i18n__L201_C18 {
  background-color: #fef08a;
  border-radius: 0.75rem;
  color: #000;
  font-weight: 600;
  margin-top: 1rem;
  padding: 1rem;
}
.toddler_ui_fields__L33_C3 {
  display: flex;
  flex: 100 0 auto;
  overflow: hidden;
  width: 100px;
}
.toddler_ui_fields__L33_C3 > .content {
  width: 100%;
}
.toddler_ui_fields__L33_C3 .avatar {
  background-color: var(--avatar-bg);
  border-color: var(--border-normal-m1);
  border-radius: 20px;
  border-width: 1px;
}
.toddler_ui_fields__L33_C3.error {
  color: var(--color-negative);
}
.toddler_ui_fields__L33_C3.error .toddler-field-label {
  color: var(--color-negative);
}
.toddler_ui_fields__L33_C3.error .toddler-input-field {
  border-color: var(--border-negative);
}
.toddler_ui_fields__L49_C3 {
  align-items: center;
  border-radius: 0.375rem;
  cursor: text;
  display: flex;
  flex-grow: 1;
  transition: all .3s ease-in-out;
}
.toddler_ui_fields__L58_C3 .clear {
  color: transparent;
  cursor: pointer;
  transition: color .3s ease-in-out;
}
.toddler_ui_fields__L58_C3:hover .clear {
  color: #a3a3a3;
}
.toddler_ui_fields__L58_C3 .clear:hover {
  color: #525252;
}
.toddler_ui_fields__L65_C3 {
  color: var(--field-label);
  display: block;
  font-size: 10px;
  font-weight: 600;
  height: 1.25rem;
  padding-left: 0.25rem;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_fields__L76_C3 .icon.right {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin-right: 0.25rem;
}
.toddler_ui_fields__L76_C3 input::placeholder, .toddler_ui_fields__L76_C3 textarea::placeholder {
  font-style: normal;
  user-select: none;
}
.toddler_ui_fields__L76_C3 textarea {
  resize: none;
}
.toddler_ui_fields__L76_C3 input[type="password"] {
  font-family: Verdana;
  letter-spacing: 0.125em;
}
.toddler_ui_fields__L76_C3 .decorator {
  height: 24px;
  margin-right: 0.25rem;
  transition: color .3s ease-in-out, transform .3s ease-in-out;
  width: 24px;
}
.toddler_ui_fields__L76_C3:hover:not(.disabled):not(:focus-within) {
  background-color: var(--field-bg-hover);
  border-color: var(--field-border-hover);
}
.toddler_ui_fields__L76_C3 input, .toddler_ui_fields__L76_C3 textarea {
  flex-grow: 1;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.toddler_ui_fields__L76_C3 {
  align-items: center;
  background-color: var(--field-bg);
  border-color: var(--field-border);
  border-radius: 0.375rem;
  border-width: 1px;
  color: var(--field-text);
  display: flex;
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 1.5rem;
  min-height: 40px;
  position: relative;
  transition: background-color .4s ease-in-out;
}
.toddler_ui_fields__L76_C3:focus-within .decorator {
  transform: rotate(180deg);
}
.toddler_ui_fields__L76_C3 .avatar {
  margin-left: 0.5rem;
}
.toddler_ui_fields__L76_C3:focus-within {
  animation-duration: .5s;
  animation-name: var(--input-normal-click);
  background-color: var(--field-bg-active);
  border-color: var(--field-border-active);
}
.toddler_ui_fields__L76_C3 .avatar img {
  border-radius: 0.125rem;
}
.toddler_ui_fields__L76_C3 input:focus, .toddler_ui_fields__L76_C3 textarea:focus {
  color: var(--field-text-active);
}
.toddler_ui_fields__L76_C3 .icon {
  height: 1.5rem;
  margin-left: 0.5rem;
  width: 1.5rem;
}
.toddler_ui_fields__L394_C22 {
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.toddler_ui_fields__L434_C26 {
  display: flex;
  flex-grow: 1;
}
.toddler_ui_fields__L443_C3 {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 0.375rem 0.375rem;
  padding: 1rem 1rem 1rem 1rem;
}
.toddler_ui_fields__L453_C3 input::placeholder {
  font-style: normal;
  user-select: none;
}
.toddler_ui_fields__L453_C3 input {
  flex: 1 1 auto;
  min-height: 26px;
}
.toddler_ui_fields__L453_C3 .decorator {
  height: 24px;
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  transition: color .3s ease-in-out, transform .3s ease-in-out;
  width: 24px;
}
.toddler_ui_fields__L453_C3:hover:not(.disabled):not(:focus-within) {
  background-color: var(--field-bg-hover);
  border-color: var(--field-border-hover);
}
.toddler_ui_fields__L453_C3 {
  align-items: center;
  background-color: var(--field-bg);
  border-color: var(--field-border);
  border-radius: 0.375rem;
  border-width: 1px;
  color: var(--field-text);
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  font-size: 0.875rem;
  gap: 0.375rem 0.375rem;
  line-height: 1.5rem;
  min-height: 40px;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 2rem;
  padding-top: 0.5rem;
  position: relative;
  transition: background-color .4s ease-in-out;
}
.toddler_ui_fields__L453_C3:focus-within .decorator {
  transform: rotate(180deg);
}
.toddler_ui_fields__L453_C3 .avatar {
  background-color: var(--avatar-bg);
  margin-right: 0.5rem;
}
.toddler_ui_fields__L453_C3:focus-within {
  animation-duration: .5s;
  animation-name: var(--input-normal-click);
  background-color: var(--field-bg-active);
  border-color: var(--field-border-active);
}
.toddler_ui_fields__L453_C3 .avatar img {
  border-radius: 0.125rem;
}
.toddler_ui_fields__L502_C16 .remove {
  margin-left: 0.75rem;
}
.toddler_ui_fields__L627_C3 .row {
  color: var(--field-text);
  display: flex;
  font-size: 0.875rem;
  gap: 0.25rem;
  line-height: 1.5rem;
}
.toddler_ui_fields__L627_C3 .row .time {
  overflow: hidden;
  width: 5rem;
}
.toddler_ui_fields__L627_C3 .row .date:focus-within, .toddler_ui_fields__L627_C3 .row .time:focus-within {
  animation-duration: .5s;
  animation-name: var(--input-normal-click);
  background-color: var(--field-bg-active);
  border-color: var(--field-border-active);
}
.toddler_ui_fields__L627_C3 .row .date.no-time {
  width: 18.75rem;
}
.toddler_ui_fields__L627_C3 .row .date, .toddler_ui_fields__L627_C3 .row .time {
  align-items: center;
  background-color: var(--field-bg);
  border-color: var(--field-border);
  border-radius: 0.375rem;
  border-width: 1px;
  color: var(--field-text);
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  height: 2.5rem;
  min-height: 40px;
  position: relative;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4,0,0.2,1);
}
.toddler_ui_fields__L627_C3 .row .date {
  width: 13.5rem;
}
.toddler_ui_fields__L627_C3 .calendar {
  margin-top: 0.25rem;
}
.toddler_ui_fields__L627_C3 .row .date:hover:not(:focus-within), .toddler_ui_fields__L627_C3 .row .time:hover:not(:focus-within) {
  border-color: var(--field-border-hover);
}
.toddler_ui_fields__L627_C3 .row input {
  cursor: pointer;
  margin-left: 0.75rem;
  max-width: 6rem;
}
.toddler_ui_fields__L627_C3 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.toddler_ui_fields__L627_C3 .row .date svg, .toddler_ui_fields__L627_C3 .row .time svg {
  height: 1rem;
  position: absolute;
  right: 0.5rem;
  width: 1rem;
}
.toddler_ui_fields__L743_C3 .inputs .date:hover:not(:focus-within) svg, .toddler_ui_fields__L743_C3 .inputs .time:hover:not(:focus-within) svg {
  color: var(--color-hover);
}
.toddler_ui_fields__L743_C3 .inputs .to-row {
  margin-top: 0.25rem;
}
.toddler_ui_fields__L743_C3 .calendar {
  margin-top: 0.25rem;
}
.toddler_ui_fields__L743_C3 .inputs.no-time input {
  max-width: 134px;
}
.toddler_ui_fields__L743_C3 .inputs .from-row, .toddler_ui_fields__L743_C3 .inputs .to-row {
  display: flex;
  gap: 0.25rem;
}
.toddler_ui_fields__L743_C3:not(.opened) .inputs .date:hover:not(:focus-within), .toddler_ui_fields__L743_C3:not(.opened) .inputs .time:hover:not(:focus-within) {
  border-color: var(--field-border-hover);
}
.toddler_ui_fields__L743_C3 .inputs input {
  cursor: pointer;
  margin-left: 0.75rem;
}
.toddler_ui_fields__L743_C3 {
  display: flex;
  flex-direction: column;
}
.toddler_ui_fields__L743_C3 .inputs .date, .toddler_ui_fields__L743_C3 .inputs .time {
  align-items: center;
  background-color: var(--field-bg);
  border-color: var(--field-border);
  border-radius: 0.375rem;
  border-width: 1px;
  color: var(--field-text);
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  height: 2.5rem;
  min-height: 40px;
  position: relative;
  transition: background-color .4s ease-in-out, border-color .4s ease-in-out;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4,0,0.2,1);
}
.toddler_ui_fields__L743_C3 .inputs .date svg, .toddler_ui_fields__L743_C3 .inputs .time svg {
  height: 1rem;
  position: absolute;
  right: 0.5rem;
  width: 1rem;
}
.toddler_ui_fields__L743_C3 .inputs .date {
  width: 13.5rem;
}
.toddler_ui_fields__L743_C3 .inputs.no-time {
  max-width: 100px;
}
.toddler_ui_fields__L743_C3 .inputs .time {
  overflow: hidden;
  width: 5rem;
}
.toddler_ui_fields__L743_C3 .inputs {
  color: var(--field-text);
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.toddler_ui_fields__L743_C3 .inputs .date:focus-within, .toddler_ui_fields__L743_C3 .inputs .time:focus-within, .toddler_ui_fields__L743_C3.opened .inputs .date {
  animation-duration: .5s;
  animation-name: var(--input-normal-click);
  background-color: var(--field-bg-active);
  border-color: var(--field-border-active);
}
.toddler_ui_fields__L895_C21 {
  display: flex;
  gap: 0.25rem;
}
.toddler_ui_fields__L895_C21 input {
  max-width: 120px;
}
.toddler_ui_fields__L941_C3 {
  align-items: center;
  background-color: var(--field-bg);
  border-color: var(--field-border);
  border-width: 1px;
  color: var(--field-label);
  cursor: pointer;
  display: flex;
  flex-grow: 1;
  font-size: 0.875rem;
  justify-content: space-between;
  line-height: 1.5rem;
  min-height: 40px;
  position: relative;
  transition: background-color .4s ease-in-out;
}
.toddler_ui_fields__L941_C3:hover {
  color: var(--color-neutral-p2);
}
.toddler_ui_fields__L941_C3 .verbal {
  cursor: pointer;
  flex-grow: 1;
  min-width: 5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  user-select: none;
}
.toddler_ui_fields__L941_C3 .figurative {
  padding-right: 0.5rem;
}
.toddler_ui_fields__L941_C3 .figurative svg {
  height: 1.25rem;
  width: 1.25rem;
}
.toddler_ui_fields__L971_C15 {
  color: var(--field-label);
  cursor: pointer;
  padding-left: 0.5rem;
}
.toddler_ui_fields__L971_C15:hover, .toddler_ui_fields__L971_C15.selected {
  color: var(--field-text);
}
.toddler_ui_fields__L971_C15 .toddler-checkbox-wrapper {
  align-items: center;
  display: flex;
}
.toddler_ui_fields__L971_C15 .toddler-checkbox-wrapper > .figurative > svg {
  height: 1.25rem;
  width: 1.25rem;
}
.toddler_ui_fields__L971_C15 .toddler-checkbox-wrapper > .verbal {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  margin-left: 0.25rem;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_fields__L1060_C26 {
  display: flex;
  flex-grow: 1;
}
.toddler_showcase_routing__L81_C16 {
  background: var(--background-m1);
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem;
}
.toddler_showcase_routing__L89_C20 {
  background-color: var(--background-warn);
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem;
}
.toddler_showcase_routing__L96_C16 {
  background-color: var(--background-positive);
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
  padding: 1rem;
}
.toddler_showcase_three__L35_C16 {
  background: var(--background-p1);
  border-color: var(--border-normal);
  border-radius: 0.5rem;
  border-width: 1px;
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.toddler_showcase_camera__L79_C29 {
  border-color: var(--border-normal);
  border-radius: 0.375rem;
  border-width: 1px;
  overflow: hidden;
}
.toddler_showcase_camera__L101_C31 {
  border-color: var(--border-normal);
  border-radius: 0.375rem;
  border-width: 1px;
  overflow: hidden;
}
.toddler_showcase_camera__L108_C28 {
  padding-top: 0.5rem;
}
.toddler_showcase_modal__L47_C24 {
  margin-top: 1rem;
  white-space: pre-wrap;
}
.toddler_showcase_modal__L63_C24 {
  margin-top: 1rem;
  padding: 1rem;
  white-space: pre-wrap;
}
.toddler_showcase_modal__L77_C21 .toddler-row {
  gap: 0.75em;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.toddler_showcase_modal__L129_C32 {
  margin-top: 1rem;
}
.toddler_ui_elements_calendar__L13_C3 {
  cursor: default;
  display: flex;
  flex-direction: row;
}
.toddler_ui_elements_calendar__L13_C3 .day-wrapper {
  align-items: center;
  border: 1px solid transparent;
  border-collapse: collapse;
  display: flex;
  height: 1.5rem;
  justify-content: center;
  width: 2.5rem;
}
.toddler_ui_elements_calendar__L13_C3 .day-wrapper .day {
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.125rem;
  text-transform: uppercase;
  user-select: none;
}
.toddler_ui_elements_calendar__L30_C3 {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.toddler_ui_elements_calendar__L36_C3 {
  display: flex;
  flex-direction: row;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.toddler_ui_elements_calendar__L39_C3 .day.disabled, .toddler_ui_elements_calendar__L39_C3 .day:hover.disabled {
  border-color: transparent;
  border-width: 1px;
  color: var(--color-inactive);
  cursor: default;
}
.toddler_ui_elements_calendar__L39_C3.period-start .day {
  background-color: var(--cd-period-marker-bg);
  border-bottom-left-radius: 3px;
  border-right: 1px solid var(--cd-selected-border);
  border-top-left-radius: 3px;
  color: var(--cd-period-marker-color);
}
.toddler_ui_elements_calendar__L39_C3.picked .day {
  border-bottom: 1px solid var(--cd-selected-border);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  border-left: 1px solid var(--cd-selected-border);
  border-right: 1px solid var(--cd-selected-border);
  border-top: 1px solid var(--cd-selected-border);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  color: var(--cd-selected-color);
}
.toddler_ui_elements_calendar__L39_C3.period-end .day {
  background-color: var(--cd-period-marker-bg) ;
  border-bottom-right-radius: 3px;
  border-left: 1px solid var(--cd-selected-border);
  border-top-right-radius: 3px;
  color: var(--cd-period-marker-color);
}
.toddler_ui_elements_calendar__L39_C3 .day {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 0.75rem;
  font-weight: 500;
  height: 1.5rem;
  justify-content: center;
  line-height: 1.25rem;
  user-select: none;
  width: 2.5rem;
}
.toddler_ui_elements_calendar__L39_C3:hover:not(.empty):not(.period-start):not(.period-end):not(.picked) .day {
  border-color: #var(--cd-hover-border) !important;
  color: var(--cd-hover-color);
}
.toddler_ui_elements_calendar__L39_C3 .day.empty {
  cursor: default;
}
.toddler_ui_elements_calendar__L39_C3 {
  color: var(--color-inactive);
}
.toddler_ui_elements_calendar__L39_C3.prev-month:not(.period-start):not(.period-end):not(.picked) .day, .toddler_ui_elements_calendar__L39_C3.next-month .day:not(.period-end):not(.picked) {
  color: var(--cd-other-color);
}
.toddler_ui_elements_calendar__L39_C3.selected .day {
  border-bottom: 1px solid var(--cd-selected-border);
  border-top: 1px solid var(--cd-selected-border);
  color: var(--cd-selected-color) !important;
}
.toddler_ui_elements_calendar__L39_C3.selected:first-child .day, .toddler_ui_elements_calendar__L39_C3.period-start .day {
  border-bottom-left-radius: 3px;
  border-left: 1px solid var(--cd-selected-border) ;
  border-top-left-radius: 3px;
}
.toddler_ui_elements_calendar__L39_C3.selected:last-child .day, .toddler_ui_elements_calendar__L39_C3.period-end .day {
  border-bottom-right-radius: 3px;
  border-right: 1px solid var(--cd-selected-border) ;
  border-top-right-radius: 3px;
}
.toddler_ui_elements_calendar__L105_C3 .header-wrapper {
  display: flex;
}
.toddler_ui_elements_calendar__L105_C3 .header svg:hover {
  background-color: var(--calendar-button-bg-hover);
  border-radius: 0.125rem;
  color: var(--calendar-button-color-hover);
}
.toddler_ui_elements_calendar__L105_C3 .header .info .month {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25rem;
  text-transform: uppercase;
}
.toddler_ui_elements_calendar__L105_C3 .header svg {
  border-color: transparent;
  border-width: 1px;
  color: var(--calendar-button-color);
  cursor: pointer;
  height: 1.5rem;
  transition: border-color .3s ease-in-out, background-color .3s ease-in-out, color .3s ease-in-out;
  width: 1.5rem;
}
.toddler_ui_elements_calendar__L105_C3 .header .info .year {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25rem;
  margin-left: 0.5rem;
}
.toddler_ui_elements_calendar__L105_C3 .header .info {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.toddler_ui_elements_calendar__L105_C3 .content-wrapper {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.toddler_ui_elements_calendar__L105_C3 {
  background-color: transparent;
  border-radius: 0.125rem;
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_elements_calendar__L105_C3 .header .back, .toddler_ui_elements_calendar__L105_C3 .header .forward {
  display: flex;
}
.toddler_ui_elements_calendar__L105_C3 .header .months {
  align-items: center;
  display: flex;
  position: relative;
  user-select: none;
}
.toddler_ui_elements_calendar__L105_C3 .header {
  display: flex;
  flex-grow: 1;
  height: 1.5rem;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  user-select: none;
}
.toddler_showcase_calendar__L50_C26 .component {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.toddler_showcase_rationale__L91_C37 a {
  color: var(--link-color);
  font-weight: 600;
}
.toddler_showcase_rationale__L91_C37 code {
  margin-top: 0.5rem;
}
.toddler_showcase_rationale__L91_C37 p {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_showcase_rationale__L91_C37 pre > code {
  background-color: transparent;
  border-radius: 0.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.toddler_showcase_rationale__L91_C37 li > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_showcase_rationale__L91_C37 p > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_showcase_rationale__L108_C17 {
  background: var(--background-p1);
  border-color: var(--border-normal-p1);
  border-radius: 0.5rem;
  border-width: 1px;
  grow: 1;
  margin-bottom: 0.5rem;
  margin-left: 1.5rem;
  margin-right: 1rem;
  margin-top: 1.5rem;
  padding: 1rem;
}
.toddler_showcase_rationale__L121_C28 {
  margin-top: 1rem;
}
.toddler_showcase_rationale__L153_C36 .component {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.toddler_showcase_rationale__L156_C27 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.toddler_showcase_rationale__L156_C27 .quote {
  color: var(--color);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.75rem;
}
.toddler_showcase_rationale__L156_C27 .author {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-left: 0.5rem;
}
.toddler_showcase_inputs__L17_C15 {
  flex-wrap: wrap;
}
.toddler_showcase_inputs__L169_C26 .example-field {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.toddler_showcase_popup__L44_C21 {
  gap: 1em;
}
.toddler_showcase_popup__L54_C24 {
  max-width: 80px;
}
.toddler_showcase_popup__L62_C27 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.toddler_showcase_popup__L75_C33 {
  background-color: #dc2626;
  border-radius: 0.5rem;
  border-width: 2px;
  height: 3.5rem;
  width: 3.5rem;
}
.toddler_showcase_popup__L104_C28 {
  cursor: default;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
}
.toddler_ui_css__L6_C3 .notification {
  align-items: center;
  background: var(--background-p1);
  background-color: var(--notification-neutral);
  border-color: var(--border-normal);
  border-radius: 0.375rem;
  border-width: 1px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  display: flex;
  flex-grow: 1;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  position: relative;
  transition: color .3s ease-in-out;
  z-index: 200;
}
.toddler_ui_css__L6_C3 .notification.warning {
  background-color: var(--notification-warn);
  border-color: var(--border-warning);
}
.toddler_ui_css__L6_C3 .notification .close {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  justify-self: flex-end;
  line-height: 1.5rem;
  margin-left: 0.75rem;
  opacity: 0.5;
  order: 3;
  padding-left: 0.75rem;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  transition: color .3s ease-in-out;
}
.toddler_ui_css__L6_C3 .notification .icon {
  align-items: center;
  display: flex;
  order: 2;
}
.toddler_ui_css__L6_C3 .notification-wrapper {
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.toddler_ui_css__L6_C3 .notification pre {
  white-space: pre-wrap;
}
.toddler_ui_css__L6_C3 .notification .close svg {
  height: 1rem;
  width: 1rem;
}
.toddler_ui_css__L6_C3 {
  color: var(--notification-text);
}
.toddler_ui_css__L6_C3 .notification.positive {
  background-color: var(--notification-positive);
  border-color: var(--border-positive);
}
.toddler_ui_css__L6_C3 .notification .close:hover {
  cursor: pointer;
  opacity: 1;
}
.toddler_ui_css__L6_C3 .notification .content {
  align-items: center;
  display: flex;
  flex-grow: 1;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.125rem;
  margin-right: 0.5rem;
  order: 2;
}
.toddler_ui_css__L6_C3 .notification.negative {
  background-color: var(--notification-negative);
  border-color: var(--border-negative);
}
.toddler_ui_css__L64_C3 table tbody {
  margin-top: 0.5rem;
  padding: 0.25rem;
}
.toddler_ui_css__L64_C3 h4 {
  margin-top: 1rem;
}
.toddler_ui_css__L64_C3 .hljs {
  background: var(--background-p1);
}
.toddler_ui_css__L64_C3 .code-wrapper {
  padding-top: 0.5rem;
  position: relative;
}
.toddler_ui_css__L64_C3 p > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_ui_css__L64_C3 .code {
  margin-top: 0.5rem;
}
.toddler_ui_css__L64_C3 b, .toddler_ui_css__L64_C3 strong {
  font-weight: 600;
}
.toddler_ui_css__L64_C3 ul li {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_ui_css__L64_C3 a {
  color: var(--link-color);
  font-weight: 600;
}
.toddler_ui_css__L64_C3 li > code {
  background: var(--background-m1);
  border-radius: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.125rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_ui_css__L64_C3 ul {
  border: none;
  border-width: 1px;
  list-style-type: disc;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
.toddler_ui_css__L64_C3 {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 6rem;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.toddler_ui_css__L64_C3 pre > code {
  border-radius: 0.5rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.toddler_ui_css__L64_C3 h3 {
  margin-top: 1rem;
}
.toddler_ui_css__L64_C3 h2 {
  margin-top: 3rem;
}
.toddler_ui_css__L64_C3 h1,.toddler_ui_css__L64_C3 h2,.toddler_ui_css__L64_C3 h3,.toddler_ui_css__L64_C3 h4 {
  text-transform: uppercase;
}
.toddler_ui_css__L64_C3 br {
  height: 8px;
}
.toddler_ui_css__L64_C3 table tr {
  font-size: 0.6875rem;
  height: 1.5rem;
  line-height: 1.125rem;
}
.toddler_ui_css__L64_C3 .code-wrapper .copy-button:hover {
  color: var(--color-p2);
}
.toddler_ui_css__L64_C3 .code-wrapper .copy-button {
  color: var(--color-m1);
  position: absolute;
  right: 0.5rem;
  top: 0.25rem;
}
.toddler_ui_css__L64_C3 .table-container {
  background: var(--background-p1);
  border-color: var(--border-normal-p1);
  border-radius: 0.5rem;
  border-width: 1px;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem;
}
.toddler_ui_css__L64_C3 p {
  margin-top: 0.5rem;
}
.toddler_docs__L71_C20 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.25rem;
}
.toddler_docs__L71_C20 a {
  text-decoration-line: none;
  user-select: none;
}
.toddler_docs__L71_C20 .icon {
  color: transparent;
  margin-right: 0.25rem;
  width: 1.25rem;
}
.toddler_docs__L71_C20 .level-1 {
  padding-left: 0.5rem;
}
.toddler_docs__L71_C20 .level-2 {
  padding-left: 1rem;
}
.toddler_docs__L71_C20 .level-3 {
  padding-left: 1.5rem;
}
.toddler_docs__L109_C22 {
  font-size: 20px;
  height: 50px;
  left: 0;
  padding-left: 1rem;
  position: absolute;
  top: 0;
}
.toddler_docs__L109_C22 .menu {
  font-size: 28px;
}
.toddler_docs__L109_C22 .opened {
  transform: rotate(90deg);
  transition: transform .3s ease-in-out;
}
.toddler_docs__L121_C29 {
  padding-left: 0.5rem;
}
.toddler_docs__L121_C29 .name {
  color: var(--color-inactive);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
}
.toddler_docs__L121_C29 .name:hover {
  color: var(--color-active);
}
.toddler_docs__L121_C29 .selected.name {
  color: var(--color-normal);
}
.toddler_docs__L121_C29 .name.selected {
  color: var(--color-normal);
}
.toddler_docs__L121_C29 .subcomponent a.name {
  font-size: 1rem;
  line-height: 1.5rem;
}
.toddler_docs__L154_C22 {
  display: flex;
  flex-direction: column;
}
.toddler_docs__L154_C22 .component-list {
  margin-bottom: 5rem;
  margin-left: 0.75rem;
}
.toddler_docs__L154_C22 .logo-wrapper {
  display: flex;
}
.toddler_docs__L154_C22 .name {
  color: var(--color-inactive);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25rem;
}
.toddler_docs__L154_C22 .name:hover {
  color: var(--color-active);
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_docs__L154_C22 .selected.name {
  color: var(--color-normal);
}
.toddler_docs__L154_C22 .name.selected {
  color: var(--color-normal);
}
.toddler_docs__L195_C16 {
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  height: 3.75rem;
  padding-right: 0.75rem;
}
.toddler_docs__L195_C16 .wrapper {
  align-items: center;
  color: var(--color-inactive);
  cursor: pointer;
  display: flex;
  font-size: 24px;
  margin-right: 1rem;
}
.toddler_docs__L195_C16 .wrapper:first-child {
  margin-right: 0;
}
.toddler_docs__L195_C16 .tooltip-popup-area:hover {
  color: var(--color-normal) ;
}
.toddler_docs__L213_C16 {
  align-items: center;
  display: flex;
  justify-content: center;
}
.toddler_docs__L227_C18 {
  border-radius: 0.375rem;
}
.toddler_docs__L242_C18 {
  align-items: center;
  display: flex;
  flex-grow: 1;
  justify-content: center;
  min-height: 150px;
}
.toddler_docs__L242_C18 .logo {
  max-height: 40px;
}
.toddler_docs__L244_C17 {
  display: flex;
  margin-left: 0.5rem;
}
.toddler_docs__L244_C17 .logo {
  max-height: 24px;
}
.toddler_docs__L256_C13 {
  font-size: 0.76rem;
  line-height: 1.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.toddler_docs__L256_C13 .code {
  margin-top: 0.5rem;
}
.toddler_docs__L256_C13 h1,.toddler_docs__L256_C13 h2,.toddler_docs__L256_C13 h3,.toddler_docs__L256_C13 h4 {
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-transform: uppercase;
}
.toddler_docs__L256_C13 b, .toddler_docs__L256_C13 strong {
  font-weight: 600;
}
.toddler_docs__L256_C13 br {
  height: 2px;
}
.toddler_docs__L256_C13 ul {
  border: none;
  border-width: 1px;
  list-style-type: disc;
  margin-left: 1rem;
  margin-top: 0.5rem;
}
.toddler_docs__L256_C13 ul li {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_docs__L256_C13 .hljs {
  background: var(--background-p1);
}
.toddler_docs__L265_C20 {
  border-bottom-width: 1px;
  border-color: var(--border-normal);
  box-sizing: border-box;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
}
.toddler_docs__L265_C20:hover {
  background-color: var(--background);
  cursor: pointer;
}
.toddler_docs__L265_C20 h3 {
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25rem;
}
.toddler_docs__L265_C20 .breadcrumb svg {
  font-size: 14px;
}
.toddler_docs__L324_C20 {
  align-self: flex-start;
  background: var(--background-p2);
  border-color: var(--border-normal);
  border-radius: 0.5rem;
  border-width: 1px;
  box-sizing: border-box;
}
.toddler_docs__L324_C20 .search-bar {
  border-bottom-width: 1px;
  border-color: var(--border-normal);
  padding-left: 1rem;
  padding-right: 1rem;
}
.toddler_docs__L324_C20 input {
  flex: 1 0 auto;
  font-size: 1rem;
  line-height: 1.5rem;
}
.toddler_docs__L324_C20 .icon {
  font-size: 24px;
  margin-right: 0.5rem;
}
.toddler_docs__L372_C19 {
  align-items: center;
  border-color: var(--border-normal);
  border-radius: 0.375rem;
  border-width: 1px;
  display: flex;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.25rem;
  margin-right: 0.25rem;
  min-width: 120px;
  padding-bottom: 0.25rem;
  padding-left: 4px;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  transition: color .4s ease-in-out, border .4s ease-in-out;
}
.toddler_docs__L372_C19 .icon {
  align-items: center;
  display: flex;
  font-size: 20px;
  justify-content: center;
  margin-right: 0.25rem;
}
.toddler_docs__L372_C19:hover {
  border-color: var(--border-normal-p1);
  color: var(--color-p1);
}
.toddler_docs__L417_C23 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-decoration-line: none;
  user-select: none;
}
.toddler_showcase_notifications__L58_C28 {
  align-items: center;
  margin-top: 1rem;
}
.toddler_showcase_notifications__L60_C38 textarea {
  min-height: 176px;
}
.toddler_showcase_notifications__L64_C26 {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1.25rem;
}
.toddler_showcase_notifications__L73_C16 {
  align-items: center;
  background-color: #facc15;
  border-color: #000;
  border-radius: 0.5rem;
  border-width: 2px;
  color: #000;
  display: flex;
  padding-bottom: 0.75rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
}
.toddler_showcase_notifications__L73_C16 .icon {
  font-size: 24px;
  margin-right: 0.5rem;
}
.toddler_showcase_notifications__L73_C16 .message {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
}
.toddler_showcase_components__L15_C16 {
  background-color: #9f1239;
  border-radius: 0.5rem;
  color: #ffe4e6;
  padding: 1rem;
}
.toddler_showcase_components__L21_C16 {
  background-color: #075985;
  border-radius: 0.5rem;
  color: #e0f2fe;
  padding: 1rem;
}
.toddler_showcase_icons__L27_C18 {
  padding-top: 1rem;
}
.toddler_showcase_icons__L30_C19 {
  display: flex;
  flex-wrap: wrap;
}
.toddler_showcase_icons__L30_C19 .icon-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem;
}
.toddler_showcase_icons__L30_C19 .icon {
  cursor: pointer;
  font-size: 24px;
}
.toddler_showcase_icons__L30_C19 .name {
  font-size: 10px;
  font-weight: 600;
}
.toddler_showcase_icons__L65_C18 {
  display: flex;
  flex-direction: column;
}
.toddler_showcase_icons__L68_C19 {
  display: flex;
  flex-direction: column;
  font-size: 0.76rem;
  line-height: 1.25rem;
  margin-bottom: 0.5rem;
  max-width: 700px;
  padding-left: 5rem;
  padding-right: 2.5rem;
  position: relative;
}
.toddler_showcase_icons__L68_C19 p {
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
}
.toddler_showcase_icons__L82_C25 {
  background: var(--background-m1);
  border-radius: 0.125rem;
  font-size: 0.6875rem;
  line-height: 1.125rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
}
.toddler_showcase_icons__L86_C20 {
  position: absolute;
}
.toddler_showcase_icons__L86_C20 svg {
  cursor: pointer;
  font-size: 24px;
}
.toddler_showcase_table__L172_C18 {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.toddler_showcase_table__L175_C21 {
  font-size: 24px;
}
.toddler_showcase_table__L188_C18 {
  font-size: 0.76rem;
  line-height: 1.25rem;
  overflow: hidden;
  transition: height .2s ease-in-out;
}
.toddler_showcase_table__L188_C18 label {
  color: var(--color-p1);
  font-weight: 600;
  margin-left: 1rem;
  min-width: 100px;
}
.toddler_showcase_table__L270_C26 .example-field {
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
}
.toddler_showcase_table__L270_C26 #toddler-table-example {
  margin-bottom: 2.5rem;
  margin-top: 2.5rem;
}
.toddler_ui_tables__L58_C17 {
  align-items: center;
  border-radius: 0.125rem;
  color: var(--color-m2);
  display: flex;
  justify-content: center;
  padding: 0.25rem;
  width: 1.75rem;
}
.toddler_ui_tables__L58_C17:hover {
  color: var(--color);
}
.toddler_ui_tables__L65_C16 {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.toddler_ui_tables__L67_C18 {
  background-color: var(--tooltip-bg);
  border-radius: 3px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  color: var(--tooltip-color);
  display: flex;
  font-size: 0.6875rem;
  font-weight: 600;
  justify-content: flex-start;
  line-height: 1.125rem;
  padding: 0.25rem;
}
.toddler_ui_tables__L78_C17 {
  color: var(--button-positive-hover-color);
}
.toddler_ui_tables__L82_C20 {
  padding-top: 0.45em;
}
.toddler_ui_tables__L136_C32 {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_ui_tables__L138_C22 {
  align-items: center;
  display: flex;
  font-weight: 700;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_tables__L138_C22 .decorator {
  color: transparent;
  position: absolute;
  right: 0px;
  transition: color .2s ease-in-out;
}
.toddler_ui_tables__L138_C22:hover .decorator {
  color: #9ca3af;
}
.toddler_ui_tables__L172_C15 {
  font-size: 0.76rem;
  line-height: 1.25rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  resize: none;
  width: 100%;
}
.toddler_ui_tables__L208_C31 {
  display: flex;
  flex-grow: 1;
  font-size: 0.76rem;
  line-height: 1.25rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_tables__L208_C31 .clear {
  align-self: center;
  color: transparent;
  position: absolute;
  right: 0px;
  transition: color .2s ease-in-out;
}
.toddler_ui_tables__L208_C31:hover .clear  {
  color: #9ca3af;
}
.toddler_ui_tables__L208_C31 .clear:hover {
  color: #111827;
  cursor: pointer;
}
.toddler_ui_tables__L222_C21 {
  font-size: 0.76rem;
  line-height: 1.25rem;
}
.toddler_ui_tables__L263_C18 {
  border-width: 0px;
  font-size: 0.76rem;
  line-height: 1.25rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  width: 100%;
}
.toddler_ui_tables__L312_C18 {
  display: flex;
}
.toddler_ui_tables__L312_C18 input {
  border-width: 0px;
  flex: 1 0 auto;
  font-size: 0.76rem;
  line-height: 1.25rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_tables__L386_C14 {
  display: flex;
  flex-grow: 1;
  font-size: 0.76rem;
  line-height: 1.25rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_tables__L386_C14 .clear {
  align-self: center;
  color: transparent;
  position: absolute;
  right: 0px;
  transition: color .2s ease-in-out;
}
.toddler_ui_tables__L386_C14:hover .clear  {
  color: #9ca3af;
}
.toddler_ui_tables__L386_C14 .clear:hover {
  color: #111827;
  cursor: pointer;
}
.toddler_ui_tables__L408_C22 {
  cursor: pointer;
  font-weight: 700;
  width: 2.5rem;
}
.toddler_ui_tables__L467_C17 {
  align-items: center;
  border-radius: 0.125rem;
  display: flex;
  font-size: 0.76rem;
  height: 1.25rem;
  justify-content: center;
  line-height: 1.25rem;
  transition: color .3s ease-in-out;
  width: 1.25rem;
}
.toddler_ui_tables__L476_C17 {
  color: var(--color-p2);
}
.toddler_ui_tables__L477_C19 {
  color: var(--color-m2);
}
.toddler_ui_tables__L479_C15 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.toddler_ui_tables__L492_C22 {
  height: 1.5rem;
  width: 1.5rem;
}
.toddler_ui_tables__L523_C23 {
  font-size: 0.76rem;
  line-height: 1.25rem;
  padding-left: 2.5rem;
}
.toddler_ui_tables__L525_C22 {
  align-items: center;
  display: flex;
  max-height: 40px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  position: relative;
}
.toddler_ui_tables__L525_C22 .decorator {
  color: transparent;
  position: absolute;
  right: 0px;
  transition: color .2s ease-in-out;
}
.toddler_ui_tables__L525_C22:hover .decorator {
  color: #9ca3af;
}
.toddler_ui_tables__L538_C25 {
  background-color: var(--avatar-bg);
  border-color: #6b7280;
  border-radius: 30px;
  border-width: 1px;
  height: 1.5rem;
  left: -32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
}
.toddler_ui_tables__L574_C17 {
  display: flex;
  font-size: 0.76rem;
  justify-content: center;
  line-height: 1.25rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-top: 0.7em;
  resize: none;
  width: 100%;
}
.toddler_ui_tables__L590_C3 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 0.76rem;
  font-weight: 700;
  height: 100%;
  justify-content: space-between;
  line-height: 1.25rem;
  margin: 0.25rem;
}
.toddler_ui_tables__L590_C3 .header {
  display: flex;
}
.toddler_ui_tables__L590_C3 .header .row {
  cursor: pointer;
  font-weight: 700;
}
.toddler_ui_tables__L590_C3 .sort-marker.hidden {
  opacity: 0;
}
.toddler_ui_tables__L634_C17 {
  background-color: #f3f4f6;
  border-color: #f3f4f6;
  border-radius: 0.75rem;
  border-width: 1px;
  box-shadow: 0 11px 25px -5px rgb(0 0 0 / 9%), 0 4px 20px 0px rgb(0 0 0 / 14%);
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0.5rem;
}
.toddler_ui_tables__L634_C17 .simplebar-scrollbar:before {
  background-color: #f3f4f6;
  max-height: 400px;
  pointer-events: none;
}
.toddler_ui_tables__L658_C3 {
  background-color: var(--table-bg);
  border-color: var(--table-border);
  border-radius: 0.375rem;
  border-width: 1px;
  color: var(--table-text);
  display: flex;
  flex-grow: 1;
}
.toddler_ui_tables__L658_C3:not([flavor="flat"]) {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.toddler_ui_tables__L658_C3 .tcell {
  overflow: hidden;
}
.toddler_ui_tables__L658_C3 .trow {
  border-bottom-width: 1px;
  border-color: transparent;
  margin-bottom: 0.25rem;
  margin-top: 0.25rem;
  min-height: 2em;
  transition: all .5s ease-in-out;
}
.toddler_ui_tables__L730_C23 {
  border-color: transparent;
  display: flex;
  padding: 0.75rem;
}
.toddler_ui_tables__L730_C23 .simplebar-scrollbar:before {
  visibility: hidden;
}
.toddler_ui_tables__L730_C23 .trow {
  align-items: flex-start;
  display: flex;
}
