.ccm-page .o-list {
  overflow: hidden;
}
.ccm-page .o-list .o-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.ccm-page .o-list .o-row .o-col {
  padding: 0 16px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  max-width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .ccm-page .o-list .o-row .o-col {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .ccm-page .o-list .o-row .o-col {
    width: 33.333%;
  }
}
.ccm-page .o-list .o-row:last-of-type .o-col {
  margin-bottom: 0;
}
.ccm-page .product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ccm-page .product-card .product-image img {
  width: 100%;
}
.ccm-page .product-card .product-content {
  padding: 20px;
}
.ccm-page .product-card .product-content h3 a {
  text-decoration: none;
  font-size: 20px;
}
.ccm-page .product-card .product-content ul {
  list-style: none;
  padding: 0;
}
.ccm-page .product-card .product-content ul li {
  position: relative;
  padding-left: 32px;
}
.ccm-page .product-card .product-content ul li::before {
  content: ' ';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/check.png');
  position: absolute;
  top: 4px;
  left: -4px;
  margin-right: 5px;
}
.ccm-page .product-card .product-content p:last-child {
  margin-bottom: 0;
}
.ccm-page .product-card .product-content + .product-pre-footer,
.ccm-page .product-card .product-content + .product-footer {
  margin-top: auto;
}
.ccm-page .product-card .product-pre-footer {
  background-color: #fa7135;
  padding: 10px 20px;
  text-align: right;
}
.ccm-page .product-card .product-pre-footer .info-tags {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.ccm-page .product-card .product-pre-footer .info-tags .info-tag {
  float: initial;
  background-color: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin-left: 10px;
}
.ccm-page .product-card .product-pre-footer .info-tags .info-tag img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}
.ccm-page .product-card .product-pre-footer .info-tags .info-tag:first-child {
  margin-left: 0;
}
.ccm-page .product-card .product-footer {
  padding: 20px;
  display: flex;
  align-items: center;
}
.ccm-page .product-card .product-footer .price {
  display: flex;
  align-items: center;
  font-weight: bold;
  flex: 1;
}
.ccm-page .product-card .product-footer .price::after {
  content: ' PP';
  padding-left: 4px;
}
.ccm-page .product-card .product-footer::after {
  display: table;
  content: ' ';
  clear: both;
}
