html,
body {
  margin: 0px;
  padding: 0px;
}
html {
  font-size: 14pt;
}
body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: hidden;
  flex: 1 1 auto;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  --header-background-color: #424242;
  --header-color: #F3F2F1;
  --header-focus-color: #a3a38b;
  --control-color: #333333;
  --control-background-color: #F3F2F1;
  --control-hover-background-color: #EDEBE9;
  --control-hover-color: #F3F2F1;
  --control-border-color: #E1DFDD;
  --button-hover-background-color: #3B3A39;
  --button-hover-color: #F3F2F1;
  --button-border-color: #E1DFDD;
  --button-color: #333333;
  --button-disabled-color: #808080;
  --highlight-color: #f2c811;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
button {
  font-family: unset;
  font-size: unset;
  color: unset;
  background-color: unset;
  border-style: unset;
  border-color: unset;
  border-width: unset;
  appearance: unset;
}
html {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
header.top {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 48px;
  padding-top: unset;
  padding-bottom: unset;
  color: var(--header-color);
  background-color: var(--header-background-color);
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow: hidden;
}
header.top .product {
  font-size: 18px;
  font-weight: 600;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--header-color);
  padding-left: 1rem;
  margin-right: 1rem;
  border: 2px dashed transparent;
  outline: none;
}
header.top .product svg {
  width: 1.1rem;
  height: 1.1rem;
}
header.top .product span {
  margin-left: 0.25rem;
  white-space: nowrap;
}
header.top .product:focus {
  border-color: var(--header-focus-color);
}
header.top .icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}
header.top button {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  font-family: Segoe UI, SegoeUI, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: unset;
  border: unset;
  /*        padding-top: 0.5rem;
        padding-bottom: 0.5rem;*/
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: var(--header-background-color);
  color: var(--header-color);
  border-style: solid;
  border-color: var(--header-background-color);
  border-width: 2px;
  cursor: pointer;
}
header.top button:hover {
  background-color: var(--control-hover-background-color);
  color: var(--header-background-color);
  border-color: var(--control-border-color);
}
header.top button:focus,
header.top button:focus-visible {
  border-style: dashed;
  border-color: var(--header-focus-color);
  outline: none;
}
header.top svg {
  fill: currentColor;
}
header.top .jobsButton {
  visibility: hidden;
}
header.top .jobsButton svg {
  width: 32px;
  height: 32px;
}
header.top .jobsButton.hasJobs {
  display: block;
}
header.top .jobsButton.hasRunningJobs {
  animation: pulse 3s linear infinite;
}
header.top .jobsButton.hasFailedJobs {
  color: crimson;
}
header.top .userButton {
  overflow: hidden;
  flex: 0 1 auto;
}
header.top .userButton .photo {
  flex: 0 0 auto;
}
header.top .userButton .photo .svgFrame {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--header-background-color);
  color: var(--header-color);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}
