@font-face {
  font-family: "PT Mono";
  src: url("/static/fonts/PTMono-Regular.ttf");
}

@font-face {
  font-family: "Raleway";
  src: url("/static/fonts/Raleway-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Fira Code";
  src: url("/static/fonts/FiraCode-VariableFont_wght.ttf");
}

@font-face {
  font-family: "Open Sans";
  src: url("/static/fonts/OpenSans-VariableFont_wdth,wght.ttf");
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #efefef;
  margin: 0;
  color: #222;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

h4.error-message {
  color: rgb(233, 32, 79);
}

.fas.fa-user-times {
  color: rgb(233, 32, 79);
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  border-bottom: solid thick #888;
  box-shadow: 0 0 5px 2px #00000088;
  overflow: hidden;
  height: 50px;
  z-index: 4;
}

.brand {
  overflow: hidden;
  padding: 4px 30px;
  margin-right: 20px;
  float: left;
  cursor: pointer;
}

@media (max-width: 369px) {
  .brand {
    margin-right: 0;
    padding: 4px 10px;
  }
}

.brand>img {
  height: 42px;
  width: 42px;
}

.brand>img,
.brand>h1 {
  float: left;
}

.brand>h1 {
  line-height: 42px;
  margin-top: 0;
  margin-bottom: 0;
  color: #e95420;
  font-size: 26pt;
  display: none;
}

@media (min-width: 1080px) {
  .brand>h1 {
    display: block;
  }
}

.site-link {
  height: 42px;
  line-height: 42px;
  margin-right: 5px;
  padding: 0 15px;
  float: left;
  cursor: pointer;
  color: #222;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-top: 8px;
  transition: background-color 0.2s ease;
}

a {
  color: unset;
}

.site-link:hover {
  background-color: #8885;
}

.site-link.active {
  background-color: #888;
  color: white;
}

.site-link.expand-btn .fas.fa-bars {
  line-height: 42px;
  margin-right: 0;
}

.navbar-expand {
  display: none;
}

.navbar-expand.expanded {
  display: block;
  position: fixed;
  top: 50px;
  z-index: 5;
  background-color: #eee;
  left: 0;
  right: 0;
  border-bottom: solid #888;
  box-shadow: 0 7px 5px 2px #0004;
}

.navbar-expand a {
  text-decoration: none;
}

.navlink-expand {
  width: 100%;
  color: #222;
  padding: 10px 30px;
  transition: border-radius 0.4s ease;
  box-sizing: border-box;
}

.navlink-expand:hover {
  background-color: #8885;
  border-radius: 0 30px 30px 0;
}

.navlink-expand.active {
  display: none;
}

.navlink-expand h2 {
  margin: 0;
}

@media (min-width: 920px) {
  .site-link.expand-btn {
    display: none;
  }

  .navbar-expand.expanded {
    display: none;
  }
}

@media (max-width: 309px) {
  .site-link:not(.expand-btn) {
    display: none;
  }

  .site-link.expand-btn {
    display: block;
    background-color: #eee;
  }

  .site-link.expand-btn:hover {
    background-color: #8885;
  }
}

@media (min-width: 310px) {
  @media (max-width: 919px) {
    .site-link:not(.active) {
      display: none;
    }

    .site-link.expand-btn {
      display: block;
      background-color: #eee;
    }

    .site-link.expand-btn:hover {
      background-color: #8885;
    }
  }
}


.site-link>h2 {
  margin: 0;
  font-size: 15pt;
}

.content {
  padding: 50px 0px 0 0px;
  margin: 55px 0px 0 0px;
}

@media (min-width: 500px) {
  .content {
    padding: 50px 30px 0 30px;
    margin: 55px 20px 0 20px;
  }

}

.login-box {
  background-color: white;
  padding: 5px 40px;
  border-radius: 20px;
  margin: 0 5px;
  box-shadow: 0 0 10px #0003;
}

@media (min-width: 400px) {
  .content.login {
    display: grid;
    grid-template-columns: auto 400px auto;
  }

  .login-box {
    grid-column: 2;
    justify-self: center;
  }
}

.content.group,
.content.account {
  max-width: 1074px;
  margin: 55px auto 0 auto;
}

.documentation-box,
.group .group-box,
.author .profile-box,
.account .profile-box,
.account .plots-box,
.info-viewer,
.plot-viewer {
  background-color: white;
  padding: 0 40px;
  box-shadow: 0 0 10px #0003;
}

.documentation-box a {
  color: #e95420;
}

@media (min-width: 500px) {

  .documentation-box,
  .group .group-box,
  .author .profile-box,
  .account .profile-box,
  .account .plots-box,
  .info-viewer,
  .plot-viewer {
    border-radius: 20px;
  }
}

.group .group-box,
.author .profile-box,
.account .profile-box,
.account .plots-box {
  padding: 20px 20px;
  margin-bottom: 25px;
}

@media (min-width: 440px) {

  .group .group-box,
  .author .profile-box,
  .account .profile-box,
  .account .plots-box {
    padding: 20px 40px;
  }

}

.group-info,
.profile-info {
  overflow: hidden;
}

.group-info h5,
.profile-info h5 {
  margin-top: 15px;
}

.group-info p,
.profile-info p {
  margin-top: 5px;
}

.edit-bio {
  padding-left: 12px;
  cursor: pointer;
  color: #e95420;
  transition: color 0.2s ease;
}

.edit-bio:hover {
  color: #ca491a;
}

.profile-section {
  float: left;
  width: 100%;
}

.profile-section:last-child {
  border-top: solid thin #888;
}

@media (min-width: 740px) {
  .profile-section {
    width: 300px;
  }

  .profile-section:last-child {
    float: right;
    border-top: none;
  }
}

.stat-count {
  margin: 5px 0;
  color: #e95420;
}

.stat-count.link {
  cursor: pointer;
  transition: background-color 0.2s ease;
  background-color: #e95420;
  color: white;
  width: max-content;
  padding: 2px 7px;
  border-radius: 4px;
}

.stat-count.link:hover {
  background-color: #ca491a;
}

.account-type {
  margin: 5px 0;
}

.account-type.Premium {
  color: #e95420;
}

.account-type.Free {
  color: #476C9B;
}

.content.index h4,
h5 {
  text-align: left;
  margin-top: 4px;
  margin-bottom: 0;
}

.plot-info {
  margin-bottom: 10px;
  max-width: 480px;
  float: left;
  padding: 10px;
  border: solid 1px #e95f20;
}

.plot-list {
  overflow: hidden;
}

@media (min-width: 440px) {

  .account .plot-list {
    margin-right: -20px;
  }

  .plot-info:nth-child(odd) {
    margin-right: 10px;
  }

  .plot-info {
    border-radius: 8px;
  }

}

.plot-info hr {
  margin: 8px -10px 5px -10px;
  border: none;
  border-bottom: solid 1px #e95420;
}

.plot-info-header {
  overflow: hidden;
}

.plot-info .plot-info-header>h4 {
  margin: 2px;
  float: left;
}

.plot-info-header .title-box {
  float: left;
}

.plot-info-header .title-box>h4,
.plot-info-header .title-box>h5,
.plot-info-header .title-box>h6 {
  margin: 2px;
}

.plot-info-btn {
  float: right;
  margin: 0 0 0 4px;
  border-radius: 4px;
  padding: 6px;
  font-size: 10pt;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 25px;
  box-sizing: border-box;
  text-align: center;
  height: 25px;
}

.plot-info-btn.delete {
  background-color: #e9204f;
  color: white;
}

.plot-info-btn.delete:hover {
  background-color: #b91b40;
}

.plot-info-btn.share,
.plot-info-btn.edit {
  background-color: #555555;
  color: white;
}

.plot-info-btn.share:hover,
.plot-info-btn.edit:hover {
  background-color: #333333;
}

.plot-info-btn.view {
  background-color: #e95420;
  color: white;
}

.plot-info-btn.view:hover {
  background-color: #ca491a;
}

.plot-info .info-section {
  overflow: hidden;
}

.plot-info table {
  width: 300px;
  float: left;
}

.plot-info td:nth-child(2) {
  text-align: right;
}

.plot-info td.expiry-td {
  position: relative;
}

.plot-info button.plot-extend-btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  line-height: 12px;
  font-size: 12pt;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.plot-info button.plot-extend-btn.disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.plot-info button.plot-extend-btn:hover {
  opacity: 1;
}

.plot-info button.plot-extend-btn.disabled:hover {
  background-color: #aaa;
  cursor: not-allowed;
}

.plot-info img {
  float: right;
  width: 80px;
  border-radius: 6px;
  margin-left: 5px;
}

hr {
  margin: 40px 0;
  border: none;
  border-bottom: solid 1px;
}

textarea,
input[type="text"],
input[type="password"],
.selectize-control.multi .selectize-input.has-items,
.selectize-control.multi .selectize-input,
.selectize-control.multi .selectize-input.items.not-full {
  border: 2px solid #888;
  border-radius: 4px;
  padding: 5px;
  max-width: 100%;
}

.selectize-control.multi {
  margin-bottom: 10px;
}

input[readonly] {
  background-color: #efefef;
  border: none;
  cursor: default;
}

.readonly-input-check>input[type="text"][readonly] {
  width: calc(100% - 30px);
}

.readonly-input-check>i {
  float: right;
  width: 30px;
  margin: 0;
  text-align: center;
  line-height: 26px;
}

.readonly-input-check>i.fa-check {
  color: #20e9ba;
}

.readonly-input-check>i.fa-times {
  color: #e9204f
}

textarea {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  resize: vertical;
}

ul.messages {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  width: 100%;
}

ul.messages>li {
  color: white;
  padding: 5px 5px 5px 32px;
}

ul.messages>li.message {
  background: rgb(233, 84, 32);
  background: linear-gradient(90deg, rgba(233, 84, 32, 1) 0%, rgba(233, 84, 32, 1) 30%, rgba(233, 84, 32, 0.1) 100%);
}

ul.messages>li.error {
  background: rgb(233, 32, 79);
  background: linear-gradient(90deg, rgba(233, 32, 79, 1) 0%, rgba(233, 32, 79, 1) 30%, rgba(233, 32, 79, 0.1) 100%);
}

ul.messages>li.success {
  background: rgb(32, 233, 186);
  background: linear-gradient(90deg, rgba(32, 233, 186, 1) 0%, rgba(32, 233, 186, 1) 30%, rgba(32, 233, 186, 0) 100%);
  color: black;
  font-weight: bold;
}

button,
input[type="submit"] {
  background-color: #e95420;
  border: none;
  border-radius: 4px;
  padding: 5px 10px;
  color: white;
  font-size: 12pt;
  width: 100%;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

button:hover,
input[type="submit"]:hover {
  background-color: #ca491a;
}

.custom-file {
  margin-bottom: 15px;
}

.custom-file label {
  font-size: 12pt;
  width: 100%;
  display: inline-block;
  padding-left: 1px;
  margin-bottom: 4px;
}

.custom-file input {
  font-size: 11pt;
  cursor: pointer;
}

.preview-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fffa;
}

.edit-dialogue,
.preview-box {
  margin: 80px auto;
  width: 400px;
  padding: 40px 40px 0 40px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 0 0 10px #0003;
  max-height: 75vh;
  overflow: auto;
}

.preview-box .canvas-box {
  height: 400px;
  margin: 5px 0 20px 0;
}

.preview-box .preview-canvas {
  width: calc(100% - 2px);
  height: 100%;
  border-radius: 4px;
  border: solid 1px #ddd;
}

.edit-dialogue .btn-row,
.delete-dialogue .btn-row,
.preview-box .btn-row {
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.edit-dialogue h5,
.preview-box h5 {
  margin: 0;
}

.edit-dialogue input[type="text"],
.edit-dialogue textarea,
.preview-box input[type="text"],
.preview-box textarea {
  margin-bottom: 10px;
  width: 100%;
}

.edit-dialogue .close-button,
.edit-dialogue .publish-button,
.delete-dialogue .close-button,
.delete-dialogue .delete-button,
.preview-box .close-button,
.preview-box .publish-button,
.info-viewer .publish-button,
.dialogue-section-button {
  float: left;
  width: calc(50% - 10px);
  padding: 5px 0;
  border-radius: 4px;
  text-align: center;
  transition: background-color 0.2s ease;
  cursor: pointer;
  user-select: none;
}

.delete-dialogue .delete-button i,
.edit-bio .fas.fa-pen,
.group-entry.new-group-btn i.fas.fa-plus,
.close-button i,
.publish-button i {
  margin-right: 5px;
}

.edit-dialogue .close-button,
.delete-dialogue .close-button,
.preview-box .close-button,
.dialogue-section-button {
  background-color: #eee;
  color: 222;
  margin-right: 20px;
}

.dialogue-section-button {
  width: 33%;
  border-radius: 0;
  margin-right: 0;
  font-size: 11pt;
  border-left: solid 1px white;
  border-right: solid 1px white;
}

.dialogue-section-button:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border: none;
}

.dialogue-section-button:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
}

.edit-dialogue .close-button:hover,
.delete-dialogue .close-button:hover,
.preview-box .close-button:hover,
.dialogue-section-button:hover {
  background-color: #ddd;
}

.edit-dialogue .publish-button,
.preview-box .publish-button,
.info-viewer .publish-button,
.dialogue-section-button.active {
  background-color: #e95420;
  color: white;
}

.edit-dialogue .publish-button:not(.disabled):hover,
.preview-box .publish-button:not(.disabled):hover,
.info-viewer .publish-button:not(.disabled):hover,
.dialogue-section-button.active:hover {
  background-color: #ca491a;
}

.publish-button.disabled {
  background-color: #ddd;
  color: #888;
  cursor: not-allowed;
}

.delete-dialogue .delete-button {
  background-color: #e9204f;
  color: white;
}

.delete-dialogue .delete-button:hover {
  background-color: #c5123c;
  color: white;
}

.info-viewer .publish-button {
  display: none;
}

.close-button.full-width,
.publish-button.full-width {
  width: 100%;
  float: unset;
}

.content.viewer {
  margin: 0;
  padding: 0;
}

.content.viewer .plot-viewer {
  padding: 0;
  height: calc(100vh - 122px);
  position: relative;
}

.plot-viewer canvas {
  width: 100%;
  height: 100%;
  display: none;
}

.content.viewer .info-viewer {
  display: none;
}

.content.viewer~footer {
  position: fixed;
  width: 100%;
  bottom: 0;
}

.tiny-viewer-btn-row {
  box-sizing: border-box;
  overflow: hidden;
  position: fixed;
  bottom: 45px;
  width: 100%;
  padding: 0 30px;
}

.tiny-viewer-btn-row>.info-btn {
  float: left;
  font-size: 62px;
  color: #222;
  cursor: pointer;
}

.tiny-viewer-btn-row>.home-btn {
  float: right;
  cursor: pointer;
}

.tiny-info-close-btn {
  font-size: 62px;
  margin-left: 15px;
  margin-bottom: -13px;
  cursor: pointer;
}

@media (max-width: 499px) {
  .content.viewer .info-viewer.tiny-shown {
    display: block;
    position: fixed;
    bottom: 45px;
    width: 100%;
    z-index: 2;
    padding: 15px;
    font-size: 1.3em;
    box-sizing: border-box;
  }
  
  .navbar-expand.viewer,
  .header.viewer {
    display: none;
  }
}

@media (min-width: 500px) {
  .tiny-info-close-btn,
  .tiny-viewer-btn-row {
    display: none;
  }

  .content.viewer {
    margin: 55px 20px 0 20px;
    padding: 50px 30px 0 30px;
  }

  .content.viewer .plot-viewer {
    margin-right: 0;
    margin-bottom: 20px;
    height: 600px;
  }

  .plot-viewer canvas {
    border-radius: 20px;
  }

  .content.viewer .info-viewer {
    display: block;
    padding: 20px 40px;
  }
}

@media (min-width: 1000px) {
  .content.viewer {
    box-sizing: border-box;
    padding-bottom: 15px;
    display: grid;
    grid-template-columns: auto 380px;
    column-gap: 20px;
    height: calc(100vh - 90px);
    margin-top: 55px;
  }

  .content.viewer .plot-viewer {
    box-sizing: border-box;
    height: 100%;
    grid-column: 1;
    overflow: hidden;
    margin-bottom: 0;
  }

  .content.viewer .info-viewer {
    grid-column: 2;
    box-sizing: border-box;
    padding: 40px;
  }
}

.info-viewer .info-box {
  display: none;
}

.info-viewer .info-box h3 {
  margin: 0;
}

.info-viewer .info-box h5 {
  margin-top: 10px;
  margin-bottom: 4px;
}

.info-viewer .info-box h6 {
  margin: 8px 0;
  font-weight: unset;
}

.viewer-no-user-warning {
  background-color: #e9204f33;
  padding: 1px 20px;
  border: solid thin #e9204f;
  border-radius: 10px;
}

.plot-viewer #loadingPlot,
.info-viewer #loadingInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 20px;
}

