@import url(https://rsms.me/inter/inter.css);

:root {
  --key-color: #00c0f3;
  --strong-color: #373737;
  /*--medium-color: #a2a2a2;*/
  --medium-color: #aeb0b3;
  --outline-color: #7b7f82;
  --light-color: #dcdcdc;
  --extra-light-color: #f5f5f5;
  --light-text-color: #bbbbbb;
  --medium-text-color: #808080;
  --border-radius: 8px;
  --content-width: 0;
  --overlay-height: 130px;
  --c-x: 0px;
  --c-y: 0px;
  --c-duration: 0.7s;
}

html {
  height: 100%;
}

body {
  margin: 0;
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  height: 100%;
  min-width: 300px;
  color: var(--strong-color);
}

#root {
  height: 100%;
}

a {
  color: var(--key-color);
  text-decoration: none;
}

.text-block p a,
.nav a {
  text-decoration: underline;
}

a.link {
  cursor: pointer;
}

a.default {
  cursor: default;
}

.full-screen {
  height: 100%;
  display: flex;
}

.flex {
  display: flex;
  align-items: center;
}

.center-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.inset {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  text-align: center;
  height: 100%;
}

.top {
  justify-content: start;
  padding-top: 100px;
}

.logo-small {
  width: 50px;
  height: 40px;
}

h1 {
  color: var(--key-color);
  font-size: 95px;
  letter-spacing: -0.022em;
  margin: 10px 0;
}

.index-panel h1 {
  margin-left: 10px;
  margin-bottom: 6px;
  margin-top: 0.3em;
  /*text-transform: uppercase;*/
  line-height: 0.9;
}

@media (max-width: 480px) {
  .index-panel h1 {
    font-size: 52px;
    margin-top: 0.7em;
  }
}

.padded h1,
.margin h1 {
  margin-left: -4px;
}

h2 {
  color: var(--key-color);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 10px 0;
}

.index-panel h2 {
  font-size: 48px;
  margin-bottom: 0;
}

p {
  font-size: 20px;
  letter-spacing: -0.017em;
  color: var(--medium-color);
  padding: 0 10px;
}

p.desc {
  margin-top: 0;
}

.index-panel p,
.index-panel .p {
  padding: 0;
  margin-bottom: 1.5em;
  font-size: 13px;
  line-height: 1.65;
  color: var(--medium-text-color);
  letter-spacing: 0.2px;
}

.font-13 {
  font-size: 13px;
}

.index-panel .header p {
  font-size: 30px;
  line-height: 1;
  color: #ccc;
  font-weight: 500;
  margin-top: 0;
  letter-spacing: -0.017em;
}

.index-signup button,
.index-signup input[type="text"] {
  margin-bottom: 0;
  font-size: 13px;
  padding: 9px 12px;
}

.index-signup input[type="text"] {
  margin-right: 8px;
  background-color: white;
}

.index-signup {
  margin-bottom: 1em;
  background-color: #ebebec;
  border-radius: 8px;
  padding: 10px;
}

.index-signup .label {
  margin-bottom: 0.7em;
  margin-top: 0.2em;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1.5;
}

.demo {
  height: 410px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 32px 0;
}

.demo .overlay-content {
  padding: 16px;
  padding-top: 0;
  font-size: 12px;
}

.demo input[type="text"].focused {
  border-color: var(--outline-color);
}

.demo .overlay {
  transition: all 0.2s ease-out;
  opacity: 0;
  z-index: unset;
  position: absolute;
}

.demo .tag-picker {
  position: absolute;
}

.demo .picker-stack {
  height: 220px;
}

.demo .display {
  margin-right: 16px;
  width: calc(100% - 42px);
}

.demo .cover {
  position: absolute;
  left: -16px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease-out;
  padding-top: 60px;
  border-radius: 8px;
}

@media (max-width: 730px) {
  .demo .cover {
    left: 0;
  }
}

