.ast_item {
    display: flex;
    flex-flow: row wrap;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
    overflow:hidden;
}

.shortcode_name {
    font-size: x-large;
    font-weight: bold;
    flex-grow: 1;
    
    
}

.shortcode_description {
    font-style: normal;
    max-width: 25%;
    margin-block: auto;
    padding-top: 10px;
    padding-left: 25px;
    flex-grow:1;
}

.price_list{
    align-items: center;
    border-left-style:dotted;
    padding-right: 25px;
    padding-top: 25px;
    flex-grow:1;
}

.price_list li{
    text-decoration: underline;
}

.item_picture{
    max-width: 150px;
    padding-top: 5px;
    overflow: hidden;
    flex-grow: 1;
}

.item_picture img{
    width: 100%;
}

/* this is for the smart elements front end */
.element-display {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid yellow;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-bottom: 10px;
  }
  
  .smart-picture {
    margin-left: 10px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 5px;
    align-self: flex-start;
  }
  
  .smart-picture img {
    max-width: 150px;
    height: auto;
    display: block;
  }
  
  .element-display .element-content {
    flex-grow: 1;
    margin-right: 10px;
  }
  
  .element-display h3 {
    margin: 0;
  }
  
  .element-display .prices-container {
    display: flex;
    flex-direction: row;
  }
  
  .element-display .price-list {
    display: flex;
    justify-content: space-between;
  }
  
  .element-display .price-list .price-name {
    flex-grow: 1;
  }
  
  .element-display .price-list .price-cost {
    margin-left: 10px;
  }
  