header.top .userButton .photo .svgFrame svg {
  width: 15px;
  height: 15px;
}
header.top .userButton .photo img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}
header.top .userButton .label {
  display: block;
  text-align: left;
  overflow: hidden;
  flex: 1 1 0;
  margin-left: 0.5rem;
  font-size: smaller;
}
header.top .userButton .label div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0px;
}
header.top .userButton .label .userName {
  font-weight: bolder;
}
header.top .userButton .label .organizationName {
  font-weight: lighter;
}
main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
main .close {
  right: 0.5rem;
  top: 0.5rem;
  position: absolute;
  background-color: white;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
main dialog.ad {
  width: 80%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: none;
}
main dialog.ad:disabled {
  color: lightgray;
}
main dialog.ad .skip {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  outline: none;
}
main dialog.ad .skip:not(:disabled) {
  color: ButtonText;
  background-color: ButtonFace;
  border-color: ButtonFace;
  border-width: 1px;
  border-style: solid;
  padding-right: 2rem;
  cursor: pointer;
}
main dialog.ad .skip:focus {
  border: 1px dashed black;
}
main svg.icon {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
  flex: 0 0 auto;
}
main .kitsune [aria-modal=true].connect {
  min-width: 450px;
  max-width: 600px;
}
main .kitsune [aria-modal=true].connect .link {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5ex;
}
main .kitsune [aria-modal=true].connect .link label {
  font-size: 0.8rem;
  font-weight: bold;
}
main .kitsune [aria-modal=true].connect .link input {
  flex: 1 1 auto;
  font-size: 0.9rem;
  padding: 0.25rem;
}
main .kitsune [aria-modal=true].connect .tabRack {
  display: flex;
  flex-direction: row;
  margin-bottom: 2ex;
  user-select: none;
  align-items: flex-end;
}
main .kitsune [aria-modal=true].connect .tabRack input {
  appearance: none;
  border: none;
  background: none;
  min-height: unset;
  height: unset;
  outline: none;
}
main .kitsune [aria-modal=true].connect .tabRack input:focus {
  border: none;
  background: none;
}
main .kitsune [aria-modal=true].connect .tabRack label {
  cursor: pointer;
  margin-right: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}
main .kitsune [aria-modal=true].connect .tabRack input + span {
  border-bottom: 2px solid transparent;
  font-weight: 400;
  padding-bottom: 4px;
}
main .kitsune [aria-modal=true].connect .tabRack input:checked + span {
  border-bottom: 2px solid #f2c811;
  font-weight: 600;
}
main .kitsune [aria-modal=true].connect .tabRack input:focus + span {
  outline-style: dotted;
  outline-color: var(--header-focus-color);
  outline-width: 1px;
  outline-offset: 2px;
}
main .kitsune [aria-modal=true].connect .message {
  display: flex;
  flex-direction: row;
  align-items: center;
}
main .kitsune [aria-modal=true].connect .message .icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin-right: 1.5rem;
}
main .kitsune [aria-modal=true].connect .directions {
  max-height: 25ex;
  font-size: smaller;
  margin-bottom: 2rem;
}
main .kitsune [aria-modal=true].connect .directions .callOut {
  font-style: italic;
  font-weight: bolder;
}
main .kitsune .searchPathTabItem {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background-color: var(--content-background-color);
}
main .kitsune .searchPathTabItem .form {
  padding-left: 2rem;
  padding-right: 2em;
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  flex: 0 0 auto;
}
main .kitsune .searchPathTabItem .form .searchBox {
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
main .kitsune .searchPathTabItem .form .buttonRack button {
  margin-left: unset;
  outline: none;
}
main .kitsune .searchPathTabItem .form .buttonRack button:focus {
  border-color: var(--button-color);
  border-style: dashed;
}
main .kitsune .searchPathTabItem .disclaimer {
  font-size: 0.75rem;
  font-weight: lighter;
  text-align: center;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  background-color: var(--button-disabled-color);
  font-style: italic;
}
main .kitsune .searchPathTabItem label {
  font-weight: bold;
  font-size: larger;
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
}
main .kitsune .searchPathTabItem code {
  white-space: pre;
  overflow: auto;
  align-self: stretch;
}
main .app,
main .kitsune {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
main .app button.ssoInfo,
main .kitsune button.ssoInfo {
  color: steelblue;
}
main .app .loadingPane,
main .kitsune .loadingPane {
  /*            font-size: xx-large;
            font-weight: bold;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1 1 auto;
}
main .app .loadingPane .spinner,
main .kitsune .loadingPane .spinner {
  width: 75px;
  height: 75px;
}
main .app form .buttonRack button,
main .kitsune form .buttonRack button,
main .app dialog[open] .buttonRack button,
main .kitsune dialog[open] .buttonRack button {
  min-width: 7rem;
  min-height: 4ex;
  border: 2px solid var(--button-border-color);
  padding: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  outline: none;
}
main .app form .buttonRack button:focus,
main .kitsune form .buttonRack button:focus,
main .app dialog[open] .buttonRack button:focus,
main .kitsune dialog[open] .buttonRack button:focus {
  border-color: var(--button-color);
  border-style: dashed;
}
main .app form .buttonRack button:hover,
main .kitsune form .buttonRack button:hover,
main .app dialog[open] .buttonRack button:hover,
main .kitsune dialog[open] .buttonRack button:hover {
  background-color: var(--button-hover-background-color);
  color: var(--button-hover-color);
}
main .app dialog[open] h3:not(:has(~h4)),
main .kitsune dialog[open] h3:not(:has(~h4)),
main .app dialog[open] h4,
main .kitsune dialog[open] h4 {
  margin-bottom: 2.5ex;
}
main .app dialog[open] .buttonRack,
main .kitsune dialog[open] .buttonRack {
  text-align: center;
  margin-top: auto;
}
main .app dialog[open] .tabRack,
main .kitsune dialog[open] .tabRack {
  display: flex;
  flex-direction: row;
  margin-bottom: 2ex;
  user-select: none;
  align-items: flex-end;
}
main .app dialog[open] .tabRack input,
main .kitsune dialog[open] .tabRack input {
  appearance: none;
}
main .app dialog[open] .tabRack label,
main .kitsune dialog[open] .tabRack label {
  cursor: pointer;
  margin-right: 1.5rem;
  font-size: 14px;
  font-weight: 400;
  display: flex;
}
main .app dialog[open] .tabRack input + span,
main .kitsune dialog[open] .tabRack input + span {
  border-bottom: 2px solid transparent;
  font-weight: 400;
  padding-bottom: 4px;
}
main .app dialog[open] .tabRack input:checked + span,
main .kitsune dialog[open] .tabRack input:checked + span {
  border-bottom: 2px solid #f2c811;
  font-weight: 600;
}
main .app dialog[open] .tabRack input:focus + span,
main .kitsune dialog[open] .tabRack input:focus + span {
  outline-style: dotted;
  outline-color: var(--header-focus-color);
  outline-width: 1px;
  outline-offset: 2px;
}
main .app .notifications,
main .kitsune .notifications {
  max-width: 35%;
}
main .app .notification,
main .kitsune .notification {
  display: flex;
  flex-direction: column;
  border: 2px dashed transparent;
  outline: none;
  padding: 0.15rem;
}
main .app .notification.dismissing,
main .kitsune .notification.dismissing {
  background-color: gainsboro;
}
main .app .notification.dismissing .header,
main .kitsune .notification.dismissing .header {
  color: gainsboro;
}
main .app .notification.dismissing .header .dismiss,
main .kitsune .notification.dismissing .header .dismiss {
  display: none;
}
main .app .notification:focus,
main .kitsune .notification:focus,
main .app .notification:focus-visible,
main .kitsune .notification:focus-visible {
  border-color: var(--header-background-color);
}
main .app .notification .header,
main .kitsune .notification .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
  background-color: var(--header-background-color);
  color: var(--header-color);
}
main .app .notification .header .caption,
main .kitsune .notification .header .caption {
  flex: 1 1 auto;
}
main .app .notification .header .dismiss,
main .kitsune .notification .header .dismiss {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 0.15rem;
}
main .app .notification .header .dismiss:hover,
main .kitsune .notification .header .dismiss:hover {
  background-color: var(--header-color);
  color: var(--header-background-color);
}
main .app .notification .body,
main .kitsune .notification .body {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem;
}
main .app .notification .body .Information,
main .kitsune .notification .body .Information {
  color: navy;
}
main .app .notification .body .Critical,
main .kitsune .notification .body .Critical {
  color: sienna;
}
main .app .notification .body .Warning,
main .kitsune .notification .body .Warning {
  color: darkgoldenrod;
}
main .app .notification .body .description,
main .kitsune .notification .body .description {
  margin-left: 0.5rem;
}
button.ssoInfo {
  padding: 0px;
  margin: 0px;
  border: none;
  outline: none;
  background: none;
  color: steelblue;
  display: inline-flex;
  vertical-align: middle;
}
button.ssoInfo svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
button.ssoInfo:focus {
  outline-style: dotted;
  outline-color: #a3a38b;
  outline-offset: 1px;
  outline-width: 2px;
}
.app {
  --background-color: #fff;
  --color: var(--header-background-color);
  --userCardHover: black;
  background-color: var(--background-color);
  color: var(--color);
}
.app[data-theme="dark"] {
  --background-color: transparent;
  --color: #fff;
  --userCardHover: white;
}
.app[data-theme="contrast"] {
  --background-color: transparent;
  --color: #fff;
  --userCardHover: white;
}
.app a {
  cursor: pointer;
  text-decoration: none;
}
.app button {
  border-radius: 5px;
  border-width: 2px;
  border-color: var(--button-border-color);
}
.app button:not(:disabled) {
  cursor: pointer;
}
.app button:disabled {
  color: gray;
}
.app button:focus,
.app button:focus-visible {
  border-color: var(--header-focus-color);
  border-style: dashed;
}
.app .spinner {
  width: 20px;
  height: 20px;
}
.app label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .fieldLabel {
  text-align: right;
}
.app .errorMessage {
  margin-bottom: 2ex;
  color: crimson;
  font-size: smaller;
}
.app .activateError {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.app .help {
  font-weight: lighter;
  margin-bottom: 2ex;
}
.app details summary {
  font-size: larger;
  font-weight: bolder;
  margin-bottom: 3ex;
}
.app .onDemand label {
  align-items: center;
  cursor: pointer;
}
.app .onDemand label.disabled {
  cursor: default;
  font-weight: lighter;
  font-style: italic;
}
.app .onDemand label input {
  margin-right: 0.25rem;
}
.app form.newDatabase {
  display: flex;
  flex-direction: column;
  margin: 2px;
}
.app form.newDatabase textarea {
  height: 15ex;
}
.app form.newDatabase label {
  font-size: smaller;
}
.app form.newDatabase label.required {
  font-weight: bold;
}
.app form.newDatabase .input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5ex;
  flex: 1 1 auto;
}
.app form.newDatabase button {
  align-self: flex-start;
}
.app .errorPane {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 auto;
  padding: 2rem;
}
.app .errorPane .errorMessage {
  max-width: 450px;
  margin-bottom: 2ex;
  font-size: large;
}
.app .errorPane .message {
  max-width: 450px;
  margin-bottom: 2ex;
}
.app .mainBody {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  overflow: hidden;
}
.app .mainBody .disclosure {
  padding-top: 2ex;
  padding-bottom: 2ex;
}
.app .mainBody form input[type=text],
.app .mainBody dialog[open] input[type=text],
.app .mainBody form input[type=email],
.app .mainBody dialog[open] input[type=email],
.app .mainBody form textarea,
.app .mainBody dialog[open] textarea,
.app .mainBody form select,
.app .mainBody dialog[open] select {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  flex: 1 1 auto;
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif;
  font-size: 1rem;
  outline: none;
  border-color: var(--control-border-color);
  background-color: var(--background-color);
  border-style: solid;
  border-width: 2px;
}
.app .mainBody form input[type=text]:focus,
.app .mainBody dialog[open] input[type=text]:focus,
.app .mainBody form input[type=email]:focus,
.app .mainBody dialog[open] input[type=email]:focus,
.app .mainBody form textarea:focus,
.app .mainBody dialog[open] textarea:focus,
.app .mainBody form select:focus,
.app .mainBody dialog[open] select:focus {
  border-color: var(--button-color);
  border-style: dashed;
}
.app .mainBody form input[type=text]:not(:valid),
.app .mainBody dialog[open] input[type=text]:not(:valid),
.app .mainBody form input[type=email]:not(:valid),
.app .mainBody dialog[open] input[type=email]:not(:valid),
.app .mainBody form textarea:not(:valid),
.app .mainBody dialog[open] textarea:not(:valid),
.app .mainBody form select:not(:valid),
.app .mainBody dialog[open] select:not(:valid) {
  background-color: mistyrose;
}
.app .mainBody form input[type=text]:read-only:not(select),
.app .mainBody dialog[open] input[type=text]:read-only:not(select),
.app .mainBody form input[type=email]:read-only:not(select),
.app .mainBody dialog[open] input[type=email]:read-only:not(select),
.app .mainBody form textarea:read-only:not(select),
.app .mainBody dialog[open] textarea:read-only:not(select),
.app .mainBody form select:read-only:not(select),
.app .mainBody dialog[open] select:read-only:not(select) {
  background-color: aliceblue;
}
.app .mainBody dialog[open].modal {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  overflow: hidden;
  border-radius: 0.5rem;
  border: none;
  outline: none;
}
.app .mainBody dialog[open].rename {
  min-width: 20rem;
}
.app .mainBody dialog[open].rename form {
  margin-bottom: 4ex;
}
.app .mainBody dialog[open].rename .input-group {
  display: flex;
  flex-direction: column;
}
.app .mainBody dialog[open].rename input {
  flex: 1 1 auto;
}
.app .mainBody dialog[open].subscription {
  max-width: 35em;
  min-width: 20em;
}
.app .mainBody dialog[open].subscription .subscriptionSelector {
  margin-bottom: 4ex;
}
.app .mainBody dialog[open].subscription .subscriptionSelector label {
  align-items: center;
  cursor: pointer;
}
.app .mainBody dialog[open].subscription .subscriptionSelector label input {
  margin-right: 0.5rem;
  cursor: pointer;
}
.app .mainBody dialog[open].subscription legend {
  font-style: italic;
  font-weight: lighter;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.app .mainBody dialog[open].subscription table {
  margin-bottom: 1ex;
  margin-top: 1ex;
  margin-left: 1rem;
}
.app .mainBody dialog[open].subscription table .label {
  text-align: right;
  font-weight: bolder;
  padding-right: 0.5rem;
}
.app .mainBody dialog[open].subscription table .value.meta {
  font-style: italic;
}
.app .mainBody dialog[open]::backdrop {
  background-color: rgba(0, 0, 0, 0.4);
}
.app .mainBody dialog[open] h4 {
  font-size: smaller;
  margin-top: 0px;
  font-weight: lighter;
}
.app .mainBody dialog[open] h5 {
  margin: 0px;
  margin-bottom: 2ex;
  font-size: inherit;
}
.app .mainBody dialog[open] h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
}
.app .mainBody dialog[open] h3 button {
  background: none;
  border: none;
  font-weight: bold;
  margin-right: 0.25rem;
  font-size: unset;
}
.app .mainBody dialog[open] .form {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.app .mainBody dialog[open] .form select {
  margin-bottom: 2ex;
  min-height: 4ex;
}
.app .mainBody dialog[open] .form input[type=email] {
  margin-bottom: 2ex;
  flex: 0 1 auto;
}
.app .mainBody dialog[open] .form select {
  flex: 0 1 auto;
}
.app .mainBody dialog[open] .form textarea {
  min-height: 10ex;
  margin-top: 1.5ex;
}
.app .mainBody dialog[open] .form input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--control-border-color);
  cursor: pointer;
}
.app .mainBody dialog[open] .form input[type=checkbox]:focus {
  outline-color: var(--button-color);
  outline-style: dashed;
}
.app .mainBody dialog[open] .form label {
  font-size: smaller;
  font-weight: bolder;
}
.app .mainBody .alert,
.app .mainBody .sharedShare {
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1.5rem;
  padding-top: 2.5rem;
  max-width: 450px;
}
.app .mainBody .alert .link,
.app .mainBody .sharedShare .link {
  margin-bottom: 2.5ex;
}
.app .mainBody .alert .message,
.app .mainBody .sharedShare .message {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .mainBody .alert .message .icon,
.app .mainBody .sharedShare .message .icon {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  margin-right: 1.5rem;
}
.app .mainBody .alert .message {
  margin-bottom: 2.5ex;
}
.app .mainBody .sharedShare {
  padding-top: 1rem;
}
.app .mainBody .sharedShare .link {
  display: flex;
  flex-direction: row;
}
.app .mainBody .sharedShare .link input {
  flex: 1 1 auto;
}
.app .mainBody .info[open] {
  min-width: 20rem;
  min-height: 35ex;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.app .mainBody .info[open] input {
  margin-bottom: 2ex;
  min-height: 3ex;
}
.app .mainBody .share[open] {
  min-width: 25rem;
  min-height: 40ex;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.app .mainBody .share[open] .linkTab label input + span {
  margin-left: 0.5rem;
}
.app .mainBody .share[open] .linkTab fieldset {
  margin-top: 2ex;
  margin-bottom: 4ex;
  border-style: solid;
  border-width: 1px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.25rem;
}
.app .mainBody .share[open] .linkTab fieldset:disabled {
  color: gainsboro;
  border-color: gainsboro;
}
.app .mainBody .share[open] .linkTab fieldset label {
  align-items: center;
}
.app .mainBody .share[open] .linkTab .link {
  display: flex;
  flex-direction: row;
}
.app .mainBody .share[open] .linkTab .link input {
  flex: 1 1 auto;
}
.app .mainBody .share[open] .shares {
  flex: 1 1 auto;
  overflow: auto;
}
.app .mainBody .share[open] .shares .message {
  font-weight: lighter;
  font-style: italic;
}
.app .mainBody .share[open] .shares .sharesGrid {
  display: grid;
  grid-template-columns: 15px 1fr 6rem;
  grid-column-gap: 1rem;
  align-items: center;
}
.app .mainBody .share[open] .shares .sharesGrid .caption {
  overflow: hidden;
  text-overflow: ellipsis;
}
.app .mainBody .share[open] .shares .shareRequestsGrid {
  display: grid;
  grid-template-columns: 15px 1fr 3rem 2rem 1.5rem;
  grid-column-gap: 0px;
  align-items: center;
}
.app .mainBody .share[open] .shares .shareRequestsGrid .caption {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
}
.app .mainBody .share[open] .shares .role {
  justify-self: flex-end;
  background: none;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .mainBody .contextMenu[open] {
  display: flex;
  flex-direction: column;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0px;
  padding: 0px;
  align-content: stretch;
  min-width: 10rem;
  overflow: hidden;
  filter: drop-shadow(2px 2px 4px black);
  background-color: white;
  outline: none;
  border: none;
}
.app .mainBody .contextMenu[open] button {
  background: none;
  outline: none;
  border: 2px dotted transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 0.75ex;
  padding-bottom: 0.75ex;
  border-radius: 0px;
}
.app .mainBody .contextMenu[open] button .icon {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.app .mainBody .contextMenu[open] button .caption {
  flex: 1 1 auto;
  text-align: left;
}
.app .mainBody .contextMenu[open] button:focus {
  border-color: var(--header-focus-color);
}
.app .mainBody .contextMenu[open] button:hover {
  background-color: gainsboro;
}
.app .mainBody .accountPane {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
}
.app .mainBody .accountPane .tabs .tabBar {
  background-color: var(--header-background-color);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  cursor: default;
  flex: 0 0 auto;
}
.app .mainBody .accountPane .tabs .tabBar [role=tablist] {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
  cursor: default;
  flex: 1 1 auto;
  overflow: hidden;
}
.app .mainBody .accountPane .tabs .tabBar [role=tab] {
  background-color: var(--control-background-color);
  flex: 0 0 auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.125rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: wrap;
  border: 1px dashed transparent;
  border-radius: unset;
  outline: none;
}
.app .mainBody .accountPane .tabs .tabBar [role=tab][tabindex="0"] {
  background-color: #FAF9F8;
}
.app .mainBody .accountPane .tabs .tabBar [role=tab]:focus {
  border-color: var(--control-color);
}
.app .mainBody .accountPane .tabs .tabBar [role=tab] .selection {
  margin-top: 2px;
  border-radius: 2px;
  height: 4px;
}
.app .mainBody .accountPane .tabs .tabBar [role=tab][aria-selected=true] .selection {
  background-color: var(--highlight-color);
}
.app .mainBody .accountPane .tabs .tabBar [role=tab] .body {
  display: flex;
  flex-direction: column;
}
.app .mainBody .accountPane .tabs [role=tabpanel] {
  padding: 2rem;
}
.app .mainBody .accountPane form {
  display: flex;
  flex-direction: column;
}
.app .mainBody .accountPane form .field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.app .mainBody .accountPane form .error {
  margin-bottom: 1rem;
  font-style: italic;
  font-weight: lighter;
  color: crimson;
}
.app .mainBody .accountPane form label {
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.app .mainBody .accountPane form input {
  font-size: 1rem;
  padding: 0.25rem;
  border: 1px solid #e1dfdd;
}
.app .mainBody .accountPane form input:focus {
  border-color: transparent;
  outline-width: 2px;
  outline-color: #333;
  outline-style: dashed;
  outline-offset: -1px;
}
.app .mainBody .accountPane form input:invalid {
  background-color: mistyrose;
}
.app .mainBody .accountPane form input:read-only {
  background-color: gainsboro;
}
.app .mainBody .accountPane .subscriptions {
  display: grid;
  grid-template-columns: repeat(5, max-content);
  column-gap: 1rem;
  font-size: 0.95rem;
  overflow: auto;
}
.app .mainBody .accountPane .subscriptions .heading {
  font-size: 1rem;
  font-weight: bold;
}
.app .mainBody .indexPane {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
}
.app .mainBody .indexPane .header {
  border-bottom: 1px solid var(--control-border-color);
  height: 2rem;
  flex: 0 0 auto;
  justify-content: flex-end;
  outline: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
}
.app .mainBody .indexPane .header button {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  background-color: transparent;
  border: 1px solid transparent;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0px;
  color: var(--button-color);
}
.app .mainBody .indexPane .header button:active .content {
  transition-duration: 0.3s;
  transform: scale(0.9, 0.9);
}
.app .mainBody .indexPane .header button:hover:enabled {
  color: var(--button-hover-color);
  background-color: var(--button-hover-background-color);
}
.app .mainBody .indexPane .header button:focus {
  border-color: var(--control-color);
  border-style: dashed;
}
.app .mainBody .indexPane .header button .content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.app .mainBody .indexPane .noDatabases {
  padding: 2rem;
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: column;
  display: flex;
}
.app .mainBody .indexPane .databases {
  padding: 2rem;
  overflow-y: auto;
  flex: 1 1 auto;
  align-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  outline: none;
  overflow-x: hidden;
}
.app .mainBody .indexPane .databases .database:hover:enabled .flyOut {
  display: inline-flex;
}
.app .mainBody .indexPane .databases .database {
  width: 40ch;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  color: var(--control-color);
  background-color: var(--control-background-color);
  overflow: hidden;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--control-border-color);
}
.app .mainBody .indexPane .databases .database .caption {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  flex: 0 1 auto;
  margin-left: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  min-width: 0;
}
.app .mainBody .indexPane .databases .database .caption > span {
  margin: 0 0 0 0.5rem;
  text-overflow: ellipsis;
  /*                            flex: 1 1 0;*/
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}
.app .mainBody .indexPane .databases .database .caption .name {
  border-bottom: 2px solid transparent;
}
.app .mainBody .indexPane .databases .database .caption .sharedByName {
  margin-left: 1rem;
  font-size: smaller;
  font-weight: lighter;
}
.app .mainBody .indexPane .databases .database .flyOut,
.app .mainBody .indexPane .databases .database .busyIndicator {
  padding-left: 0.5rem;
  border: none;
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition-duration: 0.3s;
  cursor: pointer;
  color: var(--button-color);
  margin-left: auto;
}
.app .mainBody .indexPane .databases .database .flyOut div,
.app .mainBody .indexPane .databases .database .busyIndicator div {
  background-color: var(--control-border-color);
  border-radius: 1rem;
  padding: 0.5rem;
  display: inline-flex;
}
.app .mainBody .indexPane .databases .database .flyOut:hover,
.app .mainBody .indexPane .databases .database .busyIndicator:hover {
  display: inline-flex;
}
.app .mainBody .indexPane .databases .database .busy {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border: none;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--button-color);
  margin-left: auto;
}
.app .mainBody .indexPane .databases .database:hover:enabled {
  cursor: pointer;
  background-color: var(--control-hover-background-color);
  color: var(--button-color);
}
.app .mainBody .indexPane .databases .database:hover:enabled .caption:not(:has(+ :hover)) .name {
  border-bottom: 2px solid black;
}
.app .mainBody .indexPane .databases .database:focus {
  border-style: dashed;
  border-color: var(--control-color);
  outline: none;
}
.app .mainBody .indexPane .databases .database .message {
  margin-top: 1.5ex;
  font-weight: lighter;
  font-size: smaller;
}
.app .mainBody .indexPane .databases .database.faulted {
  border-color: crimson;
}
.app .mainBody .indexPane .databases .database.busy {
  background-color: gainsboro;
}
.app .mainBody .indexPane .databases .database .sharing {
  margin-top: 1rem;
}
.app .mainBody .indexPane .databases .database .sharing label {
  font-size: smaller;
  font-style: italic;
  margin-bottom: 1ex;
}
.app .mainBody .indexPane .databases .database .sharing .message {
  font-size: smaller;
  margin-bottom: 2ex;
  display: flex;
  flex-direction: column;
}
.app .mainBody .indexPane .databases .database .sharing .ownerMessage {
  font-size: smaller;
  margin-bottom: 2ex;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .mainBody .indexPane .databases .database .sharing .ownerMessage .ownerName {
  margin-left: 0.25rem;
}
.app .mainBody .indexPane .databases .database .share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 3ex;
}
.app .mainBody .indexPane .databases .database .share select {
  padding: 0.5rem;
  margin-bottom: 2ex;
}
.app .mainBody .indexPane .databases .database .groups {
  margin-bottom: 3ex;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background-color: ghostwhite;
  border: 1px solid gainsboro;
  padding: 1rem;
}
.app .mainBody .indexPane .databases .database .groups .group {
  display: flex;
  flex-direction: row;
  font-size: smaller;
  align-items: center;
  flex: 1 1 auto;
}
.app .mainBody .indexPane .databases .database:hover:not(.busy) {
  filter: drop-shadow(-2px 5px 5px gray);
}
.app .mainBody .indexPane .newDatabasePane {
  border: 1px solid gray;
  padding: 2rem;
  filter: drop-shadow(-2px 5px 5px gray);
  background-color: white;
  position: relative;
}
.app .mainBody .indexPane .newDatabasePane .closeNewDatabase {
  right: 0.5rem;
  top: 0.5rem;
  position: absolute;
  background-color: white;
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.app .mainBody .indexPane .newDatabaseButton {
  display: flex;
  flex-direction: row;
  border: 1px solid gray;
  padding: 1rem;
  background-color: white;
  align-self: flex-start;
  align-items: center;
}
.app .mainBody .indexPane .newDatabaseButton:hover {
  filter: drop-shadow(-2px 5px 5px gray);
}
.app .mainBody .indexPane .newDatabaseButton span {
  margin-left: 0.25rem;
}
.app .mainBody .visiblePane {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.app .pane {
  border: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1 1 auto;
}
.app .pane .list {
  margin-top: 1rem;
}
.app .browse .removeFromHistory {
  display: none;
}
.app .disclosure {
  margin-left: 1.25rem;
  margin-top: 0.5ex;
}
.app :not(.busy) > svg.spinner {
  visibility: hidden;
}
.app .databaseSelector {
  margin: 2px;
}
.app .databaseSelector input {
  appearance: none;
}
.app .databaseSelector label {
  cursor: pointer;
  border: 1px solid gray;
  border-radius: 5px;
  padding: 0.25rem;
  margin-bottom: 1ex;
  display: flex;
  flex-direction: row;
}
.app .databaseSelector label input ~ span {
  font-weight: 400;
}
.app .databaseSelector label input:checked ~ span {
  font-weight: 600;
}
.app .databaseSelector label svg {
  visibility: hidden;
  margin-right: 0.5rem;
  color: green;
}
.app .databaseSelector label input:checked ~ svg {
  visibility: visible;
}
.app .databaseSelector label:focus-within {
  border-color: black;
}
.app .personalTenant > div {
  font-size: smaller;
  font-style: italic;
}
.app .browseForm {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.app .browseForm label {
  font-size: smaller;
  margin-top: 0.5rem;
  font-weight: bold;
}
.app .browseForm .buttons {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}
.app .teamsConfig button.connect {
  display: none;
}
.app .userCard {
  padding-left: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-width: 1px;
  border-style: solid;
  border-color: gainsboro;
  border-radius: 5px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  width: 20rem;
}
.app .userCard .buttons {
  display: none;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.app .userCard .buttons button {
  border: none;
  background: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.app .userCard .buttons button.error {
  color: crimson;
}
.app .userCard:hover {
  border-color: var(--userCardHover);
}
.app .userCard:hover .buttons {
  display: flex;
}
.app .userCard mgt-person {
  cursor: pointer;
}
.app .searchBox {
  margin-bottom: 1rem;
}
.app .loadMore {
  margin-top: 1rem;
}
.app .usersList {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
}
.app .checkButton {
  border: 1px solid #a3a38b;
  width: 1.25rem;
  height: 1.25rem;
  background-color: white;
  padding: 0px;
  color: #333366;
}
.app .checkButton:focus:not(:disabled) {
  border-color: var(--header-focus-color);
  outline: none;
}
.app .checkButton:disabled {
  background-color: #d0d0c5;
}
.app .checkButton svg {
  width: 13px;
  height: 13px;
}
.app .checkButton .indeterminate {
  width: 9px;
  height: 9px;
  background-color: var(--header-focus-color);
  border-radius: 3px;
  margin-left: 2.5px;
}
.app .action {
  border: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: none;
  font-size: inherit;
  font-family: inherit;
  cursor: pointer;
}
.app .action:hover {
  text-decoration: underline;
}
.app .action:disabled {
  color: grey;
  cursor: unset;
  text-decoration: unset;
}
.app .emptyList {
  font-style: italic;
}
.app button.progress {
  background-color: white;
  color: var(--header-background-color);
  border: 1px solid var(--header-focus-color);
  border-radius: 5px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.app button.progress svg + span {
  margin-left: 0.5rem;
}
.app button.progress svg.spinner {
  visibility: hidden;
}
.app button.progress.busy svg.spinner {
  visibility: visible;
}
.app button.progress:disabled {
  color: #a3a38b;
}
.app button.progress .spinner {
  width: 15px;
  height: 15px;
}
.app button.progress:hover:not(:disabled) {
  background-color: var(--header-background-color);
  color: var(--header-color);
}
.app button.progress:focus {
  outline-style: dotted;
  outline-color: var(--header-focus-color);
  outline-width: 1px;
  outline-offset: 2px;
}
.app .confer {
  border-collapse: collapse;
}
.app .confer th {
  min-width: 4rem;
}
.app .confer td:not(.label) {
  text-align: center;
}
.app .confer .column .select,
.app .confer .column .update,
.app .confer .column .label {
  background-color: #d0d0c5;
}
.app .confer .column .label {
  text-align: right;
}
.app.userMenuBackground {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 1;
  background: none;
}
.app .userMenu {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  filter: drop-shadow(-2px 5px 5px gray);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 9rem;
  background-color: white;
}
.app .userMenu .userPanel {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.app .userMenu .userPanel .signOut {
  align-self: flex-end;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: smaller;
}
.app .userMenu .userPanel label {
  margin-top: 0.75rem;
  font-size: smaller;
}
.app .userMenu .userPanel meter {
  width: 100%;
}
.app .userMenu .userPanel .myAccount {
  font-size: smaller;
  align-self: flex-end;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0.75rem;
  text-align: left;
}
.app .userMenu .userPanel .myAccount .userName {
  font-family: "Segoe UI", sans-serif;
  font-size: smaller;
  font-weight: 400;
}
.app .userMenu .userPanel .myAccount svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
.app .userMenu .otherAccounts {
  display: flex;
  flex-direction: column;
}
.app .userMenu .otherAccounts button {
  border: unset;
  border-radius: unset;
  color: #333333;
  font-family: "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 400;
  text-align: unset;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
}
.app .userMenu .otherAccounts button:hover {
  text-decoration: underline;
  background-color: rgba(0, 0, 0, 0.08);
}
.app .userMenu .otherAccounts button:focus {
  border-color: black;
  outline: none;
}
.app .userMenu .otherAccounts button div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.app .userMenu .otherAccounts button div svg {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}
.app .profile .account > div {
  display: grid;
  grid-template-columns: 10rem 1fr;
}
.app .profile .account label {
  justify-content: flex-end;
  font-weight: bolder;
  font-size: smaller;
  padding-right: 0.5rem;
}
.app .profile .buttons {
  margin-top: 1rem;
}
.app .profile header {
  display: grid;
  grid-template-columns: 10rem 5rem 5rem;
}
.app .profile .profileSubscriptions {
  display: grid;
  grid-template-columns: 10rem 5rem 5rem;
}
.app .profile .profileSubscriptions .check {
  display: flex;
  align-items: center;
}
.app .signup {
  padding: 1rem;
}
.app .signup .activateError {
  padding: 1rem;
  background-color: mistyrose;
  color: darkred;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
}
.app .signup .activateError .icon {
  margin-right: 0.5rem;
}
.app .signup .signin {
  background-color: gainsboro;
  padding: 1rem;
  border: 1px solid #333366;
}
.app .signup .subscription {
  display: grid;
  grid-template-columns: 10rem 1fr;
  padding: 1rem;
}
.app .signup .subscription label {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 0.5rem;
  font-size: smaller;
  font-style: italic;
}
.app.notSignedIn {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}
.app.notSignedIn .welcome {
  max-width: 400px;
  margin-top: 10ex;
  margin-bottom: 6ex;
  font-weight: lighter;
  margin-left: 5rem;
  margin-right: 5rem;
}
.app.notSignedIn .welcome .sharedBy,
.app.notSignedIn .welcome .databaseName {
  font-weight: bolder;
}
.app.notSignedIn button.signIn {
  background-color: white;
  color: #333366;
  border: 1px solid #a3a38b;
  border-radius: 5px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  font-weight: bolder;
}
.app.notSignedIn button.signIn:hover:not(:disabled) {
  background-color: #333366;
  color: white;
}
.app.notSignedIn button.signIn:focus {
  border-color: #333366;
  outline: none;
  filter: drop-shadow(0px 0px 8px #3B3688);
}
.app.notSignedIn button.signIn svg {
  margin-right: 0.75rem;
}
@media only screen and (max-width: 450px) and (orientation: portrait), only screen and (max-height: 450px) and (orientation: landscape) {
  dialog {
    margin-left: 0px !important;
    margin-right: 0px !important;
    margin-bottom: 0px !important;
    max-width: unset !important;
    min-width: unset !important;
    min-height: unset !important;
    width: auto;
    border: none;
  }
  dialog.contextMenu {
    margin-top: auto !important;
  }
  dialog.modal {
    margin-top: 0px !important;
    height: auto;
  }
  main .kitsune [aria-modal=true].connect {
    min-width: initial;
    max-width: initial;
  }
  main .app .mainBody .indexPane .databases {
    padding: 1rem;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  main .app .mainBody .indexPane .databases .database {
    margin-right: 0px;
    width: unset;
    flex: 0 0 auto;
  }
}