.demo .block,
.how-to-img .block,
.how-to .block {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.how-to-display .display {
  margin-left: 35px;
  overflow: initial;
}

.how-to .edit-section {
  position: relative;
}

.cursor {
  background-color: rgba(255, 255, 255, 0.4);
  width: 36px;
  height: 36px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0px 8px 2px rgba(0, 0, 0, 0.15);
  left: var(--c-x);
  top: var(--c-y);
  transition: opacity 0.1s ease-out, left var(--c-duration) ease-in-out,
    top var(--c-duration) ease-in-out;
}

@keyframes cursor-press {
  50% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

.cursor-press {
  animation: cursor-press 200ms ease-in-out 0s 1 running forwards;
}

.how-to-img {
  display: flex;
  justify-content: center;
  position: relative;
}

.how-to-img .overlay {
  z-index: unset;
}

.how-to {
  position: relative;
}

.how-to .display-title {
  position: relative;
}

.how-to .h-bars-new {
  position: relative;
}

.how-to a.add {
  position: relative;
}

.how-to select {
  opacity: 1;
}

.how-to-img .overlay.callouts {
  margin-left: 35px;
}

.callout {
  position: absolute;
  right: 100%;
  top: 5px;
  display: flex;
  align-items: center;
}

.callout .num {
  color: var(--key-color);
  background-color: white;
  font-weight: 500;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
  width: 21px;
  height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.callout .line {
  width: 22px;
  margin-right: 6px;
  border-color: #bbbbbb;
  border-bottom: none;
}

.callout.right {
  right: unset;
  left: 100%;
}

.callout.right .line {
  margin-left: 5px;
  margin-right: 0;
}

.display .callout {
  top: 8px;
}

.display .callout .line {
  width: 18px;
}

.edit-control .callout {
  top: -1px;
}

.display-edit .callout {
  right: 48px;
  top: 0;
}

.display-drag .callout {
  top: 0;
}

.display-title .callout {
  top: -2px;
}

.h-bars-new .callout {
  top: 2px;
}

.statement_body .callout {
  top: 14px;
}

.display-note .callout {
  top: 5px;
}

.edit-title .callout {
  top: -4px;
}

.plus-label {
  background-color: var(--key-color);
  color: white;
  border-radius: 3px;
  padding: 2px 5px;
  margin-left: 5px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: normal;
}

.text-block h3.how-to-step {
  text-transform: none;
  font-size: 13px;
  margin: 0;
}

.message {
  font-size: 15px;
  letter-spacing: -0.009em;
  color: var(--medium-color);
  padding: 0 10px;
  margin-bottom: 2em;
}

.index-panel .message {
  font-size: 13px;
  text-align: center;
  color: var(--strong-color);
}

.highlight {
  font-weight: 500;
  padding: 4px;
  font-size: 16px;
  background: #ffffbb;
}

.overlay-message {
  margin-bottom: 1em;
}

.overlay-message.icon {
  padding-left: 21px;
  position: relative;
}

svg.downgrade {
  stroke-width: 1.5px;
  stroke: orangered;
  vertical-align: middle;
  margin-right: 5px;
  fill: none;
  position: absolute;
  left: 0;
}

div.downgrade {
  color: var(--strong-color);
  background-color: #ececec;
  padding: 1em;
  margin: 1em 0;
  border-radius: 5px;
}

div.downgrade button {
  font-size: 13px;
  margin-bottom: 0;
  cursor: pointer;
  padding: 9px 12px;
}

div.downgrade h3 {
  font-size: 14px;
}

.m_em_top {
  margin-top: 1em;
}

.m_em_btm {
  margin-bottom: 1em;
}

.light-text {
  color: var(--light-text-color);
}

.medium-text {
  color: var(--medium-text-color);
}

.error {
  color: #eb1c26;
  margin-bottom: 1em;
  text-align: left;
}

.error:first-letter {
  text-transform: uppercase;
}

.info {
  color: var(--strong-color);
  margin-bottom: 1em;
}

.inset h1 {
  margin-left: 10px;
  margin-bottom: 0;
}

.inset p {
  margin-top: 0;
}

button,
input[type="text"],
input[type="password"] {
  background-color: #ececec;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 5px;
  color: var(--strong-color);
  margin-bottom: 1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

input[type="text"],
input[type="password"] {
  width: 100%;
}

input[type="checkbox"] {
  margin-right: 6px;
}

.overlay-field input[type="text"] {
  margin-bottom: 0;
}

button.key {
  background-color: var(--key-color);
  color: white;
  position: relative;
}

.overlay button.key {
  border: 1px solid var(--key-color);
}

.overlay button.delete {
  padding: 9px 12px;
}

.welcome-overlay button.key {
  border: none;
}

button.key.loading {
  color: var(--key-color);
}

button.loading {
  color: #ececec;
}

button.delete {
  background-color: orangered;
  color: white;
  position: relative;
}

button.delete.can_disable:disabled {
  background-color: var(--light-color);
  color: var(--medium-text-color);
}

button.delete.loading {
  color: orangered;
}

.footer-buttons button {
  width: 100%;
}

.footer-buttons {
  width: 320px;
  margin-bottom: 20px;
}

@media (max-width: 320px) {
  .footer-buttons {
    width: 280px;
  }
}

.attr-row {
  margin-bottom: 1em;
  position: relative;
}

.overlay-field .attr-row {
  margin-bottom: 0;
  margin-top: 1em;
}

.attr-label {
  width: calc(33% - 18px);
  height: 32px;
  line-height: 32px;
  padding-left: 15px;
  color: var(--medium-text-color);
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  position: absolute;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 430px) {
  .attr-label {
    line-height: 38px;
  }
}

.attr-row input[type="text"].attr-value {
  margin-bottom: 0;
  padding-left: 33%;
  padding-right: 30px;
}

.attr-row .menu {
  position: absolute;
  right: 0;
  top: 0;
  padding-right: 7px;
  height: 100%;
}

.attr-row .menu svg {
  vertical-align: middle;
}

.attr-nav {
  text-transform: uppercase;
  margin: 1em 0;
}

.attr-nav span.pad {
  padding: 0 6px;
}

.attr-nav a {
  color: var(--strong-color);
  text-decoration: underline;
}

.attr-nav a.selected {
  color: var(--medium-color);
  text-decoration: none;
}

.header-bar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid var(--light-color);
  height: 60px;
  padding-top: env(safe-area-inset-top);
  background-color: #fff;
  z-index: 1;
}

.header-bar .logo {
  margin-top: 12px;
  width: 40px;
  height: 35px;
}

.nav-bar {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  height: 60px;
}

@media (max-width: 480px) {
  .no-mini {
    display: none;
  }
}

.centered {
  max-width: 822px;
  margin: 0 auto;
  position: relative;
}

.touch .centered {
  margin: 0;
}

@media (min-width: 822px) {
  .touch .centered {
    margin: 0 auto;
  }
}

@media (max-width: 846px) {
  .centered {
    margin: 0 12px;
  }
}

.touch .header-bar .centered {
  margin: 0 16px;
}

.panel,
.index-panel {
  border: 1px solid var(--light-color);
  border-radius: var(--border-radius);
  margin-top: 2em;
  margin-bottom: 2em;
}

@media (max-width: 730px) {
  .index-panel,
  .index-section {
    margin-right: 16px;
    margin-left: 16px;
  }
}

.touch .panel {
  border: none;
  margin-top: 0;
}

@media (max-width: 430px) {
  .panel {
    border: none;
    margin-top: 0;
  }
}

.index-line {
  border-bottom: 1px solid var(--light-color);
  margin: 0 16px;
}

.communicate_wrap {
  height: 730px;
  overflow: hidden;
}

.text-block .index-line {
  margin: 16px 0 24px 0;
}

.footer {
  padding: 8px 16px;
  color: var(--medium-text-color);
  margin-top: 4em;
  font-size: 11px;
}

.footer a {
  text-transform: uppercase;
  padding: 1em 0.5em;
  color: var(--medium-text-color);
}

.footer a.first {
  padding-left: 0;
}

@media (max-width: 730px) {
  .footer {
    display: flex;
  }

  .footer .dot {
    display: none;
  }

  .footer .f-sec {
    flex: 1;
  }

  .footer a {
    display: block;
    padding: 4px 0;
  }
}

/* parent-detail */

.detail-col {
  border-left: 1px solid var(--light-color);
  flex: 1;
  height: 100%;
  overflow-y: scroll;
}

.parent-col {
  width: 300px;
}

.parent-list {
  height: calc(100% - 49px);
  overflow: scroll;
}

.no-header .parent-list {
  height: 100%;
}

.parent-list .empty-message {
  height: calc(100vh - 270px);
  font-size: 16px;
  color: var(--light-text-color);
  flex-direction: column;
}

.empty-message a {
  font-size: 14px;
  margin-top: 0.5em;
}

@media (max-width: 430px) {
  .detail-col {
    border: none;
  }

  .parent-col {
    width: 100%;
  }

  .parent .detail-col {
    display: none;
  }

  .detail .parent-col {
    display: none;
  }

  .parent-list {
    overflow: auto;
    padding-bottom: 70px;
  }

  .parent-list .empty-message {
    height: calc(100vh - 340px);
    font-size: 18px;
  }

  .empty-message a {
    font-size: 16px;
  }
}

.detail-view {
  color: var(--strong-color);
}

.index-panel .detail-view {
  border: 1px solid gainsboro;
  margin: 48px 16px 48px 0;
  border-radius: 8px;
}

@media (max-width: 730px) {
  .index-panel .detail-view {
    margin-left: 16px;
  }
}

.detail-section {
  padding: 20px;
}

.index-panel .detail-section {
  padding: 16px;
}

.index-panel .item-entries {
  padding: 8px 16px;
}

.detail-graph {
  border-bottom: 1px solid var(--light-color);
  position: relative;
}

.detail-graph svg {
  display: block;
}

.shadow {
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 3px;
  left: 0;
  background: linear-gradient(#eaeaea, #ffffff);
}

.detail-view h3 {
  flex: 1;
  margin: 0;
}

.item-title {
  display: flex;
  margin-bottom: 4px;
  position: relative;
  align-items: flex-start;
}

.item-title.with-back h3 {
  padding-left: 28px;
}

.item-title button {
  margin: 0 4px 0 1em;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
}

.item-title .menu {
  margin: 2px 0;
}

.tags {
  line-height: 1.5;
}

.tags .tag::after {
  content: ", ";
}

.tags .tag:last-child::after {
  content: "";
}

.data_row .tags {
  color: var(--medium-text-color);
  margin-top: 2px;
  line-height: 1.3;
}

.item-entries .data_row .tags {
  color: var(--strong-color);
}

.tags a {
  color: var(--strong-color);
  text-decoration: underline;
}

.item-entries {
  padding-bottom: 2em;
}

.item-entries .data_row {
  display: flex;
  border-radius: 0;
  color: var(--medium-text-color);
  font-size: 11px;
  background-color: white;
}

.item-entries .detail-row,
.detail-row {
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
}

.detail-row .date {
  margin-right: 1em;
}

.item-entries {
  padding: 8px 16px;
}

.detail-row:last-child {
  border: none;
}

.touch .item-entries .data_row {
  font-size: 13px;
}

@media (max-width: 430px) {
  .item-entries .data_row {
    font-size: 13px;
  }
}

.item-entries .data_row .edit-button {
  height: 20px;
}

.item-entries .data_row:last-child {
  border: none;
}

.item-entries .date {
  flex: 1;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.f1 {
  flex: 1;
}

.fa {
  flex: auto;
}

.f0 {
  flex-shrink: 0;
}

.no-elem-selected {
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: var(--light-text-color);
}

input.search {
  background: none;
  font-size: 14px;
  margin-bottom: 0;
}

input.search::placeholder {
  color: var(--light-text-color);
}

.touch input.search {
  font-size: 17px;
}

hr {
  border: none;
  border-bottom: 1px solid #ececec;
  margin: 0 16px;
}

.dropdown-options hr {
  margin: 5px 0;
}

.nav-divider {
  width: 1px;
  height: 22px;
  background-color: #e2e2e2;
  display: inline-block;
  margin: 0 12px 0 10px;
}

.nav-bar a {
  font-size: 13px;
  color: var(--light-text-color);
  padding: 6px 4px;
  margin-right: 1em;
}

.nav-bar a:hover {
  color: var(--medium-text-color);
}

a.profile-button {
  margin-right: 0;
}

.nav-bar button {
  margin-bottom: 0;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.nav-bar .add-button {
  height: 28px;
  width: 28px;
  padding: 0;
}

.nav-bar button .add-icon {
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke: white;
}

.outline-icon,
.header-icon {
  stroke-width: 1.5px;
  fill: none;
}

.add-icon {
  cursor: pointer;
  stroke: #a2a2a2;
}

.data_row .add-icon {
  stroke: var(--medium-color);
  padding-left: 3px;
}

.data_row .add-icon:hover {
  stroke: var(--strong-color);
}

.selected .outline-icon path,
.selected .outline-icon rect,
.selected .outline-icon circle {
  fill: var(--key-color);
  stroke: var(--key-color);
}

.selected .outline-icon path.invert {
  stroke: white;
}

.selected .outline-icon path.invert.fill,
.selected .outline-icon circle.invert.fill,
.selected .outline-icon rect.invert.fill {
  stroke: none;
  fill: white;
}

.outline-icon circle.no-stroke,
.outline-icon path.no-stroke {
  stroke: none;
}

.outline-icon circle.no-fill,
.outline-icon path.no-fill {
  fill: none;
}

.no-stroke {
  stroke: none;
}

.loading-img {
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  opacity: 0.5;
  animation: rotate 1.5s linear infinite;
  display: none;
}

.loading-img-light {
  opacity: 1;
}

.loading .loading-img {
  display: block;
}

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

.full-height {
  height: 100%;
}

.content {
  padding-top: calc(env(safe-area-inset-top) + 61px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 50px);
  min-height: calc(
    100% - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 111px
  );
}

.content.full-height {
  height: calc(
    100% - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 111px
  );
}

.has-msg-bar .content.full-height {
  height: calc(
    100% - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 166px
  );
}

@media (max-width: 430px) {
  .content.full-height {
    height: unset;
  }
}

.two-col {
  display: flex;
}

.main-col {
  flex: 1;
}

.secondary-col {
  width: 300px;
}

.touch .two-col .col-spacer {
  flex: 0;
}

.one-col .col-spacer {
  flex: 0;
}

@media (max-width: 730px) {
  .hide-small {
    display: none;
  }
}

.touch .secondary-col {
  display: none;
}

.col-header {
  font-size: 15px;
  letter-spacing: -0.009em;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--light-color);
  height: 24px;
}

.search-header {
  display: flex;
  align-items: center;
  min-height: 1em;
}

.search-header input {
  padding: 13px 16px;
}

.search-header .add-icon {
  flex-shrink: 0;
  margin-right: 4px;
}

.search-header .add-icon:hover {
  stroke: var(--strong-color);
}

.no-header .col-header {
  display: none;
}

@media (max-width: 430px) {
  .two-col .col-spacer {
    flex: 0;
  }

  .panel {
    border: none;
    margin-top: 0;
  }

  .col-header {
    display: none;
  }
}

.recent-entry {
  display: flex;
  align-items: center;
}

.recent-entry .user-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  font-size: 19px;
  background-color: var(--extra-light-color);
}

.loading .text {
  height: 1em;
  width: 40%;
  background-color: var(--extra-light-color);
  margin-bottom: 0.5em;
  border-radius: 3px;
}

.loading .text:last-child {
  margin-bottom: 0;
}

.loading .w10 {
  width: 10%;
}

.loading .w25 {
  width: 25%;
}

.loading .w50 {
  width: 50%;
}

.loading .data_row {
  background-color: var(--extra-light-color);
  height: 59px;
  box-sizing: border-box;
}

.loading .data_row .text {
  background-color: #eaeaea;
}

.loading .entry-left {
  padding-top: 2px;
  padding-bottom: 3px;
}

.data_set.loading .title {
  font-size: 22px;
  margin-bottom: 10px;
}

.recent-entry .entry-info {
  flex: 1;
  border-bottom: 1px solid var(--light-color);
  padding-bottom: 10px;
  padding-top: 10px;
}

.padded {
  padding: 16px;
}

.text-block .padded {
  padding: 8px 0 0 0;
}

.recent-activity .text-block .padded {
  padding: 10px 0 0 0;
}

@media (min-width: 430px) {
  .how-to.padded {
    padding: 16px;
  }
}

.margin {
  margin: 48px 16px;
}

.l .margin {
  margin-right: 0;
}

.r .margin {
  margin-left: 0;
}

.text-block {
  padding: 13px;
}

.index-16 .text-block {
  padding: 16px;
}

.text-block h3 {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: normal;
}

h3.changelog {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 0.5em;
  color: var(--key-color);
  font-weight: bold;
  line-height: 1.5;
}

.l .text-block {
  padding-right: 0;
}

.r .text-block {
  padding-left: 0;
}

@media (max-width: 730px) {
  .l .text-block,
  .r .text-block {
    padding: 13px;
  }

  .index-16 .l .text-block,
  .index-16 .r .text-block {
    padding: 16px;
  }

  .l .margin {
    margin-right: 16px;
  }

  .r .margin {
    margin-left: 16px;
  }
}

.nav ol {
  padding-inline-start: 20px;
  color: var(--medium-text-color);
  text-transform: uppercase;
  font-size: 11px;
}

.nav ol li {
  padding: 0.5em 0;
}

.nav a.selected {
  text-decoration: none;
  color: var(--medium-text-color);
}

.key_color {
  color: var(--key-color);
}

.key_color_background {
  background-color: var(--key-color);
}

.rel {
  position: relative;
}

.add-entry {
  position: absolute;
  right: 18px;
  top: 14px;
  color: #a2a2a2;
  cursor: pointer;
  padding: 4px;
}

.empty .add-entry {
  display: inline-flex;
  position: initial;
}

.add-entry:hover {
  color: var(--strong-color);
}

.add-entry:hover .add-icon {
  stroke: var(--strong-color);
}

.data_set {
  margin: 10px 0;
  padding: 16px;
}

.touch .data_set {
  padding: 16px 8px;
}

.date-title {
  margin-bottom: 10px;
}

.entry_date {
  color: #808080;
}

.data_row {
  padding: 12px 16px 12px 16px;
  background: #eee;
  border-radius: 8px;
  margin-top: 2px;
  position: relative;
  display: flex;
  align-items: center;
}

.index-user .data_row {
  border-radius: 0;
  /*background: none;*/
  /*border-bottom: 1px solid var(--light-color);*/
  /*margin-top: 0;*/
  padding: 10px;
  padding-left: 16px;
}

.index-user .data_row .medium {
  font-size: 13px;
}

.recent-entries {
  margin-top: 2em;
  width: 300px;
}

.edit-button {
  width: 24px;
  display: flex;
  align-items: center;
  padding-left: 6px;
  cursor: pointer;
}

.data_row .edit-button {
  height: 34px;
}

.edit-button svg {
  fill: var(--medium-color);
}

.edit-button:hover svg {
  fill: var(--strong-color);
}

.entry-left {
  flex: 1;
  padding-right: 10px;
}

.entry-sub-line {
  line-height: 1.5;
}

.category::after {
  content: ", ";
}

.category:last-child::after {
  content: "";
}

.item-categories {
  line-height: 1.5;
  margin-right: 7px;
}

.dots.vertical {
  transform: rotate(90deg);
  display: block;
}

.t-medium {
  color: var(--medium-text-color);
}

.dark {
  color: var(--strong-color);
}

.light-text {
  color: var(--light-text-color);
}

.medium {
  font-size: 14px;
  letter-spacing: -0.006em;
}

.touch .medium {
  font-size: 17px;
  letter-spacing: -0.013em;
  font-weight: 500;
}

.mlarge {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.013em;
}

.touch .mlarge {
  font-size: 19px;
  letter-spacing: -0.017em;
}

.large {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: -0.017em;
}

.bold {
  font-weight: bold;
}

.touch .large {
  font-size: 23px;
  letter-spacing: -0.019em;
}

.xlarge {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: -0.019em;
}

.touch {
  font-size: 14px;
  letter-spacing: -0.006em;
}

.back-button {
  padding-left: 10px;
  width: 40px;
  display: none;
}

.has-back-arrow .back-button {
  display: flex;
}

.touch .table-bg {
  background-color: #eee;
}

.table .row {
  padding: 16px;
  background-color: white;
  border-bottom: 1px solid var(--light-color);
}

.row.action {
  cursor: pointer;
}

.table .row.medium {
  font-weight: normal;
}

.table .row:active {
  background-color: #f7f7f7;
}

.table .row:first-child {
  border-top: 1px solid var(--light-color);
}

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

.delete {
  color: orangered;
}

.back-arrow {
  fill: var(--key-color);
  cursor: pointer;
  position: absolute;
  top: -3px;
  left: -5px;
}

.group-title,
.group-row-inset {
  margin: 0 16px;
  color: var(--medium-color);
  padding: 12px 0;
}

.group-row-inset {
  cursor: pointer;
}

@media (max-width: 430px) {
  .group-title,
  .group-row-inset {
    border-bottom: 1px solid #ececec;
    padding: 16px 0;
  }
}

.group-title {
  padding: 10px 0;
  text-transform: uppercase;
}

.group-row:active,
.group-row:hover {
  background-color: #f7f7f7;
}

.group-row.selected {
  background-color: #eee;
}

.user-header {
  display: flex;
  padding: 16px;
  align-items: center;
  text-transform: uppercase;
  font-size: 11px;
}

.user-header .header-icon {
  margin-left: 8px;
  cursor: pointer;
}

.user-username svg {
  vertical-align: sub;
}

.data-link {
  border-left: 1px solid var(--light-color);
  text-align: center;
}

.data-link strong {
  display: block;
}

.data-link span {
  text-transform: uppercase;
  font-size: 11px;
}

@media (max-width: 730px) {
  .user-stats {
    border-top: 1px solid var(--light-color);
    padding: 16px 0;
    border-bottom: 1px solid var(--light-color);
    margin-top: 10px;
  }

  .profile .user-stats.has-nav {
    border-bottom: none;
  }

  .data-link:first-child {
    border: none;
  }

  .user-header {
    padding-left: 20px;
  }
}

.user-avatar {
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-color: var(--light-color);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
}

.profile-button .user-avatar {
  width: 28px;
  height: 28px;
  margin-right: 0;
}

.user-header .user-avatar {
  width: 60px;
  height: 60px;
  font-size: 32px;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 48px);
}

.avatar-grid.padded {
  padding-top: 12px;
}

.avatar-grid .user-avatar {
  width: 40px;
  height: 40px;
  font-size: 19px;
  background-color: var(--extra-light-color);
}

.avatar-grid a {
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
}

.index-user .data-link {
  border-left: none;
  border-right: 1px solid var(--light-color);
  flex: 1;
}

.index-user .user-header .user-avatar {
  width: 50px;
  height: 50px;
}

.user-stats table {
  border-spacing: 4px;
  margin: 0 1em;
}

@media (max-width: 430px) {
  .user-stats table {
    margin: 0 8px;
  }
}

.user-stats td {
  width: 9px;
  height: 9px;
  background-color: #ececec;
  border-radius: 2px;
}

.index-user .user-stats {
  border-top: 1px solid var(--light-color);
  border-bottom: 1px solid var(--light-color);
  padding: 10px 0;
  margin-top: 0;
}

.update {
  border-bottom: 1px solid var(--light-color);
  margin-bottom: 8px;
}

.update .title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.update .desc {
  padding: 4px 0 8px;
  color: var(--medium-text-color);
  font-size: 13px;
  line-height: 1.5;
}

a.more {
  color: var(--medium-text-color);
  line-height: 1.5;
  margin-top: 8px;
}

.recent-activity a.more {
  margin-left: 52px;
  display: inline-block;
}

.index-user a.more {
  display: inline-block;
  margin-top: 8px;
  padding-left: 16px;
}

.touch .user-page {
  padding: 16px;
}

.touch .user-page.data-container {
  padding: 8px;
}

.user-page.data-container {
  height: calc(100% - 70px);
}

.has-msg-bar .user-page.data-container {
  height: calc(100% - 125px);
}

.u-disabled {
  height: 400px;
  font-size: 14px;
  color: var(--light-text-color);
}

.data-container .panel {
  margin-top: 0;
}

.page-group-displays {
  min-height: 100px;
}

.display {
  border-radius: 10px;
  border-bottom: none;
  box-shadow: 2px 1px 15px 0px rgb(210, 210, 210);
  margin: 10px 0 20px 0;
  padding: 10px 13px 15px 13px;
  background-color: #fff;
  font-size: 11px;
  /* 22px gutter, 13px left / right padding * 2 */
  width: calc((var(--content-width) - 22px - 52px) / 2);
  overflow: hidden;
}

.text-block .display,
.index-panel .margin .display {
  width: unset;
}

.loading .display {
  opacity: 0.5;
  min-height: 240px;
}

.loading .display .line {
  opacity: 0.5;
}

.touch .display {
  /* include user-page padding (2 * 16px) */
  width: calc((var(--content-width) - 22px - 52px - 32px) / 2);
}

.touch .demo .display {
  width: 100%;
}

@media (max-width: 730px) {
  .display {
    width: calc(var(--content-width) - 26px);
  }

  .index-section .display {
    width: calc(var(--content-width) - 58px);
  }

  .touch .display {
    width: unset;
  }

  .demo .display {
    margin: 0 16px;
  }
}

.secondary-col .display {
  font-size: 11px;
  width: unset;
}

.display-top {
  height: 27px;
  display: flex;
  align-items: center;
}

.display-top a {
  color: var(--strong-color);
  flex: 1;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
  white-space: nowrap;
}

.display-top .spacer {
  flex: 1;
}

.display-edit {
  text-align: right;
  position: relative;
}

.display-edit .edit,
.display-edit .done {
  font-size: 12px;
  height: 20px;
  width: 48px;
  line-height: 20px;
  border-radius: 4px;
  color: var(--light-text-color);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.display-edit .done {
  display: none;
  background-color: #ebebec;
  color: var(--strong-color);
}

.display-drag {
  position: relative;
}

.display-drag svg {
  width: 38px;
  border-radius: 4px;
  stroke: var(--light-color);
  cursor: move;
}

.display-edit .edit:hover {
  color: var(--medium-text-color);
  background-color: var(--extra-light-color);
}

.display-drag svg:hover {
  stroke: var(--medium-color);
  background-color: var(--extra-light-color);
}

.display-edit.selected .edit {
  display: none;
}

.display-edit.selected .done,
.display-edit.selected .e-btns {
  display: inline-block;
}

.edit-control {
  display: none;
}

.edit-control.selected {
  display: initial;
}

.display:hover .edit-control {
  display: initial;
}

.touch .edit-control {
  display: initial;
}

.how-to .edit-control {
  display: initial;
  position: relative;
}

.how-to .statement_body {
  position: relative;
}

.how-to .display-note {
  position: relative;
}

.how-to .col-container {
  display: block;
}

.how-to .user-stats {
  border-top: 1px solid var(--light-color);
  padding: 16px 0;
  border-bottom: 1px solid var(--light-color);
  /*margin-top: 10px;*/
}

.how-to .user-stats.has-nav {
  border-bottom: none;
}

.how-to .data-link:first-child {
  border: none;
  padding-left: 20px;
}

.how-to .user-header {
  border-top: 1px solid var(--light-color);
}

.punch-out {
  position: relative;
  margin: 0px auto;
  left: 0px;
  height: 16px;
  width: 100px;
  box-shadow: inset 4px 3px 10px -3px rgb(200, 200, 200);
  border-radius: 10px;
  background-color: rgb(245, 245, 245);
}

.secondary-col .punch-out {
  width: 80px;
}

.punch-out .hook {
  position: absolute;
  height: 8px;
  background: linear-gradient(rgba(255, 255, 255, 1), rgba(253, 253, 253, 1));
  width: 78px;
  border-radius: 30px 30px 2px 2px;
  left: 12px;
  top: -7px;
  box-shadow: -2px -2px 7px rgb(230, 230, 230);
}

.secondary-col .punch-out .hook {
  width: 58px;
}

.display-title,
.block-title {
  line-height: 1.5;
  margin: 3px 0;
  margin-top: 7px;
  color: var(--strong-color);
  text-transform: uppercase;
  font-size: 11px;
  min-height: 1.5em;
}

.block-title span {
  color: var(--light-text-color);
  padding-left: 0.5em;
}

.line {
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
  height: 1px;
}

.display-body {
  margin-top: 25px;
}

svg.linegraph path,
svg.piechart path {
  stroke: white;
  stroke-width: 0.5px;
}

.piechart {
  text-align: center;
}

.piechart svg.piechart {
  max-width: 300px;
}

.secondary-col .piechart svg.piechart {
  max-width: 240px;
}

.key-list {
  display: flex;
  border-top: 1px solid #cccccc;
  padding-top: 6px;
  margin-top: 16px;
}

.key-col {
  flex: 1;
  text-align: left;
  color: grey;
  padding-inline-start: 34px;
  overflow: hidden;
  margin-right: 5px;
}

.key-item {
  text-transform: uppercase;
  line-height: 1.5;
  padding-bottom: 3px;
  position: relative;
}

.key-item-new .key-item-label {
  margin-left: -12px;
}

.key-item-label {
  padding-top: 1px;
  color: #808080;
}

.key-item a {
  color: #808080;
  margin-right: 3px;
}

.key-item-new a {
  color: var(--light-text-color);
}

.hover-off .plus-minus {
  stroke: #e4e4e4;
}

.pie-chart .hover-off,
.line-graph .hover-off,
.bar-graph .hover-off {
  fill: #e4e4e4;
}

.key-item.hover-off,
.footer-item.hover-off,
.key-item.hover-off a,
.footer-item.hover-off a {
  color: #e4e4e4;
}

.key-item.hover-off .key_color,
.footer-item.hover-off .key_color {
  color: #e4e4e4 !important;
}

.key-color-block-wrap {
  position: absolute;
  left: -34px;
  width: 34px;
}

.key-color-block,
.new-color-block {
  width: 10px;
  height: 10px;
  margin-right: 5px;
  margin-top: 4px;
}

.new-color-block {
  width: 8px;
  height: 8px;
  border: 1px solid var(--light-color);
}

.no-w {
  white-space: nowrap;
}

.h-bars-name {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: -0.019em;
  margin-right: 5px;
  padding-bottom: 2px;
  line-height: 1;
}

.h-bars-name a {
  text-transform: uppercase;
}

.h-bars-new {
  margin-bottom: 1em;
}

.h-bars-new a {
  color: var(--medium-color);
}

.h-bars-name span {
  font-size: 11px;
  font-weight: normal;
  letter-spacing: normal;
  color: #808080;
  padding-left: 5px;
}

.h-bar-details {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: normal;
  color: var(--medium-text-color);
  letter-spacing: 0;
  margin: 2px 0 5px;
  line-height: 1.2;
}

.h-bars-bg,
.h-bars-bar {
  height: 7px;
}

.h-bars-bg {
  margin-bottom: 13px;
  background-color: #d4d5d6;
}

.single-number {
  font-size: 95px;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.05em;
}

.secondary-col .single-number {
  font-size: 75px;
}

.footer-list {
  border-top: 1px solid #cccccc;
  padding-top: 8px;
  margin-top: 6px;
  color: #808080;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: left;
}

.footer-list a {
  color: #808080;
}

.footer-item {
  padding: 8px 0;
}

.footer-item::after {
  content: ", ";
}

.footer-item:last-child::after {
  content: none;
}

.footer-item a:first-child {
  margin-right: 3px;
}

.footer-add a {
  color: var(--light-text-color);
}

.underline {
  text-decoration: underline;
}

.linegraph .key-list {
  margin-top: 0;
}

.spark-bar-row {
  padding-left: 48px;
  position: relative;
  padding-bottom: 8px;
}

.spark-bar-row svg.bars {
  position: absolute;
  left: 0;
  top: 2px;
}

.statement_body {
  font-size: 48px;
  letter-spacing: -0.022em;
  font-weight: bold;
  margin-right: 5px;
  margin-bottom: 6px;
  padding-top: 3px;
  line-height: 0.9em;
  text-transform: uppercase;
  min-height: 0.9em;
  overflow-wrap: break-word;
}

.untransformed .statement_body {
  text-transform: none;
  margin-bottom: 16px;
}

.secondary-col .statement_body {
  font-size: 40px;
}

.display-note {
  line-height: 1.4em;
  text-transform: uppercase;
  border-top: 1px dashed #808080;
  padding-top: 8px;
  min-height: 1.4em;
  color: var(--medium-text-color);
}

.untransformed .display-note {
  text-transform: none;
  font-size: 13px;
}

.display-note a {
  color: var(--strong-color);
  text-decoration: underline;
}

.secondary-text {
  margin-top: -2px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #808080;
}

.vertbar-date {
  text-transform: uppercase;
  color: #808080;
  border-top: 1px solid #cccccc;
  padding-top: 6px;
  margin-bottom: 16px;
}

.vert_barchart_bg:hover {
  fill: #e2e2e2;
}

.col-container {
  display: flex;
}

.col-spacer {
  flex: 0 0 22px;
}

.col {
  flex: 1;
}

.one-col-only {
  display: none;
}

@media (max-width: 730px) {
  .col-container {
    display: block;
  }

  .two-col-only {
    display: none;
  }

  .one-col-only {
    display: initial;
  }
}

.overlay-cover {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(55, 55, 55, 0.4);
  display: flex;
  justify-content: center;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.12s ease-out;
  z-index: 1;
}

.overlay-cover.top {
  padding-top: calc(35vh - var(--overlay-height));
}

.overlay-cover.overlay-open {
  opacity: 1;
}

.overlay {
  background-color: white;
  border-radius: var(--border-radius);
  width: 300px;
  min-height: 120px;
  box-shadow: 0 0px 10px 2px rgba(0, 0, 0, 0.15);
  transform: scale(0.93);
  transition: transform 0.12s ease-out;
  z-index: 1;
  position: relative;
}

.overlay-cover .stack {
  padding-top: 32px;
  padding-bottom: 20vh;
  margin: auto;
}

.overlay-cover.top .stack {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 15vh;
}

.overlay-open .overlay {
  transform: scale(1);
}

.overlay-medium {
  width: 360px;
}

.overlay-medium-large {
  width: 400px;
}

.overlay-large {
  width: 480px;
}

.overlay-large .detail-view {
  height: 560px;
  overflow: scroll;
}

.overlay .header {
  padding: 8px 42px 4px 16px;
  display: flex;
  align-items: center;
  height: 42px;
  position: relative;
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
  color: var(--strong-color);
}

.overlay-title {
  height: 18px;
  font-weight: 500;
}

.overlay form {
  padding: 16px;
  font-size: 12px;
  padding-top: 0;
}

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

.overlay input[type="text"],
.overlay input[type="password"] {
  font-size: 12px;
  height: 32px;
}

.overlay input[type="text"],
.overlay input[type="password"] {
  background-color: var(--extra-light-color);
  border: 1px solid var(--extra-light-color);
}

.overlay .field-icon {
  width: 18px;
  height: 18px;
  top: 7px;
  right: 8px;
}

.overlay .error {
  font-size: 12px;
}

@media (max-width: 430px) {
  .overlay-cover .stack {
    width: 100%;
    margin-left: 16px;
    margin-right: 16px;
    margin-bottom: 25vh;
  }

  .overlay-cover.top {
    padding-top: calc(25vh - var(--overlay-height));
  }

  .overlay,
  .recent-entries {
    width: unset;
  }

  .demo .overlay,
  .how-to-img .overlay {
    width: 300px;
  }
}

.overlay-cover.center .stack {
  margin-bottom: 16px;
}

.welcome-overlay {
  padding: 40px;
  color: var(--strong-color);
}

.welcome-overlay p {
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 0;
}

.welcome-overlay h4 {
  font-size: 14px;
  margin-bottom: 0.4em;
  font-weight: 500;
}

.welcome-overlay h3 {
  font-size: 22px;
  margin-top: 0;
}

.toast-overlay {
  position: fixed;
  display: flex;
  left: 0;
  right: 0;
  bottom: 52px;
  height: 100px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.toast {
  background-color: white;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--light-color);
  color: var(--strong-color);
  animation: slide-up 200ms ease-in-out 0s 1 running forwards;
}

.has-overlay .toast {
  border: 1px solid var(--medium-color);
}

@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

.slide-down {
  animation: slide-down 200ms ease-in-out 0s 1 running forwards;
}

@keyframes slide-down {
  0% {
    opacity: 1;
    transform: none;
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.header .x,
.item-title .x {
  position: absolute;
  right: 6px;
  width: 40px;
  height: 40px;
  stroke: var(--strong-color);
  cursor: pointer;
}

.item-title .x {
  top: -8px;
  right: -8px;
}

.button-pair {
  display: flex;
}

.button-pair button {
  width: calc(50% - 5px);
}

.button-pair button:first-child {
  margin-right: 10px;
}

.overlay-content {
  padding-top: 0;
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  font-size: 13px;
}

.overlay-content button.secondary {
  background-color: white;
}

.picker {
  padding: 0 16px 16px;
  font-size: 13px;
  color: var(--medium-color);
}

.picker-stack {
  height: 300px;
  display: flex;
  flex-direction: column;
}

.picker-list {
  overflow-y: scroll;
  overflow-x: hidden;
  margin-top: 10px;
  padding-bottom: 10px;
}

.picker-tags {
  padding: 5px 5px 0 5px;
  background-color: #ececec;
  border-radius: 5px;
  max-height: 78px;
  overflow-y: scroll;
  flex-shrink: 0;
}

.multi-type .picker-tags {
  margin-bottom: 10px;
}

.picker-tags input[type="text"] {
  border: none;
  font-size: 12px;
  padding: 4px 6px 4px 1px;
  margin-bottom: 5px;
  height: unset;
  background-color: #ececec;
}

.picker-tags input[type="text"]:first-child {
  padding-left: 6px;
}

.picker-tags input[type="text"]::placeholder {
  color: var(--medium-color);
}

.picker .tag {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 18px 4px 6px;
  border-radius: 4px;
  margin-bottom: 5px;
  margin-right: 5px;
  vertical-align: bottom;
  cursor: pointer;
  display: inline-block;
  max-width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  background-color: white;
}

.picker .tag svg {
  position: absolute;
  top: 0;
  right: -2px;
  stroke: var(--medium-color);
}

.picker .tag:hover svg {
  stroke: var(--strong-color);
}

.picker .option {
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
}

.picker .option div {
  margin: 0 12px;
  padding: 8px 0;
}

.picker .option:hover,
.picker .option.hover {
  background-color: var(--extra-light-color);
}

.picker .option .new-label {
  font-weight: normal;
  padding-right: 5px;
}

.new-label {
  color: var(--light-text-color);
}

.upgrade {
  position: absolute;
  right: 0;
  top: 3px;
  padding: 4px 10px;
  color: var(--key-color);
  text-transform: uppercase;
}

.picker .upgrade {
  top: 0;
}

.overlay-content input {
  margin-top: 0;
  font-size: 13px;
  padding: 12px;
}

.overlay-content input.inset-field {
  padding-left: 33%;
}

.inset-plus {
  position: absolute;
  right: 0;
}

.overlay-content input::placeholder {
  color: #cacaca;
}

.overlay-section {
  position: relative;
}

.overlay-section .x {
  stroke: var(--medium-color);
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
}

.overlay-section .chevron {
  stroke: var(--medium-color);
  position: absolute;
  top: 0;
  right: 13px;
  width: 10px;
  height: 32px;
}

.touch .overlay-section .x {
  height: 40px;
}

.overlay-section-label {
  position: absolute;
  line-height: 32px;
  padding-left: 15px;
  left: 0;
  top: 0;
  color: var(--medium-text-color);
}

.overlay-input {
  background-color: var(--extra-light-color);
  border: 1px solid var(--extra-light-color);
  padding: 7px 12px 8px 12px;
  border-radius: 5px;
  margin-bottom: 1em;
  min-height: 10px;
  color: var(--strong-color);
}

.current-date-label {
  text-align: right;
}

.overlay .date-selector-wrapper {
  margin-bottom: 1em;
  text-align: right;
}

.overlay .inset-date .date-selector-wrapper {
  text-align: left;
}

.overlay .inset-date .date-selector {
  padding-left: 33%;
}

.overlay .inset-date .current-date-label {
  padding-left: 33%;
  text-align: left;
}

.date-selector-wrapper input {
  display: none;
  -webkit-appearance: none;
  border: none;
  padding: 0;
}

.composer-date-picker .date-selector-wrapper input {
  width: calc(100% - 26px);
  border: 1px solid var(--extra-light-color);
  padding: 0 12px;
  border-radius: var(--border-radius);
  text-align: right;
  background-color: var(--extra-light-color);
  line-height: 38px;
  height: 38px;
}

.composer-chevron {
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.composer-date-wrap {
  padding-right: 30px;
}

.composer-buttons {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.welcome-overlay .composer-buttons {
  margin-top: 3em;
}

.display-date .date-selector-wrapper input {
  margin-left: 10px;
}

.date-selector-wrapper .calendar {
  display: none;
}

.date-selector-wrapper.date-active .calendar {
  display: block;
}

.date-selector-wrapper .date {
  padding: 5px 6px;
}

.date-selector-wrapper.date-active .date {
  color: #fff;
}

.date-selector-wrapper.focused .date-selector {
  border-color: var(--outline-color);
}

.calendar {
  position: absolute;
  width: 100%;
  border: 1px solid rgb(206, 206, 206);
  background-color: #fff;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-height: 200px;
  padding: 6px 0 20px 0;
  z-index: 1;
  text-align: center;
  box-sizing: border-box;
}

.calendar:focus {
  outline: none;
}

.calendar table {
  display: inline-block;
  color: #333132;
}

.calendar .labels {
  font-size: 11px;
  color: #aeb0b3;
}

.calendar td {
  padding: 6px;
  border-radius: 5px;
}

.calendar td.date-option {
  cursor: pointer;
}

.calendar td.today {
  background-color: rgb(243, 243, 243);
}

.calendar td.date-option:hover {
  background-color: rgb(243, 243, 243);
}

.calendar td.date-option.selected,
.calendar td.date-option.selected:hover {
  background-color: var(--key-color);
}

.calendar td.selected {
  color: white;
}

.calendar .title {
  font-size: 16px;
  color: #333132;
  font-weight: normal;
  padding: 16px 0;
  position: relative;
}

.calendar .title svg {
  width: 20px;
  height: 20px;
  stroke-width: 1px;
  stroke: #aeb0b3;
  fill: none;
  position: absolute;
  top: 16px;
  cursor: pointer;
}

.calendar .prev {
  left: 6px;
}

.calendar .next {
  right: 6px;
}

.calendar td.button-contain {
  padding: 0;
  padding-top: 6px;
}

.calendar .buttons {
  display: flex;
}

.calendar .button {
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 5px;
  flex-grow: 1;
  background-color: var(--extra-light-color);
}

.calendar .button-space {
  width: 8px;
}

.calendar .button:hover {
  background-color: var(--light-color);
}

.date-selector {
  background-color: #fff;
  line-height: 11px;
  cursor: default;
  margin-left: 2px;
  margin-right: 7px;
  color: #4d4d4f;
  display: inline-block;
}

.disabled .date-selector {
  border: 1px solid rgb(204, 204, 204);
  background-color: rgb(242, 242, 242);
  color: rgb(204, 204, 204);
}

.date-selector span {
  color: rgb(170, 170, 170);
}

.disabled .date-selector span {
  color: rgb(204, 204, 204);
}

.date-selector div {
  display: inline-block;
  padding: 5px 1px;
  border-radius: 3px;
  text-align: center;
}

.date-selector div:focus {
  outline: none;
  color: #fff;
  background-color: var(--key-color);
}

.date-selector .two-digit {
  min-width: 16px;
}

.date-selector .am-pm {
  min-width: 20px;
}

.date-selector .four-digit {
  min-width: 28px;
}

.overlay-section .date-selector {
  padding: 4px 12px 5px 12px;
  background-color: var(--extra-light-color);
  border: 1px solid var(--extra-light-color);
  border-radius: 5px;
  margin: 0;
  display: block;
  height: 21px;
}

.composer-date-picker .date-selector {
  padding-right: 30px;
}

@media (max-width: 430px) {
  .date-selector-wrapper input {
    display: block;
  }

  .overlay-section .date-selector {
    display: none;
  }

  .date-selector-wrapper {
    height: 38px;
  }

  .overlay-section .chevron {
    display: none;
  }

  .composer-chevron {
    background-image: none !important;
  }
}

.overlay button {
  font-size: 12px;
  margin-bottom: 0;
  padding: 8px 16px;
  border: 1px solid #ececec;
}

.welcome-overlay button {
  width: 100px;
  margin-left: 1em;
}

.welcome-overlay .add-button {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  margin: 0;
  vertical-align: bottom;
  padding: 0;
}

.welcome-overlay .add-icon {
  stroke: white;
  cursor: default;
}

.autocomplete .option {
  padding: 7px 12px;
  cursor: pointer;
  position: relative;
}

.option.with-upgrade {
  padding-right: 78px;
}

.overlay-item input[type="text"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 0;
  padding-right: 32px;
  border-bottom: none;
}

.divider {
  margin: 0 12px;
  border-bottom: 1px solid var(--light-color);
  position: absolute;
  top: 0px;
  width: calc(100% - 24px);
}

.overlay-input.categories,
.overlay-input.attrs {
  color: var(--medium-text-color);
  cursor: pointer;
}

.composer-categories .overlay-input.categories {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding-bottom: 9px;
}

.overlay-input.attrs {
  margin-bottom: 0;
  border-radius: 0;
}

.edit-title {
  text-transform: uppercase;
  font-size: 11px;
  margin: 16px 0 10px 0;
  color: var(--medium-color);
  position: relative;
}

.edit-title.first {
  margin-top: 4px;
}

.edit-title a {
  cursor: pointer;
}

.autocomplete {
  position: absolute;
  z-index: 1;
  background-color: white;
  width: calc(100% - 2px);
  border: 1px solid var(--outline-color);
  border-top: none;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.15);
  color: var(--strong-color);
  padding: 8px 0;
}

.autocomplete .item-categories {
  padding-left: 0.5em;
}

.autocomplete div.selected {
  background-color: rgb(243, 243, 243);
}

.no-selection {
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.input-contain {
  position: relative;
}

.field-icon {
  position: absolute;
  right: 12px;
  top: 10px;
}

@media (max-width: 430px) {
  .overlay button {
    font-size: 14px;
    padding: 8px 20px;
  }

  .welcome-overlay button {
    padding: 0;
  }

  .overlay form {
    font-size: 14px;
  }

  .overlay-input {
    padding: 9px 12px 10px;
  }

  .overlay input[type="text"],
  .overlay input[type="password"] {
    font-size: 14px;
    height: 38px;
  }

  .picker-tags input[type="text"] {
    height: unset;
  }

  .picker .tag {
    font-size: 14px;
  }

  .picker .option {
    font-size: 15px;
  }

  .picker .tag svg {
    top: 1px;
  }

  .composer-categories .overlay-input.categories {
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .overlay-section-label {
    line-height: 38px;
  }

  .date-selector {
    display: none;
  }

  .inset-plus {
    top: 3px;
    right: 2px;
  }
}

.option .dots-wrap {
  padding-right: 10px;
}

.option .dots-wrap .dots {
  vertical-align: middle;
  fill: var(--medium-color);
}

.option .dots-wrap:hover .dots {
  fill: var(--strong-color);
}

/* scroll marker */

.scroll-marker-anchor {
  position: relative;
}

.scroll-marker {
  position: absolute;
  bottom: 300px;
  height: 50px;
  width: 0px;
}

/* display edit */

select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 10px;
  border: none;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 5px;
  color: var(--strong-color);
  font-size: 12px;
  background-repeat: no-repeat;
  background-position: center right 7.5px;
  background-size: 10px 10px;
  line-height: 26px;
}

.edit-section {
  background-color: #ebebec;
  border-radius: 5px;
  padding: 6px;
  padding-left: 16px;
  font-size: 12px;
  margin-bottom: 3px;
}

.edit-section .label {
  flex-basis: 44%;
  margin-right: 6px;
}

.multi-section .label {
  line-height: 2.2;
}

.multi-section .flex {
  align-items: start;
}

.edit-row {
  margin-bottom: 5px;
}

.how-to .multi-section .edit-row {
  margin-bottom: 0;
}

.edit-content {
  width: 100%;
}

.edit-content input[type="text"] {
  width: 30%;
  margin-right: 5px;
  height: 28px;
  padding: 2px 10px;
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  background-color: white;
  font-size: 12px;
  margin-bottom: 0;
}

.edit-content input[type="text"]:focus {
  border: 1px solid var(--outline-color);
}

.edit-row:last-child,
.edit-row.single,
.edit-row.last {
  margin: 0;
}

.display-tags {
  padding: 5px 10px;
  border: none;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}

.display-tags span::after {
  content: ", ";
}

.display-tags span:last-child::after {
  content: "";
}

.edit-container {
  margin-top: 12px;
  margin-bottom: 12px;
}

.edit-container .more {
  cursor: pointer;
}

.edit-container .more.open {
  cursor: default;
}

.more svg {
  padding-right: 4px;
  position: relative;
  top: 1px;
}

.display-date {
  background-color: white;
  height: 26px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  position: relative;
}

.display-date .date-selector {
  height: 26px;
  margin-left: 3px;
}

.display-date .date-selector div {
  margin-top: 3px;
}

.display-date .calendar {
  font-size: 12px;
  padding-bottom: 6px;
}

.display-date .auto {
  padding-left: 10px;
  cursor: default;
  opacity: 0.5;
}

.chevron-bg {
  background-repeat: no-repeat;
  background-position: center right 7.5px;
  background-size: 10px 10px;
}

@media (max-width: 430px) {
  .chevron-bg {
    background-position: -20px;
  }
}

.display-tags.empty {
  color: var(--light-text-color);
}

select.light {
  color: var(--light-text-color);
}

.display-tags.disabled {
  cursor: default;
  opacity: 0.7;
}

select.light.loading {
  color: unset;
}

.seg-control {
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  background-color: #dedede;
}

.picker-stack .seg-control {
  background-color: #ececec;
}

.seg-option {
  text-align: center;
  font-size: 12px;
  line-height: 24px;
  box-sizing: border-box;
  cursor: default;
  border-radius: 4px;
  margin: 2px 0;
  color: var(--medium-text-color);
  position: relative;
}

.seg-option:first-child {
  margin-left: 2px;
}

.seg-option:last-child {
  margin-right: 2px;
}

.seg-option:last-child div {
  display: none;
}

.seg-option div {
  height: 8px;
  width: 1px;
  background-color: #a3a3a3;
  position: absolute;
  right: -1px;
  top: calc(50% - 4px);
}

.subscribe .seg-option {
  line-height: 34px;
  font-size: 13px;
}

.seg-option.selected {
  background-color: white;
  color: var(--strong-color);
}

.edit-section .seg-option.selected {
  outline: 1px solid #cccccc;
}

.seg-option.selected div {
  display: none;
}

.disabled .seg-option.selected {
  opacity: 0.7;
}

.seg-control.billing {
  margin-bottom: 2em;
  background-color: #f7f7f7;
}

table .seg-control.billing {
  margin-bottom: 1em;
}

.billing .seg-option.selected {
  color: var(--key-color);
  box-shadow: 0 0px 3px 0px rgba(0, 0, 0, 0.2);
}

.seg-info {
  font-size: 10px;
  color: var(--medium-text-color);
}

.lower {
  text-transform: none;
}

.new-display-panel {
  background-color: rgb(241, 241, 241);
  line-height: 20px;
  text-align: center;
  border-radius: 5px;
  padding: 10px 10px 10px 11px;
  color: #bbb;
  margin-top: 40px;
  text-transform: uppercase;
}

.new-display-panel a {
  color: #808080;
  cursor: pointer;
  padding: 0 4px;
}

.new-display-panel a:hover {
  text-decoration: underline;
}

@media (max-width: 730px) {
  .left-col .new-display-panel {
    display: none;
  }
}

.display-add {
  text-align: right;
  padding-top: 1em;
}

.display-add button {
  margin-bottom: 0;
  font-size: 14px;
  padding: 8px 16px;
  margin-left: 0.5em;
  border-radius: 5px;
  height: unset;
}

.edit-section button {
  font-size: 12px;
  background-color: white;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  height: 28px;
  padding: 0 10px;
  width: 100%;
  margin-bottom: 0;
}

.menu {
  position: relative;
  padding-left: 3px;
  cursor: pointer;
}

.menu.disabled a {
  color: var(--light-color);
}

.data_set .menu,
.text-block .data_row .menu {
  padding-left: 0;
}

.menu svg {
  fill: var(--medium-color);
}

.menu:hover svg {
  fill: var(--strong-color);
}

.attr-menu {
  position: absolute;
  right: 26px;
}

.attr-menu svg {
  display: none;
}

.dropdown-options-wrapper {
  padding: 5px 0;
  font-size: 12px;
  font-weight: normal;
  min-width: 110px;
  text-transform: none;
  background-color: white;
  /*border: 1px solid rgb(204, 204, 204);*/
  border-radius: 5px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.15);
  display: none;
  overflow-y: auto;
  position: absolute;
  top: 22px;
  z-index: 100;
  right: 0px;
  max-width: 200px;
}

@media (max-width: 430px) {
  .dropdown-options-wrapper {
    font-size: 14px;
  }
}

.dropdown-options a {
  padding: 5px 25px 5px 12px;
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

.dropdown-options a:hover {
  background-color: rgb(243, 243, 243);
}

.page-nav {
  padding-left: 6px;
  height: 40px;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-right: 30px;
}

.reorder .page-nav {
  margin-right: 64px;
}

.page-nav .add-icon {
  height: 38px;
  vertical-align: bottom;
  /*margin-left: 10px;*/
}

.page-nav .add-icon:hover {
  stroke: var(--strong-color);
}

.page-nav-container {
  position: relative;
  box-shadow: inset 0 1px var(--light-color);
}

.full-height .page-nav-container {
  display: none;
}

.page-nav-container button {
  font-size: 13px;
  position: absolute;
  right: 0px;
  top: 6px;
  padding: 6px 12px;
  display: none;
}

.page-nav-container.reorder button {
  display: block;
}

.page-opts {
  position: absolute;
  left: -30px;
  top: 0;
  width: 30px;
  height: 40px;
}

.page-opts svg {
  height: 40px;
  display: none;
}

.page-opts .menu {
  cursor: default;
}

.page-opts .dropdown-options-wrapper {
  top: 32px;
}

.page-link {
  display: inline-block;
  border-radius: 2px;
}

.page-link.drop_hover {
  background-color: var(--medium-color);
}

.page-link.drop_hover.selected {
  background-color: initial;
}

.page-link .dots {
  display: none;
  padding: 9px 0;
  vertical-align: bottom;
  fill: var(--medium-color);
  cursor: pointer;
}

.page-link .dots:hover {
  fill: var(--strong-color);
}

.page-link.selected .dots {
  display: inline;
}

.page-link .bars {
  height: 38px;
  border-radius: 4px;
  stroke: var(--light-color);
  cursor: move;
  vertical-align: bottom;
  margin-left: 6px;
  display: none;
}

.page-link .bars:hover {
  stroke: var(--medium-color);
}

.reorder .page-link .bars {
  display: inline-block;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

.page-nav a {
  display: inline-block;
  padding: 12px 10px;
  text-transform: uppercase;
  color: var(--key-color);
  position: relative;
}

.page-nav .disabled a {
  color: var(--light-color);
  cursor: default;
}

.drop_hover a {
  color: white;
}

.reorder .page-nav a {
  padding-left: 8px;
}

.page-nav .private a {
  padding-left: 6px;
}

.page-nav a.selected {
  color: var(--medium-color);
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.settings {
  padding: 48px;
}

.settings-plans {
  padding: 48px 16px;
}

.settings .section {
  margin-bottom: 32px;
  border-top: 1px solid var(--light-color);
  font-size: 12px;
  color: var(--medium-color);
}

.settings-plans .section {
  margin-left: 32px;
  margin-right: 32px;
}

.settings .section a {
  margin-top: 6px;
  cursor: pointer;
}

.settings .title {
  margin-bottom: 12px;
  margin-top: 30px;
  font-weight: bold;
  font-size: 14px;
  color: var(--strong-color);
}

.settings .section:first-child {
  border: none;
}

.settings .section:first-child .title {
  margin-top: 0;
}

.settings .user-avatar {
  width: 70px;
  height: 70px;
  font-size: 37px;
}

.settings .swatch {
  width: 50px;
  border-radius: 5px;
  margin-right: 12px;
  border: 2px solid white;
  cursor: pointer;
}

.settings .swatch::before {
  content: "";
  float: left;
  padding-top: 100%;
}

.settings .swatch:last-child {
  margin-right: 0;
}

.settings .swatch.selected {
  border: 2px solid var(--strong-color);
}

.parent-list button {
  margin: 48px 16px 16px 16px;
  width: calc(100% - 32px);
  font-size: 14px;
  background-color: #f7f7f7;
  cursor: pointer;
  padding: 12px;
}

.parent-list button:hover {
  background-color: #eee;
}

@media (max-width: 430px) {
  .settings {
    padding: 16px;
  }

  .settings .section {
    font-size: 14px;
  }

  .settings .title {
    font-size: 16px;
  }

  .settings .swatch {
    margin-right: 6px;
  }

  .parent-list button {
    font-size: 16px;
    padding: 13px 15px;
  }
}

.radio-set {
  margin: 1em 0;
}

.radio-set div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

input[type="radio"] {
  margin-right: 0.5em;
  margin-top: 0;
}

.f-edit {
  margin-bottom: 1.5em;
  background-color: #ebebec;
  border-radius: 5px;
  padding: 6px;
  padding-left: 16px;
}

.f-edit input {
  margin-bottom: 0;
  margin-left: 6px;
}

.f-edit input[type="text"] {
  width: 36%;
  height: 28px;
  padding: 8px;
  background-color: white;
  border: 1px solid #d9d9d9;
}

.f-edit span {
  margin-right: 1em;
  max-width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 40%;
  flex-basis: 100%;
  cursor: default;
}

.avatar-edit {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
  border-radius: 50%;
}

.avatar-edit:hover,
.avatar-edit.loading {
  background-color: rgba(0, 0, 0, 0.4);
}

.pencil {
  fill: none;
  stroke: #a2a2a2;
}

.pencil .fill {
  stroke: none;
  fill: #a2a2a2;
}

.inline-pencil {
  margin-left: 3px;
  vertical-align: text-bottom;
  cursor: pointer;
}

.statement_body .inline-pencil {
  vertical-align: baseline;
  margin-left: 6px;
}

.inline-pencil:hover {
  stroke: var(--strong-color);
}

.inline-pencil:hover .fill {
  fill: var(--strong-color);
}

.avatar-edit .pencil {
  stroke: white;
  display: none;
}

.avatar-edit:hover .pencil {
  display: block;
}

.avatar-edit.loading .pencil {
  display: none;
}

.avatar-edit input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.price {
  font-size: 24px;
  font-weight: bold;
}

.plan .price {
  padding: 10px 0;
}

.price-row,
.reg {
  font-size: 14px;
  font-weight: normal;
}

.price-confirm {
  text-align: right;
  align-items: start;
}

.subscribe .price-confirm {
  font-size: 15px;
}

.price-confirm .label {
  font-weight: 500;
}

#card-element {
  margin-bottom: 1em;
  background-color: #ececec;
  padding: 7px 10px;
  border-radius: 5px;
}

.subscribe #card-element {
  padding: 12px;
}

.plan-table {
  border-spacing: 32px 0;
  width: 100%;
  margin-bottom: 32px;
}

.plan-table th {
  font-size: 16px;
  text-align: left;
}

.plan-table td {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  width: 25%;
}

.price .plan-table td {
  padding-top: 0;
}

.plan-table td svg,
.plan-info svg {
  vertical-align: bottom;
  stroke: var(--medium-color);
}

.plus .plan-info svg {
  stroke: var(--key-color);
}

.plan-table tr.plain td {
  border: none;
}

.plan-table .plan-label {
  color: var(--strong-color);
  line-height: 1.5;
}

.plan-table .hover {
  color: var(--medium-color);
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: default;
}

.plan-label span {
  position: relative;
}

td.plus svg,
.plan.plus svg {
  stroke: var(--key-color);
}

.plan-table button {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  margin-bottom: 0;
}

.plan button {
  height: 32px;
  font-size: 14px;
  padding: 0 24px;
  margin-top: 6px;
}

.plan-table button.current {
  color: var(--medium-color);
}

.plan-table button.plus,
.plan button.plus {
  background-color: var(--key-color);
  color: white;
}

.plan-table .tooltip {
  position: absolute;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 5px;
  color: white;
  background-color: var(--key-color);
  z-index: 1;
  left: calc(100% + 10px);
  top: -6px;
  white-space: nowrap;
}

button.plus,
button.downgrade {
  cursor: pointer;
  position: relative;
}

.payment_history_amount {
  display: inline-block;
  width: 80px;
}

.plan {
  border: 1px solid var(--light-color);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  display: none;
}

.plan hr {
  border-bottom: 1px solid #ececec;
  margin: 0.8em 0 1.2em 0;
}

.plan-title {
  font-size: 16px;
  font-weight: bold;
}

.plan-info {
  padding: 4px 0;
}

.mobile-plans .billing {
  display: none;
}

@media (max-width: 430px) {
  .plan {
    display: block;
  }

  .mobile-plans .billing {
    display: flex;
  }

  .plan-table {
    display: none;
  }

  .settings-plans .section {
    margin-left: 0;
    margin-right: 0;
  }
}

.plan-wrap {
  margin: 32px 0 16px 0;
}

.plan-overview {
  font-size: 13px;
  color: var(--medium-text-color);
  margin: 0 13px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--light-color);
  height: calc(100% - 34px);
}

.plan-overview.plus {
  height: calc(100% - 32px);
  border: none;
  background-color: #ebebec;
  background-color: #f1f1f1;
  color: var(--strong-color);
}

@media (min-width: 731px) {
  .l .plan-overview {
    margin-right: 11px;
  }

  .r .plan-overview {
    margin-left: 11px;
  }
}

.plan-overview button {
  font-size: 14px;
  margin-top: 1em;
  height: 32px;
  padding: 0 16px;
}

.plan-overview button.link {
  cursor: pointer;
}

.plan-overview .index-line {
  margin: 0 0 16px 0;
}

.index-panel .plan-table {
  border-spacing: 0;
  font-size: 13px;
}

.plan-table td.space {
  border: none;
}

.plan-table td.space div {
  width: 13px;
}

.index-panel .plan-table td .line {
  width: calc((var(--content-width) - 22px - 60px) / 4);
}

.index-panel .plan-table td .plan-line {
  width: calc((var(--content-width) - 22px - 28px) / 2);
}

.index-panel .plan-table td.value {
  text-align: center;
  font-weight: 500;
}

.index-panel .plan-table td.plan-label {
  text-align: left;
}

.index-panel .plan-table td.plus {
  color: var(--key-color);
}

.index-panel .plan-table .block-title {
  display: inline-block;
}

.plan-table-wrap {
  margin-left: 13px;
  margin-right: 13px;
}

.plan-table thead td {
  border: none;
}

.f-label {
  margin-left: 13px;
  border-top: 1px solid var(--light-color);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 24px);
}

.f-header .f-label {
  border: none;
}

.f-label p {
  margin: 0;
  color: var(--light-text-color);
  line-height: 1.4;
  font-size: 12px;
}

.f-label p:first-child {
  color: var(--medium-text-color);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
}

.f-set {
  margin-right: 13px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-top: 1px solid var(--light-color);
  height: 100%;
}

@media (min-width: 731px) {
  .f-header .f-set {
    border: none;
  }
}

.f-set.header {
  border: none;
  line-height: 1;
}

.f-val {
  padding: 12px 0;
  color: var(--medium-text-color);
  letter-spacing: -0.01em;
  border-left: 1px solid var(--light-color);
  padding-left: 10px;
  display: flex;
  height: calc(100% - 24px);
  align-items: center;
}

.f-val.plus {
  color: var(--key-color);
  border-left: 1px solid var(--light-color);
  padding-left: 10px;
}

.check-icon {
  stroke-width: 2;
  stroke-linecap: round;
}

.f-val .check-icon {
  stroke: var(--medium-text-color);
  stroke-width: 3;
  stroke-linecap: square;
}

.f-val .x {
  stroke: var(--light-color);
  stroke-width: 3;
  display: none;
}

.f-val-label {
  font-size: 14px;
  display: none;
  margin-bottom: 0.3em;
  text-transform: none;
  font-weight: 500;
}

.f-val.plus .check-icon {
  stroke: var(--key-color);
}

@media (max-width: 730px) {
  .f-label {
    margin-right: 13px;
  }

  .f-set {
    margin-left: 13px;
    border: none;
  }

  .f-val {
    padding-left: 0;
    border: none;
    display: block;
    padding-top: 0;
  }

  .f-val.plus {
    border: none;
  }

  .f-val .x {
    display: block;
  }

  .f-val-label {
    display: block;
  }

  .f-label p:first-child {
    margin-bottom: 0.5em;
  }

  .row-1 {
    display: none;
  }

  .row-2 .f-label {
    border: none;
  }
}

input[type="text"].new-display-title {
  margin-bottom: 8px;
  background-color: white;
  border: 1px solid var(--outline-color);
  height: 32px;
  width: 50%;
  font-size: 12px;
  padding: 0 10px;
}

.new-display-textarea {
  margin-top: 10px;
  border: 1px solid var(--outline-color);
}

.body-textarea {
  height: 70px;
}

.note-textarea {
  height: 30px;
}

input[type="text"].new-display-title:focus {
  border-color: var(--strong-color);
}

textarea {
  padding: 10px;
  width: calc(100% - 20px);
  font-size: 12px;
  font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  border-radius: 5px;
  resize: none;
}

.overlay textarea {
  background-color: var(--extra-light-color);
  border: 1px solid var(--extra-light-color);
  margin-bottom: 1em;
}

/* focus */

.date-selector-wrapper input:focus {
  outline: none;
}

.dropdown-options-wrapper:focus {
  outline: none;
}

button:focus,
input:focus {
  outline: none;
}

.overlay input:focus {
  border-color: var(--outline-color);
}

.overlay .text-attr input:focus {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.overlay button:focus {
  border-color: var(--outline-color);
}

.composer-date-picker .date-selector-wrapper input:focus {
  border-color: var(--outline-color);
}

.composer-date-wrap:focus {
  outline: none;
  border: 1px solid var(--outline-color);
}

textarea:focus {
  outline: none;
  border-color: var(--strong-color);
}

.overlay textarea:focus {
  border-color: var(--outline-color);
}

.switch-section {
  margin-bottom: 1em;
}

.switch-section span {
  padding-left: 10px;
  color: var(--medium-text-color);
}

.switch-container {
  width: 38px;
  height: 20px;
  padding: 2px;
  background-color: #dedede;
  border-radius: 5px;
}

.switch {
  height: 20px;
  width: 20px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
}

.switch-container.active {
  background-color: var(--key-color);
}

.active .switch {
  right: 2px;
}

.lock {
  fill: var(--strong-color);
  margin-right: 4px;
  position: relative;
  top: 1px;
}

.settings .lock {
  display: none;
  fill: var(--medium-color);
}

.settings .lock .stroke {
  stroke: var(--medium-color);
}

.display-title .lock {
  display: none;
}

.lock .stroke {
  fill: none;
  stroke: var(--strong-color);
}

.page-link .lock {
  fill: var(--key-color);
  margin-left: 4px;
  margin-right: 6px;
  display: none;
}

.private .lock {
  display: initial;
}

.page-link .lock .stroke {
  stroke: var(--key-color);
}

.page-link.selected .lock {
  fill: var(--medium-color);
}

.page-link.selected .lock .stroke {
  stroke: var(--medium-color);
}

.page-link.disabled .lock {
  fill: var(--light-color);
}

.page-link.disabled .lock .stroke {
  stroke: var(--light-color);
}

.data-link .lock {
  fill: #9e9e9e;
}

.data-link .lock .stroke {
  stroke: #9e9e9e;
}

.plus-minus {
  stroke: var(--medium-color);
  margin-left: 1px;
}

a.add {
  white-space: nowrap;
}

a.add:hover span {
  color: var(--strong-color);
}

a.add:hover .plus-minus {
  stroke: var(--strong-color);
}

.grecaptcha-badge {
  visibility: hidden;
}

.add-perma {
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px 32px 16px;
}

.add-perma .overlay {
  transform: none;
  box-shadow: none;
  width: 100%;
  z-index: unset;
}

.add-perma .overlay button {
  width: 100%;
}

.add-perma .overlay form {
  padding: 0;
}

.add-perma .overlay .header {
  padding-left: 0;
}

.token {
  border-bottom: 1px solid var(--light-color);
  padding: 0.5em 0;
  color: var(--strong-color);
}

.token .t_name {
  width: 180px;
  padding-right: 1em;
}

.token .t_date {
  width: 100px;
  padding-right: 1em;
}

.settings .section .token a {
  margin-top: 0;
}

pre {
  margin: 0;
}

code {
  display: block;
  white-space: pre-wrap;
  background-color: #efefef;
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--strong-color);
  font-size: 13px;
}

.api-field,
.api-type,
.api-opt {
  font-family: monospace;
}

.api-field {
  color: var(--strong-color);
  /*background-color: var(--extra-light-color);*/
  /*padding: 1px 5px;*/
  /*border-radius: 3px;*/
}

.api-desc {
  color: var(--light-text-color);
}

.api-type,
.api-opt {
  color: var(--key-color);
  border-radius: 3px;
  padding: 2px 6px;
}

.api-opt {
  /*color: var(--light-text-color);*/
  border-radius: 4px;
  display: inline-block;
  padding: 0px 6px;
  background-color: #efefef;
  color: var(--medium-text-color);
}

.api-group {
  border: 1px solid var(--light-color);
  padding: 1em;
  border-radius: 5px;
  margin-bottom: 1em;
}

.api-group .api-desc {
  display: block;
  margin-bottom: 1em;
}

.api-group .api-desc:last-child {
  margin-bottom: 0;
}

.api-label {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}

.api-path {
  background-color: #efefef;
  padding: 8px 12px;
  border-radius: 6px;
  font-family: monospace;
  color: var(--strong-color);
}

.api-path span {
  background-color: var(--key-color);
  color: white;
  padding: 2px 5px;
  border-radius: 3px;
}

.msg-bar {
  background-color: var(--key-color);
  height: 12px;
  padding: 16px;
  color: white;
  padding-right: 8px;
  border-radius: 8px;
  margin-top: 18px;
}

.msg-bar .title {
  font-size: 14px;
  padding-right: 4px;
}

.msg-bar button {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  height: 28px;
  margin-right: 6px;
  margin-bottom: 0;
  font-size: 13px;
  cursor: pointer;
}

.msg-bar svg.x {
  stroke: white;
  stroke-width: 2px;
  cursor: pointer;
}

@media (max-width: 430px) {
  .msg-bar {
    height: 26px;
    margin-top: 0;
    border-radius: 0;
  }

  .msg-bar .title {
    font-size: 15px;
  }

  .msg-bar button {
    height: 30px;
    font-size: 14px;
  }
}

.app-title {
  color: var(--key-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}

.app-mobile .app-title {
  text-align: center;
  padding: 0 0.5em;
}

.app-feat {
  border-bottom: 1px solid var(--light-color);
  padding: 1em;
  cursor: pointer;
}

.app-feat.selected {
  background-color: #f7f7fa;
}

.app-feat p {
  margin-top: 4px;
  margin-bottom: 0;
  line-height: 1.5;
}

.app-screen-group {
  display: flex;
  justify-content: center;
  min-width: 290px;
  padding: 13px 0;
  padding-left: 13px;
}

@media (max-width: 730px) {
  .app-screen-group {
    padding-left: 0;
  }
}

.app-frame,
.app-screen-contain {
  width: 290px;
  height: 575px;
  background-size: contain;
  background-repeat: no-repeat;
}

.app-screen {
  width: 245px;
  height: 530px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}

.app-screen-contain {
  position: relative;
}

.app-screen-wrap {
  width: 245px;
  height: 530px;
  left: 23px;
  top: 21px;
  position: absolute;
  overflow: hidden;
}

.app-screen-set {
  width: 245px;
  height: 530px;
  position: absolute;
  animation-timing-function: ease-in;
  transition-property: left;
  transition-duration: 0.4s;
  left: var(--app-screen-offset);
}

.app-frame {
  position: absolute;
  background-image: url("../images/iphone-frame-ed87bc3f82fc1ce823a4240a0d263db4@2x.png");
}

.app-badge {
  margin-bottom: 3em;
  margin-top: 1em;
}

.text-block .app-badge {
  margin-bottom: 0;
  margin-top: 2em;
}

.app-icon {
  width: 38px;
  height: 38px;
  background-size: contain;
  background-repeat: no-repeat;
  flex: 0 0 38px;
  margin-right: 1em;
}

.app-arrow {
  width: 50px;
  height: 50px;
  background-color: #f7f7fa;
  flex: 0 0 50px;
  border-radius: 50px;
  margin-right: 1em;
  margin-left: 1em;
  cursor: pointer;
}

.app-arrow svg {
  transform: rotate(-90deg);
  width: 22px;
  height: 22px;
  stroke: var(--key-color);
  margin-left: 4px;
}

.app-arrow.prev svg {
  transform: rotate(90deg);
  margin-left: 0;
  margin-right: 4px;
}

.overlay .import {
  padding: 16px;
  font-size: 12px;
  padding-top: 0;
}

.overlay .import-button {
  width: 130px;
  height: 30px;
  line-height: 30px;
  position: relative;
  padding: 0;
}

.overlay-footer {
  margin-top: 24px;
}

.import-button input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.info-row {
  display: flex;
  border-bottom: solid 1px rgb(230, 230, 230);
  line-height: 1.5;
  padding: 6px 0;
}

.upload-info h3 {
  margin-bottom: 0;
  padding-bottom: 10px;
  position: relative;
  border-bottom: solid 1px rgb(230, 230, 230);
}

.info-label {
  color: rgb(150, 150, 150);
  width: 40%;
  flex-shrink: 0;
}

.upload-result h3 {
  margin: 0.7em 0 0.3em;
}

.upload-result {
  margin-top: 2em;
}

.upload-result .check .field-icon {
  position: unset;
  width: 30px;
  height: 30px;
}

.upload-result div {
  color: var(--medium-color);
}
