.mobs{
    display: block;
}
.desktop{
    display: none;
}

.product_content{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.product_content .product_info{
    width: 100%;
}
.product_content .price_and_btn.desktop{
    display: none;
}
.product_content .price_and_btn.mobile{
    display: block;
}
.product_image{
    width: 170px;
}
.product-card.with_options,
.product-card.with_short_list{
    width: 100%;
}
.product-card.with_short_list .product_info .product_name{
    font-size: 15px;
}
.product-card .icons{
    opacity: 1;
}
@media (max-width:500px){
    .product-card.with_options{
        flex-direction: column;
    }
    .product_image{
        width: 100%;
    }
}
@media (min-width:1024px){
    .mobs{
        display: none;
    }
    .desktop{
        display: flex;
    }
    .product-card.with_options,
    .product-card.with_short_list{
        width: 95vw;
    }
    .product_content{
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    .product_content .price_and_btn.desktop{
        display: block;
    }
    .product_content .price_and_btn.mobile{
        display: none;
    }
    .product_content .product_info{
        width: 80%;
    }
    .product-card.with_short_list .product_info .product_name{
        font-size: 21px;
    }
    .product-card .icons{
        opacity: 0;
    }
}