.feed-loading-overlay img,
.plot-viewer #loadingPlot img,
.info-viewer #loadingInfo img {
  width: 100px;
  height: 100px;
}

.plot-viewer #loadingPlot h5,
.info-viewer #loadingInfo h5 {
  margin-left: 12px;
}

.content.index {
  padding: 10px 30px;
  max-width: 1200px;
  margin: 55px auto 25px auto;
  text-align: center;
}

.content.index .news {
  margin-top: 100px;
  margin-bottom: 100px;
}

.content.index .news-list {
  text-align: left;
}

.content.index .news-article {
  background-color: white;
  padding: 10px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  color: black;
  box-shadow: 0 0 5px #0007;
}

.feed-button-row,
.example-button-row {
  overflow: hidden;
  margin: 0 auto;
  display: inline-block;
  padding: 5px
}

.feed-button,
.example-button {
  float: left;
  width: 100px;
  background-color: #fff;
  margin: 0 4px 5px 4px;
  padding: 6px;
  text-align: center;
  cursor: pointer;
  color: #333;
  user-select: none;
  transition: background-color 0.2s ease;
  border-radius: 4px;
}

.feed-button:hover,
.example-button:hover {
  background-color: #e9a288;
}

.feed-button.active,
.example-button.active {
  background-color: #e95420;
  color: white;
  box-shadow: 0 0 5px #0006;
}

