:root {
  --catfish-0-url: url('img/cartoons/animated-catfish/catfish-0.png');
  --catfish-1-url: url('img/cartoons/animated-catfish/catfish-1.png');
  --catfish-2-url: url('img/cartoons/animated-catfish/catfish-2.png');
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto/Roboto-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/Roboto/Roboto-Medium.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  font-family: 'Roboto', Arial, Sans-Serif;
  font-weight: normal;
  margin: 0;
}

a {
  text-decoration: none;
  color: #e37042;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.6em;
}

.no-margin-top {
  margin-top: 0;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0;
}

.notification {
  position: fixed;
  z-index: 20000;
  bottom: 25px;
  right: 25px;
  width: 300px;
  padding: 15px;
  border: 1px solid #999999;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  background-color: #ffffff;
}

.notification.visible {
  opacity: 1;
}

.notification.warning {
  color: #ee9900;
  border-color: #ee9900;
}

.notification.error {
  color: #ff0000;
  border-color: #ff0000;
}

.notification.success {
  color: #009900;;
  border-color: #009900;
}

form h1,form h2,form h3,form h4,form h5,form h6 {
  margin: 0;
}

hr {
  width: 100%;
  border-color: #e37042;
  margin-top: 20px;
  margin-bottom: 20px;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.table-header {
  display: table-cell;
  font-weight: bold;
}

.padded-cell {
  padding: 5px;
}

.right-padded-cell {
  padding-right: 10px;
}

.grow-row {
  flex-grow: 1;
}

.dashed {
  border-style: dashed;
}

.hard-wrap {
  word-break: break-all;
}

.container {
  display: flex;
}

.spaced-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-aligned-container {
  align-items: flex-start;
}

.wide-spaced-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.small-spaced-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tight-container {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.full-width {
  width: 100%;
}

.full-width-container {
  width: 100%;
}

.full-width-container input[type=text],.full-width-container input[type=file],.full-width-container input[type=number],.full-width-container textarea {
  box-sizing: border-box;
  width: 100%;
}

app-standard-page form input[type=text],app-standard-page form input[type=number],app-standard-page form input[type=file],app-standard-page form textarea,.form input[type=text],.form input[type=number],.form input[type=file],.form textarea {
  box-sizing: border-box;
  width: 100%;
}

form label,.form label,.form-row label {
  display: flex;
  align-items: center;
  gap: 10px;
}

label.vertical-label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
}

label.short-label {
  align-self: flex-start;
}

label.horizontal-label {
  align-self: flex-start;
  max-width: 100%;
}

label.horizontal-label input[type="checkbox"] {
  flex-shrink: 0;
}

label.full-width-label {
  align-items: stretch;
}

form model-input,.form model-input {
  display: flex;
  flex-direction: column;
}

.form-row model-input {
  display: flex;
}

.no-records-found {
  color: #999999;
}

label.label-container {
  display: block;
}

label.label-container-row {
  display: flex;
}

div.warning,span.warning,p.warning {
  color: #ee9900;
}

div.error,span.error,p.error {
  color: #ff0000;
}

div.small-text,span.small-text,p.small-text {
  font-size: 16px;
}

div.large-text,span.large-text,p.large-text {
  font-size: 24px;
}

div.success,span.success,p.success {
  color: #009900;
}

div.pending,span.pending,p.pending {
  color: #009900;
}

.emphasis-label {
  text-decoration: underline;
}

.minor-emphasis {
  font-weight: bold;
}

.hidden {
  display: none !important;
}

.simple-table {
  border: 1px solid #999999;
  border-collapse: collapse;
}

.simple-table th,.simple-table td {
  border: 1px solid #999999;
  padding: 5px;
  text-align: center;
}

.simple-table th {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.simple-table.no-border {
  border: 0;
}

.simple-table.no-border th,.simple-table.no-border td {
  border: 0;
}

.collapsible-container {
  transition: height 500ms ease-in-out, opacity 500ms ease-in-out;
  opacity: 1;
  overflow: hidden;
}

.tall-container {
  height: 841px;
}

.short-container {
  height: 371px;
}

.very-short-container {
  height: 227px;
}

.collapsed {
  height: 0;
  opacity: 0;
}

.centered-text {
  text-align: center;
}

.right-text {
  text-align: right;
}

.home-page,.standard-page,.full-page {
  font-size: 20px;
  color: #555555;
  line-height: 1.5em;
}

.standard-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.standard-page main {
  flex-grow: 1;
}

.full-page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
}

.full-page main {
  flex-grow: 1;
}

top-nav {
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  gap: 20px;
  width: 100%;
  height: 50px;
  background: #e37042;
}

top-nav a {
  color: #ffffff;
  white-space: nowrap;
}

a.disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

.collection-item-row {
  display: flex;
}

collection-adder {
  display: block;
}

collection-adder.single-field-adder-form .collection-adder-form-content, .form-input-area.single-field-adder-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

collection-adder.single-field-adder-form input[type=submit] {
  background: none;
  padding: 0;
  border: 0;
  color: #00bb00;
  font-size: 25px;
  width: 25px;
  height: 43px;
}

collection-adder.single-field-adder-form label {
  gap: 5px;
}

.single-field-adder-form .collection-adder-input {
  flex-grow: 1;
}

collection-adder-group .form-container {
  gap: 0;
}

.collection-adder-select-text-row {
  flex-grow: 1;
}

.index-page-adder-form select {
  max-width: 120px;
}

.home-header {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  gap: 30px;
  padding: 30px;
  height: 400px;
  background: #00a5e5;
}

.home-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.home-header-title {
  display: flex;
  align-items: center;
  font-size: 103px;
  line-height: 1.1em;
}

.home-header-subtitle {
  font-size: 30px;
  line-height: 1.5em;
}

.home-header-logo {
  height: 159px;
}

.home-main-content section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-top: 200px;
  padding-bottom: 200px;
  padding-right: 50px;
  padding-left: 50px;
  width: 100%;
  box-sizing: border-box;
}

