.notes-input {
  position: relative;

  textarea {
    background-color: $off-white;
    position: relative;
    z-index: 0;
    font-size: 12px;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 100px;
    height: 100px;
    max-height: 100px;
  }

  .placeholder {
    pointer-events: none;
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 12px;
    font-size: 12px;
  }

  &.has-note .placeholder,
  textarea:focus + .placeholder {
    display: none;
  }
}