.documentation-box {
  max-width: 1000px;
  margin: 0 auto 40px auto;
  padding: 20px 40px;
}

pre[class*="language-"] {
  border-radius: 10px;
}

.feed-plot-box {
  width: 100%;
  height: 300px;
  position: relative;
}

.feed-plot,
.feed-loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 6px;
}

.feed-loading-overlay {
  z-index: 2;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-feed .plot-info {
  width: 100%;
  margin: 10px 0;
  float: unset;
  text-align: justify;
  box-shadow: 0 0 10px #0003;
  background-color: white;
  box-sizing: border-box;
  border: none;
}

@media (min-width: 440px) {
  .community-feed .plot-info {
    margin: 10px auto;
    width: 400px;
  }
}


.community .plots-box {
  text-align: center;
  padding-bottom: 20px;
}

.community-feed .plot-list {
  max-height: unset;
}

.community .plots-box>h3 {
  margin-top: 0;
}

.load-more-button {
  box-sizing: border-box;
  color: #e95420;
  background-color: white;
  padding: 10px;
  width: 100%;
  margin: 0 auto 20px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 10px #0003;
  transition: background-color 0.3s ease;
}

@media (min-width: 440px) {
  .load-more-button {
    width: 400px;
  }
}

.load-more-button:hover {
  background-color: #eee;
}

.content.creator {
  height: calc(100vh - 90px);
  box-sizing: border-box;
  padding: 0 0 0 0;
  border-radius: 10px;
  margin: 55px 0 0 0;
}

#creatorCanvas {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.version-badge {
  font-family: "PT Mono", monospace;
  font-size: 9pt;
  vertical-align: sub;
  padding-left: 1px;
  color: #e95420;
}