.standard-page section,.app-standard-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  gap: 25px;
}

.app-standard-page h1,.app-standard-page h2,.app-standard-page h3 {
  min-height: 1em;
}

.app-fully-centered-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 50px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.standard-page .cryptocurrency-main-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.register-email-form h2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.cryptocurrency-main-section .coin {
  margin-top: 90px;
}

.home-main-content section:nth-child(2n) {
  background: #eef9ff;
}

.bounded-container {
  max-width: 800px;
  width: 100%;
}

.bounded-container-large {
  max-width: 1100px;
  width: 100%;
}

.horizontal-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.medium-spaced-container {
  gap: 15px;
}

.padded-container {
  padding-top: 15px;
  padding-bottom: 15px;
}

.small-padded-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.spaced-element {
  margin-top: 10px;
  margin-bottom: 10px;
}

.section-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.section-list nav-link {
  min-height: 1.5em;
}

.section-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.import-data-file-button {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background-image: url('img/import-icon.png');
  background-size: cover;
  cursor: pointer;
}

.import-data-file-button input[type=file] {
  display: none;
}

.export-data-file-button {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  width: 25px;
  height: 25px;
  overflow: hidden;
  background-image: url('img/export-icon.png');
  background-size: cover;
  cursor: pointer;
}

.calamari-container {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 450px;
  height: 450px;
}

.calamari-cartoon {
  width: 416px;
}

.captain-cartoon {
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 330px;
}

.code-sample {
  position: absolute;
  bottom: 60px;
  right: 50px;
  width: 450px;
}

.eel-cartoon {
  position: absolute;
  bottom: 150px;
  left: 50px;
  width: 250px;
}

.two-fish-container {
  position: absolute;
  top: 200px;
  right: 50px;
  width: 330px;
  height: 230px;
}

.hermit-crab-cartoon {
  position: absolute;
  width: 130px;
  bottom: -30px;
  right: 50px;
}

