#product_nav{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 20px;
}
#product_details_container{
    width: 50%;
    float: right;
}
#product_gallery{
    width: 50%;
    float: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: scroll;
}
#product_gallery img{
    width: 200px;
    height: auto;
    margin: 20px;
}
#product_gallery figure{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_details_picture{
    position: relative;
}
.item_status_details_container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#click_info{
    width: 100%;
    text-align: center;
    font-size: 14px;
}
.sold_product_message{
    color: red;
}