/* PRODUCT LABELS */
.single-product .product-labels .product-label.out-of-stock, 
.outofstock .product-labels .product-label.onsale, 
.outofstock .product-labels .product-label.new {
    display: none !important;
}
.product-grid-item .onsale.product-label {
    position: absolute;
    left: 100%;
}
.product-labels .product-label.onsale {
  background-color: #ff5200;
  color: #ffffff;
}
.single-product .new.product-label {
    position: absolute;
    right: 100%;
    min-width: 60px;
}
.product-grid-item .product-labels .out-of-stock {
    background-color: #dd3333;
    color: #ffffff;
}
.product-grid-item .product-labels .out-of-stock:before {
    display: none;
}
/* BESTSELGER OG SUPERDEAL */
.bestselger {
  position: absolute;
  background: #65B32E;
  color: #ffffff;
  padding: 0px 5px;
  bottom: 0;
  left: 0;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  z-index: 1;
}
.superdeal {
  position: absolute;
  background: #D41212;
  color: #ffffff;
  padding: 0px 5px;
  right: 0;
  bottom: 0;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  z-index: 1;
}
.recommended {
  position: absolute;
  background: #979c6d;
  color: #000000;
  padding: 2px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 70px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.25;
  z-index: 999;
}
.egenberedskap {
  position: absolute;
  background: #979c6d;
  padding: 2px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 75px;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1.25;
  z-index: 999;
}
.egenberedskap a {
  color: #000;
}
@media all and (min-width: 576px) and (max-width: 1024px) {
  .bestselger, .superdeal, .recommended, .egenberedskap {
    font-size: 11px;
  }
}
@media all and (max-width: 575px) {
  .bestselger, .superdeal {
    font-size: 10px;
  }
  .recommended {
    width: 60px;
    font-size: 10px;
    font-weight: 500;
    padding: 1px;
    color: #fff;
    line-height: 1.2;
  }
  .egenberedskap {
    width: 65px;
    font-size: 10px;
    font-weight: 500;
    padding: 1px;
    line-height: 1.2;
  }
  .egenberedskap a {
    color: #fff;
  }
}
.product-labels {
  position: absolute;
  top: 7px;
  inset-inline-start: 7px;
  z-index: 1;
  transform: translateZ(0);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10px;
  transition: all .3s ease;
}
.product-label {
  padding: 5px 10px;
  min-width: 50px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  word-break: break-all;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
}