.productItemHorizontalCodes {
  color: #858585;
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
}

.productItemHorizontalImg {
  position: relative;
  display: block;
  height: 0;
  padding-top: 60%;
}

.productItemHorizontalImg img:not(.brandLogo) {
  max-height: 100%;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.brandLogo {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*max-height: 25px;*/
  max-width: 80px;
}

.productItemHorizontalName {
  color: #333333;
  font-size: 16px;
  transition: all .3s;
  border-bottom: 1px solid transparent;
}

.productItemHorizontalNameWrap {
  margin: 5px 0;
}

.productItemHorizontalLabels {
  display: flex;
  gap: 5px;
}

.productItemHorizontalInStock {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.productItemHorizontalInStock span {
  color: #E53B3B;
}

.productItemHorizontalWishBtns {
  text-align: right;
  margin-bottom: 5px;
}

.productItemHorizontalWishBtns button {
  color: #858585;
}

.productItemHorizontalWishBtns button.active {
  color: #55BCC8;
}

.productItemHorizontalWishBtns button.active path {
  fill: #55BCC8;
}

.productItemHorizontalPriceTitle {
  color: #858585;
}

.productItemPriceWrap {
  display: flex;
/*  gap: 10px;*/
}

.productItemLabelsWrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.productItemHorizontalPrice {
  margin-left: 10px;
}

.productItemHorizontalCurrentPrice {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
}

.productItemHorizontalOldPrice {
  display: inline-block;
  white-space: nowrap;
  color: #858585;
  font-size: 14px;
  position: relative;
}

.productItemHorizontalOldPrice:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #E53B3B;
  position: absolute;
  top: 50%;
  transform: translateY(-1px);
}

.productItemHorizontalActions {
  display: flex;
  align-items: center;
}

.productItemHorizontalCount {
  margin-right: 25px;
}

.productItemHorizontalAdd {
  background: #55BCC8;
  color: #fff;
  border-radius: 2px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #55BCC8;
  cursor: pointer;
  transition: all .3s;
}

.inStock {
  border: 1px solid #27AE60;
  border-radius: 2px;
  color: #27AE60;
  padding: 3px 10px;
  font-size: 13px;
  white-space: nowrap;
  box-sizing: border-box;
}

.inStock span {
  margin-right: 10px;
}

.outStock {
  border: 1px solid #858585;
  border-radius: 2px;
  color: #858585;
  padding: 3px 10px;
  font-size: 13px;
  white-space: nowrap;
  box-sizing: border-box;
}

.prodQuant {
  display: flex;
  background: #ecf2fa;
  width: 100px;
  justify-content: space-between;
  align-items: center;
}

.prodQuant input {
  border: none;
  background: transparent;
  height: 45px;
  outline: none;
  text-align: center;
  width: 45px;
}

.prodQuant .uk-icon {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  cursor: pointer;
}

.productItemHorizontal + hr {
  margin: 10px 0;
}

@media (min-width: 992px) {
  .productItemHorizontalName:hover {
    text-decoration: none;
    color: #333333;
    border-bottom-color: #333333;
  }

  .productItemHorizontalAdd:hover {
    background: #fff;
  }

  .productItemHorizontalAdd:hover path {
    fill: #55BCC8;
  }
}