@keyframes effect-wiggle {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(8deg);
  }
  25% {
    transform: rotate(-8deg);
  }
  35% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  font-size: 13px;
  background: white;
  height: 100%;
  min-height: 100%;
  line-height: 1.5em;
  color: #222;
}
body {
  min-height: 100%;
  background: white;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5em;
}
li {
  list-style-type: none;
}
button {
  cursor: pointer;
  /*padding: 4px 10px;
	-webkit-appearance: none;
	background: white;
	border-top: 1px solid rgb(216, 216, 216);
	border-right: 1px solid rgb(209, 209, 209);
	border-bottom: 1px solid rgb(186, 186, 186);
	border-left: 1px solid rgb(209, 209, 209);

	img.loading {
		width: 1em;
		height: 1em;
		vertical-align: middle;
		margin-right: 5px;
	}*/
}
button[disabled] {
  cursor: default;
  color: #999;
}
a {
  color: inherit;
  text-decoration: underline;
}
svg {
  fill: currentColor;
}
input,
button,
select {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
input[type=text],
input[type=password],
input[type=email],
textarea {
  padding: 0 8px;
  line-height: 25px;
  border: 1px solid #ccc;
  font-size: inherit;
  border-radius: 1px;
}
input[type=text]:not([disabled]):hover,
input[type=password]:not([disabled]):hover,
input[type=email]:not([disabled]):hover,
textarea:not([disabled]):hover {
  background: #fcfcfc;
  border: 1px solid #999;
}
input[type=text][disabled],
input[type=password][disabled],
input[type=email][disabled],
textarea[disabled] {
  color: #666;
  background: rgba(239, 239, 239, 0.3);
}
select {
  line-height: 25px;
  height: 27px;
  font-size: inherit;
  border: 1px solid #ccc;
}
.react-select .react-select__control {
  border: 1px solid #ccc;
  border-radius: 1px;
}
input[type=checkbox] {
  -webkit-appearance: none;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #ccc;
  border-radius: 1px;
  background: white;
}
input[type=checkbox]:not([disabled]) {
  cursor: pointer;
}
input[type=checkbox]:not([disabled]):hover {
  background-color: #fafafa;
  border-color: #aaa;
}
input[type=checkbox]:checked {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj4KCTxnPgoJCTxwb2x5Z29uIHBvaW50cz0iNDMyLDU2IDE5MiwyOTYgODAsMTg0IDAsMjY0IDE5Miw0NTYgNTEyLDEzNiIvPgoJPC9nPgo8L3N2Zz4=);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}
input[type=checkbox]:disabled {
  opacity: 0.5;
}
*:focus {
  outline: #563d7c auto 3px;
}
.alert-popup {
  width: 400px;
  overflow: auto;
  outline: none;
}
.alert-popup > p {
  word-break: break-word;
  white-space: pre-line;
}
.alert-popup > button {
  margin-top: 2em;
  float: right;
}
@media only screen and (min-width: 500px) {
  .show-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 499px) {
  .show-non-mobile {
    display: none !important;
  }
}
.coming-soon {
  transform: rotate(45deg);
  background: white;
}
@media only screen and (min-width: 500px) {
  .coming-soon {
    width: 100px;
  }
}
@media only screen and (max-width: 499px) {
  .coming-soon {
    width: 60px;
  }
}
img.loading {
  width: 14px;
  height: 14px;
}
@keyframes popup-appear {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body.overlay-open {
  overflow-y: hidden;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.03);
}
.popupmenu {
  position: fixed;
  display: inline-block;
  background: white;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  max-width: 98vw;
  max-height: 98vh;
  overflow-y: auto;
  border-radius: 3px;
}
.popupmenu:not(.no-animation) {
  animation: popup-appear 0.1s;
}
.overlay.popup-overlay {
  background: rgba(0, 50, 100, 0.2);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  cursor: pointer;
  z-index: 100;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding: 1em 0;
}
.popup {
  margin: auto;
  overflow: visible;
  outline: none;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  max-width: 98vw;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: white;
  cursor: default;
}
.popup:not(.no-animation) {
  animation: popup-appear 0.1s;
}
@media only screen and (min-width: 500px) {
  .popup {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 499px) {
  .popup {
    padding: 8px 10px;
  }
}
.popup-title {
  font-weight: 700;
  font-size: 1.3em;
  line-height: 1.5em;
  margin-bottom: 0.5em;
}
.popup-close {
  float: right;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transform: translate(4px, -4px);
}
@media (hover: hover) {
  .popup-close:hover {
    background: #e8e8e8;
  }
}
.popup-buttons {
  display: flex;
  margin-top: 1em;
}
.popup-buttons .button__emphasized {
  margin-left: auto;
}
/*.popup-overlay {
	

	
}
.popup-menu-overlay {
	//background: rgba(0,0,0,0.1);
	//background: radial-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.1));
	background: rgba(0,50,100,0.2);
}*/
body.fullscreen-overlay-open {
  overflow-y: hidden;
}
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  cursor: pointer;
}
.fullscreen-overlay--state-tinted {
  background: rgba(0, 50, 100, 0.2);
}
.select {
  -webkit-appearance: none;
  background-color: white;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.1s;
  border: 1px solid #999;
  padding: 1px 5px;
  padding-right: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 640 1024" width="640" height="1024"><path fill="rgb(100,100,100)" d="M512 320L320 512 128 320 0 448l320 320 320-320L512 320z" /></svg>');
  background-size: auto 12px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  border-color: #888;
  color: inherit;
  border-radius: 1px;
  font: inherit;
}
.select[disabled] {
  cursor: default;
  color: #999;
  border-color: #bbb;
}
@media (hover: hover) {
  .select:not([disabled]):not(:active):hover {
    background-color: #d4d9f9;
  }
}
.button {
  display: inline-block;
  font: inherit;
  line-height: 32px;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 0 1.2em;
  border: none;
  border-radius: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: hsl(224, 64%, 15%);
  background: hsl(231, 74%, 93%);
}
.button.has-icon {
  display: inline-flex;
  align-content: center;
}
@media (hover: hover) {
  .button:not([disabled]):hover {
    color: #000;
    background: hsl(231, 74%, 85%);
  }
}
.button:not([disabled]).button__emphasized {
  background-color: #2640df;
  color: white;
  border: none;
}
@media (hover: hover) {
  .button:not([disabled]).button__emphasized:hover {
    background-color: #1b31b7;
  }
}
.button:not([disabled]).button__greyscale {
  color: #333;
  background: #e8e8e8;
}
@media (hover: hover) {
  .button:not([disabled]).button__greyscale:hover {
    color: #000;
    background: #d0d0d0;
  }
}
.button[disabled] {
  cursor: default;
  color: #999;
}
.button.button__small {
  line-height: 24px;
  height: 26px;
}
.button.button__mini {
  line-height: 20px;
  height: 22px;
}
.button.button__mini svg,
.button.button__mini img {
  width: 0.8em;
  height: 0.8em;
  vertical-align: middle;
}
.button.button__huge {
  font-size: 1.5rem;
  line-height: 2.5em;
  min-width: 200px;
}
.button svg,
.button img {
  width: 1.3em;
  height: 1.3em;
}
.button svg:not(:last-child),
.button img:not(:last-child),
.button i.fa:not(:last-child) {
  margin-right: 0.5em;
}
.radio-group input,
.checkbox-group input {
  display: none;
}
.radio-group label,
.checkbox-group label {
  display: inline-block;
}
.radio-group label:not(:last-child),
.checkbox-group label:not(:last-child) {
  margin-right: 14px;
}
.radio-group .button,
.checkbox-group .button {
  border-radius: 14px;
  padding: 0 8px;
  background-color: hsl(0, 0%, 93%);
}
@media (hover: hover) {
  .radio-group .button:not([disabled]):hover,
  .checkbox-group .button:not([disabled]):hover {
    background-color: hsl(0, 0%, 85%);
  }
}
.checkbox-group button svg {
  color: #444;
}
.radio-group button svg {
  color: #666;
}
.invitation-form {
  width: 380px;
  max-width: 95vw;
  background: white;
}
.invitation-form > p:first-child {
  font-weight: bold;
  margin-bottom: 1em;
}
.invitation-form form {
  margin-top: 1em;
}
.invitation-form form > p {
  margin-top: 0.5em;
  min-height: 3em;
  font-style: italic;
}
.invitation-form form > p svg {
  height: 1em;
}
.invitation-form .fields {
  display: table;
  white-space: nowrap;
}
.invitation-form .fields > * {
  display: table-row;
}
.invitation-form .fields > * > * {
  display: table-cell;
}
.invitation-form .fields .field > * {
  padding: 0.5em 1em 0.5em 0;
}
.invitation-form .fields input[type=email] {
  min-width: 200px;
  vertical-align: middle;
}
.invitation-form .fields .make-public {
  display: inline-block;
  -webkit-appearance: none;
  border: none;
  background: none;
  margin-left: 10px;
}
.invitation-form .fields .make-public img {
  width: 20px;
  height: 20px;
  filter: grayscale(1);
  vertical-align: middle;
  cursor: pointer;
}
.invitation-form .buttons {
  margin-top: 2em;
}
.invitation-form .buttons button:nth-child(2) {
  float: right;
}
.invitation-form .buttons button:nth-child(3) {
  float: right;
  margin-right: 10px;
}
.invitation-form .custom-permissions .custom-permissions-tables-list {
  margin-top: 1em;
}
.invitation-form .custom-permissions .custom-permissions-table {
  margin-bottom: 1em;
}
.invitation-form .custom-permissions .custom-permissions-column {
  display: inline-block;
}
.invitation-form .custom-permissions .custom-permissions-column-name {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 5px;
  background: #eee;
  padding: 0 3px;
  border-radius: 1px;
  cursor: pointer;
}
.invitation-form .custom-permissions .custom-permissions-column-name svg {
  height: 1em;
  margin-right: 4px;
  vertical-align: middle;
}
.invitation-form .custom-permissions .permission-line > *:first-child {
  float: right;
  display: inline-block;
  width: 50px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: none;
}
.invitation-form .custom-permissions .custom-permissions-table-name,
.invitation-form .custom-permissions .custom-permissions-table-permission {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.info-box {
  color: #31708f;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
  border-radius: 3px;
  padding: 5px 10px;
}
.info-box > svg {
  width: 16px;
  height: 16px;
  transform: translateY(2px);
}
.invitation-form2 {
  width: 600px;
  max-width: 100%;
  height: 500px;
  background: white;
  display: flex;
  flex-direction: column;
}
.invitation-form2 > p:first-child {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 20px;
}
.invitation-form2 .info-box {
  margin-bottom: 1em;
}
.invitation-form2 section {
  flex: auto;
  min-height: 0;
}
.invitation-form2 section > p:first-child {
  font-weight: 600;
  border-bottom: 1px solid #555;
  margin-bottom: 1em;
}
.invitation-form2 section > p:first-child .step {
  float: right;
}
.invitation-form2 section svg {
  height: 1em;
}
.invitation-form2 > .buttons {
  margin-top: 2em;
}
.invitation-form2 > .buttons button.next,
.invitation-form2 > .buttons button.submit {
  float: right;
}
.invitation-form2 .sql-permissions,
.invitation-form2 .choose-access {
  margin-bottom: 0.5em;
}
.invitation-form2 .sql-permissions input[type=email],
.invitation-form2 .choose-access input[type=email] {
  min-width: 200px;
  vertical-align: middle;
}
.invitation-form2 .sql-permissions .radio-group,
.invitation-form2 .choose-access .radio-group {
  display: inline-block;
  margin-left: 10px;
}
.invitation-form2 .row-chooser {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}
.invitation-form2 .row-chooser > * {
  display: table-row;
}
.invitation-form2 .row-chooser > * > * {
  display: table-cell;
}
.invitation-form2 .row-chooser > * {
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
.invitation-form2 .row-chooser > *.selected {
  background-color: #ddf;
}
.invitation-form2 .row-chooser > * > * {
  vertical-align: middle;
  padding: 10px 10px 10px 10px;
}
.invitation-form2 .row-chooser > * > *:nth-child(1) {
  width: 0;
  line-height: 0;
  white-space: nowrap;
}
.invitation-form2 .row-chooser > * > *:nth-child(2) {
  width: 0;
  white-space: nowrap;
  font-weight: bold;
}
.invitation-form2 .row-chooser > * > *:first-child {
  border-top-left-radius: 50px;
  border: 1px solid transparent;
  border-bottom-left-radius: 50px;
}
.invitation-form2 .row-chooser > * > *:last-child {
  border-top-right-radius: 50px;
  border: 1px solid transparent;
  border-bottom-right-radius: 50px;
}
@media (hover: hover) {
  .invitation-form2 .row-chooser > *:hover {
    background-color: #ddf;
  }
}
.invitation-form2 section.exceptions {
  display: flex;
  flex-direction: column;
}
.invitation-form2 section.exceptions .table-head {
  display: flex;
  flex-direction: row;
  flex: 0 1;
  font-weight: bold;
}
.invitation-form2 section.exceptions .table-head > *:last-child {
  flex: auto;
  text-align: right;
}
.invitation-form2 section.exceptions .table-head > *:last-child > * {
  text-align: initial;
}
.invitation-form2 section.exceptions .row {
  display: flex;
  flex-direction: row;
  height: 28px;
  line-height: 28px;
}
.invitation-form2 section.exceptions .row > *:last-child {
  flex: auto;
  text-align: right;
}
.invitation-form2 section.exceptions .row > *:last-child > * {
  text-align: initial;
}
@media (hover: hover) {
  .invitation-form2 section.exceptions .row:hover {
    background-color: #eee;
  }
}
.invitation-form2 section.exceptions .tables-permissions {
  flex: auto;
  overflow-y: auto;
}
.invitation-form2 section.exceptions .tables-permissions .collapse-toggle {
  width: 12px;
  height: 12px;
  padding: 2px;
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.1s ease-in-out;
  margin-left: 5px;
}
.invitation-form2 section.exceptions .tables-permissions .collapse-toggle.collapsed {
  transform: rotate(90deg);
}
.invitation-form2 section.exceptions .columns-permissions {
  padding-left: 30px;
  margin-bottom: 1em;
}
.invitation-form2 section.exceptions .row.table .row-expand {
  padding-right: 10px;
  cursor: pointer;
}
@media (hover: hover) {
  .invitation-form2 section.exceptions .row.table .row-expand:hover .collapse-toggle:not(.collapsed) {
    transform: scale(1.3);
  }
  .invitation-form2 section.exceptions .row.table .row-expand:hover .collapse-toggle.collapsed {
    transform: scale(1.3) rotate(90deg);
  }
}
.invitation-form2 section.exceptions .row.table select {
  min-width: 150px;
}
.invitation-form2 section.exceptions .row.column select {
  min-width: 130px;
}
.invitation-form2 section.exceptions .table-name,
.invitation-form2 section.exceptions .column-name {
  display: inline-block;
  position: relative;
  padding-left: 23px;
}
.invitation-form2 section.exceptions .table-name svg,
.invitation-form2 section.exceptions .column-name svg {
  position: absolute;
  left: 5px;
  top: 8px;
  color: #888;
}
.invitation-form2 section.sql-privilege .row-chooser {
  margin-bottom: 1em;
}
.invitation-form2 section.summary .entries p {
  padding: 0.5em 0;
  margin-left: 25px;
  list-style-type: disc;
  display: list-item;
}
.share-access-form {
  width: 600px;
  max-width: 100%;
  background: white;
  /*.react-select {
		.react-select__control {
			padding: 0;
			height: inherit;
			line-height: inherit;
			min-height: 0;
			cursor: pointer;
			background: none;
		}
		.react-select__control--is-focused {
			box-shadow: none !important;
		}
		.react-select__indicators {
			display: none;
		}
		.react-select__value-container {
			display: inline-block;
			line-height: inherit;
			height: inherit;
			white-space: nowrap;
			overflow: visible;
			padding: 0;
		}
		.react-select__value-container>* {
			color: inherit;
			// messes up initial placeholder positioning if we don't reset these:
			padding-top: 0;
			padding-bottom: 0;
			margin-top: 0;
			margin-bottom: 0;
			display: inline-block;
		}
		.react-select__single-value {
			top: initial;
			transform: none;
			position: initial;
			max-width: none;
			overflow: visible;
		}
		.react-select__placeholder {
			position: relative;
			top: initial;
			transform: none;
		}
		.react-select__indicator {
			padding-right: 0;
		}
		.react-select__single-value+div {
			margin: 0;
			padding: 0;
		}
		.react-select__menu {
			width: auto;
		}
		.react-select__option {
			padding: 0px 12px;
		}
	}*/
}
.share-access-form > p:first-child {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 20px;
}
.share-access-form .info-box {
  margin-bottom: 1em;
}
.share-access-form section {
  margin-bottom: 2em;
}
.share-access-form section > p:first-child {
  font-weight: 600;
  margin-bottom: 0.75em;
}
.share-access-form section svg {
  height: 1em;
}
.share-access-form > .buttons {
  margin-top: 2em;
}
.share-access-form > .buttons button.next,
.share-access-form > .buttons button.submit {
  float: right;
}
.share-access-form .sql-permissions,
.share-access-form .choose-access {
  margin-bottom: 0.5em;
}
.share-access-form .sql-permissions input[type=email],
.share-access-form .choose-access input[type=email] {
  min-width: 200px;
  vertical-align: middle;
}
.share-access-form .sql-permissions .radio-group,
.share-access-form .choose-access .radio-group {
  display: inline-block;
  margin-left: 10px;
}
.share-access-form .row-chooser {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
}
.share-access-form .row-chooser > * {
  display: table-row;
}
.share-access-form .row-chooser > * > * {
  display: table-cell;
}
.share-access-form .row-chooser > * {
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
.share-access-form .row-chooser > *.selected {
  background-color: #ddf;
}
.share-access-form .row-chooser > * > * {
  vertical-align: middle;
  padding: 10px 10px 10px 10px;
}
.share-access-form .row-chooser > * > *:nth-child(1) {
  width: 0;
  line-height: 0;
  white-space: nowrap;
}
.share-access-form .row-chooser > * > *:nth-child(2) {
  width: 0;
  white-space: nowrap;
  font-weight: bold;
}
.share-access-form .row-chooser > * > *:first-child {
  border-top-left-radius: 50px;
  border: 1px solid transparent;
  border-bottom-left-radius: 50px;
}
.share-access-form .row-chooser > * > *:last-child {
  border-top-right-radius: 50px;
  border: 1px solid transparent;
  border-bottom-right-radius: 50px;
}
@media (hover: hover) {
  .share-access-form .row-chooser > *:hover {
    background-color: #ddf;
  }
}
.share-access-form section.base-privilege .radio-group {
  margin-bottom: 1em;
}
.share-access-form section.exceptions .exceptions-list li {
  list-style-type: disc;
  margin: 0.5em 0 0.5em 20px;
}
.share-access-form section.exceptions .exceptions-list li .remove {
  margin-right: 3px;
  margin-bottom: -2px;
  cursor: pointer;
}
@media (hover: hover) {
  .share-access-form section.exceptions .exceptions-list li .remove:hover {
    animation: effect-wiggle 1.5s infinite;
  }
}
.share-access-form section.exceptions .new-exception {
  margin-top: 1em;
}
.share-access-form section.exceptions .new-exception select {
  max-width: 125px;
}
.share-access-form section.exceptions .new-exception button {
  margin-left: 10px;
}
.share-access-form section.exceptions {
  display: flex;
  flex-direction: column;
}
.share-access-form section.exceptions .table-head {
  display: flex;
  flex-direction: row;
  flex: 0 1;
  font-weight: bold;
}
.share-access-form section.exceptions .table-head > *:last-child {
  flex: auto;
  text-align: right;
}
.share-access-form section.exceptions .table-head > *:last-child > * {
  text-align: initial;
}
.share-access-form section.exceptions .row {
  display: flex;
  flex-direction: row;
  height: 28px;
  line-height: 28px;
}
.share-access-form section.exceptions .row > *:last-child {
  flex: auto;
  text-align: right;
}
.share-access-form section.exceptions .row > *:last-child > * {
  text-align: initial;
}
@media (hover: hover) {
  .share-access-form section.exceptions .row:hover {
    background-color: #eee;
  }
}
.share-access-form section.exceptions .tables-permissions {
  flex: auto;
  overflow-y: auto;
}
.share-access-form section.exceptions .tables-permissions .collapse-toggle {
  width: 12px;
  height: 12px;
  padding: 2px;
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.1s ease-in-out;
  margin-left: 5px;
}
.share-access-form section.exceptions .tables-permissions .collapse-toggle.collapsed {
  transform: rotate(90deg);
}
.share-access-form section.exceptions .columns-permissions {
  padding-left: 30px;
  margin-bottom: 1em;
}
.share-access-form section.exceptions .row.table .row-expand {
  padding-right: 10px;
  cursor: pointer;
}
@media (hover: hover) {
  .share-access-form section.exceptions .row.table .row-expand:hover .collapse-toggle:not(.collapsed) {
    transform: scale(1.3);
  }
  .share-access-form section.exceptions .row.table .row-expand:hover .collapse-toggle.collapsed {
    transform: scale(1.3) rotate(90deg);
  }
}
.share-access-form section.exceptions .row.table select {
  min-width: 150px;
}
.share-access-form section.exceptions .row.column select {
  min-width: 130px;
}
.share-access-form section.exceptions .table-name,
.share-access-form section.exceptions .column-name {
  display: inline-block;
  position: relative;
  padding-left: 23px;
}
.share-access-form section.exceptions .table-name svg,
.share-access-form section.exceptions .column-name svg {
  position: absolute;
  left: 5px;
  top: 8px;
  color: #888;
}
.share-access-form section.sql-privilege .row-chooser {
  margin-bottom: 1em;
}
.sharing-overview-dialog {
  width: 600px;
  max-width: 100%;
  min-height: 200px;
  background: white;
}
.sharing-overview-dialog button.share {
  margin: 1em 0;
}
.sharing-overview-dialog .sharing-entries > div > p {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.sharing-overview-dialog .sharing-entry {
  margin: 1em 0;
}
.sharing-overview-dialog .sharing-entry:not(:last-child) {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
}
.sharing-overview-dialog .sharing-entry .edit,
.sharing-overview-dialog .sharing-entry .delete {
  border-radius: 50%;
  float: right;
  width: 30px;
  height: 30px;
  padding: 7px;
  cursor: pointer;
  margin: -3px;
}
@media (hover: hover) {
  .sharing-overview-dialog .sharing-entry .edit:hover,
  .sharing-overview-dialog .sharing-entry .delete:hover {
    background: #e8e8e8;
  }
}
.sharing-overview-dialog .sharing-entry .edit:not(:last-child),
.sharing-overview-dialog .sharing-entry .delete:not(:last-child) {
  margin-right: 3px;
}
.tables-list-container {
  position: relative;
  padding-right: 20px;
}
.tables-list-container .tables-list {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.tables-list-container .tables-list > * {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  transition: border-bottom-color 0.1s ease-in-out, color 0.1s ease-in-out;
  font-weight: 500;
  background: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
@media only screen and (min-width: 500px) {
  .tables-list-container .tables-list > * {
    padding: 0 8px;
    line-height: 32px;
    height: 32px;
  }
}
@media only screen and (max-width: 499px) {
  .tables-list-container .tables-list > * {
    padding: 0 6px;
    line-height: 28px;
    height: 28px;
  }
}
.tables-list-container .tables-list > *:not(.disabled) {
  cursor: pointer;
}
@media (hover: hover) {
  .tables-list-container .tables-list > *:not(.disabled):not(.current):hover {
    background: #f8f8f8;
  }
}
.tables-list-container .tables-list > *.current {
  background: white;
}
.tables-list-container .tables-list .table-lock {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: #bbb;
  margin-left: 4px;
  flex-shrink: 0;
}
.tables-list-container .tables-list .table-options {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 50%;
  fill: #666;
  flex-shrink: 0;
  margin-left: 1px;
  margin-right: -5px;
  margin-top: -2px;
  margin-bottom: -2px;
}
@media (hover: hover) {
  .tables-list-container .tables-list .table-options:hover {
    background-color: #e8e8e8;
  }
}
.tables-list-container .tables-list .special {
  color: #182ba1;
}
.tables-list-container .tables-list .special.icon {
  display: inline-flex;
  align-items: center;
  width: 26px;
  -webkit-appearance: none;
  padding: 0;
}
.tables-list-container .tables-list .special.icon svg {
  width: 24px;
  height: 24px;
  padding: 2px;
  flex: none;
}
.tables-list-container .tables-list .special.text {
  padding: 0 5px;
}
.tables-list-container .tables-list .special + .first {
  margin-left: 5px;
}
.tables-list-container .tables-list-options {
  position: absolute;
  right: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  -webkit-appearance: none;
  z-index: 2;
  color: #787878;
  border: 0;
  outline: 0;
  background: none;
}
@media (hover: hover) {
  .tables-list-container .tables-list-options:hover {
    background: #e8e8e8;
  }
}
@media only screen and (min-width: 960px) {
  .tables-list-container .tables-list-options {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 959px) {
  .tables-list-container .tables-list-options {
    margin-top: 1px;
  }
}
.tables-list-container .tables-list-options svg {
  width: 24px;
  height: 24px;
  padding: 5px;
}
.tables-list-container .tables-list-dropdown.yardstick .table-name {
  overflow: initial;
}
.tables-list-container .tables-list-dropdown.single-row {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
}
.tables-list-container .tables-list-dropdown.multi-row {
  line-height: 0;
}
.tables-list-container .tables-list-dropdown.multi-row > * {
  vertical-align: middle;
}
.tables-list-container .tables-list-dropdown.sidebar .table-name {
  vertical-align: middle;
}
.tables-list-container .tables-list-dropdown.sidebar .table-options {
  width: 14px;
  height: 14px;
  fill: #eee;
  margin: 0 0 0 5px;
  padding: 0;
  vertical-align: middle;
}
.tables-list-container .tables-list-dropdown.sidebar a:first-child {
  margin-right: 24px;
}
.tables-list-container .tables-list-dropdown.sidebar .create-table {
  height: 29px !important;
  padding-top: 4px !important;
}
.tables-list-container .tables-list-dropdown a {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: auto;
  min-width: 0;
  flex-grow: 0;
}
.tables-list-container .tables-list-dropdown a .table-name {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.tables-list-container .tables-list-dropdown a .close {
  width: 22px;
  height: 22px;
  padding: 3px;
  margin-right: -5px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  fill: #666;
  flex-shrink: 0;
}
@media (hover: hover) {
  .tables-list-container .tables-list-dropdown a .close:hover {
    fill: #2640df;
  }
}
@media only screen and (max-width: 499px) {
  .tables-list-container .tables-list-dropdown a:not(.current) .close {
    display: none;
  }
}
.tables-list-container .tables-list-dropdown .create-table,
.tables-list-container .tables-list-dropdown .dropdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
  height: 28px;
  width: 28px;
  flex: none;
  padding: 0 !important;
  outline: 0;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  border-radius: 50%;
}
.tables-list-container .tables-list-dropdown .create-table svg,
.tables-list-container .tables-list-dropdown .dropdown svg {
  width: 15px;
  height: 15px;
}
@media (hover: hover) {
  .tables-list-container .tables-list-dropdown .create-table:hover,
  .tables-list-container .tables-list-dropdown .dropdown:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.tables-list-container .tables-list-dropdown .dropdown {
  color: #787878;
  z-index: 1;
  margin-left: 3px;
}
.table-select-popup {
  min-width: 300px;
}
.table-select-popup > p:first-child {
  font-weight: bold;
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.table-select-popup .filter {
  margin-bottom: 1em;
}
.table-select-popup .filter input {
  width: 100%;
}
.table-select-popup li {
  cursor: pointer;
  line-height: 1.8em;
  padding: 0 4px;
  /*.toggle-star {
			width: 13px;
			height: 13px;
			margin-right: 2px;
			transform: translateY(2px);

			@media @can-hover {
				&:hover {
					color: @color-brand-blue;
				}
			}
		}
		span {
			display: inline-block;  // otherwise line-height doesn't affect this
			padding: 0 4px;

		}*/
}
@media (hover: hover) {
  .table-select-popup li:hover {
    background: #eee;
  }
}
.tables-list-options-menu ul {
  margin: 0.5em 0;
}
.tables-list-options-menu ul li {
  line-height: 1.75em;
}
.tables-list-options-menu ul + div {
  margin-bottom: 1em;
}
.tables-list-options-menu ul + div input,
.tables-list-options-menu ul + div span {
  vertical-align: middle;
}
.tables-list-options-menu input[type=radio],
.tables-list-options-menu input[type=checkbox] {
  display: inline-block;
  margin-right: 5px;
}
.tables-list-options-menu .button__emphasized {
  float: right;
}
.table-row-count {
  display: inline-block;
  white-space: nowrap;
}
.table-row-count .loading {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.table-row-count > .number {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
  display: inline-block;
}
.table-row-count > .number .placeholder {
  display: none;
}
.table-row-count > .refresh,
.table-row-count > .loading {
  margin-left: 5px;
}
.table-row-count > .refresh {
  display: inline-block;
  width: 1em;
  vertical-align: middle;
  cursor: pointer;
}
@media (hover: hover) {
  .table-row-count > .refresh:hover {
    color: black;
    transform: rotate(20deg);
  }
}
.organization-invitations > * {
  margin: 20px auto 50px auto;
  max-width: 400px;
}
.organization-invitations > * p {
  margin-bottom: 0.5em;
  font-size: 15px;
  line-height: 1.5em;
}
.organization-invitations > * p:first-child {
  font-weight: bold;
}
.organization-invitations > * .buttons {
  margin-top: 2em;
}
.organization-invitations > * button:last-child {
  float: right;
}
.account-setup-form {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
  line-height: 1.5em;
}
.account-setup-form > p:first-child {
  text-align: center;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.5em;
  margin-bottom: 1em;
}
.account-setup-form .setup-initial > p:first-child {
  font-weight: 300;
  font-size: 1.3em;
}
.account-setup-form .final-info {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2em;
  line-height: 1.5em;
}
.account-setup-form .final-info p {
  margin-bottom: 0.5em;
}
.account-setup-form .setup-company {
  text-align: center;
}
.account-setup-form .setup-company > div > p {
  font-size: 1.2em;
  line-height: 3em;
  font-weight: bold;
}
.account-setup-form .setup-company .step-0 input {
  font-size: 1.4em;
  line-height: 2em;
  width: 350px;
  max-width: 100%;
}
.account-setup-form .setup-company .step-1 select {
  font-size: 1.2em;
  line-height: 1.5em;
  height: 2em;
  width: 350px;
  max-width: 100%;
}
.account-setup-form .setup-company .step-2 .people-list div {
  margin-bottom: 0.5em;
}
.account-setup-form .setup-company .step-2 .people-list div:last-of-type select {
  visibility: hidden;
}
.account-setup-form .setup-company .step-2 .people-list > p:last-child {
  width: 500px;
  max-width: 100%;
  margin: 2em auto 0 auto;
  text-align: left;
  font-style: italic;
}
.account-setup-form .setup-company .step-2 input {
  width: 260px;
  margin-right: 10px;
  line-height: 25px;
  height: 27px;
}
.account-setup-form .setup-company .step-2 select {
  line-height: 25px;
  height: 27px;
  font-size: inherit;
  width: 80px;
}
.account-setup-form .setup-solo {
  text-align: center;
}
.account-setup-form .setup-solo > div > p {
  font-size: 1.2em;
  line-height: 3em;
  font-weight: bold;
}
.account-setup-form .setup-solo .step-0 select {
  font-size: 1.2em;
  line-height: 1.5em;
  height: 2em;
  width: 350px;
  max-width: 100%;
}
.account-setup-form .setup-invitee p {
  margin-bottom: 0.5em;
}
.account-setup-form .next-prev {
  margin-top: 4em;
  text-align: center;
}
.account-setup-form .next-prev .button:not(:last-child) {
  margin-right: 40px;
}
.account-setup-form .row-chooser > * {
  display: flex;
  flex-direction: row;
  align-content: center;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
  padding-left: 20px;
  margin: 10px 0;
}
.account-setup-form .row-chooser > *.selected {
  background-color: #ddf;
}
.account-setup-form .row-chooser > * > * {
  display: inline-block;
}
.account-setup-form .row-chooser > * > *:nth-child(1) {
  padding-top: 20px;
}
.account-setup-form .row-chooser > * > *:nth-child(2) {
  padding: 10px 10px 10px 20px;
}
.account-setup-form .row-chooser > * > *:nth-child(2) p:nth-child(1) {
  font-weight: bold;
}
@media (hover: hover) {
  .account-setup-form .row-chooser > *:hover {
    background-color: #ddf;
  }
}
.organization-list {
  padding: 30px 20px 0 20px;
  position: relative;
}
.organization-list > li:not(:last-child) {
  margin-bottom: 70px;
}
.organization-list .organization-name {
  margin-bottom: 1em;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
}
.organization-list .connection-list > .loading {
  display: inline-block;
  margin-bottom: 1em;
}
.organization-list .connection-list > .empty {
  margin-bottom: 3em;
}
.organization-list .connection-list .connection {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 3em;
  background: white;
  padding: 9px 5px;
  border-radius: 5px;
  border: 1px solid #eee;
}
.organization-list .connection-list .connection > .loading {
  width: 16px;
  height: 16px;
}
@media (hover: hover) {
  .organization-list .connection-list .connection:hover {
    border-color: #ddd;
  }
}
@media only screen and (min-width: 500px) {
  .organization-list .connection-list .connection {
    width: 280px;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 499px) {
  .organization-list .connection-list .connection {
    width: 100%;
  }
}
.organization-list .connection-list .connection-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  padding: 0 5px;
}
.organization-list .connection-list .connection-header .connection-dbengine {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  opacity: 0.8;
  flex: none;
}
.organization-list .connection-list .connection-header .connection-label {
  display: inline-block;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.organization-list .connection-list .connection-header .collapse-toggle {
  width: 12px;
  height: 12px;
  padding: 2px;
  cursor: pointer;
  vertical-align: middle;
  transition: transform 0.1s ease-in-out;
  margin-left: 5px;
  margin-right: 2px;
  flex: none;
}
.organization-list .connection-list .connection-header .collapse-toggle.collapsed {
  transform: rotate(90deg);
}
.organization-list .connection-list .connection-header .connection-options {
  padding: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
  margin-left: auto;
  flex: none;
}
@media (hover: hover) {
  .organization-list .connection-list .connection-header .connection-options:hover {
    background: #e8e8e8;
  }
}
.organization-list .connection-list .connection-buttons button {
  height: 38px;
}
.organization-list .connection-list .connection-buttons button:not(:last-child) {
  margin-right: 20px;
}
.rent-database form > div {
  margin-bottom: 2em;
}
.rent-database form > div > span:first-child {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
}
.rent-database-2 {
  width: 380px;
  max-width: 100%;
}
.rent-database-2 form > div {
  margin-bottom: 1.5em;
}
.rent-database-2 form > div > p:first-child {
  display: block;
  margin-bottom: 7px;
  font-weight: bold;
}
.rent-database-2 .choose-dbengine > div {
  padding-top: 10px;
}
.rent-database-2 .choose-dbengine > div > div {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  background: hsl(231, 74%, 93%);
  padding: 13px 7px 7px 13px;
  border-radius: 3px;
}
.rent-database-2 .choose-dbengine > div > div:not(:hover):not(.active) {
  filter: grayscale(1);
}
.rent-database-2 .choose-dbengine > div > div:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  z-index: 0;
  transition: background-color 0.1s ease-in-out;
}
@media (hover: hover) {
  .rent-database-2 .choose-dbengine > div > div:not(.active):hover:after {
    background: #e8a6a6;
  }
}
.rent-database-2 .choose-dbengine > div > div.active:after {
  background: #d14d4d;
}
.rent-database-2 .choose-dbengine > div > div img {
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1;
}
.rent-database-2 .choose-dbengine > div > div p {
  font-size: 11px;
  white-space: nowrap;
}
.rent-database-2 .choose-location > div {
  position: relative;
}
.rent-database-2 .choose-location img.map {
  border-radius: 3px;
}
.rent-database-2 .choose-location img.map.disabled {
  filter: grayscale(1);
}
.rent-database-2 .choose-location .circle {
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: 20px;
}
.rent-database-2 .choose-location .circle:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  background-color: #01a4e9;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}
.rent-database-2 .choose-location .circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  cursor: pointer;
  transition: background 0.1s ease-in-out;
}
.rent-database-2 .choose-location .circle.active:after {
  background-color: #d14d4d;
}
@media (hover: hover) {
  .rent-database-2 .choose-location .circle:not(.active):hover:after {
    background: #e8a6a6;
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%,
  100% {
    opacity: 0;
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@media only screen and (min-width: 500px) {
  .rent-database-2 .choose-location img.map {
    width: 380px;
    height: 135px;
  }
  .rent-database-2 .choose-location .circle-California {
    left: 20%;
    top: 43%;
  }
  .rent-database-2 .choose-location .circle-Germany {
    left: 49%;
    top: 37%;
  }
}
@media only screen and (max-width: 499px) {
  .rent-database-2 .choose-location img.map {
    width: 100%;
    height: auto;
  }
  .rent-database-2 .choose-location .circle-California {
    left: 20%;
    top: 43%;
  }
  .rent-database-2 .choose-location .circle-Germany {
    left: 49%;
    top: 37%;
  }
}
.rent-database-2 .choose-template ul {
  white-space: nowrap;
  overflow-x: auto;
  padding-bottom: 20px;
}
.rent-database-2 .choose-template li {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 130px;
  vertical-align: top;
  margin-right: 15px;
  cursor: pointer;
}
.rent-database-2 .choose-template li:after {
  content: " ";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
  transition: background 0.1s ease-in-out;
}
.rent-database-2 .choose-template li.active:after {
  background: #d14d4d;
}
.rent-database-2 .choose-template li:not(.active):after {
  background: white;
}
@media (hover: hover) {
  .rent-database-2 .choose-template li:not(.active):hover:after {
    background: #e8a6a6;
  }
}
.rent-database-2 .choose-template li .texts {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  white-space: break-spaces;
}
.rent-database-2 .choose-template li .texts .template-name {
  font-weight: 600;
}
.rent-database-2 .choose-template li .texts .template-overview {
  font-size: 10px;
  margin-bottom: 4px;
}
.rent-database-2 .choose-template li .template-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50%;
  opacity: 0.3;
  border-radius: 3px;
  transition: opacity 0.1s ease-in-out;
}
.rent-database-2 .choose-template li.active .template-image,
.rent-database-2 .choose-template li:hover .template-image {
  opacity: 0.5;
}
.rent-database-2 .too-many {
  font-weight: bold;
}
.connection-info-popup,
.database-info-popup,
.table-info-popup {
  display: flex;
  flex-direction: column;
}
.connection-info-popup > div:last-child,
.database-info-popup > div:last-child,
.table-info-popup > div:last-child {
  min-height: 0;
  overflow: auto;
  flex: auto;
}
.connection-info-popup > .loading,
.database-info-popup > .loading,
.table-info-popup > .loading {
  width: 20px;
  height: 20px;
}
.connection-info-popup > .tabs,
.database-info-popup > .tabs,
.table-info-popup > .tabs {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1em;
}
.connection-info-popup > .tabs span,
.database-info-popup > .tabs span,
.table-info-popup > .tabs span {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  transition: border-bottom-color 0.1s ease-in-out, color 0.1s ease-in-out;
  border-bottom: 2px solid transparent;
  font-weight: 500;
  background-color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 500px) {
  .connection-info-popup > .tabs span,
  .database-info-popup > .tabs span,
  .table-info-popup > .tabs span {
    padding: 0 15px;
    line-height: 30px;
    height: 32px;
  }
}
@media only screen and (max-width: 499px) {
  .connection-info-popup > .tabs span,
  .database-info-popup > .tabs span,
  .table-info-popup > .tabs span {
    padding: 3px 8px;
    line-height: 26px;
    height: 28px;
  }
}
@media (hover: hover) {
  .connection-info-popup > .tabs span:not(.disabled):hover,
  .database-info-popup > .tabs span:not(.disabled):hover,
  .table-info-popup > .tabs span:not(.disabled):hover {
    cursor: pointer;
  }
  .connection-info-popup > .tabs span:not(.disabled):not(.current):hover,
  .database-info-popup > .tabs span:not(.disabled):not(.current):hover,
  .table-info-popup > .tabs span:not(.disabled):not(.current):hover {
    color: #2640df !important;
  }
}
.connection-info-popup > .tabs span.current,
.database-info-popup > .tabs span.current,
.table-info-popup > .tabs span.current {
  border-bottom-color: #2640df;
  color: #2640df;
}
.connection-info-popup {
  width: 450px;
  max-width: 100%;
  height: 300px;
}
.connection-info-popup ul {
  display: table;
}
.connection-info-popup ul > * {
  display: table-row;
}
.connection-info-popup ul > * > * {
  display: table-cell;
}
.connection-info-popup ul > *.captions {
  font-weight: bold;
}
.connection-info-popup ul > *.captions span {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
}
@media (hover: hover) {
  .connection-info-popup ul > *:not(.captions):hover {
    background: #eee;
  }
}
.connection-info-popup ul > * > * {
  padding: 1px 5px;
  white-space: nowrap;
}
.database-info-popup {
  width: 600px;
  max-width: 100%;
  height: 400px;
}
.database-info-popup ul {
  display: table;
}
.database-info-popup ul > * {
  display: table-row;
}
.database-info-popup ul > * > * {
  display: table-cell;
}
.database-info-popup ul > *.captions {
  font-weight: bold;
}
.database-info-popup ul > *.captions span {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
}
@media (hover: hover) {
  .database-info-popup ul > *:not(.captions):hover {
    background: #eee;
  }
}
.database-info-popup ul > * > * {
  padding: 1px 5px;
  white-space: nowrap;
}
.database-info-popup .functions > ul .prop-code {
  white-space: pre;
}
.table-info-popup {
  width: 600px;
  max-width: 100%;
  height: 400px;
}
.table-info-popup ul {
  display: table;
}
.table-info-popup ul > * {
  display: table-row;
}
.table-info-popup ul > * > * {
  display: table-cell;
}
.table-info-popup ul > *.captions {
  font-weight: bold;
}
.table-info-popup ul > *.captions span {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: white;
}
@media (hover: hover) {
  .table-info-popup ul > *:not(.captions):hover {
    background: #eee;
  }
}
.table-info-popup ul > * > * {
  padding: 1px 5px;
  white-space: nowrap;
}
.table-info-popup .prop-comment {
  white-space: pre;
}
.table-info-popup > .keys > div {
  margin-bottom: 1em;
}
.table-info-popup > .keys > div > p:first-child {
  font-weight: bold;
}
.table-info-popup > .sql {
  white-space: pre-wrap;
}
.table-info-popup > .sql button.copy {
  float: right;
}
.connection-visible-databases .radio-group {
  margin: 1em 0;
  max-height: 50vh;
  overflow: auto;
}
.connection-visible-databases .radio-group label {
  margin-top: 2px;
  margin-bottom: 2px;
}
@media (hover: hover) {
  .connection .database.selected,
  .connection .database:hover,
  .connection .create-database:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.connection .databases-error {
  padding: 0 5px;
}
.connection .database-list {
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.connection .database-list > .loading {
  display: block;
  width: 16px;
  height: 16px;
  margin-left: 9px;
  margin-top: 14px / 2;
  margin-bottom: 14px / 2;
}
.connection .database-list > .no-databases-info {
  font-style: italic;
}
.connection .database-list .database {
  position: relative;
  text-decoration: none;
  cursor: pointer;
  line-height: 30px;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 20px;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  outline: none;
}
.connection .database-list .database .database-name {
  margin-right: auto;
}
.connection .database-list .database-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 5px;
  color: #666;
}
.connection .database-list .collaborators,
.connection .database-list .database-options {
  margin-left: 5px;
}
.connection .database-list .collaborators {
  display: inline-block;
  line-height: 0;
  cursor: default;
}
.connection .database-list .collaborators * {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 3px;
  border-radius: 50%;
  vertical-align: middle;
}
.connection .database-list .collaborators span {
  line-height: 18px;
  font-size: 10px;
  background: #ddd;
  text-align: center;
}
.connection .database-list .database-options {
  padding: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
}
@media (hover: hover) {
  .connection .database-list .database-options:hover {
    background: #e8e8e8;
  }
}
@media (hover: hover) {
  .connection .database-list .database-options:hover {
    background: #ccc;
  }
}
.connection button.create-database {
  font: inherit;
  color: inherit;
  cursor: pointer;
  height: 30px;
  width: 30px;
  padding: 0;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  border-radius: 50%;
  padding-top: 4px;
  margin-top: 5px;
}
.connection button.create-database svg {
  width: 15px;
  height: 15px;
}
.create-database-popup,
.create-table-popup,
.create-column-popup {
  width: 420px;
  max-width: 90vw;
}
.create-database-popup .fields,
.create-table-popup .fields,
.create-column-popup .fields {
  display: table;
}
.create-database-popup .fields > *,
.create-table-popup .fields > *,
.create-column-popup .fields > * {
  display: table-row;
}
.create-database-popup .fields > * > *,
.create-table-popup .fields > * > *,
.create-column-popup .fields > * > * {
  display: table-cell;
}
.create-database-popup .fields > * > *:not(:last-child),
.create-table-popup .fields > * > *:not(:last-child),
.create-column-popup .fields > * > *:not(:last-child) {
  padding-right: 10px;
}
.create-database-popup .fields > * > *,
.create-table-popup .fields > * > *,
.create-column-popup .fields > * > * {
  height: 30px;
  vertical-align: middle;
}
.create-database-popup .fields > * > *:first-child,
.create-table-popup .fields > * > *:first-child,
.create-column-popup .fields > * > *:first-child {
  white-space: nowrap;
  min-width: 100px;
}
.create-database-popup .fields input[type=text],
.create-table-popup .fields input[type=text],
.create-column-popup .fields input[type=text],
.create-database-popup .fields select,
.create-table-popup .fields select,
.create-column-popup .fields select {
  min-width: 170px;
}
.create-database-popup .fields select,
.create-table-popup .fields select,
.create-column-popup .fields select {
  max-width: 260px;
}
.create-database-popup .expert-toggle,
.create-table-popup .expert-toggle,
.create-column-popup .expert-toggle {
  margin: 1em 0;
}
.create-database-popup .fields > * > * {
  padding: 5px 0;
}
.create-database-popup .fields > * > *:last-child > div:not(:last-child) {
  margin-bottom: 5px;
}
.create-table-popup .fields {
  margin-bottom: 1em;
}
.create-table-popup .columns > p {
  font-weight: bold;
}
.create-table-popup .columns > div {
  display: table;
}
.create-table-popup .columns > div > * {
  display: table-row;
}
.create-table-popup .columns > div > * > * {
  display: table-cell;
}
.create-table-popup .columns > div > * > *:not(:last-child) {
  padding-right: 10px;
}
.binary-display {
  display: inline-flex !important;
  align-items: center;
}
.binary-display .binary-type {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  cursor: pointer;
  margin-left: 5px;
}
@media (hover: hover) {
  .binary-display .binary-type:not(:active):hover {
    color: #2640df;
  }
}
.binary-display .binary-preview {
  font-family: monospace;
  flex: 1 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.binary-display .binary-size {
  margin-left: 5px;
  flex: 0 0 auto;
}
.create-column-popup {
  width: 600px;
  min-height: 320px;
}
.create-column-popup table tr td {
  vertical-align: top;
  padding-bottom: 20px;
}
.create-column-popup table tr td:first-child {
  padding: 2px 15px 0 0;
  white-space: nowrap;
}
.create-column-popup .fields {
  margin-bottom: 1em;
}
.create-column-popup .type > p:first-child {
  font-weight: bold;
}
.create-column-popup .options > p:first-child {
  font-weight: bold;
}
.create-column-popup .radio-group {
  display: inline-block;
}
.create-column-popup .radio-group:not(:last-child) {
  margin-right: 10px;
}
.create-column-popup input[type=text],
.create-column-popup select,
.create-column-popup .raw-type-select {
  display: inline-block;
  width: 200px;
}
.create-column-popup select {
  background: white !important;
  color: #333;
}
.create-column-popup input[type=text],
.create-column-popup select {
  height: 1.5em;
  line-height: 1.5em;
  padding: 1px 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  border-bottom: 1px dashed #aaa;
}
.create-column-popup input[type=text][disabled],
.create-column-popup select[disabled] {
  border-bottom-color: #ccc;
}
@media (hover: hover) {
  .create-column-popup input[type=text]:not([disabled]):hover,
  .create-column-popup select:not([disabled]):hover {
    border: none;
    border-bottom: 1px dashed #aaa;
    background: rgba(38, 64, 223, 0.08);
  }
}
.create-column-popup .react-select .react-select__control {
  flex-wrap: nowrap;
  height: 1.5em;
  line-height: 1.5em;
  padding: 1px 3px;
  min-height: 0;
  border: 0;
  border-bottom: 1px dashed #aaa;
  cursor: pointer;
}
@media (hover: hover) {
  .create-column-popup .react-select .react-select__control:hover {
    border: none;
    border-bottom: 1px dashed #aaa;
    background: rgba(38, 64, 223, 0.08);
  }
}
.create-column-popup .react-select .react-select__value-container {
  padding-top: 0;
  padding-bottom: 0;
}
.create-column-popup .react-select .react-select__placeholder {
  position: relative;
  top: initial;
  transform: none;
}
.create-column-popup .react-select .react-select__indicator {
  padding-right: 0;
}
.create-column-popup .react-select .react-select__option {
  padding: 1px 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.create-column-popup .react-select .react-select__option:hover,
.create-column-popup .react-select .react-select__option.react-select__option--is-focused {
  background-color: #DEEBFF;
}
.create-column-popup .react-select .react-select__option.react-select__option--is-selected {
  background-color: #2684FF;
  color: white;
}
.create-column-popup .react-select .react-select__single-value {
  position: relative;
  transform: none;
  top: initial;
}
.create-column-popup .react-select .react-select__option svg,
.create-column-popup .react-select .react-select__single-value svg {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.create-column-popup .react-select .react-select__value-container > * {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.create-column-popup .choices-toggle,
.create-column-popup .boolean-toggle {
  display: inline-block;
}
.create-column-popup .choices-toggle:not(:last-child),
.create-column-popup .boolean-toggle:not(:last-child) {
  margin-right: 5px;
}
.create-column-popup .type-icon {
  display: inline-block;
  height: 26px;
  width: 26px;
  padding: 4px;
  margin-right: 2px;
  text-align: center;
  border-radius: 50%;
  margin-top: 3px;
  margin-bottom: -3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}
.create-column-popup .type-icon.unsupported {
  cursor: default;
  outline: 0;
}
.create-column-popup .type-icon.selected {
  background: rgba(38, 64, 223, 0.12);
}
@media (hover: hover) {
  .create-column-popup .type-icon:not(.unsupported):hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.create-column-popup .datatype-sql {
  margin-bottom: 4px;
}
.create-column-popup .datatype-icons {
  margin-bottom: 2px;
}
.create-column-popup .datatype-options {
  min-height: 25px;
  line-height: 23px;
}
.create-column-popup .datatype-options > label {
  margin-left: 10px;
  white-space: nowrap;
}
.create-column-popup .datatype-options input[type=text],
.create-column-popup .datatype-options input[type=number] {
  line-height: 22px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font: inherit;
  padding: 1px 3px;
}
@media (hover: hover) {
  .create-column-popup .datatype-options input[type=text]:hover,
  .create-column-popup .datatype-options input[type=number]:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.create-column-popup .datatype-options input[type=text],
.create-column-popup .datatype-options input[type=number],
.create-column-popup .datatype-options .choices-toggle,
.create-column-popup .datatype-options .boolean-toggle {
  margin-left: 4px;
  border-bottom: 1px dashed #aaa;
}
.create-column-popup .datatype-options.short-float input[type=number] {
  width: 50px;
}
.create-column-popup .short-text-length .choices-toggle {
  margin-left: 2px;
  margin-right: 0;
}
.create-column-popup .short-text-length input {
  width: 80px;
  margin-right: 5px;
}
.create-column-popup .charset,
.create-column-popup .collation {
  white-space: nowrap;
}
.create-column-popup .charset select,
.create-column-popup .collation select {
  width: 140px;
  margin-right: 10px;
}
.create-column-popup .binary-options input {
  width: 80px;
}
.create-column-popup .auto-size-select {
  position: relative;
  display: inline-block;
}
.create-column-popup .auto-size-select span {
  visibility: hidden;
}
.create-column-popup .auto-size-select select {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.create-column-popup .reference .auto-size-select {
  margin-left: 5px;
  vertical-align: middle;
}
.create-column-popup .reference .auto-size-select > * {
  height: 1.5em;
  line-height: 1.5em;
  border-bottom: 1px dashed #aaa;
  padding: 1px 0;
}
.create-column-popup .reference .auto-size-select > span {
  padding-left: 3px;
  padding-right: 3px;
}
.create-column-popup .reference select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font: inherit;
}
@media (hover: hover) {
  .create-column-popup .reference select:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.create-column-popup .reference .delete-reference {
  width: 16px;
  height: 16px;
  cursor: pointer;
  vertical-align: middle;
}
.create-column-popup .default-value {
  white-space: nowrap;
}
.create-column-popup .default-value > * {
  vertical-align: middle;
}
.create-column-popup .default-value .binary-display {
  width: 180px;
  border-bottom: 1px dashed #aaa;
}
.create-column-popup .column-options .checkbox-group label {
  margin-bottom: 5px;
}
.create-column-popup .sql-preview div {
  white-space: pre-wrap;
  background: #eee;
  font-size: 0.9em;
  line-height: 1.5em;
  padding: 2px 5px;
  border-radius: 3px;
  letter-spacing: -0.2px;
}
.choices-toggle,
.boolean-toggle {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 1px 3px;
  border-radius: 2px;
}
@media (hover: hover) {
  .choices-toggle:hover,
  .boolean-toggle:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
.boolean-toggle.toggle-off:before {
  content: "\2610";
}
.boolean-toggle.toggle-on:before {
  content: "\2611";
}
.boolean-toggle.disabled {
  cursor: default;
  color: #aaa;
  background: none;
}
@media only screen and (min-width: 960px) {
  .popup-overlay > .database-history-view {
    width: 80vw;
    height: 80vh;
  }
}
@media only screen and (max-width: 959px) {
  .popup-overlay > .database-history-view {
    width: 95vw;
    height: 90vh;
  }
}
.database-history-view {
  background: white;
  display: flex;
  flex-direction: column;
}
.database-history-view > .filter {
  flex: none;
  margin: 0.5em 0;
}
@media only screen and (max-width: 499px) {
  .database-history-view > .filter {
    margin-bottom: 20px;
  }
}
.database-history-view > .filter > span:nth-child(1) {
  font-weight: bold;
}
.database-history-view > .filter select {
  margin-left: 10px;
}
.database-history-view > .filter > .loading {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  vertical-align: middle;
}
.database-history-view > .content {
  flex: auto;
  overflow: auto;
}
@media only screen and (min-width: 960px) {
  .database-history-view > .content > .list {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .database-history-view > .content > .list > div {
    display: table-row;
  }
  .database-history-view > .content > .list > div > div {
    display: table-cell;
    vertical-align: top;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  .database-history-view > .content > .list > div > div:nth-child(1) {
    padding-right: 5px;
    width: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .database-history-view > .content > .list > div > div:nth-child(1) div {
    margin-left: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (max-width: 959px) {
  .database-history-view > .content > .list > div > div:first-child {
    font-style: italic;
  }
  .database-history-view > .content > .list > div:first-child {
    display: none;
  }
  .database-history-view > .content > .list > div:nth-child(n+3) > div:nth-child(1) {
    margin-top: 8px;
    border-top: 1px dotted #ccc;
    padding-top: 8px;
  }
  .database-history-view > .content > .list > div > div:nth-child(1) div {
    float: right;
  }
}
.database-history-view > .content > .list > div:first-child {
  font-weight: bold;
}
.database-history-view > .content > .list > div > div {
  overflow: hidden;
}
.database-history-view > .content > .list > div > div:nth-child(1) img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 4px;
}
.database-history-view > .content > .list > div > div:nth-child(2) {
  width: 100%;
  padding-right: 5px;
}
.database-history-view > .content > .more {
  padding: 3px;
}
.database-history-view .row-preview {
  margin-top: 2px;
  overflow: auto;
}
.database-history-view .row-preview > div {
  display: table;
  font-size: 0.9em;
  border: 1px solid #ccc;
}
.database-history-view .row-preview > div > div:nth-child(1) {
  background: #f8f9fa;
}
.database-history-view .row-preview > div > div:nth-child(1) span {
  border-bottom: 1px solid #ccc;
}
.database-history-view .row-preview > div div {
  display: table-row;
}
.database-history-view .row-preview > div span {
  display: table-cell;
  padding: 0 2px;
  white-space: nowrap;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.database-history-view .row-preview > div span:not(:last-child) {
  border-right: 1px solid #ccc;
}
.database-history-view .row-preview > div span.highlighted {
  max-width: 500px;
  font-weight: bold;
}
.database-history-view .row-preview > div span svg {
  width: 16px;
  height: 16px;
  margin-right: 2px;
  cursor: pointer;
  vertical-align: middle;
}
.database-history-view .row-preview.row-create > div > div:nth-child(2) {
  background: rgba(0, 255, 0, 0.1);
}
.database-history-view .row-preview.row-update > div > div:nth-child(2) .highlighted {
  background: rgba(0, 0, 255, 0.1);
}
.database-history-view .row-preview.row-delete > div > div:not(:first-child) {
  background: rgba(255, 0, 0, 0.1);
}
.database-history-view .history-sql-query {
  font-family: monospace;
  background: #f2f2f2;
  padding: 1px 4px;
}
.database-history-view .action-expandable .more-less-toggle {
  margin-left: 10px;
  border-bottom: 1px dashed #555;
  cursor: pointer;
}
@media (hover: hover) {
  .database-history-view .action-expandable .more-less-toggle:not(:active):hover {
    background-color: #d4d9f9;
  }
}
.database-history-view .action-expandable code {
  display: block;
  white-space: pre;
  font-family: monospace;
  font-size: 0.9em;
  line-height: 1.4em;
}
.table-search {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 499px) {
  .table-search {
    display: flex;
    flex-direction: row;
    margin-left: 0;
    align-items: center;
  }
}
.table-search label {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 499px) {
  .table-search label {
    flex-grow: 1;
  }
}
.table-search label input {
  padding: 0 40px 0 8px;
  border: 1px solid #bbb1cb;
  font-size: inherit;
}
@media only screen and (min-width: 500px) {
  .table-search label input {
    width: 320px;
    max-width: 100%;
    line-height: 25px;
  }
}
@media only screen and (max-width: 499px) {
  .table-search label input {
    width: 100%;
    line-height: 21px;
  }
}
.table-search label input.filled {
  box-shadow: 0px 0px 1px #2640df;
}
.table-search label input[disabled] {
  border-color: #e8e5e3;
  color: #999;
}
@media (hover: hover) {
  .table-search label input:not(:focus):hover + .search-exec {
    animation: effect-wiggle 1.5s infinite;
    color: #444;
  }
}
.table-search label input:focus + .icon,
.table-search label input:focus + .icon + .icon {
  color: black;
}
.table-search label .icon {
  position: absolute;
  top: 1px;
  bottom: 1px;
  color: #aaa;
  width: 20px;
  text-align: center;
}
@media only screen and (min-width: 500px) {
  .table-search label .icon {
    line-height: 25px;
  }
}
@media only screen and (max-width: 499px) {
  .table-search label .icon {
    line-height: 21px;
  }
}
@media (hover: hover) {
  .table-search label .icon:not(.disabled):hover {
    color: black;
    cursor: pointer;
  }
}
.table-search label .icon.search-exec {
  right: 2px;
}
.table-search label .icon.search-close {
  right: 22px;
}
.table-search .search-help-button {
  width: 18px;
  height: 18px;
  padding: 0;
  font-size: 0.9em;
  line-height: 18px;
  position: absolute;
  right: -8px;
  top: -7px;
}
.table-search .search-error {
  position: absolute;
  left: 0;
  top: 25px;
  width: 500px;
  font-style: italic;
  color: red;
}
.table-search .loading {
  width: 18px;
  height: 18px;
  vertical-align: text-bottom;
}
.sql-editor {
  position: relative;
}
.sql-editor .sql-editor__close {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 28px;
  height: 28px;
  z-index: 1;
  cursor: pointer;
  padding: 5px;
  color: #555;
  border-radius: 50%;
}
@media (hover: hover) {
  .sql-editor .sql-editor__close:hover {
    color: #333;
    background: #e8e8e8;
  }
}
.sql-editor .sql-editor__ai-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 5px;
  margin-bottom: 5px;
}
.sql-editor .sql-editor__ai-bar input {
  flex-grow: 1;
}
.sql-editor .sql-editor__code {
  position: relative;
  margin-bottom: 5px;
  line-height: 1.3em;
}
@media only screen and (min-width: 500px) {
  .sql-editor .sql-editor__code {
    font-size: 12px;
  }
}
@media only screen and (max-width: 499px) {
  .sql-editor .sql-editor__code {
    font-size: 11px;
  }
}
.sql-editor .sql-editor__code .sql-editor__code2 {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  background: white;
  width: 100%;
  overflow: hidden;
  letter-spacing: initial;
}
.sql-editor .sql-editor__code .sql-editor__code2 textarea {
  min-height: 80px;
}
.sql-editor .sql-editor__code .w-tc-editor {
  min-height: 100%;
}
.sql-editor .sql-editor__bottom-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: space-between;
}
.sql-editor .sql-editor__bottom-bar .sql-editor__error {
  flex: 0 1 100%;
  color: #600;
  margin-right: 10px;
}
.sql-editor .sql-editor__bottom-bar button:not(:last-child) {
  margin-right: 15px;
}
.sql-editor .sql-editor__bottom-bar button:first-of-type {
  margin-left: auto;
}
.organization-settings {
  background: white;
}
.auth-form {
  background: white;
  max-width: 380px;
}
.auth-form .branding {
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}
.auth-form .branding img {
  width: 34px;
  height: 34px;
  margin-right: 8px;
  vertical-align: middle;
}
.auth-form .branding span {
  font-size: 19px;
  font-weight: 700;
  vertical-align: middle;
}
.auth-form .fields {
  margin-bottom: 20px;
  padding: 20px;
  background: #eee;
}
.auth-form .fields .title {
  margin-bottom: 0.5em;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}
.auth-form .fields form > div,
.auth-form .fields form > label {
  display: block;
  margin-bottom: 1em;
}
.auth-form .fields form > div.half,
.auth-form .fields form > label.half {
  display: inline-block;
  width: 47.5%;
}
.auth-form .fields form > div.half.half-right,
.auth-form .fields form > label.half.half-right {
  margin-left: 4.9%;
}
.auth-form .fields form input,
.auth-form .fields form button {
  width: 100%;
  height: 36px;
  font-size: 16px;
  font-weight: 400;
}
.auth-form .fields form input {
  padding: 0 10px;
  border: 0 !important;
  border-radius: 2px;
}
.auth-form .fields form button {
  border: 0 !important;
}
.auth-form .error {
  padding: 0 20px;
  font-weight: 500;
  color: #f44;
}
.auth-form .google-button {
  padding: 20px;
}
.auth-form .google-button button {
  width: 100%;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
  border-width: 2px;
}
.auth-login-form .fields .forgot-password {
  margin-top: 5px;
  float: right;
  border: 0;
  border-bottom: 1px dashed #888;
  background: none;
  font: inherit;
  font-weight: 300;
  color: #555;
  cursor: pointer;
  text-decoration: none;
}
.auth-login-form .register a {
  margin-left: 4px;
}
.auth-register-form .fields .password-hint {
  float: right;
  font-style: italic;
}
.auth-register-form .legal {
  margin: 1em 0;
}
.auth-register-form .login a {
  margin-left: 4px;
}
.auth-confirm-email-form .done p {
  margin-bottom: 1em;
}
.auth-forgot-form .fields form > p {
  margin-bottom: 1em;
}
.auth-forgot-form .back {
  margin-top: 2em;
}
.auth-reset-form .done p {
  margin-bottom: 1em;
}
.auth-reset-form .fields form > p {
  margin-bottom: 1em;
}
.auth-reset-form .hint {
  font-style: italic;
}
.auth-reset-form .back {
  margin-top: 2em;
}
.react-calendar {
  width: 270px !important;
  border: 0 !important;
}
.react-calendar button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}
@media (hover: hover) {
  .react-calendar button:not([disabled]):hover {
    background-color: #e6e6e6;
  }
}
.react-calendar .react-calendar__navigation {
  display: flex;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.react-calendar .react-calendar__navigation button {
  padding: 2px 4px;
  min-width: 44px;
}
.react-calendar .react-calendar__month-view__weekdays__weekday abbr {
  text-decoration: none;
}
.react-calendar .react-calendar__month-view__days__day--neighboringMonth {
  color: #b3b3b3;
}
.react-calendar .react-calendar__tile--now {
  font-weight: bold;
  background: #ffe500;
}
.react-calendar .react-calendar__month-view__weekdays__weekday {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75em;
}
.react-calendar button.react-calendar__tile {
  padding: 4px;
}
.react-calendar button.react-calendar__tile.react-calendar__tile--active {
  background: #006edc;
  color: white;
}
.react-calendar .react-calendar__navigation {
  height: auto;
  margin-bottom: 0.5em;
}
.time-picker {
  display: inline-block;
}
.time-picker select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  min-width: 15px;
}
@media (hover: hover) {
  .time-picker select:hover {
    background-color: #e6e6e6;
  }
}
.time-picker span {
  display: inline-block;
  margin: 0 4px;
  font-weight: bold;
}
.date-picker-popup.cell-editor .short-text-editor input,
.datetime-picker-popup.cell-editor .short-text-editor input {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}
.date-picker-popup .short-text-editor input,
.datetime-picker-popup .short-text-editor input {
  width: 100%;
  height: 100%;
  text-align: right;
  text-indent: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
}
.date-picker-popup .short-text-editor input.error,
.datetime-picker-popup .short-text-editor input.error {
  background: #fee;
}
.date-picker-popup .date-editor,
.datetime-picker-popup .date-editor,
.date-picker-popup .datetime-editor,
.datetime-picker-popup .datetime-editor {
  background: white;
  padding: 15px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
  width: 320px;
  padding: 15px 20px;
}
.date-picker-popup .react-calendar,
.datetime-picker-popup .react-calendar {
  margin-bottom: 1.5em;
}
.date-picker-popup .time-picker,
.datetime-picker-popup .time-picker {
  font-size: 1.1em;
}
.date-picker-popup .react-calendar__navigation__label,
.datetime-picker-popup .react-calendar__navigation__label {
  white-space: nowrap;
}
.date-picker-popup .date_editor__buttons,
.datetime-picker-popup .date_editor__buttons,
.date-picker-popup .datetime_editor__buttons,
.datetime-picker-popup .datetime_editor__buttons {
  margin-top: 1.5em;
}
.date-picker-popup .date_editor__buttons button.clear,
.datetime-picker-popup .date_editor__buttons button.clear,
.date-picker-popup .datetime_editor__buttons button.clear,
.datetime-picker-popup .datetime_editor__buttons button.clear {
  float: right;
  margin-right: 30px;
}
.date-picker-popup .date_editor__buttons button.save,
.datetime-picker-popup .date_editor__buttons button.save,
.date-picker-popup .datetime_editor__buttons button.save,
.datetime-picker-popup .datetime_editor__buttons button.save {
  float: right;
}
.date-picker-popup .button.clear,
.datetime-picker-popup .button.clear {
  float: right;
}
#sql-log {
  height: 7.5em;
  overflow: auto;
  padding: 0 3px;
}
#sql-log:not(.auto-scrolling) {
  background: #f8f8f8;
}
#sql-log div {
  margin-bottom: 0.5em;
}
#sql-log p.sql {
  font-family: Monospace;
  font-size: 11px;
  line-height: 1.5em;
  margin-left: 7px;
}
#feedback-popup {
  width: 300px;
}
#feedback-popup > p {
  margin-bottom: 0.5em;
}
#feedback-popup > textarea {
  display: block;
  width: 100%;
  height: 7.5em;
  padding: 2px 5px;
  resize: none;
  margin-bottom: 1em;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
#feedback-popup > .buttons {
  display: flex;
}
#feedback-popup > .buttons > *:last-child {
  margin-left: auto;
}
.admin-mode-toggle {
  display: inline-block;
  line-height: 0;
  border: 1px solid #aaa;
  border-radius: 13px;
  background: white;
}
.admin-mode-toggle button {
  -webkit-appearance: none;
  line-height: 0;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background: none;
  outline: 0;
  width: 26px;
  height: 26px;
}
@media (hover: hover) {
  .admin-mode-toggle button:hover {
    background: #e8e8e8;
  }
}
.admin-mode-toggle button:not(.active) {
  color: #aaa;
}
.admin-mode-toggle button svg {
  width: 26px;
  height: 26px;
  padding: 3px;
  border-radius: 50%;
}
.global-alerts-list {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  pointer-events: none;
}
.global-alerts-list .global-alert {
  margin: 5px auto;
  width: 600px;
  max-width: 98%;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.global-alerts-list .global-alert.type-info {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.global-alerts-list .global-alert.type-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.global-alerts-list .global-alert.type-failure {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.global-alerts-list .global-alert.type-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.rental-database-access-info-popup {
  min-width: 300px;
}
.rental-database-access-info-popup > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.rental-database-access-info-popup .access-info {
  display: table;
}
.rental-database-access-info-popup .access-info > * {
  display: table-row;
}
.rental-database-access-info-popup .access-info > * > * {
  display: table-cell;
}
.rental-database-access-info-popup .access-info span {
  padding-right: 5px;
}
.query-collection-width {
  width: 500px;
  max-width: 98%;
}
.query-collection-overview {
  padding-top: 5px;
}
.query-collection-overview .caption2,
.query-collection-overview .list > a {
  width: 500px;
  max-width: 98%;
}
.query-collection-overview .caption2 {
  margin-bottom: 0.25em;
  font-size: 1em;
  line-height: 2em;
  font-weight: bold;
  border-bottom: 1px solid #555;
}
.query-collection-overview .caption2:not(:first-child) {
  margin-top: 2em;
}
.query-collection-overview > .list > a {
  display: flex;
  align-items: center;
  height: 29px;
  margin: 0.25em 0;
  padding: 0 10px;
  border-radius: 29px;
  cursor: pointer;
  text-decoration: none;
}
@media (hover: hover) {
  .query-collection-overview > .list > a:hover {
    background: rgba(38, 64, 223, 0.08);
  }
  .query-collection-overview > .list > a:hover .chevron,
  .query-collection-overview > .list > a:hover .title {
    color: #2640df;
  }
}
.query-collection-overview > .list > a .star {
  display: none;
}
.query-collection-overview > .list > a svg {
  width: 1.4em;
  height: 1.4em;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 4px;
  flex-shrink: 0;
}
@media (hover: hover) {
  .query-collection-overview > .list > a svg:hover {
    color: #2640df;
  }
}
.query-collection-overview > .list > a .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.query-collection-overview > .list > a .author {
  margin-left: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.query-collection-overview > .list > a .author img {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  margin: 0 2px 0 4px;
}
.query-collection-overview button.create-query {
  font: inherit;
  color: inherit;
  cursor: pointer;
  height: 29px;
  width: 29px;
  margin-left: 6px;
  line-height: 0;
  padding: 0;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  border-radius: 50%;
}
.query-collection-overview button.create-query svg {
  width: 15px;
  height: 15px;
}
@media (hover: hover) {
  .query-collection-overview button.create-query:hover {
    color: #2640df;
    background: rgba(38, 64, 223, 0.08);
  }
}
.query-collection-overview .caption,
.query-collection-item .query-title {
  font-size: 20px;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.query-collection-item .back-to-overview svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.query-collection-item .back-to-overview span {
  vertical-align: middle;
}
.query-collection-item .query-title {
  margin-top: 1em;
  font-size: 1.3em;
  line-height: 1.5em;
  font-weight: 600;
}
.query-collection-item .query-author {
  display: flex;
  margin-bottom: 2em;
}
.query-collection-item .query-author img {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  margin: 0 2px 0 4px;
}
.query-collection-item textarea.notes {
  width: 500px;
  max-width: 98%;
  font: inherit;
  height: 6.5em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  resize: vertical;
}
.query-collection-item .sql-editor {
  margin: 1em 0;
}
.query-collection-item .sql-editor button {
  width: 120px;
  height: 2.5em;
}
.query-collection-item .sql-editor .sql-editor__code2 {
  height: 300px;
}
.query-collection-item .sql-editor .sql-editor__expand {
  display: none;
}
.query-collection-item .edit-field {
  margin: 1em 0;
}
.query-collection-item .edit-field .title {
  font-weight: bold;
}
.query-collection-item .control-buttons {
  float: right;
}
.query-collection-item .control-buttons button {
  vertical-align: middle;
}
.query-collection-item .control-buttons button:not(:last-child) {
  margin-right: 15px;
}
.code-editor {
  position: relative;
  width: 100%;
  line-height: 0;
}
.code-editor pre,
.code-editor textarea {
  font: inherit;
  padding: 0.5em 0.8em;
  width: 100%;
  overflow-y: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
  margin: 0;
  line-height: 1.35em;
}
.code-editor pre {
  pointer-events: none;
  background: white;
  color: black;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
}
.code-editor pre::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.code-editor textarea {
  position: relative;
  background: transparent !important;
  caret-color: black;
  resize: vertical;
  border-width: 1px;
}
.code-editor textarea:not(.nohighlight) {
  color: transparent;
}
.table-display-options-popup {
  max-width: 500px;
}
.table-display-options-popup .section {
  margin-bottom: 20px;
}
.table-display-options-popup .section h3 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}
.table-display-options-popup .section p {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
}
.table-display-options-popup .column-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  margin-bottom: 4px;
}
.table-display-options-popup .column-item .column-name {
  font-weight: 500;
}
.table-display-options-popup .column-item .column-type {
  font-size: 12px;
  color: #666;
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 3px;
}
.table-display-options-popup .actions {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 20px;
  border-top: 1px solid #e9ecef;
  padding-top: 15px;
}
.table-display > img.loading {
  width: 24px;
  height: 24px;
}
.table-display .table-display__top {
  margin-bottom: 8px;
  padding-right: 5px;
}
.table-display .table-display__top .right-side {
  float: right;
}
@media only screen and (min-width: 500px) {
  .table-display .table-display__top .right-side {
    line-height: 27px;
  }
}
@media only screen and (max-width: 499px) {
  .table-display .table-display__top .right-side {
    line-height: 23px;
  }
}
@media only screen and (min-width: 500px) {
  .table-display .table-display__top .actions {
    display: inline;
  }
}
.table-display .table-display__top .actions > .button {
  vertical-align: top;
}
@media only screen and (min-width: 500px) {
  .table-display .table-display__top .actions > .button {
    height: 27px;
    line-height: 17px;
  }
}
@media only screen and (max-width: 499px) {
  .table-display .table-display__top .actions > .button {
    height: 23px;
    line-height: 15px;
  }
}
@media only screen and (min-width: 500px) {
  .table-display .table-display__top .actions > .button:not(:last-child) {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 499px) {
  .table-display .table-display__top .actions > .button:not(:last-child) {
    margin-right: 5px;
  }
}
.table-display .table-search {
  vertical-align: middle;
}
@media only screen and (min-width: 500px) {
  .table-display .table-search {
    margin-right: 25px;
  }
}
@media only screen and (max-width: 499px) {
  .table-display .table-search {
    flex: 1 1 100%;
  }
}
.table-display .table-search,
.table-display .button.enable-sql,
.table-display .button.export,
.table-display .button.new-filter,
.table-display .single-filter {
  margin-bottom: 8px;
}
@media only screen and (min-width: 960px) {
  .table-display .filter-area {
    display: inline;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 959px) {
  .table-display .filter-area {
    display: none;
  }
}
.table-display .filter-area > *:not(:last-child) {
  margin-right: 15px;
}
.table-display .filter-area .single-filter {
  display: inline-block;
  padding: 0 6px;
  line-height: 27px;
  background: #eee;
  vertical-align: middle;
  white-space: nowrap;
  cursor: pointer;
}
.table-display .filter-area .single-filter > *:not(:last-child) {
  margin-right: 3px;
}
.table-display .filter-area .single-filter .column-name {
  font-weight: 600;
}
.table-display .filter-area .single-filter .operand {
  font-weight: 600;
}
.table-display .filter-area .single-filter .remove {
  cursor: pointer;
}
@media (hover: hover) {
  .table-display .filter-area .single-filter .remove:hover {
    background: #ddd;
  }
}
.table-display .filter-area .single-filter .remove svg {
  width: 16px;
  height: 16px;
  transform: translateY(3px);
}
.table-display .sql-editor {
  max-width: 800px;
}
@media only screen and (min-width: 500px) {
  .table-display .sql-editor {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 499px) {
  .table-display .sql-editor {
    flex: 1 1 100%;
  }
}
.table-editor2 {
  /*.cell,
	.row-options,
	.row-select {
		display: inline-block;
		//line-height: @table-body-row-height - 1px;
		//height: @table-body-row-height;
		overflow-y: hidden;  // strangely we will get some visual error otherwise that a row is higher than it should be
	}*/
}
.table-editor2 ::-webkit-scrollbar-track {
  height: 3px;
  width: 3px;
}
.table-editor2 ::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
  width: 3px;
  height: 3px;
}
.table-editor2 ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
}
.table-editor2 > .selected-info {
  padding: 0 30px;
  margin-bottom: 1em;
}
.table-editor2 > .selected-info span {
  margin-right: 10px;
}
.table-editor2 > .selected-info button {
  vertical-align: middle;
  padding: 5px;
}
.table-editor2 .no-columns {
  padding: 20px;
}
.table-editor2 table {
  border-spacing: 0;
  border-collapse: collapse;
}
.table-editor2 table,
.table-editor2 thead,
.table-editor2 tbody,
.table-editor2 tr {
  display: block;
}
.table-editor2 .table {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: auto;
  position: relative;
  padding-right: 3px;
  outline: none;
}
.table-editor2 .table > .header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 2;
  background: white;
  flex: none;
}
.table-editor2 .table > .header .cell {
  padding-left: 6px;
  padding-right: 6px;
}
.table-editor2 .table > .header .has-origin-change + div .cell {
  border-left-width: 3px;
}
.table-editor2 .table > .body {
  flex: auto;
  min-width: 100%;
}
.table-editor2 .table > .body .cell.has-origin-change + .cell {
  border-left-width: 3px;
}
.table-editor2 .row .cell,
.table-editor2 .row .row-options,
.table-editor2 .row .row-select {
  display: inline-block;
  height: 100%;
  overflow-y: hidden;
}
.table-editor2 .row .cell,
.table-editor2 .row .row-select {
  display: inline-block;
}
.table-editor2 .header .row {
  height: 31px;
  line-height: 28px;
}
.table-editor2 .body .row {
  height: 24px;
  line-height: 23px;
}
.table-editor2 .body .row:first-child {
  margin-top: -1px;
}
.table-editor2 .row {
  white-space: nowrap;
  position: relative;
}
.table-editor2 .row.focused .cell {
  background: #f8f8ff;
}
.table-editor2 .row.checked .cell {
  background: #ffffdd;
}
.table-editor2 .row .row-select {
  width: 24px;
  vertical-align: middle;
}
.table-editor2 .row .row-select svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  color: #888;
  cursor: pointer;
}
@media (hover: hover) {
  .table-editor2 .row .row-select svg:hover {
    background: #eee;
  }
}
.table-editor2 .row .row-options {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  padding-right: 5px;
  vertical-align: middle;
}
.table-editor2 .row .row-options svg {
  width: 16px;
  height: 16px;
  cursor: pointer;
  color: #888;
}
@media (hover: hover) {
  .table-editor2 .row .row-options svg:hover {
    color: black;
  }
}
.table-editor2 .rows-error,
.table-editor2 .no-rows {
  margin-top: 1em;
  margin-left: 30px;
}
.table-editor2 .cell {
  position: relative;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (min-width: 500px) {
  .table-editor2 .cell {
    width: 150px;
  }
}
@media only screen and (max-width: 499px) {
  .table-editor2 .cell {
    width: 120px;
  }
}
.table-editor2 .cell.focused:before {
  content: " ";
  position: absolute;
  left: 0;
  right: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #3871e0;
  pointer-events: none;
}
.table-editor2 .cell.selected {
  background: #eaf0fc !important;
}
.table-editor2 .cell:not(.row-options):not(.row-select) {
  border: 1px solid #e8e5e3;
  position: relative;
}
.table-editor2 .cell:not(.row-options):not(.row-select):not(:last-child) {
  border-right-width: 0;
}
.table-editor2 .cell:not(.row-options):not(.row-select).new-column {
  border-right: 0;
  width: 50px;
}
.table-editor2 .cell.open-menu {
  background: #ddd !important;
}
.table-editor2 .cell.type-short-text.is-null:after,
.table-editor2 .cell.type-long-text.is-null:after,
.table-editor2 .cell.type-unsupported.is-null:after {
  content: "-";
  color: #bbb;
}
.table-editor2 .cell.type-short-text.is-empty-string:after,
.table-editor2 .cell.type-long-text.is-empty-string:after,
.table-editor2 .cell.type-unsupported.is-empty-string:after {
  content: "''";
  color: #bbb;
}
.table-editor2 .icon-delete-selected-rows {
  background: hsl(231, 74%, 93%);
  transition: 0.1s ease-in-out;
  padding: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #333;
  cursor: pointer;
}
@media (hover: hover) {
  .table-editor2 .icon-delete-selected-rows:hover {
    background: hsl(231, 74%, 85%);
  }
}
.table-editor2 .header {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.table-editor2 .header > .row > div {
  height: inherit;
  position: relative;
}
.table-editor2 .header > .row > div:not(.row-options) {
  display: inline-block;
}
.table-editor2 .header > .row > div:last-child .cell:not(.new-column) {
  border-right: 1px solid #e8e5e3;
}
.table-editor2 .header > .row > div:last-child {
  margin-right: 100px;
}
.table-editor2 .header .cell {
  background: #f8f9fa;
  transition: background 0.1s;
  color: #222;
  text-align: left;
  font-weight: normal;
  overflow: hidden;
  border-bottom-width: 2px;
  position: relative;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.table-editor2 .header .cell.new-column {
  background: white;
}
@media (hover: hover) {
  .table-editor2 .header .cell.sortable:hover,
  .table-editor2 .header .cell.new-column:hover {
    background: #f0f1f2;
  }
}
.table-editor2 .header .cell.new-column {
  text-align: center;
}
.table-editor2 .header .cell.new-column svg {
  width: 15px;
  height: 15px;
  margin-top: 7px;
}
.table-editor2 .header .cell.new-column:not(.loading) {
  cursor: pointer;
}
.table-editor2 .header .cell.new-column .loading {
  height: 28px / 2;
  margin-top: 28px / 4;
}
.table-editor2 .header .cell .column-icon {
  width: 18px;
  height: 18px;
  margin-right: 4px;
  transform: translateY(4px);
}
.table-editor2 .header .cell .column-lock {
  display: inline-block;
  width: 13px;
  height: 13px;
  vertical-align: middle;
  color: #bbb;
  margin-left: 4px;
}
.table-editor2 .header .cell.type-select .column-icon {
  width: 16px;
  height: 16px;
}
.table-editor2 .header .cell .right-side {
  float: right;
  height: 100%;
  white-space: nowrap;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: row;
}
.table-editor2 .header .cell .right-side > *:not(:first-child) {
  margin-left: 3px;
}
.table-editor2 .header .cell .right-side > * {
  background: #f8f9fa;
}
.table-editor2 .header .cell .right-side .column-sort-order {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  fill: #888;
}
.table-editor2 .header .cell .right-side .column-options {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  fill: #888;
  cursor: pointer;
}
@media (hover: hover) {
  .table-editor2 .header .cell .right-side .column-options:hover {
    background: #ddd;
  }
}
.table-editor2 .header .column-comment {
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  height: 12px;
  color: #888;
}
.table-editor2 .header .resizer {
  display: inline-block;
  height: 100%;
  width: 6px;
  cursor: ew-resize;
  margin-right: -6px;
  z-index: 10;
  position: relative;
  left: -3px;
  vertical-align: middle;
}
.table-editor2 .header .resizer.active {
  background: #5c00ff;
}
@media (hover: hover) {
  .table-editor2 .header .resizer:hover {
    background: #5c00ff;
  }
}
.table-editor2 .body .new-rows-area {
  background: #ddf;
  padding: 10px 0 20px 24px;
  margin: 10px 0 20px 0;
  border: 1px solid #cce;
}
.table-editor2 .body .new-rows-area .add-row-caption {
  font-weight: 600;
  margin-bottom: 0.5em;
}
.table-editor2 .body .new-rows-area .fill-fields-info {
  font-weight: normal;
  margin-left: 3px;
}
.table-editor2 .body .new-rows-area .row.new {
  position: relative;
}
.table-editor2 .body .new-rows-area .row.new > .delete {
  position: absolute;
  left: -18px;
  top: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
@media (hover: hover) {
  .table-editor2 .body .new-rows-area .row.new > .delete:hover {
    animation: effect-wiggle 1.5s infinite;
  }
}
.table-editor2 .body .new-rows-area .row.new:first-child .cell {
  border-top-width: 1px !important;
}
.table-editor2 .body .new-rows-area .row.new .cell {
  border-color: #ccc;
}
.table-editor2 .body .new-rows-area .row.new .cell:not(.type-bool) .default {
  font-style: italic;
  font-size: 0.9em;
}
.table-editor2 .body .new-rows-area .controls {
  margin-top: 20px;
}
.table-editor2 .body .new-rows-area .controls button:not(:last-child) {
  margin-right: 20px;
}
.table-editor2 .body .visible-rows-window > .row:first-child .cell {
  border-top-width: 1px !important;
}
.table-editor2 .body .add-row-row > div {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-right: 15px;
}
@media (hover: hover) {
  .table-editor2 .body .add-row-row > div:hover .plus {
    color: black;
  }
  .table-editor2 .body .add-row-row > div:hover .marker {
    color: hsl(231, 74%, 85%);
  }
}
.table-editor2 .body .add-row-row .plus {
  position: relative;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  margin-left: 6px;
  color: #333;
}
.table-editor2 .body .add-row-row .marker {
  position: absolute;
  top: -1px;
  left: 2px;
  width: 26px;
  height: 26px;
  color: inherit;
  transform: rotate(270deg);
  color: hsl(231, 74%, 93%);
  transition: 0.1s ease-in-out;
}
.table-editor2 .body .row .cell {
  border-top-width: 0 !important;
}
.table-editor2 .body .row.selected .cell:not(.new-column):not(.row-options):not(.row-select) {
  background-color: #ddffdd;
}
@media (hover: hover) {
  .table-editor2 .body .row:not(.selected) .cell:not(.new-column):not(.row-options):not(.row-select):hover {
    background-color: #f8f8f8;
  }
}
.table-editor2 .body .cell {
  background-color: #ffffff;
  transition: background-color 0.1s;
  cursor: default;
  /*&.selected {
				outline: 1px auto rgba(0,0,0,0.4);
				outline-offset: -2px;
			}*/
}
.table-editor2 .body .cell.warn-empty:after {
  content: "➡️";
  position: absolute;
  top: 0;
  left: 5px;
}
.table-editor2 .body .cell.type-bool,
.table-editor2 .body .cell.type-int,
.table-editor2 .body .cell.type-float,
.table-editor2 .body .cell.type-date,
.table-editor2 .body .cell.type-datetime {
  text-align: right;
}
.table-editor2 .body .cell.reference {
  text-align: left;
}
.table-editor2 .body .cell.type-int,
.table-editor2 .body .cell.type-float,
.table-editor2 .body .cell.type-date,
.table-editor2 .body .cell.type-datetime {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}
.table-editor2 .body .cell.type-bool {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
}
.table-editor2 .body .cell.type-bool svg {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.table-editor2 .body .cell.type-bool svg.null {
  opacity: 0.1;
}
.table-editor2 .body .cell.type-bool .default {
  margin-right: 4px;
}
.table-editor2 .body .cell.type-select {
  padding: 0 6px;
}
.table-editor2 .body .cell.type-select span:not(.empty):not(.null-value) {
  display: inline-block;
  max-width: 100%;
  background: #eeeeee;
  line-height: 17px;
  margin-top: 3px;
  padding: 0px 7px;
  border-radius: 2px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.table-editor2 .body .cell.type-short-text img {
  max-width: 100%;
  max-height: 100%;
}
.table-editor2 .body .cell.type-long-text .long-text-line-count {
  float: right;
  margin-left: 5px;
}
.table-editor2 .body .cell.type-image {
  background-repeat: no-repeat;
  background-size: contain;
}
.table-editor2 .body.adding-rows .row:not(.new) .cell {
  background-color: #f8f8f8;
  color: #666;
}
.table-editor2 .body .cell-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 6px;
}
.table-editor2 .body .cell-text .icon-link {
  float: right;
  margin-left: 4px;
  padding-left: 5px;
  cursor: pointer;
  line-height: inherit;
  font-size: 0.8em;
  opacity: 0.4;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .table-editor2 .body .cell-text .icon-link:hover {
    opacity: 1;
    color: #563d7c;
  }
}
.table-editor2 .load-more {
  margin: 10px 0 0 0;
  min-height: 1px;
}
.table-editor2 .load-more .loading {
  width: 20px;
  height: 20px;
}
#status-bar .actions .table-row-count {
  display: inline-block;
  text-align: right;
  white-space: nowrap;
}
body.cell-editor-open {
  overflow: hidden;
}
.long-text-editor,
.image-editor {
  width: 800px;
  height: 500px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.long-text-editor .buttons,
.image-editor .buttons {
  flex: 0 1;
}
.long-text-editor .buttons button.clear,
.image-editor .buttons button.clear,
.binary-editor .buttons button.clear {
  float: right;
  margin-right: 30px;
}
.long-text-editor .buttons button.save,
.image-editor .buttons button.save,
.binary-editor .buttons button.save {
  float: right;
}
.long-text-editor .text-container {
  flex: auto;
  margin-bottom: 10px;
  position: relative;
}
.long-text-editor .text-container textarea {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 7px;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  line-height: 1.3em;
  border: 1px solid #bbb;
  resize: none;
}
.binary-editor {
  outline: none;
}
.binary-editor .info-box {
  margin-bottom: 1em;
}
.binary-editor .column-type-info {
  margin-bottom: 0.5em;
}
.binary-editor .controls,
.binary-editor .upload-download {
  margin-bottom: 1em;
}
.binary-editor .controls > *:not(:last-child) {
  margin-right: 8px;
}
.binary-editor .upload-download button:not(:last-child) {
  margin-right: 10px;
}
.binary-editor .paging {
  float: right;
  line-height: 0;
}
.binary-editor .paging svg {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.binary-editor .paging svg.disabled {
  color: #888;
  cursor: default;
}
.binary-editor .container {
  width: auto;
  height: 150px;
  margin: 0.25em 0 1em 0;
}
.binary-editor .container .hex-editor {
  position: relative;
  font-size: 0.9rem;
}
.binary-editor .container .hex-editor.disabled:after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #00000022;
}
.image-editor input[type=text] {
  width: 100%;
}
.image-editor .image-preview {
  position: absolute;
  top: 60px;
  left: 20px;
  right: 20px;
  bottom: 60px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}
.popupmenu.cell-editor-popup {
  overflow-y: visible;
}
.popupmenu.cell-editor-popup.type-date,
.popupmenu.cell-editor-popup.type-datetime {
  border: 1px solid #ccc;
}
.table-editor2-cell-editor {
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  background: white;
}
.table-editor2-cell-editor .short-text-editor {
  width: 140px;
  height: 100%;
  position: relative;
}
.table-editor2-cell-editor .short-text-editor.disabled:before {
  content: " ";
  position: absolute;
  right: -22px;
  bottom: -17px;
  width: 20px;
  height: 20px;
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height="24px" width="24px"><path d="M12,17C10.89,17 10,16.1 10,15C10,13.89 10.89,13 12,13A2,2 0 0,1 14,15A2,2 0 0,1 12,17M18,20V10H6V20H18M18,8A2,2 0 0,1 20,10V20A2,2 0 0,1 18,22H6C4.89,22 4,21.1 4,20V10C4,8.89 4.89,8 6,8H7V6A5,5 0 0,1 12,1A5,5 0 0,1 17,6V8H18M12,3A3,3 0 0,0 9,6V8H15V6A3,3 0 0,0 12,3Z"></path></svg>');
  background-repeat: no-repeat;
  background-size: 14px;
  background-position: 50%;
  background-color: white;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.table-editor2-cell-editor .short-text-editor input {
  width: 100%;
  height: 25px;
  line-height: 25px;
  font: inherit;
  padding: 0 6px;
  text-indent: 0;
  padding-bottom: 1px;
}
.table-editor2-cell-editor .short-text-editor input.error {
  background: #fee;
}
.table-editor2-cell-editor .short-text-editor button {
  position: absolute;
  left: 0;
  top: 27px;
}
.table-editor2-cell-editor.type-int input,
.table-editor2-cell-editor.type-float input,
.table-editor2-cell-editor.type-date input,
.table-editor2-cell-editor .date-editor input,
.table-editor2-cell-editor .datetime-editor input,
.table-editor2-cell-editor .short-text-editor.date input,
.table-editor2-cell-editor .short-text-editor.datetime input {
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
  text-align: right;
}
.table-editor2-cell-editor .select-editor {
  min-width: 100px;
}
.table-editor2-cell-editor .select-editor .react-select__menu {
  position: relative !important;
  border-radius: 1px !important;
}
.table-editor2-cell-editor .select-editor .react-select__menu-list {
  padding: 0 !important;
}
.table-editor2-cell-editor .select-editor .react-select__control--menu-is-open {
  border-radius: 1px !important;
}
.table-editor2-cell-editor .select-editor .react-select__control--menu-is-open > * {
  height: 100%;
}
.table-editor2-cell-editor .select-editor .react-select__dropdown-indicator {
  padding: 3px !important;
}
.table-editor2-cell-editor .select-editor .react-select__menu {
  margin: 0 !important;
}
.table-editor2-cell-editor .select-editor .react-select__value-container {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 11px;
}
.table-editor2-cell-editor .select-editor .react-select__control {
  min-height: 24px;
  height: 24px;
  line-height: 24px;
}
.table-editor2-cell-editor .select-editor .react-select__option {
  padding-top: 0;
  padding-bottom: 0;
  height: 24px;
  line-height: 24px;
  padding-left: 14px;
  white-space: nowrap;
}
.table-editor2-cell-editor .select-editor .react-select__option--is-focused {
  background: #DEEBFF;
}
.table-editor2-cell-editor .select-editor .react-select__option--is-selected {
  background: #ddf;
  color: black;
}
.table-editor2-cell-editor .date-editor:not(.disabled) {
  height: auto;
  padding: 15px 20px;
}
.table-editor2-cell-editor .date-editor:not(.disabled) .date-editor__buttons {
  margin-top: 1.5em;
}
.table-editor2-cell-editor .date-editor:not(.disabled) .date-editor__buttons button.clear {
  float: right;
  margin-right: 30px;
}
.table-editor2-cell-editor .date-editor:not(.disabled) .date-editor__buttons button.save {
  float: right;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled) {
  zoom: 1;
  height: auto;
  padding: 15px 20px;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled):before,
.table-editor2-cell-editor .datetime-editor:not(.disabled):after {
  content: "";
  display: table;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled):after {
  clear: both;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled) .datetime_editor__buttons {
  margin-top: 2em;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled) .datetime_editor__buttons button.clear {
  float: right;
  margin-right: 30px;
}
.table-editor2-cell-editor .datetime-editor:not(.disabled) .datetime_editor__buttons button.save {
  float: right;
}
.table-editor2-cell-editor .date-editor > div:first-child,
.table-editor2-cell-editor .datetime-editor > div:first-child {
  zoom: 1;
}
.table-editor2-cell-editor .date-editor > div:first-child:before,
.table-editor2-cell-editor .datetime-editor > div:first-child:before,
.table-editor2-cell-editor .date-editor > div:first-child:after,
.table-editor2-cell-editor .datetime-editor > div:first-child:after {
  content: "";
  display: table;
}
.table-editor2-cell-editor .date-editor > div:first-child:after,
.table-editor2-cell-editor .datetime-editor > div:first-child:after {
  clear: both;
}
.table-editor2-cell-editor .datetime-editor .time-picker {
  margin-top: 1.5em;
  font-size: 1.1em;
}
.reference-picker-popup {
  width: 800px;
  max-width: 98%;
  height: 480px;
  max-height: 95vh;
}
.reference-editor {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  /*&>.current,
	&>.new {
		margin-bottom: 2em;

		&>p:first-child {
			margin-bottom: 0.5em;
			font-weight: bold;
		}
	}*/
}
.reference-editor .loading {
  width: 24px;
  height: 24px;
}
.reference-editor .save-icon {
  display: none;
}
.reference-editor .table-row-count {
  display: none;
}
.reference-editor.read-only .table-editor2 .row-select {
  display: none !important;
}
.reference-editor .table-editor2 {
  flex: auto;
}
.reference-editor .table-editor2 .table {
  height: 100%;
}
.reference-editor .table-editor2 .row-options {
  display: none;
}
.reference-editor .table-display {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow-y: hidden;
}
.reference-editor .table-display .search-help-button {
  display: none;
}
.reference-editor .table-display .table-editor2 {
  overflow: auto;
  flex-grow: 1;
}
.reference-editor .editor-status-bar {
  display: none;
}
.reference-editor .buttons {
  margin-top: 1em;
}
.reference-editor .buttons button.clear {
  float: right;
  margin-right: 30px;
}
.reference-editor .buttons button.save {
  float: right;
}
.table-cell-editor-overlay {
  background: rgba(0, 0, 0, 0.1);
}
.column-menu {
  /*.select-holder {
		display: inline-block;
		position: relative;

		&:after {
			content: " ";
			position: absolute;
			right: 10px;
			top: 7px;
			border: solid #333;
			border-width: 0 2px 2px 0;
			display: inline-block;
			padding: 3px;
			vertical-align: middle;
			transform: rotate(45deg);
		}
	}*/
}
.column-menu .column-type-editor {
  width: 350px;
  padding: 0 10px;
}
.column-menu .column-type-editor > p:first-child {
  font-weight: bold;
  margin-bottom: 1em;
}
.column-menu .column-type-editor .type-list > p:first-child,
.column-menu .column-type-editor .type-options > p:first-child {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.column-menu .column-type-editor .type-list {
  margin-bottom: 2em;
}
.column-menu .column-type-editor .type-list p:not(:first-child) {
  display: inline-block;
  width: 49%;
  line-height: 2em;
  cursor: pointer;
}
.column-menu .column-type-editor .type-list p:not(:first-child):nth-child(odd) {
  margin-right: 2%;
}
.column-menu .column-type-editor .type-list p:not(:first-child).current {
  background: rgba(0, 255, 0, 0.3);
  cursor: default;
}
.column-menu .column-type-editor .type-list p:not(:first-child).selectable {
  cursor: pointer;
}
@media (hover: hover) {
  .column-menu .column-type-editor .type-list p:not(:first-child).selectable:hover {
    background: rgba(0, 0, 255, 0.3);
  }
}
.column-menu .column-type-editor .type-list svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.column-menu .column-type-editor .type-options {
  margin-bottom: 2em;
}
.column-menu .column-type-editor .type-options > div {
  margin: 0.5em 0;
}
.column-menu .column-type-editor .type-options label {
  margin-right: 8px;
}
.column-menu .column-type-editor .type-options label:not(:first-child) {
  margin-left: 5px;
}
.column-menu .column-type-editor .type-options label > input[type=checkbox]:first-child {
  margin-right: 5px;
}
.column-menu .column-type-editor .type-options input[type=radio] {
  margin-right: 3px;
}
.column-menu .column-type-editor .type-options input[type=number] {
  width: 85px;
  margin-left: 5px;
}
.column-menu .column-type-editor .type-options.type-select-options textarea {
  width: 100%;
  height: 7em;
}
.column-menu .column-type-editor button[type=submit] {
  float: right;
}
.column-menu2 {
  width: 310px;
  background: #fff;
  padding: 10px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.column-menu2 .column-name-editor input {
  width: 130px;
  margin-right: 10px;
}
.column-menu2 .column-name-editor button {
  width: 50px;
}
.column-menu2 section:not(:last-child) {
  margin-bottom: 2em;
}
.column-menu2 section div {
  margin-bottom: 0.5em;
}
.column-menu2 p:first-child {
  border-bottom: 1px solid #bbb;
  color: grey;
  margin-bottom: 10px;
  padding-bottom: 3px;
}
.column-menu2 span {
  display: inline-block;
  width: 80px;
}
.column-menu2 input,
.column-menu2 select,
.column-menu2 textarea {
  font: inherit;
  padding: 4px 8px;
  height: 26px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #ccc;
  background: white;
}
.column-menu2 textarea {
  height: 6em;
  vertical-align: top;
}
.column-menu2 button {
  -webkit-appearance: none;
  border-radius: 0;
  font: inherit;
  padding: 4px 10px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #ccc;
  cursor: pointer;
}
.column-display-options-popup {
  max-width: 600px;
}
.column-display-options-popup > p:first-child {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.column-display-options-popup .column-display-options > p:first-child {
  margin-bottom: 1em;
  font-style: italic;
}
.column-display-options-popup .column-display-options > div:not(.buttons) {
  margin-bottom: 1.5em;
}
.column-display-options-popup .column-display-options > div:not(.buttons) > p:first-child {
  border-bottom: 1px solid #aaa;
  margin-bottom: 4px;
}
.column-display-options-popup .column-display-options .buttons {
  margin-top: 2em !important;
}
.column-display-options-popup .column-display-options .buttons button:last-child {
  float: right;
}
.column-display-options-popup .column-display-options-image input[type=checkbox] {
  vertical-align: middle;
  margin-left: 4px;
}
.column-display-options-popup .column-display-options-reference .radio-group {
  margin-top: 7px;
  max-height: 60vh;
  overflow-y: auto;
}
.column-display-options-popup .column-display-options-reference .radio-group label {
  margin-bottom: 3px;
}
.column-display-options-popup .column-display-options-column-label input[type=text] {
  margin-left: 5px;
  line-height: 1.75em;
  vertical-align: middle;
  width: 150px;
}
.column-display-options-popup .column-display-options-custom-format input[type=text] {
  margin-left: 5px;
  line-height: 1.75em;
  vertical-align: middle;
  width: 200px;
}
.column-display-options-popup .column-display-options-custom-format p:last-child {
  font-size: 0.9em;
  color: #666;
  font-style: italic;
  margin-top: 5px;
}
.filter-menu-popup {
  padding: 20px;
}
.filter-menu {
  width: 300px;
  overflow-x: hidden;
}
.filter-menu > .column-name {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.filter-menu .new-filter-details label {
  display: block;
  margin-bottom: 2px;
}
.filter-menu .new-filter-details label input[type=radio] {
  margin-right: 4px;
}
.filter-menu .new-filter-details .operations.any .not-any {
  display: none;
}
.filter-menu .new-filter-details .operations > div {
  position: relative;
  margin: 2px 0 8px 0;
}
.filter-menu .new-filter-details .operations > div > span {
  display: inline-block;
  margin: 0 5px;
}
.filter-menu .new-filter-details input[type=text] {
  width: 200px;
}
.filter-menu .new-filter-details .filter-operation-between input[type=text] {
  width: 100px;
}
.filter-menu .new-filter-details .react-calendar {
  background: #eee;
}
.filter-menu .new-filter-details .buttons button:last-child {
  float: right;
}
.filter-menu .new-filter-details.filter-datetime .filter-operation-between input[type=text] {
  width: 100%;
}
.filter-menu .new-filter-details.filter-date .operations input[type=text] {
  width: 120px;
}
.filter-menu .date-input-area input {
  text-align: right;
  padding: 0 6px !important;
}
.filter-menu .buttons {
  margin-top: 20px;
}
.export-table-popup {
  max-width: 90vw;
  width: 400px;
}
.export-table-popup form td[colspan] {
  padding-top: 10px;
  font-weight: bold;
}
.export-table-popup form td {
  vertical-align: top;
  padding-bottom: 2px;
  padding-top: 2px;
}
.export-table-popup form td:first-child {
  padding-right: 10px;
}
.export-table-popup form tr:first-child td[colspan] {
  padding-top: 0;
}
.export-table-popup .radio-group {
  display: inline;
  margin-left: 10px;
}
.export-database-popup {
  max-width: 90vw;
  width: 400px;
  min-height: 200px;
}
.export-database-popup form td[colspan] {
  padding-top: 10px;
  font-weight: bold;
}
.export-database-popup form td {
  vertical-align: top;
  padding-bottom: 2px;
  padding-top: 2px;
}
.export-database-popup form td:first-child {
  padding-right: 10px;
}
.export-database-popup form tr:first-child td[colspan] {
  padding-top: 0;
}
.export-database-popup .radio-group {
  display: inline;
  margin-left: 10px;
}
.export-database-popup .button {
  margin-top: 10px;
}
.import-csv-popup .table-editor2 {
  margin-top: 0.5em;
  width: 800px;
  max-width: 90vw;
  height: 200px;
  overflow: hidden;
}
.import-csv-popup .table-editor2 .table {
  max-height: 100%;
}
#tables-reorder-indicator,
#columns-reorder-indicator {
  display: inline-block;
  background: black;
  width: 5px;
  height: 10px;
  margin-left: -2px;
  z-index: 999;
}
#rows-reorder-indicator {
  display: inline-block;
  background: black;
  width: 10px;
  height: 5px;
  margin-top: -2px;
}
body.app {
  height: 100vh;
}
@media only screen and (max-width: 499px) {
  body.app {
    font-size: 12px;
  }
}
body.app > #__next > div {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
body.app header {
  flex: none;
  z-index: 1;
}
body.app main {
  flex: auto;
}
body.app #status-bar {
  flex: none;
}
body.app header {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media only screen and (min-width: 500px) {
  body.app header {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 499px) {
  body.app header {
    padding: 0 5px;
  }
}
body.app header .feedback-button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  padding: 4px;
  cursor: pointer;
}
@media (hover: hover) {
  body.app header .feedback-button:hover {
    color: #000;
    background: hsl(231, 74%, 85%);
  }
}
body.app header nav {
  display: inline-block;
  flex: none;
}
body.app header nav .home {
  display: inline-block;
  outline: none;
  text-decoration: none;
}
body.app header nav .home img {
  vertical-align: middle;
}
@media only screen and (min-width: 500px) {
  body.app header nav .home img {
    background: hsl(232, 74%, 95%);
    border-radius: 50%;
    padding: 3px;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 499px) {
  body.app header nav .home img {
    width: 18px;
    height: 18px;
  }
}
body.app header nav .home span {
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 500;
  line-height: 26px;
}
@media (hover: hover) {
  body.app header nav .home[href]:hover {
    color: #2640df;
  }
  body.app header nav .home[href]:hover img {
    animation: effect-wiggle 1.5s infinite;
    color: #563d7c;
  }
}
body.app header .header-middle {
  display: flex;
  flex: auto;
  flex-direction: row;
  align-items: center;
}
@media only screen and (min-width: 500px) {
  body.app header .header-middle {
    padding: 0 20px 0 6px;
  }
}
@media only screen and (max-width: 499px) {
  body.app header .header-middle {
    padding: 0 6px 0 10px;
  }
}
body.app header .header-middle .place-name {
  display: flex;
  align-items: center;
  margin-right: 3px;
  line-height: 26px;
  font-weight: 500;
}
body.app header .header-middle .place-name:before {
  content: " \00B7";
  margin-right: 6px;
}
@media only screen and (max-width: 499px) {
  body.app header nav .home span {
    display: none;
  }
  body.app header .header-middle .place-name:before {
    display: none;
  }
  body.app header .header-middle .instance-name {
    display: none;
  }
  body.app header .header-middle .feedback-button {
    display: none;
  }
  body.app header .header-middle .sql-button {
    display: none;
  }
}
body.app header .profile-overview {
  flex: none;
  height: 100%;
  display: flex;
  align-items: center;
}
body.app header .profile-overview .loading {
  margin: 12px 0 0 0;
  width: 20px;
  height: 20px;
}
body.app header .profile-overview .avatar {
  display: inline-block;
  -webkit-appearance: none;
  border: none;
  background: none;
  vertical-align: middle;
  height: 34px;
  font-size: 0;
  outline: none;
}
@media (hover: hover) {
  body.app header .profile-overview .avatar:hover {
    animation: effect-wiggle 1.5s infinite;
  }
}
body.app header .profile-overview .avatar img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 2px #000000;
}
body.app header .profile-overview .login {
  margin-top: 4px;
}
body.app header > .loading {
  width: 24px;
  height: 24px;
  vertical-align: middle;
}
body.app main {
  overflow-x: hidden;
}
body.app #dashboard header .right-side {
  margin-left: auto;
  display: flex;
  align-items: center;
}
body.app #dashboard header .right-side > *:not(:last-child) {
  margin-right: 12px;
}
body.app #database,
body.app #status-bar {
  background: #f0f0f8;
}
body.app #database header {
  background: none;
  box-shadow: none;
  flex: 0 0 44px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 500px) {
  body.app #database header nav .home {
    background: hsl(231, 74%, 93%);
    border-radius: 3px;
    padding-right: 7px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media only screen and (min-width: 500px) and (hover: hover) {
  body.app #database header nav .home:hover {
    color: #000;
    background: hsl(231, 74%, 85%);
  }
}
body.app #database header .header-middle {
  justify-content: space-between;
  min-width: 0;
}
body.app #database header .header-middle > .right-side {
  white-space: nowrap;
}
body.app #database header .header-middle > .right-side > * {
  vertical-align: middle;
}
@media only screen and (min-width: 500px) {
  body.app #database header .header-middle > .right-side > *:not(:last-child) {
    margin-right: 12px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database header .header-middle > .right-side > *:not(:last-child) {
    margin-right: 6px;
  }
}
body.app #database .save-icon {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 100;
  width: 30px;
  height: 30px;
  align-self: center;
  transition: opacity 0.1s ease-in-out;
  color: #888;
}
body.app #database .save-icon:not(.saving) {
  opacity: 0;
}
body.app #database .page-error {
  margin: auto;
}
body.app #database .page-error p {
  margin-bottom: 1em;
}
body.app #database .page-error p:first-child {
  font-weight: bold;
}
body.app #database .database-overview {
  display: inline-block;
  min-width: 0;
}
@media only screen and (max-width: 499px) {
  body.app #database .database-overview {
    font-size: 12px;
    letter-spacing: -0.5px;
  }
}
body.app #database .database-overview .place-name {
  white-space: nowrap;
}
body.app #database .database-overview .place-name .instance-name img {
  width: 17px;
  height: 17px;
  margin-right: 4px;
  vertical-align: middle;
}
body.app #database .database-overview .place-name .instance-name:after {
  content: " \00B7";
  margin-right: 3px;
  margin-left: 2px;
}
body.app #database .database-overview .place-name .database-name {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: hsl(231, 74%, 93%);
  border-radius: 3px;
  padding: 0 3px;
  height: 30px;
}
@media (hover: hover) {
  body.app #database .database-overview .place-name .database-name:hover {
    color: #000;
    background: hsl(231, 74%, 85%);
  }
}
body.app #database .database-overview .place-name .database-name span {
  display: inline-block;
  visibility: hidden;
  padding-right: 13px;
}
body.app #database .database-overview .place-name .database-name .react-select {
  display: inline-block;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__control {
  border: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  min-height: 0;
  cursor: pointer;
  background: none;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__control--is-focused {
  border: 0 !important;
  box-shadow: none !important;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__indicators {
  display: none;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__value-container {
  display: inline-block;
  line-height: inherit;
  height: inherit;
  white-space: nowrap;
  overflow: visible;
  padding: 0;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__value-container > * {
  color: inherit;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  display: inline-block;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__single-value {
  top: initial;
  transform: none;
  position: initial;
  max-width: none;
  overflow: visible;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__placeholder {
  position: relative;
  top: initial;
  transform: none;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__indicator {
  padding-right: 0;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__single-value + div {
  margin: 0;
  padding: 0;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__menu {
  width: auto;
}
body.app #database .database-overview .place-name .database-name .react-select .react-select__option {
  padding: 0px 12px;
}
body.app #database .database-overview .place-name .database-options {
  padding: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
  margin-left: 2px;
}
@media (hover: hover) {
  body.app #database .database-overview .place-name .database-options:hover {
    background: #e8e8e8;
  }
}
body.app #database button.invite-mobile {
  -webkit-appearance: none;
  line-height: 0;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background: none;
  width: 26px;
  height: 26px;
}
@media (hover: hover) {
  body.app #database button.invite-mobile:hover {
    background: #e8e8e8;
  }
}
body.app #database button.invite-mobile svg {
  width: 26px;
  height: 26px;
  padding: 3px;
  border-radius: 50%;
}
body.app #database button.invite-mobile {
  position: relative;
}
body.app #database button.invite-mobile span {
  position: absolute;
  font-size: 9px;
  right: -4px;
  bottom: 0;
  font-weight: bold;
}
body.app #database main {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
}
body.app #database main > .table-area {
  flex: auto;
  min-width: 0;
}
body.app #database main > .table-area,
body.app #database main > .database-history,
body.app #database main > .database-sqlcollection,
body.app #database main > .database-execsql {
  background: white;
}
body.app #database main.tableslist-vert {
  flex-direction: row;
  overflow-y: hidden;
}
body.app #database main.tableslist-vert .tables-list-container {
  overflow-y: auto;
  max-height: 100%;
  flex: none;
  width: 200px;
  padding: 7px 0;
  border-right: 1px solid #e8e5e3;
}
body.app #database main.tableslist-vert .tables-list-container .tables-list-options {
  margin-top: 0;
}
body.app #database main.tableslist-vert .tables-list-container .tables-list {
  border-bottom: 0;
}
body.app #database main.tableslist-vert .tables-list-container .tables-list > * {
  display: block;
  padding: 0 5px;
  line-height: 1.5em;
  font-weight: normal !important;
  border: none;
  letter-spacing: -0.5px;
  height: auto;
}
body.app #database main.tableslist-vert .tables-list-container .tables-list > *.history,
body.app #database main.tableslist-vert .tables-list-container .tables-list > *.sqlcollection {
  display: inline-block;
}
body.app #database main.tableslist-vert .tables-list-container .tables-list > *.current {
  font-weight: 500 !important;
  background: black;
  color: white;
}
body.app #database main.tableslist-vert .table-area {
  flex: auto;
}
body.app #database main > .loading {
  width: 32px;
  height: 32px;
}
body.app #database main > .database-history,
body.app #database main > .database-sqlcollection,
body.app #database main > .database-execsql {
  flex: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
