.prem_product_list,
.prem_product_item {
  display:flex;
  /*justify-content:space-between;*/
  flex-wrap: wrap;
}
.prem_product_item {
  width:25%;
  min-width:300px;
  flex-direction: column;
  box-shadow: 0 0.5em 0.75em rgba(0,0,0,0.3);
  margin: 20px;
  border-radius: 10px;
  overflow: hidden;
	background:#eaeaea;
	position: relative;
	 transition: 0.5s;
}
.prem_product_item:hover {
   box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.6);
 transition: 0.2s;
}
.prem_product_item_image {
  height: 160px;
  background-size: cover;
}
.prem_product_item_title {
  margin: 0 0 0.5em;
  background: #0d3456;
  color: white!important;
  text-align: center;
  padding: 0.25em 0;
	font-size: 18px;
	position: absolute;
    bottom: -10px;
    left: 0px;
    min-width: 300px;
    width: 100%;
}
.prem_product_item_spec ul,
.prem_product_item_buttons ul {
  padding:0 !important;
}
.prem_product_item_buttons ul li {
  list-style:none;
}
.prem_product_item_buttons ul li a {
  display:block;
  background:#1560a2;
  text-align:center;
  color:#fff;
  padding:0.25em;
}
.prem_product_item_spec ul {
  margin-bottom: 1em;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.prem_product_item_spec ul li {
  color: #aaa;
  font-size: 0.8em;
  list-style: none;
  line-height: 1.7;
  padding:0 0.5em;
  width:50%;
}
.prem_product_details p small {
	
}