/* 말줄임 2줄 */
.ellipsis2 {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  display: block;
}

/* 아이콘 크기 조절 */
.icon-img {
  display: block;
  padding-bottom: 7px;
  transform: scale(0.8) translateX(-8px);
  -webkit-transform: scale(0.8) translateX(-8px);
  -moz-transform: scale(0.8) translateX(-8px);
  -ms-transform: scale(0.8) translateX(-8px);
  -o-transform: scale(0.8) translateX(-8px);
}
.icon-img-sub {
  padding-bottom: 7px;
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

/* 상품평반짝 */
.txt-yellow {
  font-size: 12px;
  color: #ffba26;
  font-weight: bold;
  animation-duration: 0.3s;
  animation-name: po-change;
  animation-iteration-count: infinite;
}
@keyframes po-change {
  from {
    color: #ff792b;
  }
  to {
    color: #ff8800;
  }
}

/* 품절 아이콘 스타일 */
.sold-out {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255, 255, 255, 0.8);
	color: #ff0000;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	font-size: 16px;
}