@media only screen and (min-width: 500px) {
  body.app #database main > .database-history,
  body.app #database main > .database-sqlcollection,
  body.app #database main > .database-execsql {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database main > .database-history,
  body.app #database main > .database-sqlcollection,
  body.app #database main > .database-execsql {
    padding: 5px 2px;
  }
}
body.app #database main > .database-history > h1,
body.app #database main > .database-sqlcollection > h1,
body.app #database main > .database-execsql > h1 {
  margin-bottom: 0.5em;
}
@media only screen and (min-width: 500px) {
  body.app #database main > .database-history > h1,
  body.app #database main > .database-sqlcollection > h1,
  body.app #database main > .database-execsql > h1 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database main > .database-history > h1,
  body.app #database main > .database-sqlcollection > h1,
  body.app #database main > .database-execsql > h1 {
    font-size: 16px;
  }
}
body.app #database main .database-history-view {
  display: flex;
  flex-direction: column;
}
body.app #database main > .database-execsql {
  overflow: hidden;
}
body.app #database main > .database-execsql .exec-sql-view {
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
body.app #database main > .database-execsql .exec-sql-view .sql-editor {
  margin-bottom: 1.5em;
}
body.app #database main > .database-execsql .exec-sql-view .table-editor2 {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.app #database main > .database-execsql .exec-sql-view .table-editor2 .row-options {
  display: none;
}
body.app #database main > .table-area {
  min-height: 200px;
  padding-top: 15px;
  display: flex;
  align-items: stretch;
}
body.app #database main > .table-area > * {
  flex: auto;
}
body.app #database main > .table-area .table-display {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
body.app #database main > .table-area .table-display .table-display__top {
  flex: none;
}
@media only screen and (min-width: 500px) {
  body.app #database main > .table-area .table-display .table-display__top {
    padding-left: 29px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database main > .table-area .table-display .table-display__top {
    padding-left: 5px;
  }
}
body.app #database main > .table-area .table-display .table-display__top .save-icon {
  margin-right: 10px;
  vertical-align: middle;
}
body.app #database main > .table-area .table-display .table-display__top .table-row-count {
  vertical-align: middle;
}
body.app #database main > .table-area .table-display .table-editor2 {
  flex: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body.app #database main > .table-area .table-display .table-editor2 > .table {
  flex: auto;
  padding: 0 5px;
}
body.app #database main > .table-area .table-display > .changes-stream {
  position: absolute;
  bottom: 20px;
}
@media only screen and (min-width: 500px) {
  body.app #database main > .table-area .table-display > .changes-stream {
    right: 20px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database main > .table-area .table-display > .changes-stream {
    right: 5px;
  }
}
body.app #database main > .table-area .table-display > .changes-stream > p {
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
@media only screen and (min-width: 500px) {
  body.app #database main > .table-area .table-display > .changes-stream > p {
    width: 200px;
    margin-bottom: 5px;
    padding: 3px 10px;
  }
}
@media only screen and (max-width: 499px) {
  body.app #database main > .table-area .table-display > .changes-stream > p {
    width: 150px;
    margin-bottom: 2px;
    padding: 0 10px;
  }
}
body.app #database main .no-tables-available {
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}
.confirm-popup {
  max-width: 500px;
}
.confirm-popup .confirm-popup-buttons {
  margin-top: 2em;
}
.confirm-popup .confirm-popup-buttons button {
  width: 100px;
}
.confirm-popup .confirm-popup-buttons button:nth-child(2) {
  float: right;
  margin-left: 20px;
}
#global-signin {
  height: 100vh;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  width: 100vw;
}
/*.new-database-popup {
	width: 300px;

	h1 {
		margin-bottom: 0.5em;
		font-size: 18px;
	}
	&>div {
		&:not(:last-child) {
			margin-bottom: 2em;
		}

		&>p {
		}
	}
	.name-area input {
		width: 100%;
		height: 2.5em;
		text-indent: 10px;
	}
	.worker-area {
		&>div {
			padding: 0 10px;
			line-height: 3em;
			border-radius: 2px;
			cursor: pointer;

			&.selected {
				background: #ddd;

				svg {
					color: green;
				}
			}
		}
		.ping {
			float: right;
		}
		svg {
			width: 20px;
			height: 20px;
			margin-right: 5px;
			vertical-align: middle;
		}
	}
	button[type=submit] {
		width: 130px;
		margin: 0 auto;
		display: block;
		-webkit-appearance: none;
		height: 34px;
	}
}*/
/*.new-instance-form {
	min-width: 300px;

	h1 {
		margin-bottom: 0.5em;
		font-size: 18px;
	}
	&>div {
		&:not(:last-child) {
			margin-bottom: 2em;
		}

		&>p {
		}
	}
	.instance-props {
		&>div {
			margin-bottom: 1em;
			white-space: nowrap;

			&>p {
				display: inline-block;
				width: 70px;
				line-height: 2em;
			}
		}
		input {
			width: 180px;
			height: 2em;
			text-indent: 10px;
		}
	}
	.worker-area {
		&>div {
			padding: 0 10px;
			line-height: 3em;
			border-radius: 2px;
			cursor: pointer;

			&.selected {
				background: #ddd;

				svg {
					color: green;
				}
			}
		}
		.ping {
			float: right;
		}
		svg {
			width: 20px;
			height: 20px;
			margin-right: 5px;
			vertical-align: middle;
		}
	}
	button[type=submit] {
		width: 200px;
		margin: 0 auto;
		display: block;
		-webkit-appearance: none;
		height: 34px;
	}
}*/
#status-bar {
  box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
