.documentationpage .justify_self_example {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  grid-gap: 12px;
  gap: 12px;
  width: 100%;
  height: auto;
}
.documentationpage .justify_self_example .cell {
  -ms-display: grid;
  display: grid;
  width: 100%;
  height: auto;
  border: 1px solid #3A405A;
  padding: 12px;
}
.documentationpage .justify_self_example .box {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  display: flex;
  place-content: center;
  place-items: center;
  color: #FFF;
}
.documentationpage .justify_self_example .box.end {
  -webkit-justify-self: end;
  justify-self: end;
}