.product-card__properties {
  display: flex;
  flex-wrap: wrap;
}

.product-card__property {
  position: relative;
}

.additional-property__text {
  font-size: 20px;
}

.additional-property__symbol {
  display: inline-block;
  position: relative;
  top: 6px;
  width: 20px;
  padding-top: 27px;
}

.additional-property__symbol img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.additional-property__prompt {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  background: #000;
  color: #fff;
  padding: 0.25rem 0.5rem;
  max-width: 200px;
  opacity: 0;
  z-index: -1;
  transition: 0.3s;
}
.additional-property__prompt::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0.5rem;
  border: 8px solid #000;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.product-card__property:hover .additional-property__prompt {
  opacity: 1;
  z-index: 10;
}