.ProductListItemView {
  position: relative;
  background-color: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
  box-shadow: 0px 0px 10px 2px var(--color-offwhite_02);
  border-radius: 8px;
  display: block;
  padding: 10px;
  overflow: hidden;
  width: 200px;
}
.ProductListItemView .loader-overlay {
  display: none;
}
.ProductListItemView.loading .loader-overlay {
  display: flex;
}
.ProductListItemView .out-of-stock {
  position: absolute;
  top: 80px;
  left: -13px;
  width: calc(100% + 25px);
  height: 30px;
  line-height: 36px;
  text-align: center;
  transform: rotate(-20deg);
  color: var(--color-white);
  background-color: var(--color-primary);
  opacity: 70%;
  font-family: 'NexaBold';
  font-size: 14px;
  z-index: 999;
}
.ProductListItemView .top-badge {
  position: absolute;
  top: 18px;
  left: -30px;
  width: 125px;
  height: 30px;
  line-height: 36px;
  text-align: center;
  transform: rotate(-45deg);
  color: var(--color-white);
  background-color: var(--color-primary);
  font-family: 'NexaBold';
  font-size: 14px;
  z-index: 999;
}
.ProductListItemView .content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}
.ProductListItemView .content .top .image-holder {
  width: 100%;
  max-width: 175px;
  max-height: 175px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.ProductListItemView .content .top .image-holder .img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
.ProductListItemView .content .top .image-holder .action-buttons {
  position: absolute;
  bottom: -35px;
  left: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ProductListItemView:hover .content .top .image-holder .action-buttons {
  bottom: 10px;
}
.ProductListItemView .content .action-buttons .action-button {
  background-color: var(--color-grey_05);
  color: var(--color-white);
  width: 47px;
  height: 28px;
  line-height: 32px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.ProductListItemView .content .action-buttons .action-button a {
  color: var(--color-white);
}
.ProductListItemView .content .action-buttons .action-button:hover,
.ProductListItemView .content .action-buttons .action-button.active,
.ProductListItemView .content .action-buttons .action-button:hover a,
.ProductListItemView .content .action-buttons .action-button.active a {
  color: var(--color-primary);
}
.ProductListItemView .content .bot {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  text-decoration: none;
  color: var(--color-black);
}
.ProductListItemView .content .bot .title {
  width: 100%;
  height: 40px;
  line-height: 20px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ProductListItemView .content .bot .price {
  font-family: 'NexaBold';
  font-size: 16px;
}
.ProductListItemView .content .bot .price.discounted .new {
  color: var(--color-primary);
}
.ProductListItemView .content .bot .price.discounted .old {
  font-family: 'NexaLight';
  font-size: 12px;
  color: var(--color-grey_light);
  text-decoration: line-through;
}
.ProductListItemView .content .bot .insights {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 24px;
  font-size: 14px;
}
.ProductListItemView .content .bot .insights .sell-count {
  font-family: 'Nexa';
  color: var(--color-grey_light);
}

@media screen and (max-width: 450px) {
  .ProductListItemView {
    width: calc(50% - 10px);
  }
}
