<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#product_content .item{
    width: calc(25% - 36px);
    margin: 15px;
    border-radius: 10%;
    display: inline-block;
    overflow: hidden;
    position: relative;
}
#product_content .item figure{
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100%;
}
.recipe_name{
    width: 100%;
    padding: 10px 0;
    background-color: rgba(222,222,222,1);
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .3s;
}
.recipe_name p{
    color:#259C48;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: transparent 2px solid;
    display: inline-block;
    transition: .3s;
}
#product_content .item:hover .recipe_name{
    padding: calc(50% - 12px) 0;
    background-color: rgba(222,222,222,.8);
}
#product_content .item:hover .recipe_name p{
    border-bottom: #259C48 2px solid;
}

.no_item_msg{
    width: 100%;
    padding: 40px 0;
    text-align: center;
    font-size: 18px;
    color: #ccc;
}

@media screen and (max-width: 1024px){
    #product_content .item{
        width: calc(33.3333% - 36px);
    }
}
@media screen and (max-width: 768px){
    #product_content .item{
        width: calc(50% - 36px);
    }
}
@media screen and (max-width: 425px){
    #product_content .item{
        width: calc(50% - 20px);
        margin: 7px;
    }
}
@media screen and (max-width: 375px){
    #product_content .item{
        width: calc(100% - 20px);
        margin: 7px;
    }
}</pre></body></html>