.dialog-item-element,
.dialog-item-element * {
  box-sizing: border-box;
}
.dialog-item-element {
  background: var(--main-background, #ffffff);
  padding: 8px 19px 8px 16px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  //width: 270px;
  position: relative;

}
.dialog-item-element-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--disabled-elements);
  color: var(--secondary-text);

}
.contents-user {
  position: absolute;
  left: 7.14px;
  top: 7.14px;
  overflow: visible;
}
.dialog-item-element-subtitle {
  color: var(--main-text, #0b1b0f);
  text-align: left;
  font: var(--body-body-large, 400 16px/24px "Roboto", sans-serif);
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
  @media (max-width: 767px) {
    width: 120px;
  }
}

.toggle-check-on {
  align-self: stretch;
  flex: 1;
  position: relative;
  overflow: visible;
}
