.listItem__wrapper {
  width: calc(100% - 12px);
  height: 66px;
  background-color: white;
  display: inline-block;
  margin: 0 6px 12px 6px;
  cursor: pointer;
  position: relative;
}

.listItem__info {
  width: calc(100% - 50px);
  height: 66px;
  display: inline-block;
  position: relative;
}

.listItem__info--selected {
  width: calc(100% - 50px);
  height: 66px;
  display: inline-block;
  background-color: #CCC;
  position: relative;
}

.listItem__profileImage {
  height: 60px;
  width: 60px;
  object-fit: cover;
  object-position: top;
  display: inline-block;
  vertical-align: top;
}

.listItem__name {
  display: inline-block;
  background-color: transparent;
  font-weight: 600;
  text-align: left;
  padding-left: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 66px;
  font-size: 1.6rem;
  width: 100%;
  user-select: none;
}

.listItem__title {
  display: inline-block;
  background-color: transparent;
  font-weight: 600;
  text-align: left;
  padding-left: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 66px;
  font-size: 1.6rem;
  width: 60%;
  user-select: none;
}
.listItem__note {
  display: inline-block;
  background-color: transparent;
  font-weight: 600;
  text-align: right;
  padding-left: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 66px;
  font-size: 1.6rem;
  width: 35%;
  user-select: none;
}

.listItem__goto {
  display: inline-block;
  right: 0;
  height: 100%;
  vertical-align: top;
  line-height: 66px;
  width: 50px;
  text-align: center;
  color: white;
  font-size: 2.4rem;
  user-select: none;
}

.listItem__delete {
  position: absolute;
  top: -7px;
  left: -7px;
  font-size: 1.5rem;
  color: red;
  user-select: none;
}

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

  .listItem__delete {
    font-size: 3rem;
  }

  .listItem__goto {
    font-size: 2.4rem;
  }
}
