#products_list {
    width: 100%;
    height: auto;
    overflow: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.productsSoldAndReservedButton {
    position: fixed;
    bottom: 2px;
    right: 2px;
    z-index: 100;
    box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -webkit-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -moz-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
}

#products_list .item {
    width: 310px;
    height: 400px;
    margin: 20px;
    position: relative;
    border-radius: 20px;
    box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -webkit-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
    -moz-box-shadow: 4px 6px 13px -3px rgba(28, 38, 62, 0.88);
}

.item_img_container {
    width: 100%;
    overflow: hidden;
    height: 340px;
    display: flex;
    padding: 10px;
    background-color: #FFFFFF;
    flex-direction: column;
    justify-content: center;

}

#products_list .item img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}

.item_status_container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item_status {
    width: 120px;
    margin: auto;
    padding: 10px;
    text-align: center;
    color: darkred;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.6);
}

.item_title_container {
    width: 100%;
    height: 60px;
    padding: 10px;
    border-radius: 20px;
    background-color: #a6574a;
    vertical-align: bottom;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

#products_list .item h3 {
    color: #FFFFFF;
    font-size: 14px;
}