.cart-popup .popup__content {
  width: 820px;
  border: 10px solid #F1F1F1;
  box-sizing: border-box;
  border-radius: 0;
}
.cart-popup__icon {
  padding: 0 9px;
  position: relative;
}
.cart-popup__icon:not(:last-child):after {
  content: "";
  width: 1px;
  height: 20px;
  background: #f1f1f1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cart-popup__icon span {
  position: absolute;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #8FC056;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  top: 11px;
  left: 13px;
}
.cart-popup__icon a {
  display: inline-flex;
  align-items: center;
  transition: all 0.1s linear;
}
.cart-popup__icon a:hover .cart-popup__icon-image {
  background: rgba(231, 74, 65, 0.08);
}
.cart-popup__icon-image {
  width: 47px;
  height: 47px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.1s linear;
}
.cart-popup__total {
  font-size: 14px;
  line-height: 1.3;
  margin-left: 5px;
}