div.item_list_box
{
  display: flex;
  flex-wrap: wrap;
  border: 1px none red;
}

div.item_list_box div#list_caption
{
  display: flex;
  width: 100%;
  padding: 8px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  letter-spacing: 1px;
}

a.item_list_panel
{
  flex: 1 1 100%;
  display: flex;
  flex-wrap: nowrap;
  margin: 8px;
  padding: 4px;
  text-decoration: none;
  border: 1px dotted gray;
  border-radius: 8px;
  background-color: white;
}

a.item_list_panel > img
{
  flex: 0 0 auto;
  display: block;
  margin: auto 0; /* center vertically */
  max-width: 100px;   /* flex 0 0 auto and max height keeps aspect ration */
  max-height: 100px;  /* " */
}

a.item_list_panel > div.item_data_panel
{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  margin-left: 12px;
  border: 1px none orange;
}

a.item_list_panel > div.item_data_panel > div.item_caption
{
  display: flex;
  flex-direction: column;
  margin-bottom: 1em;
  padding: 6px 12px;
  color: #ffffff;
  background-color: #404b4f; 
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

a.item_list_panel > div.item_data_panel > div.item_caption > div
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; 
  letter-spacing: 1px;
}

a.item_list_panel > div.item_data_panel > div.item_caption > div:nth-child(1)
{
  font-size: 1.7em;
}

a.item_list_panel > div.item_data_panel > div.item_caption > div:nth-child(2)
{
  font-size: 1.5em;
}

a.item_list_panel > div.item_data_panel > div.item_data
{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

a.item_list_panel > div.item_data_panel > div.item_data > div.item_descr
{
  flex: 1 1 75%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
}

a.item_list_panel > div.item_data_panel > div.item_data > div.item_price
{
  flex: 1 1 25%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  border: 1px none blue;
}
