/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
  flexbox (cell-base)
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cell-base {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
} /* margin-bottom padding-bottom--head */

.cell {} /* width height--head */
.cell2 {} /* width height--head */

.image-wrapper-base {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.image-wrapper {
  width: 100%;
  text-align: center;
  display: block;
} /* height--head */

.image-wrapper2 {} /* height--head */

.image-wrapper img {
  max-height: 100%;
  height: auto;
  display: inline-block;
}

.text-wrapper {
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  text-align: center;
} /* margin-top padding line-height---head */