.blue-fish-cartoon {
  position: absolute;
  top: 0;
  right: 0;
  width: 230px;
}

.yellow-fish-cartoon {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
}

.catfish-cartoon {
  width: 200px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: var(--catfish-0-url);
  animation: catfish 200ms infinite;
  animation-direction: alternate;
  animation-timing-function: step-end;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 50px;
  text-align: center;
}

.full-page footer {
  padding: 10px;
}

.home-footer {
  background: #eef9ff;
}

.footer-link {
  font-size: 14px;
}

@keyframes catfish {
  0% {
    background-image: var(--catfish-0-url);
  }
  33% {
    background-image: var(--catfish-1-url);
  }
  66% {
    background-image: var(--catfish-2-url);
  }
  100% {
    background-image: var(--catfish-0-url);
  }
}

.copyright-notice {
  font-size: 14px;
}

.home-page .copyright-notice {
  padding-top: 40px;
}

.dialog-background {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #ddf0fe;
}

.dialog-foreground {
  background: #ffffff;
  max-width: 100%;
}

.login-dialog {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
  min-height: 522px;
  gap: 40px;
  box-sizing: border-box;
}

.no-min-height {
  min-height: auto;
}

form,.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.log-in-form {
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  gap: 40px;
  overflow: auto;
  background: #ffffff;
}

.log-in-oauth-section {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.oauth-button-container {
  max-width: 100%;
  box-sizing: border-box;
}

.oauth-button {
  display: flex;
  width: 220px;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center;
  gap: 10px;
  color: #555555;
  font-size: 18px;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
  padding: 6px;
  background-image: linear-gradient(#ffffff,#f5f5f5);
}

.oauth-logo-icon {
  width: 30px;
  height: 30px;
}

.github-logo-icon {
  width: 30px;
  height: 30px;
}

capitalisk-passphrase-input {
  display: flex;
  flex-direction: column;
  position: relative;
}

capitalisk-passphrase-input .passphrase-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

input[type=button]:not(input[disabled]),input[type=submit]:not(input[disabled]),button:not([disabled]) {
  cursor: pointer;
}

input[type=button],input[type=submit],button {
  background: #eeeeee;
  border: 1px solid #aaaaaa;
  border-radius: 5px;
}

input[type=button][disabled],input[type=submit][disabled],button[disabled] {
  opacity: .6;
}

input[type=text],input[type=password],input[type=button],input[type=submit],input[type=number],textarea {
  padding: 7px;
  font-size: 18px;
}

select {
  padding: 7px;
  font-size: 18px;
  background-color: #ffffff;
}

input[type=text],input[type=password],input[type=number],select,textarea {
  border: 1px solid #999999;
  border-radius: 5px;
  min-width: 50px;
}

input[type=file] {
  border: 1px solid #999999;
  border-radius: 5px;
  padding: 10px;
}

input[type=text],input[type=password],input[type=number],input[type=button],input[type=submit],select {
  height: 43px;
  box-sizing: border-box;
}

input[type=text]:focus,input[type=password]:focus,input[type=number]:focus,input[type=file]:focus,select:focus,textarea:focus {
  border-color: #00a5e5;
  outline-color: #00a5e5;
  outline-width: 1px;
  outline-style: solid;
}

input[type=text].error,input[type=password].error,input[type=number].error,input[type=file].error,select.error,textarea.error {
  border-color: #ff0000;
  outline-color: #ff0000;
}

input[type=checkbox].error {
  accent-color: #ff0000;
}

input[type=text].warning,input[type=password].warning,input[type=number].warning,input[type=file].warning,select.warning,textarea.warning {
  border-color: #ee9900;
  outline-color: #ee9900;
}

input[type=text].success:focus,input[type=password].success:focus,input[type=number].success:focus,input[type=file].success:focus,select.success:focus,textarea.success:focus {
  border-color: #009900;
  outline-color: #009900;
}

.passphrase-container input {
  box-sizing: border-box;
  width: 15.74%;
  margin-top: 0;
  margin-bottom: 0;
}

input.error,textarea.error {
  border: 1px solid #ff0000;
}

input.warning,textarea.warning {
  border: 1px solid #ee9900;
}

.medium-input {
  width: 300px;
  max-width: 100%;
  box-sizing: border-box;
}

input[type=text].long-input,input[type=password].long-input {
  width: 500px;
  max-width: 100%;
  box-sizing: border-box;
}

.service-auth-key-label-text-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
}

.service-auth-key input[type=text] {
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  color: #ffffff;
}

input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0;
}

