.myContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: calc(100% - 30px);
  margin-bottom: 20px;
}
.myContainer div {
  margin: auto;
  padding: 0 15px;
}
.myContainer .nom {
  font-weight: bold;
}
.myContainer .donneesobfusquees {
  display: block;
  color: red;
}
.myContainer .commentaire {
  flex-grow: 6;
  font-size: 14px;
}
.myContainer .dot {
  padding: 0;
  height: 15px;
  width: 15px;
  background-color: #bbb;
  border-radius: 50%;
}
.myContainer .dot.yellow {
  background-color: #ffeb3b !important;
}
.myContainer .dot.grey {
  background-color: #9e9e9e !important;
}
.myContainer .dot.green {
  background-color: #4caf50 !important;
}
.myContainer .dot.deep-orange {
  background-color: #ff5722 !important;
}
.flexColumn {
  display: flex;
  flex-direction: column;
}