/* -------------------------------------- */
/* DEFAULT (MOBIL)                        */
/* -------------------------------------- */

.product-parent[data-discount] {
  position: relative;
}

.product-parent[data-discount]::before {
  content: "-" attr(data-discount) "%";
  position: absolute;
  top: 70px;
  right: 20px;

  width: 40px;
  height: 40px;

  background: #2a363c;
  color: #ffd02b;
  font-size: 11px;
  font-weight: bold;
  
  border-radius: 50%;
  z-index: 1000;
  pointer-events: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);

  /* Center text */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-parent[data-discount="0"]::before {
  content: none;
}


/* -------------------------------------- */
/* TABLET (min-width: 600px)              */
/* -------------------------------------- */

@media (min-width: 600px) {
  .product-parent[data-discount]::before {
    width: 50px;
    height: 50px;
    font-size: 13px;
    top: 65px;
    right: 25px;
  }
}


/* -------------------------------------- */
/* DESKTOP (min-width: 992px)             */
/* -------------------------------------- */

@media (min-width: 992px) {
  .product-parent[data-discount]::before {
    width: 60px;
    height: 60px;
    font-size: 16px;
    top: 70px;
    right: 30px;
  }
}
