@charset "UTF-8";
/** add style to the price
example code:
<div class="app-special-price-container">
  <span class="app-special-price-label">Dùng App:</span> <span class="app-special-price"><?php echo number_format($app_special_price) ?>đ</span>
</div>

The price should be distinct and larger than the original price
Price container should be boxed by dashed line using accent color
Accent color #f15e24
*/
.app-special-price-container {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px dashed #f15e24;
  padding: 10px;
}

.app-special-price-container .app-special-price-label,
.app-special-price-container strong {
  color: #666667;
  font-weight: bold;
}

.app-special-price {
  color: #f15e24;
  font-weight: bold;
  font-size: 1.5em;
}

.main-products-loop .app-special-price,
.flash-sale-products .app-special-price,
.products-loop .app-special-price {
  font-size: 1em;
}

.main-products-loop .app-special-price-container,
.flash-sale-products .app-special-price-container,
.products-loop .app-special-price-container {
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  padding: 0;
}
/*# sourceMappingURL=styles.css.map */