.memo-container {
  width: 100%;
  display: block;
  max-height: 250px;
  overflow: scroll;
}

.memo-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
}

.memo-row-left {
  align-items: flex-start;
}

.memo-row-right {
  align-items: flex-end;
}



.memo {
  text-align: left;
  max-width: 40%;
  display: block;
}

.memo-content {
  background: whitesmoke;
  border: 1px solid lightgrey;
  border-radius: 7px;
  padding: 5px;
  max-height: 800px;
  overflow-scrolling: touch;
  overflow: hidden;
}

.memo-small {
  font-size: 11px;
}

.memo-reply-row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 0 10px;
  box-sizing: border-box;
}

.memo-help {
  margin: 0 12px;
  font-size: 12px;
}

.memo-reply-input {
  margin-bottom: 0px;
}