#status-bar .actions {
  display: flex;
  line-height: 26px;
}
#status-bar .actions > .right {
  margin-left: auto;
  display: flex;
  align-content: center;
}
#status-bar .actions > .right > * {
  margin-left: 10px;
}
#status-bar .actions .button {
  border-radius: 0;
}
.new-instance-form2 {
  width: 400px;
  max-width: 95vw;
  position: relative;
  overflow: auto;
}
.new-instance-form2 .step {
  margin-bottom: 2em;
}
.new-instance-form2 .step > p:first-child {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.new-instance-form2 .step .values.loading {
  color: #999;
}
.new-instance-form2 .step .values > .values-row,
.new-instance-form2 .step .values > label {
  display: block;
  margin-bottom: 2px;
  padding: 4px 0;
}
.new-instance-form2 .step .values > .values-row span:first-child,
.new-instance-form2 .step .values > label span:first-child {
  display: inline-block;
  width: 80px;
}
.new-instance-form2 .step .values input[type=text],
.new-instance-form2 .step .values input[type=password] {
  font: inherit;
  color: inherit;
  padding: 1px 7px;
  width: 140px;
}
.new-instance-form2 .step .values input[type=text].port,
.new-instance-form2 .step .values input[type=password].port {
  width: 60px;
}
.new-instance-form2 .step .values input[type=text].host,
.new-instance-form2 .step .values input[type=password].host {
  width: 220px;
}
.new-instance-form2 .step.label input[type=text] {
  margin-bottom: 3em;
}
.new-instance-form2 .radio-group label {
  margin-right: 20px;
}
.new-instance-form2 .step.engine-host .choose-dbengine {
  display: inline-block;
  vertical-align: middle;
}
.profile-menu {
  padding: 20px 20px;
  width: 200px;
}
.profile-menu .username {
  font-weight: bold;
}
.profile-menu button.logout {
  margin-top: 2em;
}
/*#table-search-help-popup {
	display: flex;
	flex-direction: column;

	.popup-title {
		flex: none;
		margin-bottom: 0.5em;
	}
	.popup-body {
		flex: auto;
		overflow: auto;
	}
	.popup-buttons {
		flex: none;
		margin-top: 1em;
		text-align: right;
	}
}*/
#table-search-help-popup {
  width: 600px;
}
@media only screen and (min-width: 500px) {
  #table-search-help-popup {
    max-width: 95vw;
  }
}
#table-search-help-popup em {
  font-style: normal;
  font-family: monospace;
  background: #eee;
  white-space: nowrap;
}
#table-search-help-popup .examples {
  margin-top: 1em;
}
#table-search-help-popup .examples > div {
  margin-bottom: 1.5em;
}
#table-search-help-popup .examples .table-search-preview {
  position: relative;
  min-width: 50%;
  max-width: 300px;
}
#table-search-help-popup .examples .table-search-preview input {
  width: 100%;
}
#table-search-help-popup .examples .table-search-preview .fa {
  position: absolute;
  right: 4px;
  top: 7px;
  color: #999;
  pointer-events: none;
}
#table-search-help-popup .examples p {
  margin-top: 3px;
}
#components {
  background: repeating-linear-gradient(45deg, rgba(96, 109, 188, 0.05), rgba(96, 109, 188, 0.05) 10px, rgba(70, 82, 152, 0.05) 10px, rgba(70, 82, 152, 0.05) 20px);
}
#components > div {
  width: 800px;
  max-width: 95%;
  margin: 0 auto;
  padding: 20px 0 50px 0;
}
#components h2 {
  margin-top: 2em;
  font-size: 1.4em;
}
#components h3 {
  font-size: inherit;
  margin-bottom: 0.25em;
}
#components h3:not(:first-child) {
  margin-top: 1em;
}
#components .component-explorer__options-controls {
  margin-left: 20px;
  margin-bottom: 1em;
  padding-left: 10px;
  border-left: 5px solid #ddd;
}
#components .component-explorer__options-controls > div {
  margin-bottom: 0.5em;
}
#components .component-explorer__options-controls > div > span:first-child {
  display: inline-block;
  width: 150px;
}
#components .component-explorer__options-controls > div .radio-group {
  display: inline-block;
}
.default-menu {
  min-width: 200px;
  max-width: 400px;
  background: #fff;
  padding: 4px 0;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}
