$gray: #eee;
$red: #591818;
.hidden {
  display: none;
}
.sc-prose-editor {
  counter-reset: note;

  .sc-note {
    color: $red;
    font-weight: bold;
    display: inline-block;
  }

  .sc-note::after {
    content: '['counter(note)']';
    counter-increment: note;
    font-size: 11px;
    font-style: italic;
    font-weight: 400;
  }
}

.sc-edit-note-tool-container {
  background-color: $gray;
  border: 1px solid $red;
  display: inline-block;

  .sc-save-area {
    display: inline;
    float: left;
    height: 100%;
    padding: 5px 5px 0;
    width: 40px;

    .sc-save-icon {
      color: $red;
      cursor: pointer;
      position: absolute;
      right: 19px;
      top: 17px;

      &:hover {
        color: $red;
      }
    }
  }

  textarea {
    background-color: $gray;
    border: transparent;
    border-right: 1px dashed $red;
    color: $red;
    float: left;
    font-family: 'Fira Sans';
    font-size: 15px;
    min-height: 39px;
    outline: none;
    overflow: hidden;
    resize: none;
    width: 310px;

    &[disabled] {
      border-right: 0;
    }
  }
}