@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&display=swap');

.box1-img {
  width: 2.4rem;
  height: 2.4rem;
}

.vip-tx {
  font-family:Noto sans-serif;
  font-weight: 600;
}

.vip-progress {
  width: 75%; /* 전체 바 길이 */
  height: 6px; /* 바 높이 */
  background-color: var(--gray2);
  position: relative;
  overflow: hidden;
}

.vip-fill {
  width: 90%; /* 빨간색 채우기 (비율 조정 가능) */
  height: 100%;
  background-color: rgb(237, 48, 36, 0.6);
}

.wi50 {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-chi {
  width: 1.2rem;
  height: 1.6rem;
}

/* MYP-04-01 */
.coupon-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.coupon-wrap img,
.coupon-wrap .coupon-label,
.coupon-wrap .coupon-text-wrap {
  z-index: 0;
}
.coupon-wrap img {
  display: block;
  height: 160px;
}

.coupon-label {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 10px 0 0 0;
}

.coupon-text-wrap {
  position: absolute;
  top: 38px;
  left: 20px;
  color: #000;
  line-height: 1.4;
}

.coupon-subtitle {
  font-size: 1.2rem;
}

.coupon-title {
	width: 26rem;
 	font-size: 1.8rem;
 	font-weight: 600;
 	word-break: break-word;
 	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coupon-expiry {
  font-size: 1rem;
  color: var(--gray);
}
.cou-more {
  border: 1px solid var(--gray2);
  border-radius: 4rem;
  padding: 1rem 4rem;
}

.cou-end::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.7);
  z-index: 1;
  border-radius: 8px;
}

.cou-end::after {
  content: '사용완료';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  z-index: 3;
}

.expired::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.7);
  z-index: 1;
  border-radius: 8px;
}

.expired::after {
  content: '기한만료';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  z-index: 3;
}

.alarm-none {
	margin: 3rem;
	font-size: 13px;
	text-align:center;
}
@media screen and (max-width: 390px) {
.coupon-title {
	width: 21rem;
	}	
}