.default-menu.loading {
  color: #888;
}
.default-menu.loading .menu-item {
  cursor: default;
}
.default-menu:not(.loading) .menu-item {
  cursor: pointer;
}
.default-menu .menu-item {
  line-height: 2.5em;
  padding: 0 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (hover: hover) {
  .default-menu .menu-item:hover {
    background: #eee;
  }
}
.default-menu .menu-item > .loading {
  width: 1em;
  height: 1em;
  vertical-align: middle;
}
.default-menu .in-menu-view {
  min-width: 300px;
  max-width: 500px;
  padding: 10px 20px;
}
.default-menu .in-menu-view > p:first-child {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.default-menu .in-menu-view .buttons {
  margin-top: 20px;
}
.default-menu .in-menu-view .buttons button[type=submit] {
  float: right;
}
.default-menu input[type=text],
.default-menu input[type=number],
.default-menu select,
.default-menu textarea {
  font: inherit;
  padding: 4px 8px;
  height: 26px;
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #ccc;
  background: white;
}
.default-menu .default-name-editor {
  padding: 0 10px;
}
.default-menu .default-name-editor input {
  width: 100%;
}
.default-menu .default-name-editor .buttons {
  margin-top: 0.5em;
}
.default-menu .default-name-editor button[type=submit] {
  float: right;
}
.default-name-editor input {
  width: 100%;
  margin: 5px 0 0 0;
}
.default-name-editor .error {
  margin-top: 1em;
  font-weight: bold;
}
.collaborators-popup {
  width: 300px;
}
.collaborators-popup > p:first-child {
  font-weight: bold;
}
@media only screen and (min-width: 500px) {
  .collaborators-popup > p:first-child {
    margin-bottom: 1em;
  }
}
@media only screen and (max-width: 499px) {
  .collaborators-popup > p:first-child {
    margin-bottom: 0.5em;
  }
}
.collaborators-popup ul {
  height: 400px;
  max-height: 50vh;
}
.collaborators-popup li {
  margin-bottom: 0.5em;
  white-space: nowrap;
}
.collaborators-popup img {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}
.collaborators-popup svg {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: 5px;
}
.collaborators-popup span {
  display: inline-block;
  max-width: 190px;
  vertical-align: middle;
  text-overflow: ellipsis;
  overflow: hidden;
}
.collaborators-popup button {
  float: right;
}
main#app-settings h1 {
  font-size: 26px;
  margin-bottom: 1em;
}
main#app-settings h1 + .loading {
  width: 14px;
  height: 14px;
}
@media only screen and (min-width: 960px) {
  main#app-settings .settings-full {
    display: flex;
    min-height: 100%;
  }
  main#app-settings .settings-full > *:first-child {
    flex: 0 0 200px;
  }
  main#app-settings .settings-full > *:last-child {
    flex: auto;
    min-width: 0;
  }
}
main#app-settings nav {
  display: block;
  line-height: 30px;
  padding: 10px 10px 10px 0;
  box-shadow: 1px 0 0 #eee;
}
main#app-settings nav section {
  margin: 20px 0;
}
main#app-settings nav section > p:first-child {
  font-weight: bold;
  padding-left: 10px;
}
main#app-settings nav a {
  outline: none;
  text-decoration: none;
}
@media only screen and (min-width: 960px) {
  main#app-settings nav a {
    display: block;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-left: 3px solid #aaa;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 959px) {
  main#app-settings nav a {
    display: inline-block;
    padding: 0 10px;
  }
}
@media (hover: hover) {
  main#app-settings nav a:hover {
    background: rgba(38, 64, 223, 0.08);
  }
}
main#app-settings nav a svg {
  height: 15px;
  margin-right: 4px;
  vertical-align: text-top;
}
main#app-settings nav a.active {
  color: #2640df;
  border-left-color: #2640df;
  background: rgba(38, 64, 223, 0.16);
}
@media only screen and (min-width: 960px) {
  main#app-settings nav a.active {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media only screen and (max-width: 959px) {
  main#app-settings nav a.active {
    border-radius: 20px;
  }
}
main#app-settings nav .logout {
  margin-top: 2em;
  margin-left: 10px;
}
main#app-settings .settings-body {
  padding: 0 20px 20px 30px;
}
main#app-settings .settings-body .coming-soon-big {
  margin: 2em 0;
  font-size: 22px;
  font-weight: 200;
}
main#app-settings .fields {
  display: table;
}
main#app-settings .fields > div {
  display: table-row;
}
main#app-settings .fields > div > * {
  display: table-cell;
  vertical-align: top;
  padding-right: 20px;
  padding-bottom: 1em;
}
main#app-settings .fields > div > *:first-child {
  padding-top: 3px;
}
main#app-settings .fields input.invalid {
  box-shadow: 0 0 3px red;
}
main#app-settings .fields input[type=checkbox] {
  transform: translateY(5px);
}
main#app-settings .profile-settings .avatar-preview {
  display: inline-block;
  max-width: 200px;
  max-height: 200px;
  margin-top: 0.5em;
}
main#app-settings .profile-settings .avatar-preview input[type=text],
main#app-settings .profile-settings .avatar-preview input[type=email] {
  width: 220px;
}
main#app-settings .profile-settings .info-soon {
  margin-bottom: 2em;
  font-style: italic;
}
main#app-settings .profile-settings button.save {
  margin-top: 2em;
}
main#app-settings .organization-general-settings .my-role-info {
  margin-bottom: 2em;
}
main#app-settings .organization-general-settings button.delete {
  margin-top: 5em;
  background: #fee;
}
main#app-settings .organization-members-settings .info-box,
main#app-settings .organization-groups-settings .info-box {
  display: inline-block;
  margin-bottom: 2em;
  line-height: 2em;
}
main#app-settings .organization-members-settings .table-area,
main#app-settings .organization-groups-settings .table-area {
  overflow: auto;
}
main#app-settings .organization-members-settings table,
main#app-settings .organization-groups-settings table {
  border-spacing: 0;
}
@media (hover: hover) {
  main#app-settings .organization-members-settings table tr:hover td,
  main#app-settings .organization-groups-settings table tr:hover td {
    background: #eee;
  }
}
main#app-settings .organization-members-settings table th,
main#app-settings .organization-groups-settings table th {
  text-align: left;
}
main#app-settings .organization-members-settings table th:not(.row-options),
main#app-settings .organization-groups-settings table th:not(.row-options) {
  background: #f8f9fa;
  transition: background 0.1s;
  color: #222;
  text-align: left;
  font-weight: normal;
  overflow: hidden;
  border-bottom-width: 2px;
  text-overflow: ellipsis;
  border: 1px solid #e8e5e3;
  position: relative;
  padding-left: 6px;
  padding-right: 6px;
}
main#app-settings .organization-members-settings table th svg,
main#app-settings .organization-groups-settings table th svg {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
main#app-settings .organization-members-settings table th,
main#app-settings .organization-groups-settings table th,
main#app-settings .organization-members-settings table td,
main#app-settings .organization-groups-settings table td {
  height: 30px;
  white-space: nowrap;
}
main#app-settings .organization-members-settings table th:not(:first-child),
main#app-settings .organization-groups-settings table th:not(:first-child),
main#app-settings .organization-members-settings table td:not(:first-child),
main#app-settings .organization-groups-settings table td:not(:first-child) {
  padding-right: 40px;
}
main#app-settings .organization-members-settings table th.email,
main#app-settings .organization-groups-settings table th.email,
main#app-settings .organization-members-settings table td.email,
main#app-settings .organization-groups-settings table td.email {
  min-width: 240px;
}
main#app-settings .organization-members-settings table td,
main#app-settings .organization-groups-settings table td {
  padding: 0 6px;
}
main#app-settings .organization-members-settings table td img.loading,
main#app-settings .organization-groups-settings table td img.loading {
  width: 12px;
  height: 12px;
}
main#app-settings .organization-members-settings table select,
main#app-settings .organization-groups-settings table select {
  border: none;
  width: 90px;
}
main#app-settings .organization-members-settings .invite {
  margin-top: 2em;
}
main#app-settings .organization-members-settings .invite > p:first-child {
  margin-bottom: 0.5em;
  font-weight: bold;
}
main#app-settings .organization-members-settings .member-options {
  padding: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
  transform: translateY(2px);
}
@media (hover: hover) {
  main#app-settings .organization-members-settings .member-options:hover {
    background: #e8e8e8;
  }
}
main#app-settings .show-access-info {
  cursor: pointer;
  text-decoration: underline;
}
main#app-settings .organization-groups-settings .groups {
  max-width: 640px;
}
main#app-settings .organization-groups-settings .group {
  margin: 50px 0;
}
main#app-settings .organization-groups-settings .group-name {
  margin-bottom: 0.5em;
  font-size: 19px;
  font-weight: 500;
}
main#app-settings .organization-groups-settings .group-name span,
main#app-settings .organization-groups-settings .group-name svg {
  vertical-align: middle;
}
main#app-settings .organization-groups-settings .group-name svg {
  padding: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
  float: right;
}
@media (hover: hover) {
  main#app-settings .organization-groups-settings .group-name svg:hover {
    background: #e8e8e8;
  }
}
main#app-settings .organization-groups-settings .group-accesses {
  margin-bottom: 0.5em;
}
main#app-settings .organization-groups-settings .group-accesses img.loading {
  width: 12px;
  height: 12px;
}
main#app-settings .organization-groups-settings .user-options {
  padding: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  fill: #777;
  cursor: pointer;
  transform: translateY(2px);
}
@media (hover: hover) {
  main#app-settings .organization-groups-settings .user-options:hover {
    background: #e8e8e8;
  }
}
main#app-settings .organization-groups-settings .add-user {
  margin-top: 10px;
}
main#app-settings .organization-groups-settings .add-user span {
  margin-right: 5px;
}
main#app-settings .organization-billing-settings > h2 {
  margin: 1em 0 0.5em 0;
}
main#app-settings .organization-billing-settings > button {
  margin: 5px;
}
main#app-settings .organization-billing-settings .subscription-details,
main#app-settings .organization-billing-settings .invoice-details,
main#app-settings .organization-billing-settings .invoice-settings {
  display: table;
  margin: 0.5em 0;
}
main#app-settings .organization-billing-settings .subscription-details > *,
main#app-settings .organization-billing-settings .invoice-details > *,
main#app-settings .organization-billing-settings .invoice-settings > * {
  display: table-row;
}
main#app-settings .organization-billing-settings .subscription-details > * > *,
main#app-settings .organization-billing-settings .invoice-details > * > *,
main#app-settings .organization-billing-settings .invoice-settings > * > * {
  display: table-cell;
}
main#app-settings .organization-billing-settings .subscription-details > * > *,
main#app-settings .organization-billing-settings .invoice-details > * > *,
main#app-settings .organization-billing-settings .invoice-settings > * > * {
  vertical-align: top;
  padding-right: 10px;
}
main#app-settings .organization-billing-settings .invoice-settings input {
  width: 250px;
}
main#app-settings .organization-billing-settings .invoice-settings textarea {
  font: inherit;
  width: 300px;
  height: 85px;
  padding-top: 3px;
}
main#app-settings .organization-billing-settings .invoice-details > div:first-child {
  font-weight: bold;
}
main#app-settings .declined-organizations-settings th,
main#app-settings .declined-organizations-settings td {
  text-align: left;
  padding-right: 20px;
}
main#app-settings .declined-organizations-settings button {
  height: 24px;
  line-height: 24px;
}
.new-group-popup > p:first-child {
  margin-bottom: 1em;
  font-size: 1.25em;
  font-weight: bold;
}
.new-group-popup input[type=text] {
  margin-left: 10px;
}
.new-group-popup .buttons {
  margin-top: 2em;
}
.new-group-popup .buttons button[type=submit] {
  float: right;
}
.settings-who-has-access-info td:nth-child(2) {
  padding-left: 10px;
  font-weight: bold;
}
.settings-who-has-access-info td.label {
  font-weight: bold;
  font-style: italic;
}
main#app-404 {
  padding-top: 50px;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.5em;
}
main#app-home {
  padding-bottom: 100px;
}
.auth-page .auth-form {
  margin: 0 auto;
  padding: 40px 0;
}