.active .version-badge {
  color: #ffc4af;
}

.subsection-header {
  position: fixed;
  top: 55px;
  background-color: #888;
  right: 0;
  left: 0;
  z-index: 4;
  box-shadow: 0 7px 5px 2px #0002;
  overflow: hidden;
  border-bottom: solid 2px white;
  padding: 0 25px;
}

.section-btn {
  color: white;
  float: left;
  padding: 3px 20px 10px 20px;
  margin: 0px 5px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-radius 0.2s ease;
}

.section-btn>h5 {
  font-weight: normal;
}

.section-btn:hover {
  background-color: #aaa;
  color: #222;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.section-btn.active {
  background-color: white;
  color: #222;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

span.docu-anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -120px;
}

.figure {
  border: solid thin #888;
  border-radius: 5px;
  max-width: 100%;
  display: block;
  margin: auto;
  box-shadow: 0 0 10px #0002;
}

.figure-box {
  box-sizing: border-box;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.figure-caption {
  margin: 10px 0 20px 0;
  display: block;
  color: #666;
}

@media (min-width: 440px) {

  .documentation-box p {
    padding-left: 20px;
  }

}

.load-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fffd;
  z-index: 3;
}

.load-overlay img {
  width: 100px;
  height: 100px;
}

.delete-dialogue {
  background-color: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 10px #0008;
  text-align: center;
}