.plus-icon, collection-adder.plus-adder-form form input[type=submit], collection-adder-form.plus-adder-form input[type=submit] {
  background-color: transparent;
  border: 0;
  background-image: url('img/plus-icon.png');
  background-size: cover;
}

.spinning-icon {
  background-image: url('img/loading-spinner.png');
  background-size: cover;
}

.icon-large {
  width: 100px;
  height: 100px;
}

.icon-small, collection-adder.plus-adder-form form input[type=submit], collection-adder-form.plus-adder-form input[type=submit] {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.model-section-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.model-fields-button, .model-views-button, .model-access-button, .model-indexes-button {
  flex-grow: 1;
  flex-shrink: 1;
  width: 185px;
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position-x: center;
  background-position-y: top;
}

.model-access-button {
  background-position-y: bottom;
}

.model-fields-button {
  background-image: url('img/eel-coral-fields.jpg');
}

.model-views-button {
  background-image: url('img/captain-views.jpg');
}

.model-access-button {
  background-image: url('img/hermit-crab-security.jpg');
}

.model-indexes-button {
  background-image: url('img/calamari-indexing.jpg');
}

.model-data-button {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  background-image: url('img/data-button-bg.jpg');
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}

.model-data-button a, .model-fields-button a, .model-views-button a, .model-access-button a, .model-indexes-button a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.8em;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
}

.model-schema-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.multisig-indicator.spinning,.spinning {
  animation: spin 1s infinite linear;
}

.multisig-indicator.error {
  color: #ff0000;
}

.loading-spinner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  height: 419px;
  box-sizing: border-box;
}

.loading-spinner-container.full-height {
  height: 462px;
}

