body {
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  font-family: Arial;
  margin: 0;
  padding: 0; }
  body input, body textarea, body button, body p, body select, body option {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    color: #2f3542;
    resize: none; }

::-webkit-input-placeholder {
  color: #2f3542; }

.top {
  width: 100%;
  height: 64px;
  top: 0px;
  left: 0px; }
  .top .button.primary {
    margin: 16px;
    padding: 4px 12px 4px 12px;
    text-align: center;
    line-height: 26px;
    border-radius: 4px;
    background-color: #2f3542;
    color: white;
    font-weight: bold;
    float: right; }
  .top .button.back {
    float: left;
    display: block;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("../img//back.svg"); }
  .top .button.option, .top .button.drop, .top .button.pin, .top .button.pinned {
    float: right;
    display: block;
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("../img//option.svg"); }
  .top .button.drop {
    background-image: url("../img//delete.svg");
    background-size: 20px 20px; }
  .top .button.pin {
    background-image: url("../img//pin.svg");
    background-size: 20px 20px;
    background-position: center 24px; }
  .top .button.pinned {
    background-image: url("../img//pinned.svg");
    background-size: 20px 20px;
    background-position: center 24px; }
  .top .button.close {
    width: 64px;
    height: 64px;
    float: left;
    text-align: center;
    line-height: 32px;
    font-size: 26px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("../img//close.svg"); }

.card {
  height: 216px;
  background-color: white;
  margin: 16px;
  position: relative;
  top: auto;
  bottom: auto;
  border: 0.5px solid #a4b0be;
  border-radius: 6px;
  overflow: hidden;
  word-break: break-all;
  transition: all ease 0.3s; }
  @media (max-width: 5000px) and (min-width: 1366px) {
    .card {
      width: calc(20% - 34.5px);
      float: left; } }
  @media (max-width: 1366px) and (min-width: 1080px) {
    .card {
      width: calc(25% - 34.5px);
      float: left; } }
  @media (max-width: 1080px) and (min-width: 920px) {
    .card {
      width: calc(30% - 34.5px);
      float: left; } }
  @media (max-width: 920px) and (min-width: 600px) {
    .card {
      width: calc(50% - 34.5px);
      float: left; } }
  @media (max-width: 600px) {
    .card {
      width: calc(100% - 34.5px); } }
  .card .click-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2; }
  .card .top {
    visibility: hidden;
    position: absolute;
    top: -100px; }
  .card .content {
    width: 100%;
    height: 100px;
    overflow: hidden;
    padding: 16px;
    box-sizing: border-box;
    outline: none;
    font-size: 16px;
    line-height: 20px;
    border: 0;
    flex-direction: column; }
  .card .underline {
    background-color: yellow; }
  .card h2, .card input {
    outline: none;
    border: 0;
    font-size: 20px;
    line-height: 32px;
    font-weight: bold;
    padding: 16px; }
  .card p {
    font-size: 16px;
    line-height: 20px; }
  .card .tags {
    width: 100%;
    height: 16px;
    padding: 16px;
    background-color: white; }
    .card .tags p {
      display: block;
      float: left;
      margin-right: 8px;
      font-weight: bold; }
  .card.splash {
    width: calc(100vw);
    height: calc(100vh);
    position: fixed;
    z-index: 3;
    top: 0;
    bottom: 0;
    border: 0;
    border-radius: 0;
    margin: 0; }
    .card.splash .click-layer {
      position: relative;
      z-index: -1;
      width: 0px;
      height: 0px; }
    .card.splash .top {
      visibility: visible;
      position: relative;
      top: auto; }
    .card.splash .content {
      height: calc(100vh - 172px);
      overflow: auto; }

.window {
  width: 100vw;
  height: 100vh;
  top: 0px; }
  .window .row {
    width: 100%;
    position: relative;
    min-height: calc(64px - 16px);
    float: left;
    border-bottom: 0.1px solid #a4b0be; }
    .window .row .icon {
      width: 64px;
      height: 64px;
      float: left;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 26px 26px;
      background-image: url("../img//day.svg"); }
    .window .row input, .window .row textarea, .window .row select, .window .row option {
      width: calc(100vw - 84px);
      height: 48px;
      float: left;
      margin: 8px;
      font-size: 22px;
      line-height: 64px;
      outline: none;
      border: 0px;
      background-color: transparent; }
    .window .row option {
      overflow: hidden; }
    .window .row textarea {
      height: 400px;
      padding: 0;
      margin: 8px;
      margin-top: 16px;
      display: block;
      text-align: left;
      font-family: Arial !important;
      font-size: 22px !important;
      line-height: 32px;
      color: #2f3542; }
      .window .row textarea.small {
        height: 40px;
        transition: all ease 0.3s; }
        .window .row textarea.small:hover {
          height: 400px; }

.floating-button {
  position: fixed;
  z-index: 4;
  bottom: 16px;
  right: 16px;
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background-color: #2f3542;
  box-shadow: 1px 2px 20px -10px #2f3542;
  transition: all ease 0.3s; }
  .floating-button .buttonicon {
    width: 64px;
    height: 64px;
    background-color: #2f3542;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px;
    background-image: url("../img//idea.svg");
    position: absolute;
    top: 0;
    z-index: 4;
    text-decoration: none;
    color: white;
    display: block;
    text-align: center;
    line-height: 64px;
    font-size: 32px; }
  .floating-button.splash {
    width: 100vw;
    height: 100vh;
    margin: 0;
    bottom: 0;
    right: 0;
    border-radius: 0;
    z-index: 100;
    overflow-y: scroll;
    background-color: white; }
    .floating-button.splash .buttonicon {
      visibility: hidden; }
  .floating-button.show {
    bottom: 84px;
    right: 16px; }
    .floating-button.show.splash {
      bottom: 0px;
      right: 0px; }

.view {
  width: 100vw;
  height: 100vh;
  position: absolute;
  margin: 0; }
  .view.index .row {
    width: 100%;
    min-height: 64px;
    line-height: 64px; }
  .view.index .search {
    height: 32px;
    position: fixed;
    z-index: 3;
    top: 16px;
    left: 16px;
    padding: 8px;
    font-size: 22px;
    line-height: 48px;
    outline: none;
    border: 0.5px solid #a4b0be;
    border-radius: 6px;
    box-shadow: 1px 2px 20px -10px #2f3542;
    transition: all ease 0.3s; }
    @media (max-width: 5000px) and (min-width: 600px) {
      .view.index .search {
        width: 400px;
        left: calc(50vw - 200px); } }
    @media (max-width: 600px) {
      .view.index .search {
        width: calc(100vw - 48px); } }
    .view.index .search.show {
      top: 16px; }
  .view.edit {
    transition: all ease 0.3s; }
    .view.edit.hide {
      position: absolute;
      overflow: hidden;
      width: 0px;
      height: 0px;
      bottom: 8px !important;
      right: 8px !important;
      background-color: #2f3542; }
      .view.edit.hide .card.splash {
        position: relative !important; }
