.notesForm {
  position: relative;
  display: block;
  width: 100%;
  background-color: white;
  padding: 1rem 0;
}

.notesForm__itemsList {
  position: relative;
  display: block;
  padding: 0.3rem;
  text-align: center;
  font-weight: 600;
  border-top: 3px solid;
  margin-top: 1rem;
  font-size: 2rem;
}

.notesForm__itemsWrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}

.notesForm__item {
  width: 50%;
  padding: 1rem;
}

@media screen and (max-width: 991px) {
  .notesForm__itemsList {
    font-size: 2.4rem;
  }
}

/* This is here to hide the delete button on the CRM Notes. Remove as needed */
.notesForm__itemsWrapper .previewedItem_delete {
  display: none;
}
