
.row_between_center{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.row_evenly_center{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.row_between_start{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.row_around_start{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
}
.row_start_center{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.row_start_start{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.row_center_center{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.row_around_center{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
.row_start_end{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
}
.row_between_end{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.row_end_center{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.row_end_start{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-start;
}
.row_end_end{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
}
.col_around_center{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.col_start_center{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.col_start_start{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.col_around_start{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.col_between_center{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.col_between_start{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.col_end_center{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.col_center_center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.col_end_start{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.col_start_end{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.text-cut {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}

.text-wrap{
  word-wrap: break-word;
  word-break: break-word;
}