.property-notes {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px;
}

.property-notes .add-new-note form button {
  vertical-align: top;
}

.property-notes .add-new-note form textarea {
  width: calc(100% - 45px);
  height: 34px;
  display: inline-block;
  transition: 0.2s all ease;
}

.property-notes .add-new-note form textarea.expanded {
  height: 150px;
}

.property-notes .notes-list {
  min-height: 300px;
}

.property-notes .notes-list .notes-container .note {
  background-color: #e8e8e8;
  margin: 5px 0px;
  padding: 20px 10px 5px 10px;
  position: relative;
  border-top: solid #676767 5px;
  transition: 0.3s all ease;
}

.property-notes .notes-list .notes-container .note.selected-note {
  background-color: #ffe590;
  border-top: solid #ffc400 5px;
}

.property-notes .notes-list .notes-container .note .note-text {
  white-space: pre-line;
  margin-top: -25px;
}

.property-notes .notes-list .notes-container .note .note-text.edit-mode textarea {
  min-height: 200px;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
}

.property-notes .notes-list .notes-container .note .note-date {
  margin-bottom: 0px;
}

.property-notes .notes-list .notes-container .note .note-delete-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 1;
  font-size: 20px;
  color: red;
  padding: 5px;
  cursor: pointer;
  transform: translateY(-16px) translateX(10px);
}
