@charset "UTF-8";
.theme-light html,
.theme-light body,
.theme-light main {
  background: #EFEFEF;
}
.theme-dark html,
.theme-dark body,
.theme-dark main {
  background: #2e2e2e;
}
html,
body,
main {
  font-family: "Geist", sans-serif, serif;
  overflow: hidden;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  pointer-events: all;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}

/* Grid */
.to-grid-1 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(1, minmax(1px, calc((100% - 0px) / 1)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-1:not(.to-grid-fixed) {
    grid-template-columns: repeat(1, minmax(1px, calc((100% - 0px) / 1)));
  }
}
@media (max-width: 768px) {
  .to-grid-1:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-1 {
  grid-column-end: span 1;
  grid-row-end: span 1;
}

.to-grid-2 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, minmax(1px, calc((100% - 8px) / 2)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-2:not(.to-grid-fixed) {
    grid-template-columns: repeat(1, minmax(1px, calc((100% - 8px) / 1)));
  }
}
@media (max-width: 768px) {
  .to-grid-2:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-2 {
  grid-column-end: span 2;
  grid-row-end: span 2;
}

.to-grid-3 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(3, minmax(1px, calc((100% - 16px) / 3)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-3:not(.to-grid-fixed) {
    grid-template-columns: repeat(2, minmax(1px, calc((100% - 16px) / 2)));
  }
}
@media (max-width: 768px) {
  .to-grid-3:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-3 {
  grid-column-end: span 3;
  grid-row-end: span 3;
}

.to-grid-4 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(4, minmax(1px, calc((100% - 24px) / 4)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-4:not(.to-grid-fixed) {
    grid-template-columns: repeat(2, minmax(1px, calc((100% - 24px) / 2)));
  }
}
@media (max-width: 768px) {
  .to-grid-4:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-4 {
  grid-column-end: span 4;
  grid-row-end: span 4;
}

.to-grid-5 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(5, minmax(1px, calc((100% - 32px) / 5)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-5:not(.to-grid-fixed) {
    grid-template-columns: repeat(3, minmax(1px, calc((100% - 32px) / 3)));
  }
}
@media (max-width: 768px) {
  .to-grid-5:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-5 {
  grid-column-end: span 5;
  grid-row-end: span 5;
}

.to-grid-6 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(6, minmax(1px, calc((100% - 40px) / 6)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-6:not(.to-grid-fixed) {
    grid-template-columns: repeat(3, minmax(1px, calc((100% - 40px) / 3)));
  }
}
@media (max-width: 768px) {
  .to-grid-6:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-6 {
  grid-column-end: span 6;
  grid-row-end: span 6;
}

.to-grid-7 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(7, minmax(1px, calc((100% - 48px) / 7)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-7:not(.to-grid-fixed) {
    grid-template-columns: repeat(4, minmax(1px, calc((100% - 48px) / 4)));
  }
}
@media (max-width: 768px) {
  .to-grid-7:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-7 {
  grid-column-end: span 7;
  grid-row-end: span 7;
}

.to-grid-8 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(8, minmax(1px, calc((100% - 56px) / 8)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-8:not(.to-grid-fixed) {
    grid-template-columns: repeat(4, minmax(1px, calc((100% - 56px) / 4)));
  }
}
@media (max-width: 768px) {
  .to-grid-8:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-8 {
  grid-column-end: span 8;
  grid-row-end: span 8;
}

.to-grid-9 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(9, minmax(1px, calc((100% - 64px) / 9)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-9:not(.to-grid-fixed) {
    grid-template-columns: repeat(5, minmax(1px, calc((100% - 64px) / 5)));
  }
}
@media (max-width: 768px) {
  .to-grid-9:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-9 {
  grid-column-end: span 9;
  grid-row-end: span 9;
}

.to-grid-10 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(10, minmax(1px, calc((100% - 72px) / 10)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-10:not(.to-grid-fixed) {
    grid-template-columns: repeat(5, minmax(1px, calc((100% - 72px) / 5)));
  }
}
@media (max-width: 768px) {
  .to-grid-10:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-10 {
  grid-column-end: span 10;
  grid-row-end: span 10;
}

.to-grid-11 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(11, minmax(1px, calc((100% - 80px) / 11)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-11:not(.to-grid-fixed) {
    grid-template-columns: repeat(6, minmax(1px, calc((100% - 80px) / 6)));
  }
}
@media (max-width: 768px) {
  .to-grid-11:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-11 {
  grid-column-end: span 11;
  grid-row-end: span 11;
}

.to-grid-12 {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(12, minmax(1px, calc((100% - 88px) / 12)));
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-grid-12:not(.to-grid-fixed) {
    grid-template-columns: repeat(6, minmax(1px, calc((100% - 88px) / 6)));
  }
}
@media (max-width: 768px) {
  .to-grid-12:not(.to-grid-fixed) {
    grid-template-columns: none;
  }
}

.to-span-12 {
  grid-column-end: span 12;
  grid-row-end: span 12;
}

.to-page {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
}

.to-page-divider {
  margin: 8px 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-page-divider {
  border: 1px solid rgb(213.5, 213.5, 213.5);
}
.theme-dark .to-page-divider {
  border: 1px solid rgb(20.5, 20.5, 20.5);
}

/** Canvas Components **/
.to-is-draggable {
  cursor: grab;
}

.to-is-dragging {
  cursor: grabbing;
}

/** Toasts **/
.theme-light .to-toast {
  background-color: rgb(251.75, 251.75, 251.75);
  color: #2e2e2e;
}
.theme-dark .to-toast {
  background-color: rgb(58.75, 58.75, 58.75);
  color: #EFEFEF;
}

/** Pull to Refresh **/
.ptr {
  overflow: visible !important;
}

/** React Tabs **/
.react-tabs .react-tabs__tab-list {
  padding: 4px;
  margin-bottom: 12px;
}
.theme-light .react-tabs .react-tabs__tab-list:has(> *) {
  background-color: hsl(0, 0%, 103.7254901961%);
  border-bottom: 1px solid rgb(213.5, 213.5, 213.5);
}
.theme-dark .react-tabs .react-tabs__tab-list:has(> *) {
  background-color: rgb(71.5, 71.5, 71.5);
  border-bottom: 1px solid rgb(20.5, 20.5, 20.5);
}
.react-tabs .react-tabs__tab-list.to-central-tabs {
  text-align: center;
  margin-bottom: 0;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin-right: 8px;
  letter-spacing: 0.01rem;
  padding: 4px;
  transition: 0.2s ease;
  border-bottom: 4px solid transparent;
}
.react-tabs .react-tabs__tab-list .react-tabs__tab > i {
  margin-right: 6px;
}
.theme-light .react-tabs .react-tabs__tab-list .react-tabs__tab:hover {
  border-bottom: 4px solid #636363;
}
.theme-dark .react-tabs .react-tabs__tab-list .react-tabs__tab:hover {
  border-bottom: 4px solid #4e4e4e;
}
.theme-light .react-tabs .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected {
  border-bottom: 4px solid #436db3;
  color: #436db3;
}
.theme-dark .react-tabs .react-tabs__tab-list .react-tabs__tab.react-tabs__tab--selected {
  border-bottom: 4px solid #1d1d1d;
  color: #1d1d1d;
}

/** Scrollbar **/
::-webkit-scrollbar {
  border-radius: 2px;
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #888;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#docs-root .sbdocs h1 {
  font-size: 2em;
  margin-bottom: 6px;
}
#docs-root .sbdocs p {
  margin-bottom: 6px;
}
#docs-root .sbdocs strong {
  font-weight: bold;
}

#storybook-explorer-searchfield {
  font-family: "Geist", sans-serif, serif;
}
.theme-light #storybook-explorer-searchfield {
  background: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
}
.theme-light #storybook-explorer-searchfield:focus {
  border: 2px solid #436db3;
}
.theme-dark #storybook-explorer-searchfield {
  background: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
}
.theme-dark #storybook-explorer-searchfield:focus {
  border: 2px solid #1d1d1d;
}
#storybook-explorer-searchfield {
  border-radius: 2px;
}

#search-result-recentlyOpened,
#storybook-explorer-menu {
  font-family: "Geist", sans-serif, serif;
}

.sb-show-main {
  height: inherit;
}

.to-page-tile {
  margin: 16px 10%;
  transition: 0.2s ease;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-page-tile {
    margin: 16px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-page-tile {
    margin: 16px;
  }
}
@media (max-width: 768px) {
  .to-page-tile {
    margin: 16px;
  }
}

.to-page-sticky-scroll {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
.to-page-sticky-scroll > * {
  scroll-snap-align: start;
}

.to-cookie-consent-form {
  cursor: default;
  border-radius: 4px;
  bottom: 20px;
  right: 20px;
  padding: 8px;
  width: 200px;
  text-align: center;
  position: absolute;
  will-change: opacity;
  box-shadow: 7px 11px 66px -6px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 7px 11px 66px -6px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 7px 11px 66px -6px rgba(0, 0, 0, 0.75);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-light .to-cookie-consent-form {
  border: 1px solid #2e2e2e;
  background: #EFEFEF;
}
.theme-dark .to-cookie-consent-form {
  border: 1px solid #EFEFEF;
  background: #2e2e2e;
}
.to-cookie-consent-form .to-cookie-consent-text,
.to-cookie-consent-form .to-cookie-consent-icon {
  margin-bottom: 6px;
}
.to-cookie-consent-form .to-cookie-consent-icon {
  font-size: 2rem;
  width: 100%;
}
.to-cookie-consent-form .to-cookie-consent-text {
  margin-bottom: 6px;
}
.to-cookie-consent-form .to-cookie-consent-link {
  margin-left: 6px;
  transition: 0.2s ease;
}
.theme-light .to-cookie-consent-form .to-cookie-consent-link {
  color: #436db3;
}
.theme-dark .to-cookie-consent-form .to-cookie-consent-link {
  color: #1d1d1d;
}
.theme-light .to-cookie-consent-form .to-cookie-consent-link:hover, .theme-light .to-cookie-consent-form .to-cookie-consent-link:focus {
  color: rgb(53.1097560976, 86.4024390244, 141.8902439024);
}
.theme-dark .to-cookie-consent-form .to-cookie-consent-link:hover, .theme-dark .to-cookie-consent-form .to-cookie-consent-link:focus {
  color: rgb(3.5, 3.5, 3.5);
}
.to-cookie-consent-form .to-cookie-consent-accept {
  margin-right: 10px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-cookie-consent-form {
    box-shadow: none;
    position: relative;
    border-radius: 0;
    bottom: inherit;
    right: inherit;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
  .theme-light .to-cookie-consent-form {
    border: none;
    border-top: 1px solid #2e2e2e;
  }
  .theme-dark .to-cookie-consent-form {
    border: none;
    border-top: 1px solid #EFEFEF;
  }
  .to-cookie-consent-form .to-cookie-consent-icon {
    font-size: 1.6rem;
  }
  .to-cookie-consent-form .to-cookie-consent-text {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .to-cookie-consent-form {
    box-shadow: none;
    position: relative;
    border-radius: 0;
    bottom: inherit;
    right: inherit;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
  .theme-light .to-cookie-consent-form {
    border: none;
    border-top: 1px solid #2e2e2e;
  }
  .theme-dark .to-cookie-consent-form {
    border: none;
    border-top: 1px solid #EFEFEF;
  }
  .to-cookie-consent-form .to-cookie-consent-icon {
    font-size: 1.6rem;
  }
  .to-cookie-consent-form .to-cookie-consent-text {
    display: inline-flex;
  }
}

.to-campaign-details {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-campaign-details .to-campaign-banner-image {
  overflow: hidden;
  position: relative;
  border-radius: 6px 6px 0 0;
  height: 250px;
  margin-bottom: 6px;
}
.to-campaign-details .to-campaign-banner-image > .to-image {
  object-fit: cover;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-campaign-details .to-campaign-banner-image .to-campaign-banner-image-divider {
  position: absolute;
  top: 60%;
  z-index: 1;
  height: 40%;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-campaign-details .to-campaign-banner-image .to-campaign-banner-image-divider {
  background-image: linear-gradient(to top, hsl(0, 0%, 103.7254901961%), rgba(0, 0, 0, 0));
}
.theme-dark .to-campaign-details .to-campaign-banner-image .to-campaign-banner-image-divider {
  background-image: linear-gradient(to top, rgb(71.5, 71.5, 71.5), rgba(0, 0, 0, 0));
}
.to-campaign-details .to-campaign-details-header-container {
  display: flex;
  gap: 6px;
  flex: 1 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-campaign-details .to-campaign-details-header-container .to-campaign-details-header {
  width: 100%;
}
.to-campaign-details .to-campaign-details-header-container .to-campaign-details-header .to-campaign-title .to-campaign-summary {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-campaign-details .to-campaign-details-header-container .to-campaign-details-header-actions {
  flex: 1;
  min-width: 200px;
}
.to-campaign-details .to-campaign-summary {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.to-campaign-details .to-campaign-description.to-rich-textarea-readonly {
  margin-top: 20px;
  margin-bottom: 20px;
}
.to-campaign-details .to-player-cards .to-player-card {
  text-align: center;
}
.to-campaign-details .to-player-cards .to-player-card > .to-image {
  border: 2px;
  width: 50px;
  height: 50px;
}
.to-campaign-details .to-player-cards .to-player-card .to-player-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-campaign-details .to-player-cards .to-player-card .to-player-name .to-player-permission {
  margin-right: 4px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-campaign-details .to-player-cards {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .to-campaign-details .to-player-cards {
    margin-top: 12px;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .to-campaign-details {
    display: block;
  }
}

.to-character-sheet-action {
  margin-bottom: 6px;
}

.to-dashboard {
  margin: 16px 6vw;
}
.to-dashboard .to-new-section,
.to-dashboard .to-new-widget {
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  padding: 10px 6px;
  text-align: center;
  transition: 0.2s ease;
  opacity: 0.7;
  will-change: opacity;
  min-height: 100px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-dashboard .to-new-section,
.theme-light .to-dashboard .to-new-widget {
  border: 1px solid #bcbcbc;
  color: #2e2e2e;
}
.theme-dark .to-dashboard .to-new-section,
.theme-dark .to-dashboard .to-new-widget {
  border: 1px solid hsl(0, 0%, -1.9607843137%);
  color: #EFEFEF;
}
.to-dashboard .to-new-section:hover,
.to-dashboard .to-new-widget:hover {
  opacity: 1;
}
.theme-light .to-dashboard .to-new-section:hover,
.theme-light .to-dashboard .to-new-widget:hover {
  background: rgba(0, 0, 0, 0.1);
}
.theme-dark .to-dashboard .to-new-section:hover,
.theme-dark .to-dashboard .to-new-widget:hover {
  background: rgba(0, 0, 0, 0.1);
}
.to-dashboard .to-new-section .to-new-section-description,
.to-dashboard .to-new-section .to-new-widget-description,
.to-dashboard .to-new-widget .to-new-section-description,
.to-dashboard .to-new-widget .to-new-widget-description {
  margin: auto 0;
  display: flex;
  flex-direction: column;
}
.to-dashboard .to-new-section .to-new-section-description .to-new-section-icon,
.to-dashboard .to-new-section .to-new-section-description .to-new-widget-icon,
.to-dashboard .to-new-section .to-new-widget-description .to-new-section-icon,
.to-dashboard .to-new-section .to-new-widget-description .to-new-widget-icon,
.to-dashboard .to-new-widget .to-new-section-description .to-new-section-icon,
.to-dashboard .to-new-widget .to-new-section-description .to-new-widget-icon,
.to-dashboard .to-new-widget .to-new-widget-description .to-new-section-icon,
.to-dashboard .to-new-widget .to-new-widget-description .to-new-widget-icon {
  font-size: 1.6rem;
  margin-right: 8px;
  margin-bottom: 8px;
}
.to-dashboard .to-new-section {
  margin-bottom: 30px;
}
.to-dashboard .to-section {
  border-radius: 6px;
  position: relative;
  padding: 16px;
  margin-bottom: 20px;
}
.theme-light .to-dashboard .to-section {
  background: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
  border: 1px solid #bcbcbc;
}
.theme-dark .to-dashboard .to-section {
  background: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
  border: 1px solid hsl(0, 0%, -1.9607843137%);
}
.to-dashboard .to-section .to-section-header {
  display: flex;
  height: 1.6rem;
  flex: 1 0 auto;
  margin-bottom: 8px;
}
.to-dashboard .to-section .to-section-header .to-section-summary {
  font-size: 1.6rem;
  font-weight: bold;
  flex: 1 0 auto;
}
.to-dashboard .to-section .to-section-header .to-section-actions-container {
  cursor: pointer;
  align-self: center;
  margin: 0 auto;
}
.to-dashboard .to-section .to-section-header .to-section-actions-container > .to-action {
  border-radius: 2px;
  padding: 6px 10px;
  transition: 0.2s ease;
}
.theme-light .to-dashboard .to-section .to-section-header .to-section-actions-container > .to-action:hover {
  background: rgba(0, 0, 0, 0.1);
}
.theme-dark .to-dashboard .to-section .to-section-header .to-section-actions-container > .to-action:hover {
  background: rgba(0, 0, 0, 0.1);
}
.to-dashboard .to-widget-actions-container {
  cursor: pointer;
  align-self: center;
  margin: 0 auto;
}
.to-dashboard .to-widget-actions-container > .to-action {
  border-radius: 2px;
  padding: 6px 10px;
  transition: 0.2s ease;
}
.theme-light .to-dashboard .to-widget-actions-container > .to-action:hover {
  background: rgba(0, 0, 0, 0.1);
}
.theme-dark .to-dashboard .to-widget-actions-container > .to-action:hover {
  background: rgba(0, 0, 0, 0.1);
}

.to-data-view-container {
  display: flex;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-data-view-container {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-data-view-container {
    display: block;
  }
}
@media (max-width: 768px) {
  .to-data-view-container {
    display: block;
  }
}
.to-data-view-container .to-data-view-detailed-filters {
  flex: 0 1 auto;
  padding: 16px;
  display: none;
}
.to-data-view-container .to-data-view-detailed-filters.to-active {
  display: block;
}
.to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
  padding: 8px;
  font-weight: bold;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
  background-color: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
  background-color: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
@media (max-width: 768px) {
  .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-header {
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
.to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-options {
  padding: 12px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-options {
  background-color: rgb(226.25, 226.25, 226.25);
  color: #2e2e2e;
}
.theme-dark .to-data-view-container .to-data-view-detailed-filters .to-data-view-filter-options {
  background-color: rgb(33.25, 33.25, 33.25);
  color: #EFEFEF;
}
.to-data-view-container .to-data-view-detailed-filters .to-filter-ads {
  margin-top: 16px;
  height: 150px;
}

.to-data-view-pills {
  display: flex;
  margin-bottom: 12px;
}
.to-data-view-pills .to-data-view-pill {
  border-radius: 4px;
  margin-right: 6px;
  display: flex;
  width: fit-content;
}
.theme-light .to-data-view-pills .to-data-view-pill {
  background-color: rgb(137.1219512195, 164.7804878049, 210.8780487805);
  color: #2e2e2e;
}
.theme-dark .to-data-view-pills .to-data-view-pill {
  background-color: #505050;
  color: #EFEFEF;
}
.to-data-view-pills .to-data-view-pill .to-data-view-pill-key {
  border-radius: 4px 0 0 4px;
  padding: 2px 4px;
  max-width: 100px;
}
.theme-light .to-data-view-pills .to-data-view-pill .to-data-view-pill-key {
  background-color: rgb(100.012195122, 136.3780487805, 196.987804878);
  border-right: 1px solid #EFEFEF;
  color: #EFEFEF;
}
.theme-dark .to-data-view-pills .to-data-view-pill .to-data-view-pill-key {
  background-color: rgb(54.5, 54.5, 54.5);
  border-right: 1px solid #EFEFEF;
  color: #EFEFEF;
}
.to-data-view-pills .to-data-view-pill .to-data-view-pill-key {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-data-view-pills .to-data-view-pill .to-data-view-pill-value {
  padding: 2px;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-data-view-pills .to-data-view-pill .to-data-view-pill-action {
  display: none;
  cursor: pointer;
  margin: auto;
  padding: 2px 4px;
}
.theme-light .to-data-view-pills .to-data-view-pill .to-data-view-pill-action {
  color: #2e2e2e;
}
.theme-dark .to-data-view-pills .to-data-view-pill .to-data-view-pill-action {
  color: #EFEFEF;
}
.to-data-view-pills .to-data-view-pill:hover .to-data-view-pill-action {
  display: inline-block;
}
.to-data-view-pills:empty {
  margin-bottom: 0;
}

.to-data-view-current-filters {
  padding: 6px;
  margin-bottom: 6px;
}

.to-data-items {
  padding: 16px;
  flex: 1 1 auto;
}
.to-data-items .to-data-item {
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-data-items .to-data-item .to-tile {
  cursor: pointer;
  transition: 0.2s ease;
}
.theme-light .to-data-items .to-data-item .to-tile:hover {
  background-color: rgb(251.75, 251.75, 251.75);
  color: #2e2e2e;
}
.theme-dark .to-data-items .to-data-item .to-tile:hover {
  background-color: rgb(58.75, 58.75, 58.75);
  color: #EFEFEF;
}
.to-data-items .to-data-item .to-tile .to-tile-header {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-new-item-button {
  margin: 12px auto 0;
}

.to-new-item {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: grid;
  padding: 10px 6px;
  text-align: center;
  transition: 0.2s ease;
  opacity: 0.7;
  will-change: opacity;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-new-item {
    min-height: 150px;
  }
}
@media (max-width: 768px) {
  .to-new-item {
    min-height: 150px;
  }
}
.theme-light .to-new-item {
  border: 1px solid #2e2e2e;
  color: #2e2e2e;
  background-color: #EFEFEF;
}
.theme-dark .to-new-item {
  border: 1px solid #EFEFEF;
  color: #EFEFEF;
  background-color: #2e2e2e;
}
.to-new-item:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
}
.to-new-item .to-new-item-description {
  display: flex;
  flex-direction: column;
}
.to-new-item .to-new-item-description .to-new-item-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.to-document-storage {
  display: flex;
  flex-direction: row;
  min-height: 250px;
  max-height: 100%;
}
.to-document-storage .to-tile-description {
  min-height: 250px;
  max-height: 500px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage {
    display: block;
    flex-direction: inherit;
  }
}
@media (max-width: 768px) {
  .to-document-storage {
    display: block;
    flex-direction: inherit;
  }
}
.to-document-storage .to-document-storage-details {
  width: 350px;
  height: 180px;
  margin-right: 16px;
}
.to-document-storage .to-document-storage-details .to-document-storage-stats {
  display: flex;
  margin-top: 20px;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-document-storage .to-document-storage-details .to-document-storage-stats .to-progressbar {
  margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-progressbar {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-progressbar {
    display: none;
  }
}
.to-document-storage .to-document-storage-details .to-document-storage-stats .to-field-group {
  display: block;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-field-group {
    display: flex;
  }
}
@media (max-width: 768px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-field-group {
    display: flex;
  }
}
.to-document-storage .to-document-storage-details .to-document-storage-stats .to-document-storage-available-space {
  flex: 1;
  margin-left: 120px;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-document-storage-available-space {
    margin-left: 30px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-document-storage-available-space {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .to-document-storage .to-document-storage-details .to-document-storage-stats .to-document-storage-available-space {
    margin-left: 0;
  }
}
.to-document-storage .to-document-storage-details .to-document-storage-upgrade {
  text-align: center;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage .to-document-storage-details {
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
@media (max-width: 768px) {
  .to-document-storage .to-document-storage-details {
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
.to-document-storage .to-document-navigation {
  display: flex;
  padding: 6px;
}
.theme-light .to-document-storage .to-document-navigation {
  background-color: #EFEFEF;
}
.theme-dark .to-document-storage .to-document-navigation {
  background-color: #2e2e2e;
}
.to-document-storage .to-document-navigation .to-document-actions {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
}
.to-document-storage .to-document-navigation .to-document-actions .to-action {
  font-size: 1.4rem;
  padding: 4px;
  margin-right: 6px;
}
.to-document-storage .to-document-navigation-path {
  padding: 6px;
  min-height: 1.2rem;
  display: flex;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-document-storage .to-document-navigation-path {
  background-color: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-document-storage .to-document-navigation-path {
  background-color: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.to-document-storage .to-document-navigation-path .to-document-navigation-item {
  cursor: pointer;
  display: flex;
  margin-right: 6px;
}
.to-document-storage .to-document-navigation-path .to-document-navigation-item .to-document-navigation-file {
  margin-left: 6px;
  margin-right: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-document-storage .to-document-navigation-path .to-document-navigation-item .to-document-navigation-file :hover {
  text-decoration: underline;
}
.to-document-storage .to-document-storage-documents {
  margin-left: 0;
  height: fit-content;
  overflow: hidden;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-document-storage .to-document-storage-documents .to-tile-description {
  overflow: hidden;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-document-storage .to-document-storage-documents {
    margin-left: 16px;
  }
}
@media (max-width: 768px) {
  .to-document-storage .to-document-storage-documents {
    margin-left: 16px;
  }
}
.to-document-storage .to-document-storage-documents .to-document-folder {
  padding: 6px;
  height: fit-content;
}
.to-document-storage .to-document-storage-documents .to-document {
  display: inherit;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 6px;
}
.to-document-storage .to-document-storage-documents .to-document .to-document-details {
  display: flex;
  flex-direction: row;
  padding: 6px;
}
.to-document-storage .to-document-storage-documents .to-document .to-document-details > i {
  flex: 1 0 auto;
  font-size: 2rem;
  padding-left: 16px;
}
.to-document-storage .to-document-storage-documents .to-document .to-document-details .to-document-actions-container {
  align-items: center;
  padding: 4px;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  transition: 0.2s ease;
}
.theme-light .to-document-storage .to-document-storage-documents .to-document .to-document-details .to-document-actions-container:hover {
  background: #bcbcbc;
  color: #bcbcbc;
}
.theme-dark .to-document-storage .to-document-storage-documents .to-document .to-document-details .to-document-actions-container:hover {
  background: hsl(0, 0%, -1.9607843137%);
  color: hsl(0, 0%, -1.9607843137%);
}
.to-document-storage .to-document-storage-documents .to-document .to-document-name {
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-map-designer.to-edit-mode .to-map-designer-editor-container .to-map-designer-container {
  height: calc(100vh - 120px);
  width: calc(100vw - 30px);
}

.to-note-title {
  font-size: 2em;
  margin-bottom: 8px;
}
.to-note-title .to-field-container {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-note-shared-with,
.to-note-campaigns {
  margin-bottom: 8px;
}

.to-integration .to-integration-header-container {
  display: flex;
  margin-bottom: 8px;
}
.to-integration .to-integration-header-container .to-integration-header {
  align-items: center;
  display: flex;
  flex: 1;
  font-size: 2rem;
}
.to-integration .to-integration-header-container .to-integration-header .to-input-container {
  margin: initial;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-integration .to-integration-header-container .to-integration-header .to-integration-image {
  margin-right: 8px;
}
.to-integration .to-integration-header-container .to-integration-header .to-integration-title {
  flex: 1;
  margin-right: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration .to-integration-header-container .to-integration-verified {
  font-size: 1.6rem;
  flex: 0;
  margin: auto;
  margin-right: 12px;
}
.theme-light .to-integration .to-integration-header-container .to-integration-verified {
  color: #07bc0c;
}
.theme-dark .to-integration .to-integration-header-container .to-integration-verified {
  color: #07bc0c;
}
.to-integration .to-integration-created-by {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration .to-integration-created-by .to-integration-created-by-profile {
  margin-right: 6px;
}
.to-integration .to-integration-description-container {
  max-height: 250px;
  padding-bottom: 20px;
  overflow: auto;
}

.to-integration-tile {
  cursor: pointer;
  transition: 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration-tile .to-tile {
  display: block;
}
.theme-light .to-integration-tile .to-tile:hover {
  background-color: rgb(251.75, 251.75, 251.75);
  color: #2e2e2e;
}
.theme-dark .to-integration-tile .to-tile:hover {
  background-color: rgb(58.75, 58.75, 58.75);
  color: #EFEFEF;
}
.to-integration-tile .to-integration-header {
  align-items: center;
  display: flex;
  margin-bottom: 8px;
}
.to-integration-tile .to-integration-header .to-integration-details {
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration-tile .to-integration-header .to-integration-details .to-integration-title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 8px;
}
.to-integration-tile .to-integration-header .to-integration-details .to-integration-title .to-integration-title-summary {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration-tile .to-integration-header .to-integration-details .to-integration-title .to-integration-verified {
  flex: 0;
  margin-left: 6px;
  font-size: 1.2rem;
}
.theme-light .to-integration-tile .to-integration-header .to-integration-details .to-integration-title .to-integration-verified {
  color: #07bc0c;
}
.theme-dark .to-integration-tile .to-integration-header .to-integration-details .to-integration-title .to-integration-verified {
  color: #07bc0c;
}
.to-integration-tile .to-integration-header .to-integration-details .to-integration-created-by {
  display: flex;
  align-items: center;
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-integration-tile .to-integration-header .to-integration-details .to-integration-created-by .to-integration-created-by-profile {
  margin-right: 6px;
}
.to-integration-tile .to-integration-tags {
  display: flex;
  gap: 6px;
}
.to-integration-tile .to-integration-tags .to-integration-tag {
  font-size: 0.8em;
  margin-bottom: 10px;
  border-radius: 2px;
  padding: 4px;
  width: fit-content;
}
.theme-light .to-integration-tile .to-integration-tags .to-integration-tag.private {
  color: #EFEFEF;
  background-color: #636363;
}
.theme-dark .to-integration-tile .to-integration-tags .to-integration-tag.private {
  color: #EFEFEF;
  background-color: #4e4e4e;
}
.theme-light .to-integration-tile .to-integration-tags .to-integration-tag.enabled {
  color: #EFEFEF;
  background-color: #07bc0c;
}
.theme-dark .to-integration-tile .to-integration-tags .to-integration-tag.enabled {
  color: #EFEFEF;
  background-color: #07bc0c;
}
.to-integration-tile .to-integration-tags .to-integration-tag > i {
  margin-right: 6px;
}
.to-integration-tile .to-integration-description {
  font-size: 0.8em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-help-page .to-tile {
  margin-bottom: 16px;
}
.to-help-page .to-tile .to-tile {
  margin-bottom: inherit;
  cursor: pointer;
  transition: 0.2s ease;
}
.theme-light .to-help-page .to-tile .to-tile:hover {
  background-color: #EFEFEF;
}
.theme-dark .to-help-page .to-tile .to-tile:hover {
  background-color: #2e2e2e;
}

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

@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.to-home-hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  overflow: hidden;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-home-hero {
  background: linear-gradient(90deg, #436db3, rgb(174.2317073171, 193.1829268293, 224.7682926829));
  color: #EFEFEF;
}
.theme-dark .to-home-hero {
  background: linear-gradient(90deg, #1d1d1d, rgb(105.5, 105.5, 105.5));
  color: #EFEFEF;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-hero {
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-hero {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .to-home-hero {
    flex-direction: column;
  }
}
.to-home-hero .to-home-hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  z-index: 1;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-hero .to-home-hero-content {
    padding: 80px 5%;
    text-align: center;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-hero .to-home-hero-content {
    padding: 80px 5%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .to-home-hero .to-home-hero-content {
    padding: 80px 5%;
    text-align: center;
  }
}
.to-home-hero .to-home-hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-hero .to-home-hero-image {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-hero .to-home-hero-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-home-hero .to-home-hero-image {
    display: none;
  }
}
.to-home-hero .to-home-hero-image .to-home-hero-dice {
  width: 300px;
  height: 300px;
  background-image: url("https://cdn-icons-png.flaticon.com/512/6654/6654545.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.to-home-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.to-home-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 600px;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .to-home-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

.to-home-action-container {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-action-container {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-home-action-container {
    flex-direction: column;
    width: 100%;
  }
}
.to-home-action-container .to-action.to-home-create-account,
.to-home-action-container .to-action.to-home-login {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
  padding: 15px 25px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.to-home-action-container .to-action.to-home-create-account:hover,
.to-home-action-container .to-action.to-home-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.theme-light .to-home-action-container .to-action.to-home-create-account.primary,
.theme-light .to-home-action-container .to-action.to-home-login.primary {
  background: rgb(53.1097560976, 86.4024390244, 141.8902439024);
  color: #EFEFEF;
}
.theme-dark .to-home-action-container .to-action.to-home-create-account.primary,
.theme-dark .to-home-action-container .to-action.to-home-login.primary {
  background: rgb(3.5, 3.5, 3.5);
  color: #EFEFEF;
}
.to-home-action-container .to-action.to-home-create-account.primary,
.to-home-action-container .to-action.to-home-login.primary {
  border: none;
}
.to-home-action-container .to-action.to-home-create-account.secondary,
.to-home-action-container .to-action.to-home-login.secondary {
  backdrop-filter: blur(10px);
}
.theme-light .to-home-action-container .to-action.to-home-create-account.secondary,
.theme-light .to-home-action-container .to-action.to-home-login.secondary {
  background: #636363;
  border: 1px solid #636363;
}
.theme-dark .to-home-action-container .to-action.to-home-create-account.secondary,
.theme-dark .to-home-action-container .to-action.to-home-login.secondary {
  background: #4e4e4e;
  border: 1px solid #4e4e4e;
}

.to-home-features {
  padding: 80px 5%;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-features {
    padding: 60px 5%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-features {
    padding: 40px 5%;
  }
}
.to-home-features {
  text-align: center;
}
.theme-light .to-home-features {
  background-color: #EFEFEF;
}
.theme-dark .to-home-features {
  background-color: #2e2e2e;
}

.to-home-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}
.theme-light .to-home-section-title {
  color: #2e2e2e;
}
.theme-dark .to-home-section-title {
  color: #EFEFEF;
}

.to-home-section-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.theme-light .to-home-section-subtitle {
  color: hsl(0, 0%, -1.9607843137%);
}
.theme-dark .to-home-section-subtitle {
  color: #bcbcbc;
}

.to-home-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.to-home-features-grid .to-home-feature-card {
  padding: 30px;
  text-align: center;
}
.to-home-features-grid .to-home-feature-card .to-home-feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.8rem;
}
.theme-light .to-home-features-grid .to-home-feature-card .to-home-feature-icon {
  background: linear-gradient(135deg, #436db3, rgb(174.2317073171, 193.1829268293, 224.7682926829));
  color: #EFEFEF;
}
.theme-dark .to-home-features-grid .to-home-feature-card .to-home-feature-icon {
  background: linear-gradient(135deg, #1d1d1d, rgb(105.5, 105.5, 105.5));
  color: #EFEFEF;
}
.to-home-features-grid .to-home-feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.theme-light .to-home-features-grid .to-home-feature-card h3 {
  color: #2e2e2e;
}
.theme-dark .to-home-features-grid .to-home-feature-card h3 {
  color: #EFEFEF;
}
.to-home-features-grid .to-home-feature-card p {
  font-size: 1rem;
  line-height: 1.6;
}
.theme-light .to-home-features-grid .to-home-feature-card p {
  color: #2e2e2e;
}
.theme-dark .to-home-features-grid .to-home-feature-card p {
  color: #EFEFEF;
}

.to-home-systems {
  padding: 80px 5%;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-systems {
    padding: 60px 5%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-systems {
    padding: 40px 5%;
  }
}
.to-home-systems {
  text-align: center;
}
.theme-light .to-home-systems {
  background: rgb(226.25, 226.25, 226.25);
}
.theme-dark .to-home-systems {
  background: rgb(33.25, 33.25, 33.25);
}
.to-home-systems .to-home-systems-carousel {
  margin: 40px 0;
  overflow: hidden;
}
.to-home-systems .to-home-systems-grid {
  display: grid;
  gap: 20px;
}
.to-home-systems .to-home-systems-grid .to-home-system-card {
  padding: 20px;
}
.to-home-systems .to-home-systems-grid .to-home-system-card .to-home-system-image {
  height: 100px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}
.to-home-systems .to-home-systems-grid .to-home-system-card:hover .to-home-system-image {
  transform: scale(1.05);
}
.to-home-systems .to-home-systems-grid .to-home-system-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.theme-light .to-home-systems .to-home-systems-grid .to-home-system-card h3 {
  color: #2e2e2e;
}
.theme-dark .to-home-systems .to-home-systems-grid .to-home-system-card h3 {
  color: #EFEFEF;
}
.to-home-systems .to-home-systems-more {
  margin: 30px 0;
  font-style: italic;
}
.theme-light .to-home-systems .to-home-systems-more {
  color: #333333;
}
.theme-dark .to-home-systems .to-home-systems-more {
  color: #333333;
}
.to-home-systems .to-home-api-section {
  margin-top: 60px;
  padding: 30px;
  border-radius: 12px;
}
.theme-light .to-home-systems .to-home-api-section {
  background: rgb(251.75, 251.75, 251.75);
}
.theme-dark .to-home-systems .to-home-api-section {
  background: rgb(58.75, 58.75, 58.75);
}
.to-home-systems .to-home-api-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.theme-light .to-home-systems .to-home-api-section h3 {
  color: #2e2e2e;
}
.theme-dark .to-home-systems .to-home-api-section h3 {
  color: #EFEFEF;
}
.to-home-systems .to-home-api-section p {
  margin-bottom: 20px;
}
.theme-light .to-home-systems .to-home-api-section p {
  color: #616161;
}
.theme-dark .to-home-systems .to-home-api-section p {
  color: hsl(0, 0%, 113.7254901961%);
}
.to-home-systems .to-home-api-section .to-home-api-docs {
  display: inline-block;
}

.to-home-pricing {
  padding: 80px 5%;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-pricing {
    padding: 60px 5%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-pricing {
    padding: 40px 5%;
  }
}
.to-home-pricing {
  text-align: center;
}
.theme-light .to-home-pricing {
  background-color: #EFEFEF;
}
.theme-dark .to-home-pricing {
  background-color: #2e2e2e;
}
.to-home-pricing .to-home-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card {
  padding: 40px 30px;
  position: relative;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured {
  transform: scale(1.05);
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured {
  border: 2px solid #2e2e2e;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured {
  border: 2px solid #e3e3e3;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured {
    transform: scale(1);
  }
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured .to-home-pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured .to-home-pricing-popular {
  background: #2e2e2e;
  color: #EFEFEF;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured .to-home-pricing-popular {
  background: #e3e3e3;
  color: #2e2e2e;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card.to-home-pricing-featured .to-home-pricing-popular {
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header {
  margin-bottom: 25px;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header h3 {
  color: #2e2e2e;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header h3 {
  color: #EFEFEF;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price {
  color: #2e2e2e;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price {
  color: #EFEFEF;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price span {
  color: rgb(122.5, 122.5, 122.5);
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-header .to-home-pricing-price span {
  color: hsl(0, 0%, 123.7254901961%);
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features {
  margin-top: 30px;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li {
  padding: 10px 0;
  position: relative;
  padding-left: 25px;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li {
  color: #616161;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li {
  color: hsl(0, 0%, 113.7254901961%);
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li::before {
  color: #2e2e2e;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-features ul li::before {
  color: #EFEFEF;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}
.to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.primary {
  border: none;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.primary {
  border: 2px solid #436db3;
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.primary {
  border: 2px solid #1d1d1d;
  background: #1d1d1d;
  color: #EFEFEF;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.primary:hover {
  border: 2px solid rgb(39.2195121951, 63.8048780488, 104.7804878049);
  background: rgb(39.2195121951, 63.8048780488, 104.7804878049);
  color: #EFEFEF;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.primary:hover {
  border: 2px solid hsl(0, 0%, -8.6274509804%);
  background: hsl(0, 0%, -8.6274509804%);
  color: #EFEFEF;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.secondary {
  border: 2px solid #2e2e2e;
  color: #2e2e2e;
  background: transparent;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.secondary {
  border: 2px solid #e3e3e3;
  color: #e3e3e3;
  background: transparent;
}
.theme-light .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.secondary:hover {
  background: #2e2e2e;
  color: #EFEFEF;
}
.theme-dark .to-home-pricing .to-home-pricing-grid .to-home-pricing-card .to-home-pricing-button.secondary:hover {
  background: #e3e3e3;
  color: #2e2e2e;
}

.to-home-cta {
  padding: 80px 5%;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-home-cta {
    padding: 60px 5%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-home-cta {
    padding: 40px 5%;
  }
}
.to-home-cta {
  text-align: center;
}
.theme-light .to-home-cta {
  background: linear-gradient(135deg, #436db3, rgb(174.2317073171, 193.1829268293, 224.7682926829));
  color: #EFEFEF;
}
.theme-dark .to-home-cta {
  background: linear-gradient(135deg, #1d1d1d, rgb(105.5, 105.5, 105.5));
  color: #EFEFEF;
}
.to-home-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}
.to-home-cta p {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.to-home-cta .to-action.to-home-cta-button {
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
}
.theme-light .to-home-cta .to-action.to-home-cta-button {
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-home-cta .to-action.to-home-cta-button {
  background: #1d1d1d;
  color: #EFEFEF;
}
.to-home-cta .to-action.to-home-cta-button {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.to-home-cta .to-action.to-home-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .to-home-hero {
    padding: 60px 20px;
  }
  .to-home-action-container {
    flex-direction: column;
    align-items: center;
  }
  .to-home-action-container .to-action {
    width: 100%;
    margin-bottom: 10px;
  }
  .to-home-features-grid,
  .to-home-systems-grid,
  .to-home-pricing-grid {
    grid-template-columns: 1fr;
  }
}
.to-error {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 2rem;
}
.theme-light .to-error {
  color: #2e2e2e;
}
.theme-dark .to-error {
  color: #EFEFEF;
}
.to-error {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-error .to-error-container {
  display: flex;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  width: 50%;
}
.theme-light .to-error .to-error-container {
  background: #EFEFEF;
  border: 1px solid #636363;
}
.theme-dark .to-error .to-error-container {
  background: #2e2e2e;
  border: 1px solid #4e4e4e;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-error .to-error-container {
    flex-direction: column;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-container {
    flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-container {
    flex-direction: column;
    width: 100%;
  }
}
.to-error .to-error-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem;
}
.theme-light .to-error .to-error-illustration {
  background: #436db3;
}
.theme-dark .to-error .to-error-illustration {
  background: #1d1d1d;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-error .to-error-illustration {
    padding: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-illustration {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-illustration {
    padding: 1rem;
  }
}
.to-error .to-error-illustration .to-error-icon {
  font-size: 8rem;
}
.theme-light .to-error .to-error-illustration .to-error-icon {
  color: #EFEFEF;
}
.theme-dark .to-error .to-error-illustration .to-error-icon {
  color: #EFEFEF;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-error .to-error-illustration .to-error-icon {
    font-size: 6rem;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-illustration .to-error-icon {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-illustration .to-error-icon {
    font-size: 4rem;
  }
}
.to-error .to-error-content {
  flex: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-error .to-error-content {
    padding: 2rem;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-content {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-content {
    padding: 1rem;
  }
}
.to-error .to-error-code {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.theme-light .to-error .to-error-code {
  color: #e74c3c;
}
.theme-dark .to-error .to-error-code {
  color: #e74c3c;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-code {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-code {
    font-size: 2rem;
  }
}
.to-error .to-error-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-title {
    font-size: 1.2rem;
  }
}
.to-error .to-error-message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-error .to-error-message {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .to-error .to-error-message {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
.to-error .to-error-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.to-error .to-error-actions .to-button {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-game-action {
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.9;
  padding: 6px;
  position: absolute;
  transition: width 0.2s ease;
  width: 20px;
  z-index: 2;
  border-radius: 6px;
}
.theme-light .to-game-action {
  background: hsl(0, 0%, 113.7254901961%);
  border: 1px solid hsl(0, 0%, 113.7254901961%);
}
.theme-dark .to-game-action {
  background: #616161;
  border: 1px solid #616161;
}
.to-game-action.top {
  align-content: end;
  text-align: center;
  transition: height 0.2s ease;
  width: 150px;
}
.to-game-action.to-change-map {
  position: absolute;
  align-self: center;
  left: 50%;
  z-index: 1;
}
.to-game-action .to-game-action-title {
  margin-left: 4px;
  font-size: 0.8rem;
}
.to-game-action.to-game-sidebar-toggle {
  text-align: right;
  border-radius: 0 2px 2px 0;
}
.to-game-action.to-game-sidebar-toggle.to-active {
  left: 50px;
}
.to-game-action.to-game-messages {
  top: 0;
  right: 0;
}
.to-game-action.to-game-journal {
  top: 36px;
  right: 0;
}
.to-game-action.to-game-settings {
  top: 72px;
  right: 0;
}
.to-game-action:hover.top {
  height: 40px;
}
.to-game-action:hover:not(.top) {
  width: 30px;
}

.to-game-settings-menu {
  max-height: calc(100vh - 100px);
}

.to-game-area {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.to-game-table {
  position: absolute;
  top: 0;
  left: 0;
}
.to-game-table .to-game-default-banner {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100vh;
  width: 100vw;
}

.to-game-sidebar .to-game-main-menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.to-message-source {
  display: flex;
}

.to-messages {
  flex-direction: column;
  margin-bottom: 6px;
  padding-bottom: 50px;
  min-height: calc(100vh - 260px);
  max-height: calc(100vh - 260px);
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-messages {
    min-height: calc(100vh - 320px);
    max-height: calc(100vh - 320px);
  }
}
@media (max-width: 768px) {
  .to-messages {
    min-height: calc(100vh - 320px);
    max-height: calc(100vh - 320px);
  }
}
.to-messages .to-message {
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 6px;
  margin-right: 6px;
  transition: 0.2s ease;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-messages .to-message:hover {
  background-color: rgb(226.25, 226.25, 226.25);
  color: #2e2e2e;
}
.theme-dark .to-messages .to-message:hover {
  background-color: rgb(33.25, 33.25, 33.25);
  color: #EFEFEF;
}
.theme-light .to-messages .to-message.to-private-message {
  background-color: rgb(251.75, 251.75, 251.75);
  color: #2e2e2e;
}
.theme-dark .to-messages .to-message.to-private-message {
  background-color: rgb(58.75, 58.75, 58.75);
  color: #EFEFEF;
}
.theme-light .to-messages .to-message.pending {
  color: #949494;
}
.theme-dark .to-messages .to-message.pending {
  color: hsl(0, 0%, 133.7254901961%);
}
.theme-light .to-messages .to-message.error {
  color: #e74c3c;
}
.theme-dark .to-messages .to-message.error {
  color: #e74c3c;
}
.to-messages .to-message.to-admin-message {
  font-size: 0.8rem;
}
.to-messages .to-message.to-admin-message:hover {
  background-color: transparent;
}
.to-messages .to-message .to-message-created-by {
  display: flex;
  align-items: center;
  font-size: 0.8em;
  margin-bottom: 6px;
}
.to-messages .to-message .to-message-created-by .to-message-profile-picture {
  margin-right: 6px;
}
.to-messages .to-message .to-message-created-by .to-message-display-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-messages .to-message .to-message-to {
  font-size: 0.8rem;
}
.to-messages .to-message .to-message-to .to-message-to-title {
  margin-right: 6px;
  font-weight: bold;
}
.to-messages .to-message .to-message-to i {
  transform: rotate(90deg);
  margin-right: 6px;
  margin-left: 6px;
}
.to-messages .to-message .to-message-content {
  white-space: pre-wrap;
  word-wrap: break-word;
}
.to-messages .to-message .to-message-failed-to-send {
  font-size: 0.8rem;
}
.to-messages .to-message .to-message-failed-to-send > .to-icon {
  margin-right: 6px;
}

.to-message-container .to-message-users {
  margin-bottom: 6px;
}
.to-message-container .to-message-textbox {
  display: flex;
  gap: 4px;
}
.to-message-container .to-message-textbox .to-message-textarea {
  flex: 1 0 auto;
  font-size: 1em;
  resize: none;
  font-family: "Geist", sans-serif, serif;
}
.to-message-container .to-message-textbox .to-message-send-button {
  flex: 0 1 auto;
}

.to-active-video-container {
  display: inline-flex;
  gap: 4px;
  position: absolute;
  bottom: 40px;
  right: 14px;
  z-index: 1;
}
.to-active-video-container .to-video-container {
  height: 150px;
  width: 150px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-active-video-container .to-video-container {
    height: 100px;
    width: 100px;
  }
}
@media (max-width: 768px) {
  .to-active-video-container .to-video-container {
    height: 80px;
    width: 80px;
  }
}
.to-active-video-container .to-video-container .to-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.to-active-video-container .to-video-container .to-user-actions-container {
  display: flex;
  padding: 4px 6px;
  text-align: center;
}
.theme-light .to-active-video-container .to-video-container .to-user-actions-container {
  background-color: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-active-video-container .to-video-container .to-user-actions-container {
  background-color: #1d1d1d;
  color: #EFEFEF;
}
.to-active-video-container .to-video-container .to-user-actions-container .to-user-name {
  flex: 0 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-active-video-container .to-video-container .to-user-actions-container .to-user-actions {
  align-self: center;
  cursor: pointer;
  flex: 1 0 auto;
  padding-left: 4px;
  padding-right: 4px;
  text-align: right;
}

.to-application-action {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.to-notification {
  display: flex;
  padding: 4px 8px;
}
.theme-light .to-notification:hover {
  background-color: #EFEFEF;
  color: #2e2e2e;
}
.theme-dark .to-notification:hover {
  background-color: #2e2e2e;
  color: #EFEFEF;
}
.to-notification .to-notification-icon {
  align-self: center;
  margin-right: 6px;
  font-size: 1.2em;
}
.to-notification .to-notification-container {
  flex: 1;
  overflow: hidden;
  text-align: initial;
  margin: auto;
}
.to-notification .to-notification-container .to-notification-title,
.to-notification .to-notification-container .to-notification-description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-notification .to-notification-action-container {
  display: flex;
  flex: 0 1 auto;
  align-self: center;
}
.to-notification .to-notification-action-container .to-notification-action {
  cursor: pointer;
  padding: 6px;
}

.to-notifications-menu {
  text-align: center;
  min-width: 500px;
}
.to-notifications-menu .to-notifications-container {
  height: auto;
  max-height: 250px;
  max-width: 500px;
}
.to-notifications-menu .to-no-notifications {
  display: inline-grid;
  align-content: center;
}
.theme-light .to-notifications-menu .to-no-notifications {
  color: #bcbcbc;
}
.theme-dark .to-notifications-menu .to-no-notifications {
  color: hsl(0, 0%, -1.9607843137%);
}
.to-notifications-menu .to-no-notifications .to-icon {
  margin-bottom: 6px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-notifications-menu {
    min-width: 300px;
  }
}
@media (max-width: 768px) {
  .to-notifications-menu {
    min-width: 300px;
  }
}

.to-dice-roll-grid {
  display: grid;
  align-items: center;
  padding: 8px 6px;
}
.to-dice-roll-grid .to-dice-roll-grid-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.to-dice-roll-grid .to-dice-roll-grid-row .to-dice-roll-type {
  padding: 8px;
  width: 30px;
}
.to-dice-roll-grid .to-dice-roll-grid-row .to-dice-roll-action {
  flex: 1 0 auto;
  height: 30px;
  text-align: center;
  margin: 0 auto;
  align-content: center;
}
.theme-light .to-dice-roll-grid .to-dice-roll-grid-row .to-dice-roll-action:nth-child(2n) {
  background-color: #EFEFEF;
}
.theme-dark .to-dice-roll-grid .to-dice-roll-grid-row .to-dice-roll-action:nth-child(2n) {
  background-color: #2e2e2e;
}

.to-designer {
  position: relative;
  display: inline-flex;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-designer .to-designer-toolbox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.to-designer .to-designer-page-container {
  display: flex;
  flex: 1;
}
.to-designer .to-designer-page-container .to-scrollable {
  height: calc(100vh - 120px);
  flex: 1 1 auto;
  scroll-margin-block-start: 50px;
  scroll-margin-block-end: 50px;
}
.to-designer .to-designer-page-container .to-designer-page {
  overflow: auto;
  margin: 50px auto;
}
.theme-light .to-designer .to-designer-page-container .to-designer-page {
  background-color: hsl(0, 0%, 103.7254901961%);
}
.theme-dark .to-designer .to-designer-page-container .to-designer-page {
  background-color: rgb(71.5, 71.5, 71.5);
}
.to-designer .to-designer-page-container .to-designer-page.a4 {
  height: 210mm;
  width: 297mm;
}
.to-designer .to-designer-page-container .to-designer-page.a4.vertical {
  height: 297mm;
  width: 210mm;
}
.to-designer .to-designer-page-container .to-designer-page.a3 {
  height: 297mm;
  width: 420mm;
}
.to-designer .to-designer-page-container .to-designer-page.a3.vertical {
  height: 420mm;
  width: 297mm;
}
.to-designer .to-designer-page-container .to-main-container {
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-designer .to-designer-configuration {
  flex: 1 0 auto;
  right: 8px;
  padding: 8px;
  max-width: 300px;
  z-index: 2;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  will-change: opacity;
  box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 10px 10px 30px -20px rgba(0, 0, 0, 0.75);
}
.theme-light .to-designer .to-designer-configuration {
  background-color: hsl(0, 0%, 113.7254901961%);
}
.theme-dark .to-designer .to-designer-configuration {
  background-color: #616161;
}
.to-designer .to-designer-configuration .to-designer-configuration-header {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.to-designer .to-designer-configuration details {
  border-radius: 4px;
  transition: 0.2s ease;
}
.to-designer .to-designer-configuration details > summary {
  cursor: pointer;
  padding: 6px;
}
.theme-light .to-designer .to-designer-configuration details > summary {
  background: rgb(233.9, 233.9, 233.9);
}
.theme-dark .to-designer .to-designer-configuration details > summary {
  background: rgb(40.9, 40.9, 40.9);
}
.to-designer .to-designer-configuration details > summary::-webkit-details-marker {
  display: none;
}
.to-designer .to-designer-configuration details > summary::before {
  margin-right: 6px;
}
.theme-light .to-designer .to-designer-configuration details[open] {
  background: rgb(233.9, 233.9, 233.9);
}
.theme-dark .to-designer .to-designer-configuration details[open] {
  background: rgb(40.9, 40.9, 40.9);
}
.theme-light .to-designer .to-designer-configuration details[open] > summary {
  border-bottom: 1px solid #bcbcbc;
}
.theme-dark .to-designer .to-designer-configuration details[open] > summary {
  border-bottom: 1px solid hsl(0, 0%, -1.9607843137%);
}
.to-designer .to-designer-configuration details > .to-field-group {
  padding: 6px;
}
.to-designer .to-designer-configuration .to-designer-configuration-subheader {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.to-designer .to-designer-configuration .to-designer-configuration-group {
  margin-bottom: 16px;
}
.to-designer .to-designer-configuration .to-designer-configuration-group .to-designer-configuration-group-header {
  font-weight: bold;
}
.to-designer .to-designer-configuration .to-designer-configuration-group .to-designer-configuration-group-header .to-icon {
  margin-right: 6px;
}
.to-designer .to-designer-configuration .to-designer-configuration-group:last-of-type {
  margin-bottom: 50px;
}
.to-designer .to-designer-configuration .to-designer-configuration-actions {
  margin-bottom: 50px;
}

.to-indicator {
  position: fixed;
  border: 2px dashed lightblue;
  height: 30px;
  line-height: 12px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-indicator .to-indicator-actions {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  margin-top: -34px;
}

.to-designer-text {
  word-wrap: break-word;
  transition: 0.2s ease;
}

.react-flow__panel .to-button {
  margin-right: 6px;
}
.react-flow__panel .to-button:last-of-type {
  margin-right: 0;
}

.to-flow-action-panel {
  padding: 6px;
  background: rgba(0, 0, 0, 0.2);
}

.to-flow-node {
  border-radius: 2px;
}
.theme-light .to-flow-node {
  background: hsl(0, 0%, 103.7254901961%);
  border: 1px solid black;
}
.theme-dark .to-flow-node {
  background: rgb(71.5, 71.5, 71.5);
  border: 1px solid black;
}
.to-flow-node .to-flow-node-title {
  font-weight: 600;
  padding: 6px 12px;
}
.theme-light .to-flow-node .to-flow-node-title {
  background: rgb(100.012195122, 136.3780487805, 196.987804878);
  color: #EFEFEF;
}
.theme-dark .to-flow-node .to-flow-node-title {
  background: rgb(54.5, 54.5, 54.5);
  color: #EFEFEF;
}
.theme-light .to-flow-node .to-flow-node-title.trigger {
  background: rgb(124.5, 124.5, 124.5);
  color: #EFEFEF;
}
.theme-dark .to-flow-node .to-flow-node-title.trigger {
  background: rgb(103.5, 103.5, 103.5);
  color: #EFEFEF;
}
.to-flow-node .to-flow-node-content {
  padding: 6px 12px;
}
.to-flow-node .to-flow-handle {
  border-radius: 0;
  width: 16px;
  height: 8px;
}
.theme-light .to-flow-node .to-flow-handle.input {
  background: #636363;
}
.theme-dark .to-flow-node .to-flow-handle.input {
  background: #4e4e4e;
}
.theme-light .to-flow-node .to-flow-handle.output {
  background: #07bc0c;
}
.theme-dark .to-flow-node .to-flow-handle.output {
  background: #07bc0c;
}

.to-flow-context-menu {
  width: 200px;
  position: absolute;
  padding: 6px;
}
.theme-light .to-flow-context-menu {
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
}
.theme-dark .to-flow-context-menu {
  background: #FFFFFF;
  border: 1px solid #2e2e2e;
}

.to-map-designer {
  display: flex;
  flex-direction: row;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-map-designer .to-map-designer-sidebar {
  flex: 0 0 auto;
}
.to-map-designer .to-map-designer-editor-container {
  display: flex;
  flex-direction: row;
  flex: 1 0 auto;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-map-designer .to-map-designer-editor-container .to-map-designer-container {
  height: 100vh;
  width: 100vw;
}
.theme-light .to-map-designer .to-map-designer-editor-container .to-map-designer-container {
  background-color: hsl(0, 0%, 103.7254901961%);
}
.theme-dark .to-map-designer .to-map-designer-editor-container .to-map-designer-container {
  background-color: rgb(71.5, 71.5, 71.5);
}
@media (max-width: 768px) {
  .to-map-designer .to-map-designer-editor-container .to-map-designer-container {
    height: calc(100% - 60px);
  }
}
.to-map-designer .to-map-designer-editor-container .to-element-editor {
  top: auto;
}
.to-map-designer .to-map-designer-editor-container .to-element-editor .to-element-editor-content {
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-map-designer .to-map-designer-editor-container .to-element-editor .to-element-editor-content {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .to-map-designer .to-map-designer-editor-container .to-element-editor .to-element-editor-content {
    height: 100%;
  }
}

.theme-light .to-footer {
  background: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-footer {
  background: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.to-footer {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  padding: 2rem 1rem;
}
.to-footer .to-footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .to-footer .to-footer-container {
    flex-direction: column;
  }
}
.to-footer .to-footer-section {
  flex: 1;
  min-width: 200px;
}
@media (max-width: 768px) {
  .to-footer .to-footer-section {
    width: 100%;
  }
}
.to-footer .to-footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.theme-light .to-footer .to-footer-title {
  color: #2e2e2e;
}
.theme-dark .to-footer .to-footer-title {
  color: #EFEFEF;
}
.to-footer .to-footer-text {
  line-height: 1.5;
  margin-bottom: 1rem;
}
.to-footer .to-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.to-footer .to-footer-list li {
  margin-bottom: 0.5rem;
}
.to-footer .to-footer-list a {
  text-decoration: none;
  transition: color 0.2s ease;
}
.theme-light .to-footer .to-footer-list a {
  color: #2e2e2e;
}
.theme-dark .to-footer .to-footer-list a {
  color: #EFEFEF;
}
.theme-light .to-footer .to-footer-list a:hover {
  color: #436db3;
}
.theme-dark .to-footer .to-footer-list a:hover {
  color: #1d1d1d;
}
.to-footer .to-footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.to-footer .to-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.theme-light .to-footer .to-footer-social a {
  background: hsl(0, 0%, 113.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-footer .to-footer-social a {
  background: #616161;
  color: #EFEFEF;
}
.theme-light .to-footer .to-footer-social a:hover {
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-footer .to-footer-social a:hover {
  background: #1d1d1d;
  color: #EFEFEF;
}
.to-footer .to-footer-social a:hover.discord {
  background: #7289DA;
  color: #FFFFFF;
}
.to-footer .to-footer-social a:hover.youtube {
  background: #FF0000;
  color: #EFEFEF;
}
.to-footer .to-footer-social a:hover.facebook {
  background: #1877F2;
  color: #EFEFEF;
}
.to-footer .to-footer-social a:hover.instagram {
  background: #833ab4;
  background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
  color: #EFEFEF;
}
.to-footer .to-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .to-footer .to-footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.to-footer .to-footer-copyright {
  font-size: 0.9rem;
}
.to-footer .to-footer-newsletter {
  max-width: 400px;
  width: 100%;
}
.to-footer .to-footer-form {
  display: flex;
  flex-direction: column;
}
.to-footer .to-footer-label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.to-footer .to-footer-input-group {
  display: flex;
}
@media (max-width: 480px) {
  .to-footer .to-footer-input-group {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.to-footer .to-footer-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
}
.theme-light .to-footer .to-footer-input {
  background: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-footer .to-footer-input {
  background: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.theme-light .to-footer .to-footer-input::placeholder {
  color: rgba(46, 46, 46, 0.5);
}
.theme-dark .to-footer .to-footer-input::placeholder {
  color: rgba(239, 239, 239, 0.5);
}
.to-footer .to-footer-button {
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.2s ease;
}
@media (max-width: 480px) {
  .to-footer .to-footer-button {
    border-radius: 4px;
  }
}
.theme-light .to-footer .to-footer-button {
  background: #436db3;
  color: #EFEFEF;
}
.theme-light .to-footer .to-footer-button:hover {
  background: rgb(53.1097560976, 86.4024390244, 141.8902439024);
}
.theme-dark .to-footer .to-footer-button {
  background: #1d1d1d;
  color: #EFEFEF;
}
.theme-dark .to-footer .to-footer-button:hover {
  background: rgb(3.5, 3.5, 3.5);
}

.to-header {
  display: flex;
  flex: 0 1 auto;
  height: 30px;
  padding: 8px 16px;
  border-bottom: 1px solid black;
}
.theme-light .to-header {
  background-color: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-header {
  background-color: #1d1d1d;
  color: #EFEFEF;
}
.to-header .to-brand {
  text-decoration: none;
  display: flex;
  flex: 0 1 auto;
}
.theme-light .to-header .to-brand {
  color: #EFEFEF;
}
.theme-dark .to-header .to-brand {
  color: #EFEFEF;
}
.theme-light .to-header .to-brand:hover, .theme-light .to-header .to-brand:active, .theme-light .to-header .to-brand:focus, .theme-light .to-header .to-brand:visited {
  color: #EFEFEF;
}
.theme-dark .to-header .to-brand:hover, .theme-dark .to-header .to-brand:active, .theme-dark .to-header .to-brand:focus, .theme-dark .to-header .to-brand:visited {
  color: #EFEFEF;
}
.to-header .to-brand .to-title {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.2em;
  margin: auto 0;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-header .to-brand .to-title {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-header .to-brand .to-title {
    display: none;
  }
}
.to-header .to-brand .to-logo {
  margin-right: 8px;
  align-self: center;
}
.to-header .to-header-actions {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  align-items: center;
  display: flex;
  flex: 1 0 auto;
  justify-content: end;
}
.to-header .to-header-actions.to-left-header {
  flex: none;
}
.to-header .to-header-actions.to-left-header .to-header-action {
  margin-left: 0;
  margin-right: 8px;
}
.to-header .to-header-actions .to-header-action {
  border-radius: 2px;
  cursor: pointer;
  margin-left: 8px;
  padding: 8px;
}
.theme-light .to-header .to-header-actions .to-header-action {
  color: #EFEFEF;
}
.theme-dark .to-header .to-header-actions .to-header-action {
  color: #EFEFEF;
}
.theme-light .to-header .to-header-actions .to-header-action:hover {
  background-color: rgb(53.1097560976, 86.4024390244, 141.8902439024);
}
.theme-dark .to-header .to-header-actions .to-header-action:hover {
  background-color: rgb(3.5, 3.5, 3.5);
}
.to-header .to-header-actions img.to-header-action {
  padding: 0;
  cursor: pointer !important;
  transition: 0.2s ease;
}
.to-header .to-profile-menu {
  display: grid;
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-header .to-notification-bell {
  position: relative;
}
.theme-light .to-header .to-notification-bell .to-has-notifications {
  background: transparent;
  color: #e74c3c;
}
.theme-dark .to-header .to-notification-bell .to-has-notifications {
  background: transparent;
  color: #e74c3c;
}
.to-header .to-notification-bell .to-has-notifications {
  font-size: 0.7em;
  position: absolute;
  right: 0;
  top: 0;
}

.to-main-navigation-title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.to-main-navigation-actions {
  display: flex;
  flex-direction: column;
}
.to-main-navigation-actions .to-favourite-action {
  display: flex;
  gap: 6px;
}
.to-main-navigation-actions .to-favourite-action .to-action {
  align-content: center;
  flex: 1;
  padding: 2px 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-main-navigation-actions .to-favourite-action .to-favourite-action-icon {
  align-self: center;
  border-radius: 2px;
  cursor: pointer;
  flex: 0 1 auto;
  padding: 4px;
  transition: 0.2s ease;
}

.to-main-menu-scrollable {
  padding: 6px;
}

.to-main-navigation-list-empty {
  font-size: 0.8rem;
}

.theme-light .to-main-navigation-integration-action {
  border: 1px solid #636363;
}
.theme-dark .to-main-navigation-integration-action {
  border: 1px solid #4e4e4e;
}

.to-infinite-list-item {
  display: grid;
}

.to-no-content {
  text-align: center;
  margin: 16px auto;
}
.theme-light .to-no-content {
  color: #2e2e2e;
}
.theme-dark .to-no-content {
  color: #EFEFEF;
}
.to-no-content .to-no-content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.to-no-content .to-no-content-container .to-no-content-icon {
  width: 200px;
}
.to-no-content .to-no-content-container .to-no-content-button {
  margin: 12px auto auto;
}
.to-no-content .to-no-content-container .to-no-content-button > i {
  margin-right: 6px;
}

.to-searchbar {
  display: flex;
}
.to-searchbar .to-searchbar-icon {
  margin: auto 0;
}
.to-searchbar .to-searchbar-content {
  margin: auto 20%;
  position: absolute;
  display: none;
  top: 5%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-searchbar .to-searchbar-content.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-searchbar .to-searchbar-content {
    transition: none;
  }
}
.to-searchbar .to-searchbar-content {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-searchbar .to-searchbar-content.to-active {
  display: block;
  z-index: 6;
}
.to-searchbar .to-searchbar-content .to-input-container .to-input-icon {
  font-size: 1.6rem;
}
.theme-light .to-searchbar .to-searchbar-content .to-input-container .to-input-icon {
  color: #2e2e2e;
}
.theme-dark .to-searchbar .to-searchbar-content .to-input-container .to-input-icon {
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-input-container .to-searchbar-input.to-input-with-icon {
  font-size: 2rem;
  padding-left: 40px;
  border-radius: 6px 6px 0 0;
}
.to-searchbar .to-searchbar-content .to-input-container .to-searchbar-input.to-input-with-icon:focus {
  outline: none;
}
.to-searchbar .to-searchbar-content .to-searchbar-results {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
}
.theme-light .to-searchbar .to-searchbar-content .to-searchbar-results {
  background: #EFEFEF;
  color: #2e2e2e;
}
.theme-dark .to-searchbar .to-searchbar-content .to-searchbar-results {
  background: #2e2e2e;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters {
  display: flex;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter {
  align-items: center;
  cursor: pointer;
  flex: 1;
  padding: 6px;
  transition: 0.2s ease;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter {
  background: rgb(226.25, 226.25, 226.25);
  color: #2e2e2e;
}
.theme-dark .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter {
  background: rgb(33.25, 33.25, 33.25);
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter > i {
  margin-right: 6px;
  border-radius: 4px;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter.notes.to-active {
  background: purple;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter.maps.to-active {
  background: goldenrod;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter.characters.to-active {
  background: darkcyan;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter.charactersheets.to-active {
  background: darkred;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-filters .to-searchbar-filter.campaigns.to-active {
  background: darkolivegreen;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data {
  padding: 8px;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-searchbar-result-count {
  text-align: center;
  font-size: 0.8em;
  margin-bottom: 8px;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-searchbar-result-count > strong {
  font-weight: bold;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-searchbar-result-scroll {
  height: calc(70vh - 64px);
  padding: 0 16px;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result {
  cursor: pointer;
  display: flex;
  padding: 8px;
  margin-bottom: 6px;
  border-radius: 4px;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result:last-of-type {
  margin-bottom: 50px;
}
.theme-light .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result {
  background: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result {
  background: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
}
.theme-light .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result:hover {
  background: rgb(251.75, 251.75, 251.75);
}
.theme-dark .to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result:hover {
  background: rgb(58.75, 58.75, 58.75);
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon {
  align-items: center;
  border-radius: 2px;
  flex: 0 0 auto;
  margin-right: 16px;
  display: block;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon > i {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon {
  background: grey;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon.notes {
  background: purple;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon.characters {
  background: darkcyan;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon.charactersheets {
  background: darkred;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-icon.campaigns {
  background: darkolivegreen;
  color: #EFEFEF;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-details {
  overflow: hidden;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-details .to-search-result-summary {
  align-self: center;
  flex: 0 1 auto;
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-details .to-search-result-created-by {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-searchbar .to-searchbar-content .to-searchbar-results .to-searchbar-result-data .to-search-result .to-search-result-details .to-search-result-created-by .to-search-result-created-by-profile {
  margin-right: 6px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-searchbar .to-searchbar-content {
    margin: auto 16px;
  }
}
@media (max-width: 768px) {
  .to-searchbar .to-searchbar-content {
    margin: auto 16px;
  }
}

.theme-light .to-sub-header {
  background-color: rgb(53.1097560976, 86.4024390244, 141.8902439024);
  color: #EFEFEF;
}
.theme-dark .to-sub-header {
  background-color: rgb(3.5, 3.5, 3.5);
  color: #EFEFEF;
}
.to-sub-header {
  flex: 0 1 auto;
  padding: 6px;
  display: flex;
  height: 30px;
}
.to-sub-header .to-sub-header-title {
  flex: 1 1 auto;
  margin: auto 0;
  margin-left: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-sub-header .to-sub-header-actions {
  display: flex;
  margin: auto 0;
  margin-right: 8px;
}
.to-sub-header .to-sub-header-actions .to-sub-header-action {
  text-align: center;
  border-radius: 2px;
  padding: 6px;
  margin-left: 4px;
  cursor: pointer;
  will-change: initial;
  transition: 0.2s ease;
  height: 16px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.theme-light .to-sub-header .to-sub-header-actions .to-sub-header-action {
  background-color: rgb(39.2195121951, 63.8048780488, 104.7804878049);
}
.theme-dark .to-sub-header .to-sub-header-actions .to-sub-header-action {
  background-color: hsl(0, 0%, -8.6274509804%);
}
.to-sub-header .to-sub-header-actions .to-sub-header-action > .to-subheader-name {
  margin-left: 6px;
}
.theme-light .to-sub-header .to-sub-header-actions .to-sub-header-action:hover {
  background-color: rgb(25.3292682927, 41.2073170732, 67.6707317073);
}
.theme-dark .to-sub-header .to-sub-header-actions .to-sub-header-action:hover {
  background-color: hsl(0, 0%, -18.6274509804%);
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-sub-header .to-sub-header-actions .to-sub-header-action .to-subheader-name {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-sub-header .to-sub-header-actions .to-sub-header-action .to-subheader-name {
    display: none;
  }
}

.to-action {
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
}
.theme-light .to-action {
  color: #2e2e2e;
}
.theme-dark .to-action {
  color: #EFEFEF;
}
.to-action.text-icon {
  padding: 4px;
}
.to-action.text-icon .to-action-icon {
  margin-right: 6px;
}
.to-action.icon, .to-action.image {
  display: -ms-inline-grid;
  display: -moz-inline-grid;
  display: inline-grid;
  padding: 6px;
  text-align: center;
  width: 50px;
  height: 50px;
  align-content: center;
}
.to-action.icon .to-action-icon, .to-action.image .to-action-icon {
  font-size: 1.8em;
}
.to-action.icon .to-action-label, .to-action.image .to-action-label {
  font-size: 0.8em;
  line-height: initial;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-action.image > .to-image {
  margin: auto;
}
.theme-light .to-action:hover {
  background-color: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-action:hover {
  background-color: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}

.to-ad-container {
  align-self: center;
  overflow: hidden;
  text-align: center;
}
.theme-light .to-ad-container {
  background: rgb(175.5, 175.5, 175.5);
}
.theme-dark .to-ad-container {
  background: rgb(154.5, 154.5, 154.5);
}
.to-ad-container {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-ad-container.to-banner-ad {
  height: 150px;
}
.to-ad-container.to-grid-ad {
  border-radius: 4px;
  height: 250px;
}
@media (max-width: 768px) {
  .to-ad-container.to-grid-ad {
    height: 150px;
  }
}
.to-ad-container > ins.adsbygoogle {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}

.to-banner {
  position: relative;
  display: flex;
}
.to-banner .to-banner-image {
  height: 250px;
  object-fit: cover;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-banner .to-banner-profile-container {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  font-size: min(3.6vw, 5em);
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-banner .to-banner-profile-container .to-banner-profile {
  height: 100px;
  width: 100px;
  border: 3px solid rgba(0, 0, 0, 0.4);
}
.to-banner .to-banner-profile-container .to-banner-profile-greeting {
  color: #EFEFEF;
  margin-top: 16px;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-card {
  cursor: pointer;
  border-radius: 6px;
  position: relative;
  min-height: 250px;
  overflow: hidden;
}
.theme-light .to-card {
  background: hsl(0, 0%, 103.7254901961%);
  border: 1px solid #bcbcbc;
}
.theme-dark .to-card {
  background: rgb(71.5, 71.5, 71.5);
  border: 1px solid hsl(0, 0%, -1.9607843137%);
}
.to-card .to-card-image {
  pointer-events: none;
  box-sizing: border-box;
  transition: 0.2s ease;
  height: 100%;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-card .to-card-details {
  border-radius: 0 0 6px 6px;
  padding: 6px;
  position: absolute;
  bottom: 0;
  transition: 0.2s ease;
}
.theme-light .to-card .to-card-details {
  background: hsl(0, 0%, 103.7254901961%);
  border-top: 1px solid #bcbcbc;
  color: #2e2e2e;
}
.theme-dark .to-card .to-card-details {
  background: rgb(71.5, 71.5, 71.5);
  border-top: 1px solid hsl(0, 0%, -1.9607843137%);
  color: #EFEFEF;
}
.to-card .to-card-details {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-card .to-card-details .to-card-title-container {
  display: flex;
  margin-bottom: 6px;
}
.to-card .to-card-details .to-card-title-container .to-card-title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  word-spacing: 0.01rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-card .to-card-details .to-card-title-container .to-card-public-tag {
  font-size: 0.6rem;
  font-weight: 600;
  margin: auto;
  padding: 2px 4px;
  border-radius: 4px;
}
.theme-light .to-card .to-card-details .to-card-title-container .to-card-public-tag {
  background-color: #07bc0c;
  color: #EFEFEF;
}
.theme-dark .to-card .to-card-details .to-card-title-container .to-card-public-tag {
  background-color: #07bc0c;
  color: #EFEFEF;
}
.to-card .to-card-details .to-card-created-by {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-card .to-card-details .to-card-created-by .to-card-profile-picture {
  margin-right: 6px;
}
.to-card .to-card-details .to-card-created-by .to-card-created-date-container {
  display: flex;
  font-size: 0.8rem;
}
.to-card .to-card-details .to-card-created-by .to-card-created-date-container .to-card-created-date-title {
  margin-right: 6px;
}
.to-card .to-card-details .to-card-created-by .to-card-created-date-container .to-card-created-date {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-card:hover .to-card-image {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.theme-light .to-card:hover .to-card-details {
  background: rgb(251.75, 251.75, 251.75);
  color: #2e2e2e;
}
.theme-dark .to-card:hover .to-card-details {
  background: rgb(58.75, 58.75, 58.75);
  color: #EFEFEF;
}
.theme-light .to-card.to-selected {
  border: 2px solid #e74c3c;
}
.theme-dark .to-card.to-selected {
  border: 2px solid #e74c3c;
}

.to-dialog {
  border-radius: 6px;
  padding: 2px 8px;
  position: absolute;
  top: 0;
  left: 0;
  margin: 5% 20%;
  z-index: 6;
}
.theme-light .to-dialog {
  background: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
  border: 1px solid rgb(213.5, 213.5, 213.5);
}
.theme-dark .to-dialog {
  background: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
  border: 1px solid rgb(20.5, 20.5, 20.5);
}
.to-dialog {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-dialog.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-dialog {
    transition: none;
  }
}
.theme-light .to-dialog .to-action {
  color: #2e2e2e;
}
.theme-dark .to-dialog .to-action {
  color: #EFEFEF;
}
.to-dialog .to-action {
  transition: 0.2s ease;
}
.to-dialog.menu {
  margin: auto;
  width: fit-content;
}
.to-dialog.menu:after, .to-dialog.menu:before {
  bottom: 100%;
  border: 8px solid rgba(255, 255, 255, 0);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  margin-left: -30px;
}
.theme-light .to-dialog.menu:after, .theme-light .to-dialog.menu:before {
  border-bottom-color: hsl(0, 0%, 103.7254901961%);
}
.theme-dark .to-dialog.menu:after, .theme-dark .to-dialog.menu:before {
  border-bottom-color: rgb(71.5, 71.5, 71.5);
}
.to-dialog.menu.pointer-left:after, .to-dialog.menu.pointer-left:before {
  left: 50px;
}
.to-dialog.menu.pointer-right:after, .to-dialog.menu.pointer-right:before {
  right: 8px;
}
.to-dialog.element {
  margin: auto;
  width: fit-content;
}
.theme-light .to-dialog.element {
  border: 1px solid rgb(213.5, 213.5, 213.5);
}
.theme-dark .to-dialog.element {
  border: 1px solid rgb(20.5, 20.5, 20.5);
}
.to-dialog .to-dialog-title-container {
  align-items: center;
  display: flex;
  font-size: 1.5em;
  padding: 8px;
}
.theme-light .to-dialog .to-dialog-title-container {
  border-bottom: 1px solid #c9c9c9;
}
.theme-dark .to-dialog .to-dialog-title-container {
  border-bottom: 1px solid #b4b4b4;
}
.to-dialog .to-dialog-title-container .to-dialog-title {
  flex: 1;
}
.to-dialog .to-dialog-title-container .to-dialog-action {
  padding: 6px 10px;
}
.to-dialog .to-dialog-content {
  padding: 8px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 80px;
  max-height: 70vh;
  overflow: auto;
}
.to-dialog .to-dialog-footer {
  padding: 8px;
  display: flex;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-light .to-dialog .to-dialog-footer {
  border-top: 1px solid #c9c9c9;
}
.theme-dark .to-dialog .to-dialog-footer {
  border-top: 1px solid #b4b4b4;
}
.to-dialog .to-dialog-footer .to-button {
  min-width: 100px;
}
.to-dialog .to-dialog-footer .to-button.to-next {
  margin-left: auto;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-dialog {
    position: absolute;
    top: 0;
    left: 0;
    margin: 5%;
  }
}
@media (max-width: 768px) {
  .to-dialog {
    position: absolute;
    top: 0;
    left: 0;
    margin: 5%;
  }
}

.to-dialog-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-dialog-overlay.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-dialog-overlay {
    transition: none;
  }
}
.to-dialog-overlay.to-is-mobile {
  display: none;
}
@media (max-width: 768px) {
  .to-dialog-overlay.to-is-mobile {
    display: initial;
  }
}

.to-wizard-step-count {
  margin: 0 auto;
  padding: 6px 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.theme-light .to-wizard-step-count {
  border-bottom: 1px solid #c9c9c9;
}
.theme-dark .to-wizard-step-count {
  border-bottom: 1px solid #b4b4b4;
}
.to-wizard-step-count .to-wizard-step {
  border-radius: 4px;
  cursor: default;
  padding: 6px 8px;
  min-width: 30px;
  text-align: center;
  justify-content: center;
  font-weight: bold;
  flex: 0 1 auto;
  transition: 0.2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-wizard-step-count .to-wizard-step .to-wizard-step-icon {
  margin-right: 6px;
}
.theme-light .to-wizard-step-count .to-wizard-step {
  background: #c9c9c9;
  color: #2e2e2e;
}
.theme-dark .to-wizard-step-count .to-wizard-step {
  background: #b4b4b4;
  color: #2e2e2e;
}
.theme-light .to-wizard-step-count .to-wizard-step.to-active {
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-wizard-step-count .to-wizard-step.to-active {
  background: #1d1d1d;
  color: #EFEFEF;
}
.theme-light .to-wizard-step-count .to-wizard-step.to-completed {
  background: #636363;
  color: #EFEFEF;
}
.theme-dark .to-wizard-step-count .to-wizard-step.to-completed {
  background: #4e4e4e;
  color: #EFEFEF;
}
.to-wizard-step-count .to-wizard-step-connection {
  display: flex;
  max-width: 50px;
  flex: 1;
  height: 0;
}
.theme-light .to-wizard-step-count .to-wizard-step-connection {
  border: 1px solid #636363;
}
.theme-dark .to-wizard-step-count .to-wizard-step-connection {
  border: 1px solid #4e4e4e;
}

.to-drawer {
  position: absolute;
  z-index: 6;
}
.theme-light .to-drawer {
  border: 1px solid #EFEFEF;
}
.theme-dark .to-drawer {
  border: 1px solid #2e2e2e;
}
.to-drawer.top {
  top: 0;
  left: 0;
}
.to-drawer.top.full-screen.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.top.full-screen.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.top.full-screen.to-slide.to-active {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.top.full-screen.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.top.full-screen {
    transition: none;
  }
}
.to-drawer.top:not(.full-screen).medium.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.top:not(.full-screen).medium.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 50vh;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.top:not(.full-screen).medium.to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.top:not(.full-screen).medium.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.top:not(.full-screen).medium {
    transition: none;
  }
}
.to-drawer.top:not(.full-screen).large.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.top:not(.full-screen).large.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 80vh;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.top:not(.full-screen).large.to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.top:not(.full-screen).large.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.top:not(.full-screen).large {
    transition: none;
  }
}
.to-drawer.top:not(.full-screen).to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.top:not(.full-screen).to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 20rem;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.top:not(.full-screen).to-slide.to-active {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.top:not(.full-screen).to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.top:not(.full-screen) {
    transition: none;
  }
}
.to-drawer.bottom {
  bottom: 0;
  left: 0;
}
.to-drawer.bottom.full-screen.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.bottom.full-screen.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.bottom.full-screen.to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.bottom.full-screen.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.bottom.full-screen {
    transition: none;
  }
}
.to-drawer.bottom:not(.full-screen).medium.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.bottom:not(.full-screen).medium.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 50vh;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.bottom:not(.full-screen).medium.to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.bottom:not(.full-screen).medium.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.bottom:not(.full-screen).medium {
    transition: none;
  }
}
.to-drawer.bottom:not(.full-screen).large.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.bottom:not(.full-screen).large.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 80vh;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.bottom:not(.full-screen).large.to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.bottom:not(.full-screen).large.to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.bottom:not(.full-screen).large {
    transition: none;
  }
}
.to-drawer.bottom:not(.full-screen).to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  height: 0;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-drawer.bottom:not(.full-screen).to-slide.to-active {
  opacity: 1;
  visibility: visible;
  height: 20rem;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.bottom:not(.full-screen).to-slide.to-active {
    height: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.bottom:not(.full-screen).to-slide.to-active {
    height: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.bottom:not(.full-screen) {
    transition: none;
  }
}
.to-drawer.left {
  top: 0;
  left: 0;
}
.to-drawer.left.full-screen.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.left.full-screen.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.left.full-screen.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.left.full-screen.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.left.full-screen {
    transition: none;
  }
}
.to-drawer.left:not(.full-screen).medium.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.left:not(.full-screen).medium.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 50vw;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.left:not(.full-screen).medium.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.left:not(.full-screen).medium.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.left:not(.full-screen).medium {
    transition: none;
  }
}
.to-drawer.left:not(.full-screen).large.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.left:not(.full-screen).large.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 80vw;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.left:not(.full-screen).large.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.left:not(.full-screen).large.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.left:not(.full-screen).large {
    transition: none;
  }
}
.to-drawer.left:not(.full-screen).to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.left:not(.full-screen).to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 20rem;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.left:not(.full-screen).to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.left:not(.full-screen).to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.left:not(.full-screen) {
    transition: none;
  }
}
.to-drawer.right {
  top: 0;
  right: 0;
}
.to-drawer.right.full-screen.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.right.full-screen.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 100%;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.right.full-screen.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.right.full-screen.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.right.full-screen {
    transition: none;
  }
}
.to-drawer.right:not(.full-screen).medium.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.right:not(.full-screen).medium.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 50vw;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.right:not(.full-screen).medium.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.right:not(.full-screen).medium.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.right:not(.full-screen).medium {
    transition: none;
  }
}
.to-drawer.right:not(.full-screen).large.to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.right:not(.full-screen).large.to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 80vw;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.right:not(.full-screen).large.to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.right:not(.full-screen).large.to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.right:not(.full-screen).large {
    transition: none;
  }
}
.to-drawer.right:not(.full-screen).to-slide {
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.15s ease, opacity 0.15s ease, height 0.3s ease, width 0.3s ease;
  width: 0;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-drawer.right:not(.full-screen).to-slide.to-active {
  opacity: 1;
  visibility: visible;
  width: 20rem;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-drawer.right:not(.full-screen).to-slide.to-active {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .to-drawer.right:not(.full-screen).to-slide.to-active {
    width: 100%;
  }
}
@media (prefers-reduced-motion) {
  .to-drawer.right:not(.full-screen) {
    transition: none;
  }
}
.theme-light .to-drawer {
  background-color: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-drawer {
  background-color: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
}
.to-drawer .to-drawer-header {
  align-items: center;
  display: flex;
  font-size: 1.5em;
  padding: 8px;
}
.theme-light .to-drawer .to-drawer-header {
  border-bottom: 1px solid #c9c9c9;
}
.theme-dark .to-drawer .to-drawer-header {
  border-bottom: 1px solid #b4b4b4;
}
.to-drawer .to-drawer-header .to-drawer-title {
  flex: 1;
}
.to-drawer .to-drawer-header .to-drawer-title .to-drawer-title-icon {
  margin-right: 6px;
}
.to-drawer .to-drawer-header .to-drawer-action {
  border-radius: 2px;
  cursor: pointer;
  padding: 6px 10px;
  transition: 0.2s ease;
}
.theme-light .to-drawer .to-drawer-header .to-drawer-action:hover {
  background: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-drawer .to-drawer-header .to-drawer-action:hover {
  background: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.to-drawer .to-drawer-content {
  padding: 6px;
  height: calc(100dvh - 70px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-drawer-overlay.to-active {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.theme-light .to-drawer-overlay.to-active {
  background: rgba(0, 0, 0, 0.5);
}
.theme-dark .to-drawer-overlay.to-active {
  background: rgba(0, 0, 0, 0.5);
}

.to-button {
  cursor: pointer;
  padding: 6px 10px;
  min-width: 50px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.theme-light .to-button {
  color: #EFEFEF;
  background: #436db3;
}
.theme-dark .to-button {
  color: #EFEFEF;
  background: #1d1d1d;
}
.to-button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-button > :only-child:not(.to-button-icon) {
  margin: 0;
}
.to-button .to-button-icon {
  margin-right: 6px;
}
.to-button:focus {
  outline: 2px solid #000000;
}
.theme-light .to-button:hover {
  color: #EFEFEF;
  background: rgb(53.1097560976, 86.4024390244, 141.8902439024);
}
.theme-dark .to-button:hover {
  color: #EFEFEF;
  background: rgb(3.5, 3.5, 3.5);
}
.theme-light .to-button.secondary {
  color: #EFEFEF;
  background: #636363;
}
.theme-dark .to-button.secondary {
  color: #EFEFEF;
  background: #4e4e4e;
}
.theme-light .to-button.secondary:hover {
  color: #EFEFEF;
  background: rgb(73.5, 73.5, 73.5);
}
.theme-dark .to-button.secondary:hover {
  color: #EFEFEF;
  background: rgb(52.5, 52.5, 52.5);
}
.theme-light .to-button.success {
  color: #EFEFEF;
  background: #07bc0c;
}
.theme-dark .to-button.success {
  color: #EFEFEF;
  background: #07bc0c;
}
.theme-light .to-button.success:hover {
  color: #EFEFEF;
  background: rgb(5.1692307692, 138.8307692308, 8.8615384615);
}
.theme-dark .to-button.success:hover {
  color: #EFEFEF;
  background: rgb(5.1692307692, 138.8307692308, 8.8615384615);
}
.theme-light .to-button.warning {
  color: #EFEFEF;
  background: #f1c40f;
}
.theme-dark .to-button.warning {
  color: #EFEFEF;
  background: #f1c40f;
}
.theme-light .to-button.warning:hover {
  color: #EFEFEF;
  background: rgb(193.7007874016, 157.3818897638, 11.2992125984);
}
.theme-dark .to-button.warning:hover {
  color: #EFEFEF;
  background: rgb(193.7007874016, 157.3818897638, 11.2992125984);
}
.theme-light .to-button.error {
  color: #EFEFEF;
  background: #e74c3c;
}
.theme-dark .to-button.error {
  color: #EFEFEF;
  background: #e74c3c;
}
.theme-light .to-button.error:hover {
  color: #EFEFEF;
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
}
.theme-dark .to-button.error:hover {
  color: #EFEFEF;
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
}
.to-button.to-block {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-button:not(.to-block) {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-button:disabled {
  cursor: not-allowed;
}
.theme-light .to-button:disabled {
  color: #EFEFEF;
  background: rgb(124.5, 124.5, 124.5);
}
.theme-dark .to-button:disabled {
  color: #EFEFEF;
  background: rgb(103.5, 103.5, 103.5);
}
.theme-light .to-button:disabled:hover {
  color: #EFEFEF;
  background: rgb(124.5, 124.5, 124.5);
}
.theme-dark .to-button:disabled:hover {
  color: #EFEFEF;
  background: rgb(103.5, 103.5, 103.5);
}

.theme-light .to-colour-picker {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 4px;
  background: transparent;
  border: 1px solid #bcbcbc;
  padding: 0;
}
.theme-light .to-colour-picker.block {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.theme-dark .to-colour-picker {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 4px;
  background: transparent;
  border: 1px solid hsl(0, 0%, -1.9607843137%);
  padding: 0;
}
.theme-dark .to-colour-picker.block {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}

.theme-light .to-colour-picker-dialog {
  padding: 0;
  width: 250px !important;
}
@media (max-width: 768px) {
  .theme-light .to-colour-picker-dialog {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.theme-light .to-colour-picker-dialog .to-colour-display {
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-colour-picker-dialog .to-colour-grid {
  padding: 8px;
}
.theme-light .to-colour-picker-dialog .to-colour-grid .to-colour-option {
  border: 1px solid #bcbcbc;
  border-radius: 2px;
  cursor: pointer;
  margin: 0 auto;
  width: 30px;
  height: 30px;
}
.theme-dark .to-colour-picker-dialog {
  padding: 0;
  width: 250px !important;
}
@media (max-width: 768px) {
  .theme-dark .to-colour-picker-dialog {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.theme-dark .to-colour-picker-dialog .to-colour-display {
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: 0.2s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-dark .to-colour-picker-dialog .to-colour-grid {
  padding: 8px;
}
.theme-dark .to-colour-picker-dialog .to-colour-grid .to-colour-option {
  border: 1px solid hsl(0, 0%, -1.9607843137%);
  border-radius: 2px;
  cursor: pointer;
  margin: 0 auto;
  width: 30px;
  height: 30px;
}

.to-date-time-picker-container {
  cursor: pointer;
  display: flex;
  font-size: 1em;
  border-radius: 4px;
  padding: 8px;
  line-height: 20px;
  min-width: 160px;
  width: fit-content;
}
.theme-light .to-date-time-picker-container {
  border: 1px solid rgb(213.5, 213.5, 213.5);
  background: hsl(0, 0%, 103.7254901961%);
}
.theme-dark .to-date-time-picker-container {
  border: 1px solid rgb(20.5, 20.5, 20.5);
  background: rgb(71.5, 71.5, 71.5);
}
.to-date-time-picker-container .to-date-time-picker-icon {
  margin-right: 6px;
}
.to-date-time-picker-container.to-block {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}

.to-date-picker-dialog {
  cursor: default;
}
@media (max-width: 768px) {
  .to-date-picker-dialog {
    position: absolute;
    top: 0;
    left: 0;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
.to-date-picker-dialog .to-date-picker-options {
  display: flex;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-month-year-container {
  display: flex;
  margin-bottom: 6px;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-month-year-container .to-date-picker-month-prev,
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-month-year-container .to-date-picker-month-next {
  cursor: pointer;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-month-year-container .to-date-picker-month-year {
  flex: 1 0 auto;
  text-align: center;
  font-size: 1.2em;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-month-year-container .to-date-picker-month-year .to-date-picker-month {
  text-transform: capitalize;
  margin-right: 6px;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-quick-actions {
  display: flex;
  margin-bottom: 6px;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-quick-actions .to-date-picker-quick-action {
  text-align: center;
  flex: 1 0 auto;
  margin-right: 6px;
  width: auto;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-quick-actions .to-date-picker-quick-action:last-of-type {
  margin: 0;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-quick-actions .to-date-picker-quick-action .to-date-picker-quick-action-icon {
  margin-right: 6px;
}
@media (max-width: 768px) {
  .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-quick-actions .to-date-picker-quick-action {
    flex: initial;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    line-height: initial;
  }
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-weekday {
  font-weight: bold;
  text-align: center;
  text-transform: capitalize;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day {
  cursor: pointer;
  border-radius: 2px;
  padding: 6px;
  text-align: center;
  border: 1px solid transparent;
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-last-month, .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-next-month {
  cursor: pointer;
}
.theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-last-month, .theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-next-month {
  background-color: rgb(213.5, 213.5, 213.5);
  color: #616161;
}
.theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-last-month, .theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-next-month {
  background-color: rgb(20.5, 20.5, 20.5);
  color: hsl(0, 0%, 113.7254901961%);
}
.to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-disabled {
  cursor: default;
}
.theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-disabled {
  color: #616161;
}
.theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-disabled {
  color: hsl(0, 0%, 113.7254901961%);
}
.theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date {
  background-color: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date {
  background-color: #1d1d1d;
  color: #EFEFEF;
}
.theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date, .theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-today-date {
  border: 1px solid #436db3;
}
.theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date, .theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-today-date {
  border: 1px solid #1d1d1d;
}
.theme-light .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date.to-today-date {
  border: 1px solid rgb(39.2195121951, 63.8048780488, 104.7804878049);
}
.theme-dark .to-date-picker-dialog .to-date-picker-calendar .to-date-picker-day.to-selected-date.to-today-date {
  border: 1px solid hsl(0, 0%, -8.6274509804%);
}
.to-date-picker-dialog .to-date-picker-clock {
  text-align: center;
}
.to-date-picker-dialog .to-date-picker-clock .to-date-picker-clock-icon {
  margin-right: 6px;
  font-size: 1.2em;
}
.to-date-picker-dialog .to-date-picker-clock .to-hour-picker,
.to-date-picker-dialog .to-date-picker-clock .to-minute-picker {
  font-size: 1.2em;
}

.to-dropdown.react-dropdown-select {
  border-radius: 4px;
}
.theme-light .to-dropdown.react-dropdown-select {
  background-color: hsl(0, 0%, 103.7254901961%) !important;
  border: 1px solid rgb(213.5, 213.5, 213.5) !important;
}
.theme-dark .to-dropdown.react-dropdown-select {
  background-color: rgb(71.5, 71.5, 71.5) !important;
  border: 1px solid rgb(20.5, 20.5, 20.5) !important;
}
.to-dropdown.react-dropdown-select .react-dropdown-select-content {
  align-items: flex-end;
}
.to-dropdown.react-dropdown-select .react-dropdown-select-input {
  border-radius: 4px;
  font-size: 1em;
  font-family: "Geist", sans-serif, serif;
}
.to-dropdown.react-dropdown-select .react-dropdown-select-dropdown {
  border-radius: 4px;
}
.theme-light .to-dropdown.react-dropdown-select .react-dropdown-select-dropdown {
  background-color: hsl(0, 0%, 103.7254901961%) !important;
  border: 1px solid rgb(213.5, 213.5, 213.5) !important;
}
.theme-dark .to-dropdown.react-dropdown-select .react-dropdown-select-dropdown {
  background-color: rgb(71.5, 71.5, 71.5) !important;
  border: 1px solid rgb(20.5, 20.5, 20.5) !important;
}
.to-dropdown.react-dropdown-select .react-dropdown-select-dropdown .react-dropdown-select-option {
  align-self: center;
}
.theme-light .to-dropdown.react-dropdown-select .react-dropdown-select-dropdown .react-dropdown-select-option .react-dropdown-select-option-remove:hover {
  color: #2e2e2e;
}
.theme-dark .to-dropdown.react-dropdown-select .react-dropdown-select-dropdown .react-dropdown-select-option .react-dropdown-select-option-remove:hover {
  color: #EFEFEF;
}
.to-dropdown.react-dropdown-select .react-dropdown-select-no-data {
  font-weight: bold;
}
.theme-light .to-dropdown.react-dropdown-select .react-dropdown-select-no-data {
  color: #EFEFEF;
}
.theme-dark .to-dropdown.react-dropdown-select .react-dropdown-select-no-data {
  color: #2e2e2e;
}
.to-dropdown.react-dropdown-select:focus, .to-dropdown.react-dropdown-select:focus-within {
  box-shadow: none !important;
}
.theme-light .to-dropdown.react-dropdown-select:focus, .theme-light .to-dropdown.react-dropdown-select:focus-within {
  outline: 2px solid #bcbcbc !important;
}
.theme-dark .to-dropdown.react-dropdown-select:focus, .theme-dark .to-dropdown.react-dropdown-select:focus-within {
  outline: 2px solid hsl(0, 0%, -1.9607843137%) !important;
}

.to-drop-option {
  display: flex;
  padding: 6px;
}
.to-drop-option .to-drop-avatar {
  margin-right: 6px;
}
.to-drop-option .to-drop-option-summary {
  align-self: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-drop-option:hover {
  background-color: rgb(226.5, 226.5, 226.5);
  color: #2e2e2e;
  transition: 0.3s ease;
}
.theme-dark .to-drop-option:hover {
  background-color: rgb(205.5, 205.5, 205.5);
  color: #2e2e2e;
  transition: 0.3s ease;
}

.to-readonly-dropdown {
  display: flex;
  overflow: hidden;
}
.to-readonly-dropdown .to-drop-option {
  border-radius: 4px;
  margin-right: 4px;
}
.theme-light .to-readonly-dropdown .to-drop-option {
  background-color: #EFEFEF;
  color: #2e2e2e;
}
.theme-dark .to-readonly-dropdown .to-drop-option {
  background-color: #2e2e2e;
  color: #EFEFEF;
}

.to-field-group {
  display: flex;
  margin-bottom: 6px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-field-group .to-field-name {
  width: 250px;
  align-self: center;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
@media (min-width: 993px) and (max-width: 1200px) {
  .to-field-group .to-field-name {
    width: 150px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-field-group .to-field-name {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .to-field-group .to-field-name {
    margin-bottom: 6px;
  }
}
.theme-light .to-field-group .to-field-name.to-required {
  color: #e74c3c;
}
.theme-dark .to-field-group .to-field-name.to-required {
  color: #e74c3c;
}
.to-field-group .to-field {
  flex: 1;
}
.to-field-group.to-static {
  display: inline-block;
}
.to-field-group.to-static .to-field-name {
  margin-bottom: 6px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-field-group {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .to-field-group {
    display: inline-block;
  }
}

.to-submission-group {
  display: flex;
}
.to-submission-group > :nth-child(1) {
  flex: 1;
}

.to-input-container {
  position: relative;
}
.to-input-container .to-input {
  font-family: "Geist", sans-serif, serif;
  font-size: 1em;
  border-radius: 4px;
  padding: 8px;
}
.theme-light .to-input-container .to-input {
  border: 1px solid rgb(175.5, 175.5, 175.5);
  background: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-input-container .to-input {
  border: 1px solid rgb(154.5, 154.5, 154.5);
  background: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
}
.to-input-container .to-input {
  transition: 0.2s ease;
}
.theme-light .to-input-container .to-input::placeholder {
  color: #616161;
}
.theme-dark .to-input-container .to-input::placeholder {
  color: hsl(0, 0%, 113.7254901961%);
}
.theme-light .to-input-container .to-input:focus {
  outline: 2px solid rgb(73.5, 73.5, 73.5);
}
.theme-dark .to-input-container .to-input:focus {
  outline: 2px solid rgb(52.5, 52.5, 52.5);
}
.theme-light .to-input-container .to-input.to-invalid {
  border: 1px solid #e74c3c;
  background-color: rgb(247.7671232877, 201.0547945205, 196.2328767123);
  color: #2e2e2e;
}
.theme-dark .to-input-container .to-input.to-invalid {
  border: 1px solid #e74c3c;
  background-color: rgb(247.7671232877, 201.0547945205, 196.2328767123);
  color: #2e2e2e;
}
.theme-light .to-input-container .to-input.to-invalid::placeholder {
  color: #2e2e2e;
}
.theme-dark .to-input-container .to-input.to-invalid::placeholder {
  color: #2e2e2e;
}
.theme-light .to-input-container .to-input.to-invalid:focus {
  outline: 2px solid rgb(213.698630137, 43.8356164384, 26.301369863);
}
.theme-dark .to-input-container .to-input.to-invalid:focus {
  outline: 2px solid rgb(213.698630137, 43.8356164384, 26.301369863);
}
.to-input-container .to-input.to-block {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-input-container .to-input.to-input-with-icon {
  padding-left: 28px;
}
.to-input-container .to-input.date, .to-input-container .to-input.time, .to-input-container .to-input.datetime-local {
  padding-left: 28px;
  min-width: 200px;
}
.to-input-container .to-input-icon {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.theme-light .to-switch.to-is-readonly .to-switch-value:checked + span {
  background-color: rgb(81.4573170732, 122.1768292683, 190.0426829268);
}
.theme-dark .to-switch.to-is-readonly .to-switch-value:checked + span {
  background-color: rgb(41.75, 41.75, 41.75);
}
.to-switch.to-is-readonly > span {
  cursor: default;
}
.theme-light .to-switch.to-is-readonly > span::before {
  background-color: rgb(236.45, 236.45, 236.45);
}
.theme-dark .to-switch.to-is-readonly > span::before {
  background-color: rgb(43.45, 43.45, 43.45);
}
.to-switch .to-switch-value {
  display: none;
}
.theme-light .to-switch .to-switch-value:checked + span {
  background-color: #436db3;
}
.theme-dark .to-switch .to-switch-value:checked + span {
  background-color: #1d1d1d;
}
.to-switch .to-switch-value:checked + span::before {
  left: 27px;
}
.to-switch > span {
  display: flex;
  cursor: pointer;
  width: 50px;
  height: 25px;
  border-radius: 4px;
}
.theme-light .to-switch > span {
  background-color: #bcbcbc;
}
.theme-dark .to-switch > span {
  background-color: hsl(0, 0%, -1.9607843137%);
}
.to-switch > span {
  position: relative;
  transition: background-color 0.2s;
}
.to-switch > span::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  transition: 0.2s;
}
.theme-light .to-switch > span::before {
  background-color: hsl(0, 0%, 193.7254901961%);
}
.theme-dark .to-switch > span::before {
  background-color: hsl(0, 0%, 118.0392156863%);
}

.tiptap p.is-editor-empty:first-child::before {
  color: #adb5bd;
  content: attr(data-placeholder);
  float: left;
  height: 0;
  pointer-events: none;
}

.to-rich-textarea {
  border: 1px solid #ccc;
  min-height: 100px;
}
.to-rich-textarea.to-rich-textarea-readonly {
  border: none;
  min-height: auto;
  font-family: "Geist", sans-serif, serif;
}
.to-rich-textarea .to-rich-textarea-content {
  padding: 8px;
}
.to-rich-textarea .to-rich-textarea-content.to-rich-textarea-readonly {
  padding: 0;
}
.to-rich-textarea .to-rich-textarea-menubar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border-radius: 4px 4px 0 0;
}
.theme-light .to-rich-textarea .to-rich-textarea-menubar {
  background: #EFEFEF;
}
.theme-dark .to-rich-textarea .to-rich-textarea-menubar {
  background: #2e2e2e;
}
.to-rich-textarea .to-rich-textarea-menubar .menu-group {
  display: flex;
  gap: 6px;
}
.to-rich-textarea .to-rich-textarea-menubar .menu-group > button {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  transition: 0.2s ease;
}
.theme-light .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:not(:disabled).to-active {
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:not(:disabled).to-active {
  background: #1d1d1d;
  color: #EFEFEF;
}
.theme-light .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:not(:disabled):hover {
  background: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:not(:disabled):hover {
  background: #1d1d1d;
  color: #EFEFEF;
}
.to-rich-textarea .to-rich-textarea-menubar .menu-group > button:disabled {
  cursor: not-allowed;
}
.theme-light .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:disabled {
  color: rgb(173.5, 173.5, 173.5);
}
.theme-dark .to-rich-textarea .to-rich-textarea-menubar .menu-group > button:disabled {
  color: hsl(0, 0%, 143.7254901961%);
}
.to-rich-textarea .to-rich-textarea-editable {
  border-radius: 4px;
  transition: 0.2s ease;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: "Geist", sans-serif, serif;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-rich-textarea .to-rich-textarea-editable .ql-container {
  font-family: "Geist", sans-serif, serif;
  max-height: 400px;
  overflow: auto;
}
.to-rich-textarea .tiptap h1 {
  margin: 0;
  font-size: 1.6rem;
}
.to-rich-textarea .tiptap h2 {
  margin: 0;
  font-size: 1.3rem;
}
.to-rich-textarea .tiptap h3 {
  margin: 0;
  font-size: 1.1rem;
}
.to-rich-textarea .tiptap strong {
  font-weight: bold;
}
.to-rich-textarea .tiptap em {
  font-style: italic;
}
.to-rich-textarea .tiptap ul {
  list-style: disc;
  padding-left: 2em;
}
.to-rich-textarea .tiptap ol {
  list-style: decimal;
  padding-left: 2em;
}
.to-rich-textarea .tiptap pre {
  padding: 8px;
  font-family: "Geist Mono", monospace;
}
.theme-light .to-rich-textarea .tiptap pre {
  background: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-rich-textarea .tiptap pre {
  background: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}

.to-file-input {
  display: none;
}

.to-image {
  border-radius: 2px;
  object-fit: cover;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.to-image.xsmall {
  height: 24px;
  width: 24px;
}
.to-image.small {
  height: 30px;
  width: 30px;
}
.to-image.medium {
  height: 40px;
  width: 40px;
}
.to-image.large {
  height: 50px;
  width: 50px;
}

.to-dropdown-menu {
  width: fit-content;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-dropdown-menu .to-dropdown-menu-title {
  cursor: pointer;
  border-radius: 2px;
  width: fit-content;
  padding: 6px 10px;
}
.theme-light .to-dropdown-menu .to-dropdown-menu-title {
  background-color: #436db3;
  color: #EFEFEF;
}
.theme-dark .to-dropdown-menu .to-dropdown-menu-title {
  background-color: #1d1d1d;
  color: #EFEFEF;
}
.to-dropdown-menu .to-dropdown-menu-title .to-dropdown-menu-icon {
  margin-right: 6px;
  border-radius: 2px;
  padding: 6px 10px;
}
.to-dropdown-menu .to-dropdown-menu-container {
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  position: absolute;
  min-width: 100px;
  max-width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-dropdown-menu .to-dropdown-menu-container.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-dropdown-menu .to-dropdown-menu-container {
    transition: none;
  }
}
.theme-light .to-dropdown-menu .to-dropdown-menu-container {
  background-color: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-dropdown-menu .to-dropdown-menu-container {
  background-color: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
}
.to-dropdown-menu .to-dropdown-menu-container > * {
  margin: 4px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

.to-dropdown-menu-content > .to-dialog-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.to-sidebar {
  display: flex;
  flex-direction: column;
  width: fit-content;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.theme-light .to-sidebar {
  background: #636363;
}
.theme-dark .to-sidebar {
  background: #4e4e4e;
}
.to-sidebar .to-sidebar-top {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.to-sidebar .to-sidebar-bottom {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}
.to-sidebar .to-sidebar-action {
  border-radius: 0;
  transition: 0.2s;
}
.theme-light .to-sidebar .to-sidebar-action {
  border-bottom: 1px solid #EFEFEF;
  color: #EFEFEF;
}
.theme-dark .to-sidebar .to-sidebar-action {
  border-bottom: 1px solid #EFEFEF;
  color: #EFEFEF;
}
.to-sidebar .to-sidebar-action:last-child {
  border-bottom: none;
}
.to-sidebar .to-sidebar-action > .to-action-icon {
  font-size: 1.4rem;
}
.to-sidebar .to-sidebar-action > .to-action-title {
  font-size: 0.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
  line-height: inherit;
}
.theme-light .to-sidebar .to-sidebar-action:hover {
  background: rgb(53.1097560976, 86.4024390244, 141.8902439024);
  color: #EFEFEF;
}
.theme-dark .to-sidebar .to-sidebar-action:hover {
  background: rgb(3.5, 3.5, 3.5);
  color: #EFEFEF;
}
.to-sidebar .to-sidebar-action:has(> .to-action-title) {
  width: 50px;
  height: 50px;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-sidebar .to-sidebar-action:has(> .to-action-title) {
    width: 24px;
    height: 24px;
  }
  .to-sidebar .to-sidebar-action:has(> .to-action-title) > .to-action-icon {
    font-size: 1.4rem;
  }
  .to-sidebar .to-sidebar-action:has(> .to-action-title) > .to-action-title {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-sidebar .to-sidebar-action:has(> .to-action-title) {
    width: 24px;
    height: 24px;
  }
  .to-sidebar .to-sidebar-action:has(> .to-action-title) > .to-action-icon {
    font-size: 1.4rem;
  }
  .to-sidebar .to-sidebar-action:has(> .to-action-title) > .to-action-title {
    display: none;
  }
}

.to-progressbar.line {
  height: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.theme-light .to-progressbar.line {
  background-color: #EFEFEF;
}
.theme-dark .to-progressbar.line {
  background-color: #2e2e2e;
}
.to-progressbar.line {
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-progressbar.line .to-progressbar-status {
  border-radius: 2px;
  text-align: right;
  width: 0;
  animation: slideOut 0.7s ease;
  transition: width 0.7s ease;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.theme-light .to-progressbar.line .to-progressbar-status {
  background-color: #436db3;
}
.theme-dark .to-progressbar.line .to-progressbar-status {
  background-color: #1d1d1d;
}
.theme-light .to-progressbar.line.warning-threshold .to-progressbar-status {
  background-color: #f1c40f;
}
.theme-dark .to-progressbar.line.warning-threshold .to-progressbar-status {
  background-color: #f1c40f;
}
.theme-light .to-progressbar.line.error-threshold .to-progressbar-status {
  background-color: #e74c3c;
}
.theme-dark .to-progressbar.line.error-threshold .to-progressbar-status {
  background-color: #e74c3c;
}

.to-progressbar.circle {
  width: 100px;
  height: 100px;
}
.to-progressbar.circle .to-progressbar-container {
  overflow: inherit;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
}
.to-progressbar.circle .to-progressbar-background,
.to-progressbar.circle .to-progressbar-progress {
  stroke-width: 16px;
  fill: transparent;
}
.theme-light .to-progressbar.circle .to-progressbar-background {
  stroke: rgb(213.5, 213.5, 213.5);
}
.theme-dark .to-progressbar.circle .to-progressbar-background {
  stroke: rgb(20.5, 20.5, 20.5);
}
.to-progressbar.circle .to-progressbar-progress {
  transition: stroke-dashoffset 0.7s;
}
.theme-light .to-progressbar.circle .to-progressbar-progress {
  stroke: #436db3;
}
.theme-dark .to-progressbar.circle .to-progressbar-progress {
  stroke: #1d1d1d;
}
.theme-light .to-progressbar.circle .to-progressbar-progress.to-negative-progress {
  stroke: #e74c3c;
}
.theme-dark .to-progressbar.circle .to-progressbar-progress.to-negative-progress {
  stroke: #e74c3c;
}
.theme-light .to-progressbar.circle.warning-threshold .to-progressbar-progress {
  stroke: #f1c40f;
}
.theme-dark .to-progressbar.circle.warning-threshold .to-progressbar-progress {
  stroke: #f1c40f;
}
.theme-light .to-progressbar.circle.error-threshold .to-progressbar-progress {
  stroke: #e74c3c;
}
.theme-dark .to-progressbar.circle.error-threshold .to-progressbar-progress {
  stroke: #e74c3c;
}
.to-progressbar.circle .to-progressbar-text {
  text-anchor: middle;
  text-align: center;
  font-size: 1.2rem;
  max-width: 40px;
  cursor: default;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}

@keyframes slideOut {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.to-radio-group .to-radio-option {
  padding: 20px 6px;
  cursor: pointer;
  text-align: center;
  transition: 0.2s ease;
  align-self: center;
}
.theme-light .to-radio-group .to-radio-option {
  border-radius: 4px;
  border: 1px solid #969696;
}
.theme-dark .to-radio-group .to-radio-option {
  border-radius: 4px;
  border: 1px solid #818181;
}
.to-radio-group .to-radio-option .to-radio-icon {
  font-size: 40px;
}
.to-radio-group .to-radio-option .to-radio-display {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-radio-group .to-radio-option .to-radio-input {
  display: none;
}
.theme-light .to-radio-group .to-radio-option:has(.to-radio-input:checked) {
  border: 3px solid #436db3;
}
.theme-dark .to-radio-group .to-radio-option:has(.to-radio-input:checked) {
  border: 3px solid #1d1d1d;
}

.to-scrollable {
  overflow-y: auto;
  scroll-behavior: smooth;
  height: 100%;
  height: 100vh;
  height: -webkit-fill-available;
  height: fill-available;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-scrollable .to-return-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 10px;
  right: 20px;
  padding: 12px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-scrollable .to-return-to-top.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-scrollable .to-return-to-top {
    transition: none;
  }
}
.theme-light .to-scrollable .to-return-to-top {
  background: #636363;
  color: #EFEFEF;
}
.theme-dark .to-scrollable .to-return-to-top {
  background: #4e4e4e;
  color: #EFEFEF;
}

.to-spinner {
  display: flex;
  flex: 1;
  text-align: center;
  z-index: 5;
}
.to-spinner .to-spinner-container {
  display: flex;
  align-content: center;
  flex-direction: column;
  margin: auto;
}
.to-spinner .to-spinner-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: fit-content;
  font-size: 50px;
  z-index: 1;
}
.theme-light .to-spinner .to-spinner-icon {
  color: #EFEFEF;
}
.theme-dark .to-spinner .to-spinner-icon {
  color: #EFEFEF;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.to-spinner .to-spinner-icon.to-active {
  animation: spin 2s linear infinite;
}
.to-spinner .to-spinner-icon {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-spinner .to-spinner-icon.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-spinner .to-spinner-icon {
    transition: none;
  }
}
.to-spinner .to-spinner-icon.xsmall, .to-spinner .to-spinner-icon.small {
  font-size: 1.6rem;
}
.to-spinner .to-spinner-icon.medium, .to-spinner .to-spinner-icon.large {
  font-size: 3rem;
}
.theme-light .to-spinner .to-spinner-icon.to-no-overlay {
  color: #2e2e2e;
}
.theme-dark .to-spinner .to-spinner-icon.to-no-overlay {
  color: #e3e3e3;
}
.to-spinner .to-spinner-messages {
  margin-top: 16px;
  position: relative;
}
.theme-light .to-spinner .to-spinner-messages {
  color: #2e2e2e;
}
.theme-dark .to-spinner .to-spinner-messages {
  color: #e3e3e3;
}
.theme-light .to-spinner .to-spinner-messages.to-spinner-has-overlay {
  color: #EFEFEF;
}
.theme-dark .to-spinner .to-spinner-messages.to-spinner-has-overlay {
  color: #EFEFEF;
}
.to-spinner .to-spinner-messages .to-spinner-message:not(.to-active) {
  display: none;
}

.to-spinner-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.theme-light .to-spinner-overlay {
  background: black;
}
.theme-dark .to-spinner-overlay {
  background: black;
}
.to-spinner-overlay {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s ease, opacity 0.2s ease;
}
.to-spinner-overlay.to-active {
  visibility: visible;
  opacity: 1;
}
@media (prefers-reduced-motion) {
  .to-spinner-overlay {
    transition: none;
  }
}

.to-spinner-pull-to-refresh {
  font-size: 2rem;
  margin-top: 20px;
}
.theme-light .to-spinner-pull-to-refresh {
  color: #2e2e2e;
}
.theme-dark .to-spinner-pull-to-refresh {
  color: #e3e3e3;
}

.to-table-actions {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 6px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-table-actions .to-table-action {
  border-radius: 2px;
  padding: 4px 6px;
}
.theme-light .to-table-actions .to-table-action {
  border: 1px solid #636363;
}
.theme-dark .to-table-actions .to-table-action {
  border: 1px solid #4e4e4e;
}
.to-table-actions .to-table-action > i {
  margin-right: 6px;
}

.to-table {
  display: initial;
  flex: 1 0 auto;
  overflow: auto;
}
.to-table .to-table-header {
  text-align: center;
  align-items: stretch;
  line-height: 30px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-table .to-table-header .to-table-header-row {
  flex: 1 0 auto;
  display: flex;
  flex-direction: row;
  font-weight: bold;
}
.to-table .to-table-header .to-table-header-row .to-table-header-title {
  flex: 1 0 auto;
  padding: 4px;
  width: 150px;
}
.theme-light .to-table .to-table-header .to-table-header-row .to-table-header-title {
  background-color: #636363;
  border-right: 1px solid rgb(226.5, 226.5, 226.5);
  color: #EFEFEF;
}
.theme-dark .to-table .to-table-header .to-table-header-row .to-table-header-title {
  background-color: #4e4e4e;
  border-right: 1px solid rgb(205.5, 205.5, 205.5);
  color: #EFEFEF;
}
.to-table .to-table-header .to-table-header-row .to-table-header-title:last-child {
  border-right: none;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-table .to-table-header {
    display: none;
  }
}
@media (max-width: 768px) {
  .to-table .to-table-header {
    display: none;
  }
}
.to-table .to-table-body {
  text-align: center;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-table .to-table-body .to-table-body-row {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell {
  flex: 1 0 auto;
  padding: 4px;
  width: 150px;
}
.theme-light .to-table .to-table-body .to-table-body-row .to-table-body-cell {
  border-right: 1px solid rgb(226.5, 226.5, 226.5);
}
@media (min-width: 769px) and (max-width: 992px) {
  .theme-light .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    border: none;
    margin: 0;
    display: flex;
    text-align: left;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
@media (max-width: 768px) {
  .theme-light .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    border: none;
    margin: 0;
    display: flex;
    text-align: left;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
.theme-dark .to-table .to-table-body .to-table-body-row .to-table-body-cell {
  border-right: 1px solid rgb(205.5, 205.5, 205.5);
}
@media (min-width: 769px) and (max-width: 992px) {
  .theme-dark .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    border: none;
    margin: 0;
    display: flex;
    text-align: left;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
@media (max-width: 768px) {
  .theme-dark .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    border: none;
    margin: 0;
    display: flex;
    text-align: left;
    width: -moz-fit-content;
    width: -moz-available;
    width: 100%;
    width: 100vw;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell .to-table-body-cell-title {
  display: none;
  font-weight: bold;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell .to-table-body-cell-title {
    display: block;
  }
}
@media (max-width: 768px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell .to-table-body-cell-title {
    display: block;
  }
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell > .to-field-container {
  user-select: text;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell > .to-readonly-dropdown .to-drop-option {
  margin-left: 20px;
  margin-right: 20px;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell > .to-readonly-dropdown .to-drop-option .to-drop-option-summary {
  margin: auto;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell:last-child {
  border-right: none;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell.to-table-body-row-actions {
  align-self: center;
  display: flex;
  flex-direction: row-reverse;
  gap: 6px;
}
.to-table .to-table-body .to-table-body-row .to-table-body-cell.to-table-body-row-actions > .to-table-body-row-action {
  border-radius: 2px;
  padding: 4px;
  font-size: 1.2rem;
  height: 24px;
  width: 24px;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell.to-table-body-row-actions > .to-table-body-row-action {
    margin: auto;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell.to-table-body-row-actions > .to-table-body-row-action {
    margin: auto;
    margin-bottom: 6px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    height: 30px;
    align-items: center;
  }
  .to-table .to-table-body .to-table-body-row .to-table-body-cell > * {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    line-height: initial;
  }
}
@media (max-width: 768px) {
  .to-table .to-table-body .to-table-body-row .to-table-body-cell {
    display: block;
    margin-top: 6px;
    margin-bottom: 6px;
    height: 30px;
    align-items: center;
  }
  .to-table .to-table-body .to-table-body-row .to-table-body-cell > * {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
    line-height: initial;
  }
}
.theme-light .to-table .to-table-body .to-table-body-row:nth-child(odd) {
  background-color: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-dark .to-table .to-table-body .to-table-body-row:nth-child(odd) {
  background-color: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.theme-light .to-table .to-table-body .to-table-body-row:nth-child(odd) .to-table-body-row-action:hover {
  background-color: #bcbcbc;
  color: #2e2e2e;
}
.theme-dark .to-table .to-table-body .to-table-body-row:nth-child(odd) .to-table-body-row-action:hover {
  background-color: hsl(0, 0%, -1.9607843137%);
  color: #EFEFEF;
}
.theme-light .to-table .to-table-body .to-table-body-row:nth-child(even) {
  background-color: rgb(226.25, 226.25, 226.25);
  color: #2e2e2e;
}
.theme-dark .to-table .to-table-body .to-table-body-row:nth-child(even) {
  background-color: rgb(33.25, 33.25, 33.25);
  color: #EFEFEF;
}
.theme-light .to-table .to-table-body .to-table-body-row:nth-child(even) .to-table-body-row-action:hover {
  background-color: #bcbcbc;
  color: #2e2e2e;
}
.theme-dark .to-table .to-table-body .to-table-body-row:nth-child(even) .to-table-body-row-action:hover {
  background-color: hsl(0, 0%, -1.9607843137%);
  color: #EFEFEF;
}
@media (min-width: 769px) and (max-width: 992px) {
  .to-table .to-table-body .to-table-body-row {
    display: block;
    padding: 6px;
  }
}
@media (max-width: 768px) {
  .to-table .to-table-body .to-table-body-row {
    display: block;
    padding: 6px;
  }
}

.to-tile {
  position: relative;
  border-radius: 6px;
  padding: 16px;
  line-height: initial;
}
.theme-light .to-tile {
  background-color: hsl(0, 0%, 103.7254901961%);
  color: #2e2e2e;
  border: 1px solid #bcbcbc;
}
.theme-dark .to-tile {
  background-color: rgb(71.5, 71.5, 71.5);
  color: #EFEFEF;
  border: 1px solid hsl(0, 0%, -1.9607843137%);
}
.to-tile .to-tile-header-container {
  display: flex;
  vertical-align: middle;
  margin-bottom: 6px;
}
.to-tile .to-tile-header-container .to-tile-header {
  display: block;
  font-weight: bold;
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.to-tile .to-tile-header-container .to-tile-icon {
  font-size: 1.6rem;
  margin-right: 6px;
}
.to-tile .to-tile-header-container .to-tile-actions {
  display: flex;
  flex-direction: row-reverse;
  flex: 1;
  text-align: center;
}
.to-tile .to-tile-header-container .to-tile-actions .to-tile-action {
  padding: 6px;
}
.theme-light .to-tile .to-tile-header-container .to-tile-actions .to-tile-action {
  border: 1px solid rgb(213.5, 213.5, 213.5);
}
.theme-dark .to-tile .to-tile-header-container .to-tile-actions .to-tile-action {
  border: 1px solid rgb(20.5, 20.5, 20.5);
}
.to-tile .to-tile-tags {
  display: flex;
  margin-bottom: 6px;
}
.to-tile .to-tile-tags .to-tile-tag {
  border-radius: 4px;
  padding: 4px;
  margin-right: 4px;
}
.theme-light .to-tile .to-tile-tags .to-tile-tag {
  background-color: #636363;
  color: #EFEFEF;
}
.theme-dark .to-tile .to-tile-tags .to-tile-tag {
  background-color: #4e4e4e;
  color: #EFEFEF;
}
.to-tile .to-tile-tags .to-tile-tag {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.to-tile .to-tile-description {
  font-size: 1rem;
  word-wrap: break-word;
}
.to-tile .to-tile-container .to-tile-header {
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-tile .to-tile {
  border: 1px solid #2e2e2e;
  box-shadow: none;
}
.theme-dark .to-tile .to-tile {
  border: 1px solid #EFEFEF;
  box-shadow: none;
}

.theme-light .to-dialog .to-tile {
  background-color: hsl(0, 0%, 113.7254901961%);
  color: #2e2e2e;
}
.theme-dark .to-dialog .to-tile {
  background-color: #616161;
  color: #EFEFEF;
}

.to-widget {
  position: relative;
  min-height: 50px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.to-widget-actions-container {
  position: absolute;
  padding: 4px;
  right: 0;
  cursor: pointer;
  z-index: 1;
}

.to-widget-action {
  border-radius: 4px;
  cursor: pointer;
  padding: 6px;
  transition: 0.2s ease;
  min-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  line-height: initial;
}
.theme-light .to-widget-action:hover {
  background: rgb(213.5, 213.5, 213.5);
  color: #2e2e2e;
}
.theme-light .to-widget-action.to-error-action:hover {
  background: #e74c3c;
  color: #EFEFEF;
}
.theme-dark .to-widget-action:hover {
  background: rgb(20.5, 20.5, 20.5);
  color: #EFEFEF;
}
.theme-dark .to-widget-action.to-error-action:hover {
  background: #e74c3c;
  color: #EFEFEF;
}
.to-widget-action > i {
  font-size: 1rem;
  margin-right: 6px;
}

.to-widget.shortcut {
  padding: 0;
  overflow: hidden;
  height: 200px;
}
.to-widget.shortcut .to-image {
  transition: 0.2s ease;
  height: inherit;
  margin: auto;
  object-fit: cover;
  width: -moz-fit-content;
  width: -moz-available;
  width: 100%;
  width: 100vw;
  width: -webkit-fill-available;
  width: fill-available;
}
.to-widget.shortcut:hover .to-image {
  transform: scale(1.2);
}

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