/* woocommerce archieve page css */
.woocommerce-ordering, .woocommerce-result-count{
    display: none;
}
#primary{
    margin:50px 0;
}
.products{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}
.products li{
    list-style: none;
}
.woocommerce-LoopProduct-link{
    text-decoration: none;
    color: black;
}
.products li{
    text-align: center;
    text-align: center;
    box-shadow: 1px 2px 3px grey;
    transition: 0.5s all ease-in-out;
    width: 250px;
    height: 300px;
    margin:20px;
    border-radius: 10px;
}
.products li:hover{
    transform: scale(1.1);
}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
    width: 200px;
    height: 200px;
}
a.button.product_type_simple {
    text-decoration: none;
}

/* woocommerce single page css */

.single_product_wc{
    width: 100%;
    display: flex;
    flex:row;
    justify-content: space-around;
    align-items: center;
}
ul.tabs.wc-tabs{
    display: none;
}
.summary.entry-summary {
    padding: 10px;
    margin:0 50px;
}
img.wp-post-image {
    width:400px;
    height:400px;
}
.woocommerce-breadcrumb a{
    text-decoration: none;
}