.delete-info-name {
  color: #e95420;
}

.delete-dialogue h1 {
  color: #e9204f;
}

.group-entry {
  padding: 20px 20px;
  background-color: #efefef;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
}

.group-entry:hover {
  background-color: #888;
  color: white;
}

.group-entry:not(last-child) {
  margin-bottom: 10px;
}

.group-entry>h3 {
  margin: 0;
  float: left;
}

.group-list a {
  text-decoration: none;
}

.group-info-symbol {
  float: right;
  height: 22px;
  line-height: 22px;
  margin-left: 20px;
}

.group-info-symbol>i {
  line-height: 22px;
  margin-right: 0;
}

.input-group {
  overflow: hidden;
}

.input-group>.send-button,
.input-group>.copy-button {
  width: 40px;
  float: left;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  cursor: pointer;
}

.input-group>.send-button {
  height: 30px;
}

.input-group>textarea {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.input-group>.copy-button.full-width {
  width: 100%;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.input-group>input[type="text"] {
  width: calc(100% - 40px);
  float: left;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.form-warning {
  font-weight: normal;
  color: #e9204f;
}

.selectize-control.multi .selectize-input [data-value] {
  margin-bottom: 0;
  border: none;
  text-shadow: none;
  box-shadow: none;
  padding: 4px 8px;
  cursor: unset;
}

.selectize-control.multi .selectize-input.has-items {
  padding: 4px 4px 1px;
  box-shadow: none;
  border-radius: 4px;
}

.user-pills-box {
  overflow: hidden;
  margin-top: 8px;
}

.user-pill {
  background-color: #eee;
  width: max-content;
  padding: 2px 8px;
  float: left;
  margin: 0 4px 4px 0;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.user-pill:hover {
  background-color: #ddd;
}

.user-pill .fas.fa-times {
  margin-left: 6px;
  transition: color 0.2s ease;
}

.user-pill:hover .fas.fa-times {
  color: #e9204f;
}

.user-list {
  max-height: 250px;
  overflow: auto;
}

.user-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.user-list .user-item {
  background-color: #ccc;
  border-radius: 8px;
  padding: 4px 8px 4px 10px;
  margin-bottom: 4px;
  overflow: hidden;
}

.user-list .user-item i {
  float: right;
  margin-left: 4px;
  line-height: 30px;
  background-color: #666;
  padding: 0px 16px 0 21px;
  margin-top: -4px;
  margin-bottom: -4px;
  color: white;
  transition: background-color 0.2s ease;
  cursor: pointer;
  width: 21px;
}

.user-list .user-item span:first-child {
  font-weight: bold;
}

.account .user-list .user-item>a:last-child>i,
.author .user-list .user-item>a:last-child>i,
.user-list .user-item>a:nth-child(3):last-child>i,
.user-list .user-item>i:nth-of-type(1) {
  margin-right: -8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.user-list .user-item i.remove-user:hover {
  background-color: #e9204f;
}

.user-list .user-item i.view-page:hover,
.user-list .user-item i.edit-privileges:hover {
  background-color: #e95420;
}

.edit-dialogue hr {
  margin: 25px 0;
}

.edit-dialogue h4 {
  margin-top: 0;
}

.admin-item {
  color: #e95420;
}

button.follow-btn {
  width: 125px;
}

button.follow-btn.unfollow {
  color: #666;
  background-color: #ddd;
}

footer {
  text-align: center;
  font-size: 8pt;
}

.documentation-box h5 {
  margin: unset;
}

.checkbox-row {
  margin: 20px 0;
}

.checkbox-row>input[type="checkbox"] {
  float: right;
}

.docu-table {
  border: solid thin #ddd;
  padding: 12px 10px;
  border-radius: 10px;
  border-collapse: separate;
  margin: 25px 0px;
  background-color: white;
}

.docu-table thead {
  text-align: left;
  vertical-align: bottom;
}

.docu-table td,
.docu-table th {
  padding: 0px 10px 20px 10px;
}

.docu-table tr:last-child td {
  padding-bottom: 0;
}

code,
code[class*="language-"],
pre[class*="language-"] {
  font-family: 'Fira Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  font-size: 0.9em;
}

h5>code {
  font-size: 12pt;
}

/* .tippy-box {
  background-color: black;
}

.tippy-box[data-placement^='top']>.tippy-arrow::before {
  border-top-color: black;
}

.tippy-box[data-placement^='bottom']>.tippy-arrow::before {
  border-bottom-color: black;
}

.tippy-box[data-placement^='left']>.tippy-arrow::before {
  border-left-color: black;
}

.tippy-box[data-placement^='right']>.tippy-arrow::before {
  border-right-color: black;
} */

.docu-color-dot {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  display: inline-block;
}

h5.docu-node-header {
  color: white;
  padding: 8px;
  margin-left: 17px;
}

.docu-node-header.array,
.docu-color-dot.array {
  background-color: #226622;
}

.docu-node-header.value,
.docu-color-dot.value {
  background-color: #f2be00;
  color: black;
}

.docu-node-header.plot,
.docu-color-dot.plot {
  background-color: #e95420;
}

.docu-node-header.color,
.docu-color-dot.color {
  background-color: #4960de;
}

.docu-node-header.matrix,
.docu-color-dot.matrix {
  background-color: #662222;
}

.docu-node-header.legend,
.docu-color-dot.legend {
  background-color: #965841;
}

.docu-node-header.axis,
.docu-color-dot.axis {
  background-color: #a32c00;
}

.docu-table-heading {
  font-size: 10pt;
  margin: 15px 10px -25px 10px;
  border-left: solid #ddd;
  padding: 5px;
  border-top-left-radius: 10px;
  background: white;
  background: linear-gradient(90deg, rgb(221, 221, 221) 0%, rgba(221, 221, 221, 0) 5%, rgba(221, 221, 221, 0) 100%);
}


.lib-link-box {
  margin-top: 30px;
}

@media (min-width: 1400px) {
  .lib-link-box {
    margin-top: 0;
    position: absolute;
    top: 75px;
    right: 25px;
    width: 260px;
  }
}

.lib-link {
  display: block;
  background-color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 10pt;
  color: black;
  box-shadow: 0 0 5px #0007;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.lib-link:hover {
  box-shadow: 0 0 8px #0009;
}

.lib-link .highlight {
  font-weight: bold;
  font-size: 11pt;
}

a.btn-support {
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  justify-content: center;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 0 5px #0007;
  transition: all 0.2s ease-in-out;
}

a.btn-support.kofi {
  background-color: #29abe0;
  color: #fff;
}

a.btn-support.kofi:hover {
  background-color: #2997c4;
  box-shadow: 0 0 8px #0009;
}