.loading-spinner-container-small {
  color: #bbbbbb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  height: 30px;
  box-sizing: border-box;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.form-panel {
  display: flex;
  align-items: center;
  gap: 10px;
}

.passphrase-show-hide-button {
  position: absolute;
  font-size: 18px;
  top: -30px;
  right: 0;
}

.error-area:not(.error) {
  display: none;
}

.control-panel-nav {
  display: flex;
  justify-content: center;
}

.control-panel-nav bread-crumbs {
  padding: 25px 25px 0 25px;
}

bread-crumbs {
  display: block;
  min-height: 30px;
  line-height: 1.5em;
}

bread-crumbs a {
  color: #00a5e5;
}

.bread-crumbs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.limited-width-label,.limited-width-medium-label,.limited-width-large-label,.limited-width-larger-label,nav-link a {
  display: inline-block;
  overflow-x: hidden;
  vertical-align: bottom;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}

.limited-width-medium-label {
  max-width: 220px;
}

.limited-width-large-label {
  max-width: 400px;
}

.limited-width-larger-label {
  max-width: 450px;
}

.medium-width-label {
  width: 220px;
}

.cross-button {
  color: #ff0000;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
}

.rebuild-button {
  color: #00bb00;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 16px;
}

.up-button,.down-button {
  width: 20px;
  color: #999999;
  cursor: pointer;
}

.up-button.disabled,.down-button.disabled {
  color: #cccccc;
  cursor: default;
}

.plus-circle-button {
  color: #00bb00;
  font-size: 25px;
  cursor: pointer;
}

span.left-spaced-icon {
  margin-left: 10px;
}

span.right-spaced-icon {
  margin-right: 20px;
}

.pencil-button {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  padding-left: 5px;
  padding-right: 5px;
  transform: scaleX(-1);
}

.section-list-row {
  display: flex;
  gap: 5px;
  align-items: center;
}

.section-list-form-row {
  height: 43px;
}

.section-list-row-medium-cell {
  box-sizing: border-box;
  width: 220px;
}

.section-field-list-name-cell {
  box-sizing: border-box;
  width: 270px;
}

.section-field-list-type-cell {
  box-sizing: border-box;
  width: 133px;
}

.section-list-row-large-cell {
  box-sizing: border-box;
  width: 250px;
}

.section-list-row-larger-cell {
  display: flex;
  box-sizing: border-box;
  width: 290px;
}

.section-list-row-larger-block-cell {
  box-sizing: border-box;
  width: 290px;
}

.section-list-row-narrow {
  max-width: 500px;
}

.field-type-constraints-container {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #888888;
}

.field-type-constraints-container label {
  box-sizing: border-box;
  padding-left: 50px;
}

.field-name-input {
  width: 266px;
}

.field-type-select {
  width: 135px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.form-row-spaced {
  gap: 10px;
}

.form-row-narrow {
  display: flex;
  justify-content: flex-start;
  max-width: 500px;
  gap: 5px;
}

.form-row-wrapping {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.form-input-area {
  display: flex;
  align-items: center;
  gap: 5px;
}

.full-width-form {
  width: 100%;
}

.medium-form {
  max-width: 600px;
  width: 100%;
}

.narrow-form {
  max-width: 500px;
  width: 100%;
}

.very-narrow-form {
  max-width: 300px;
  width: 100%;
}

form.small-spaced-form,.form.small-spaced-form {
  gap: 5px;
}

model-input.input-long input {
  width: 100%;
  max-width: 100%;
}

confirm-modal {
  --title-bar-display: none;
  --footer-display: none;
  --modal-width: 500px;
}

.import-modal {
  --modal-width: 500px;
}

.confirm-modal-content {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
  padding: 20px;
}

.confirm-modal-content b {
  word-break: break-word;
}

.confirm-modal-buttons-container {
  display: flex;
  gap: 5px;
}

.records-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.user-data-model-table-container {
  width: 100%;
  min-height: 480px;
}

.user-data-model-table {
  width: 100%;
  table-layout: fixed;
}

.user-data-model-table tr {
  height: 43px;
}

.user-data-paginator-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.current-page-number-container {
  width: 60px;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prev-page-button,.next-page-button {
  padding: 10px;
}

.prev-page-button:not([disabled]),.next-page-button:not([disabled]) {
  cursor: pointer;
}

model-input .error-message-container.error {
  font-size: 16px;
}

.view-keys-builder-row,.collection-adder-select-text-row {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}

.view-keys-builder-row model-input,.collection-adder-select-text-row input {
  flex-grow: 1;
}

model-indexes-page input.collection-adder-input[type=text] {
  width: auto;
}

.view-operation-checkbox-container {
  display: flex;
  gap: 20px;
}

.view-operation-label {
  width: 75px;
  flex-shrink: 0;
}

.view-operation-where-label {
  width: 80px;
  flex-shrink: 0;
}

.view-transform-container {
  align-items: flex-start;
}

.view-transform-where-container {
  width: 100%;
}

.view-transform-where-container .view-input-long input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.view-transform-where-container select {
  max-width: 309px;
  width: 100%;
}

.view-section-container .label-container {
  width: 100%;
}

.view-section-container .label-container.short-label {
  width: auto;
}

.view-section-container .select-view-fields {
  max-width: 120px;
}

.view-order-by-container select {
  max-width: 159px;
  width: 100%;
}

.view-where-inputs-container {
  display: flex;
  flex-direction: column;
  margin-left: 85px;
}

.order-by-select select {
  min-width: 120px;
}

.account-model-link a {
  color: #00a5e5;
}

.service-button {
  width: 150px;
}

.access-model-fields-collection-viewer {
  max-width: 100%;
}

.access-model-field-collection-reducer {
  max-width: 100%;
}

.tab-container {
  display: flex;
}

.tab {
  width: 80px;
  height: 30px;
  padding: 10px;
  text-align: center;
  border: 1px solid #999999;
  border-radius: 5px 5px 0 0;
  background-color: #eeeeee;
  cursor: pointer;
  border-left: 0;
}

.first-tab {
  border-left: 1px solid #999999;
}

.active-tab {
  border-bottom: 0;
  background-color: inherit;
  cursor: default;
}

.tab-gap {
  flex-grow: 1;
  border-bottom: 1px solid #999999;
}

.tab-area-end {
  border-bottom: 1px solid #999999;
}

.trimmed-link {
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.medium-text-icon {
  font-size: 25px;
  height: 25px;
}

.clickable {
  cursor: pointer;
}

.console-box {
  display: flex;
  box-sizing: border-box;
  word-break: break-all;
  flex-direction: column-reverse;
  align-items: flex-start;
  width: 100%;
  font-size: 16px;
  padding: 10px;
  height: 497px;
  overflow-y: auto;
  color: #ffffff;
  background-color: #555555;
}

.console-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}

.service-url-container {
  word-break: break-all;
}

.auth-button-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-button-area input[type=submit] {
  width: 250px;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.api-credentials-table th, .api-credentials-table td {
  text-align: left;
}

td.centered-text {
  text-align: center;
}

td.right-text {
  text-align: right;
}

.api-credentials-table td input[type=checkbox] {
  display: inline-block;
}

.md-visible-cell {
  display: none;
}

@media (max-width: 1850px) {
  .code-sample {
    width: 300px;
    bottom: 170px;
  }
}

@media (max-width: 1500px) {
  .calamari-container {
    top: 130px;
    right: 0;
    width: 400px;
    height: 400px;
  }

  .calamari-cartoon {
    width: 300px;
  }

  .captain-cartoon {
    left: 20px;
    width: 300px;
  }

  .code-sample {
    display: none;
  }

  .two-fish-container {
    right: 50px;
    width: 190px;
    height: 160px;
  }

  .blue-fish-cartoon {
    width: 150px;
  }

  .yellow-fish-cartoon {
    width: 60px;
  }

  .hermit-crab-cartoon {
    width: 80px;
    bottom: -20px;
    right: 50px;
  }

  .eel-cartoon {
    left: 20px;
    width: 200px;
    bottom: 200px;
  }
}

@media (max-width: 1300px) {
  .captain-cartoon {
    width: 200px;
  }

  .two-fish-container {
    top: auto;
    bottom: 50px;
  }

  .hermit-crab-cartoon {
    width: 80px;
    bottom: -20px;
    right: 50px;
  }

  .eel-cartoon {
    left: 20px;
    width: 160px;
    top: auto;
    bottom: 0;
  }

  .catfish-cartoon {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 1100px) {
  .dialog-foreground {
    min-height: 100%;
  }

  capitalisk-log-in,.log-in-form {
    max-width: 100%;
  }

  .calamari-container {
    top: 280px;
    right: 0;
  }

  .calamari-cartoon {
    width: 250px;
  }

  .home-main-content section {
    padding-top: 250px;
    padding-bottom: 250px;
  }

  .standard-page .cryptocurrency-main-section {
    flex-direction: column;
    align-items: center;
  }

  .cryptocurrency-main-section .coin {
    margin-top: 30px;
  }
}

@media (max-width: 900px) {
  .model-schema-section {
    flex-wrap: wrap;
  }

  .model-fields-button, .model-views-button, .model-access-button, .model-indexes-button {
    width: calc(50% - 20px);
  }

  .md-hidden {
    display: none;
  }

  .md-visible-cell {
    display: table-cell;
  }
}

@media (max-width: 700px) {
  .home-header-logo {
    height: 120px;
  }

  .home-header-title {
    font-size: 68px;
  }

  .home-header-subtitle {
    font-size: 20px;
  }

  .home-main-content section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-footer h2 {
    font-size: 26px;
  }

  input[type=text],input[type=password],input[type=number],input[type=button],input[type=submit],select {
    padding: 10px;
    font-size: 16px;
  }

  .passphrase-container input[type=text],.passphrase-container input[type=password] {
    width: 230px;
  }

  .view-parameters-container select {
    min-width: 100px;
  }

  .view-transform-container .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .view-where-inputs-container {
    margin-left: 0;
    max-width: 100%;
  }

  .view-transform-where-container model-input[type=text] {
    width: 100%;
  }

  .view-transform-where-container .view-input-long input {
    width: 100%;
  }

  .sm-hidden {
    display: none;
  }
}

@media (max-width: 600px) {
  .model-data-button a, .model-fields-button a, .model-views-button a, .model-access-button a, .model-indexes-button a {
    font-size: 1.5em;
  }

  .home-header {
    gap: 20px;
  }

  .home-header-title {
    font-size: 63px;
  }

  .home-header-subtitle {
    font-size: 18px;
  }

  .home-header-logo {
    height: 110px;
  }

  top-nav {
    justify-content: space-between;
    font-size: 16px;
  }

  .home-footer h2 {
    font-size: 22px;
  }

  input[type=text],input[type=password],input[type=number],input[type=button],input[type=submit] {
    box-sizing: border-box;
    width: 100%;
  }

  .passphrase-container input[type=text],.passphrase-container input[type=password] {
    box-sizing: border-box;
    width: 100%;
  }

  .form-input-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .app-page .app-xs-hidden {
    display: none;
  }

  .xs-hidden {
    display: none;
  }

  bread-crumbs {
    font-size: 16px;
  }

  .limited-width-medium-label {
    max-width: 140px;
  }

  .limited-width-large-label {
    max-width: 250px;
  }

  .limited-width-larger-label {
    max-width: 290px;
  }

  .section-list-row {
    justify-content: space-between;
  }

  .section-list-row .cross-button {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
  }

  .collection-adder-select-text-row,collection-adder.index-page-adder-form .collection-adder-form-content {
    flex-direction: column;
  }

  .collection-adder-select-text-row {
    width: 100%;
    align-items: stretch;
  }

  .form-input-area select {
    width: 100%;
  }

  .index-page-adder-form select {
    max-width: 100%;
  }

  .section-list-row-larger-cell {
    max-width: 200px;
  }

  .tab {
    width: auto;
    overflow-x: hidden;
    text-overflow: ellipsis;
    padding-left: 7px;
    padding-right: 7px;
  }

  .first-tab {
    flex-shrink: 0;
  }

  .very-narrow-form {
    max-width: none;
  }

  .calamari-container {
    right: calc(50% - 45vw);
    width: 400px;
    height: 400px;
    max-width: 90vw;
    max-height: 90vw;
  }

  .api-credentials-table {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .service-auth-key-label-text-link {
    flex-direction: column;
  }

  .notification {
    width: auto;
    left: 25px;
    right: 25px;
  }

  .xs-very-small-input-container {
    max-width: calc(25% - 3.75px);
  }

  .model-schema-section {
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .model-fields-button, .model-views-button, .model-access-button, .model-indexes-button {
    width: 100%;
  }
}

@media (max-width: 350px) {
  .xs-very-small-input-container {
    max-width: 80px;
  }

  top-nav {
    gap: 10px;
    font-size: 14px;
  }

  bread-crumbs {
    font-size: 14px;
  }

  .home-header {
    flex-direction: column;
  }

  .calamari-container {
    top: 330px;
  }

  .xxs-hidden {
    display: none;
  }

  capitalisk-log-in h2 {
    font-size: 20px;
  }

  .limited-width-medium-label {
    max-width: 100px;
  }

  .limited-width-large-label {
    max-width: 225px;
  }

  .view-operation-checkbox-container {
    flex-direction: column;
  }

  .section-list-row-larger-cell {
    max-width: 150px;
  }

  .progress-container {
    font-size: 14px;
  }
}
