/*
 Theme Name:   gravity
 Theme URI:    http://projects.source.run
 Description:  Vue 2 based WP theme
 Author:       sourcetown
 Author URI:   https://source.run
 Version:      0.1.0
 Tags:         light, rest, api, vueJS, commerce
*/
ul.product--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

ul.product--list li {
  display: inline-block;
  -webkit-box-flex: 0 0 100%;
  -ms-flex: 1;
  flex: 0 0 100% !important;
}

@media (min-width: 768px) {
  ul.product--list li {
    display: inline-block;
    -webkit-box-flex: 0 0 50%;
    -ms-flex: 1;
    flex: 0 0 50% !important;
  }
}

@media (min-width: 1140px) {
  ul.product--list li {
    display: inline-block;
    -webkit-box-flex: 0 0 25%;
    -ms-flex: 1;
    flex: 0 0 25% !important;
  }
}
