.wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100vh;
  align-items: center;
}

/* .item__inner_child {
  display: flex;
  flex-direction: row-reverse;
} */
.item__inner_child {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 10px;
  margin: 0;
}

.item__inner_child p {
  padding: 20px;
  margin: 0;
  background-color: Beige;
}

.item-parent {
  position: relative;
  margin-left: 50px;
  display: flex;
  align-items: center;
}

.item-parent:after {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  left: 0;
  top: 50%;
  background-color: #fe5e14;
  transform: translateX(-100%);
}

.item-parent:last-child:after {
  background-color: white;
}

.item-childrens {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.item-child {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  margin: 10px 0;
  position: relative;
}

.item-child:before {
  content: "";
  position: absolute;
  background-color: #fe5e14;
  right: 0;
  top: 50%;
  transform: translateX(100%);
  width: 25px;
  height: 2px;
}

.item-child:after {
  content: "";
  position: absolute;
  background-color: #fe5e14;
  right: -25px;
  height: calc(50% + 22px);
  width: 2px;
  top: 50%;
}

.item-child:last-child:after {
  transform: translateY(-100%);
}

.item-child:only-child:after {
  display: none;
}

/* ************************ */
.bye-row p {
  background-color: lightgray;
  font-style: italic;
}
