.offers .offer {
  box-shadow: 0 0 4px 1px var(--grey_dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: white;
  position: relative;
  border-radius: 4px;
  padding: 0 10px;
  margin: 3px;
  transform: scale(0.98);
  transition: 0.5s ease transform;
}
.offers .offer:before {
  content: "";
  background-color: #f4f4f4;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  transition: 0.5s ease width;
  z-index: -1;
}
.offers .offer:hover:before {
  width: 100%;
}
@media only screen and (max-width: 990px) {
  .offers .offer:hover:before {
    width: 0%;
  }
}
.offers .offer .offer-container {
  display: flex;
  justify-content: space-between;
}
.offers .offer .offer-container .offer-info {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offers .offer .offer-container .offer-info .row {
  font-weight: 500;
  font-size: 120%;
}
.offers .offer .offer-container .offer-info .stocks {
  display: flex;
  padding: 5px 0;
}
.offers .offer .offer-container .offer-info .stocks .stock {
  padding: 3px 10px;
  border-radius: 4px;
  background-color: #ebebeb;
  margin-right: 4px;
  text-transform: uppercase;
  font-size: 80%;
}
.offers .offer .offer-container .offer-price-and-type {
  min-width: 150px;
  padding: 10px 10px 10px 0;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type {
  text-align: right;
  padding-top: 15px;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .price {
  display: flex;
  justify-content: flex-end;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .price .price-box .old-value {
  font-size: 100%;
  text-decoration: line-through;
  color: var(--dark);
  line-height: 0px;
  font-weight: 500;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .price .offer-discount {
  margin: auto 2px;
  background-color: #00bb00;
  color: white;
  padding: 0 4px;
  border-radius: 4px;
  font-size: 80%;
  font-weight: 500;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .price .value {
  font-size: 150%;
  font-weight: 600;
  color: #d31f26;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .price span {
  padding-top: 8px;
}
.offers .offer .offer-container .offer-price-and-type .price-and-type .type {
  text-transform: uppercase;
  font-size: 80%;
  padding-top: 7px;
}
.offers .offer .offer-admin-detail {
  display: flex;
  font-size: 85%;
  padding: 5px 0;
  flex-wrap: wrap;
}
.offers .offer .offer-admin-detail div {
  box-shadow: inset 0 0 0 1px black;
  border-radius: 4px;
  padding: 2px 4px;
  font-weight: 500;
  margin: 2px;
}

/*# sourceMappingURL=offer-card.css.map */
