@charset "UTF-8";
/* 쿠폰 페이지 스타일 파일입니다. */
.my-page-coupon {
display: flex;
flex: 1;
flex-direction: column;
}
.my-page-coupon__table {
border-top: 2px solid var(--color-base-black);
}
.my-page-coupon__table .td_left {
padding: 20px;
font-size: 16px;
font-weight: 500;
}
.my-page-coupon__condition-tooltip {
display: block;
position: absolute;
width: 282px;
height: 258px;
left: 70px;
overflow: auto;
}
.my-page-coupon__condition-tooltip::before {
position: absolute;
top: -6px;
left: 20px;
transform: rotate(-45deg);
content: "";
width: 12px;
height: 12px;
background-color: inherit;
border: 1px solid var(--gray300);
border-width: 1px 1px 0 0;
}
.my-page-coupon__coupon-detail-box {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
}
.my-page-coupon__coupon-detail-box .alert {
font-size: 14px;
line-height: 14px;
font-weight: 500;
}
.my-page-coupon__coupon_date_day {
font-size: 14px;
line-height: 14px;
color: var(--gray600);
}
.my-page-coupon__coupon-detail-text {
color: var(--gray500);
text-decoration: underline;
font-size: 14px;
cursor: pointer;
}
.my-page-coupon__coupon-detail-amount-info {
font-weight: 500;
line-height: 14px;
}
.my-page-coupon__coupon-detail-amount {
font-size: 16px;
line-height: 16px;
}
.my-page-coupon__tab {
display: flex;
}
.my-page-coupon__tab > li {
flex: 1;
}
.my-page-coupon__tab-btn {
width: 100%;
}
.my-page-coupon__wrap {
padding: 20px 0;
flex: 1;
}
.my-page-coupon__tooltip {
text-align: left;
}
.my-page-coupon__tooltip button {
cursor: pointer;
}
.my-page-coupon__tooltip-title {
font-size: 16px;
font-weight: 500;
font-family: "Noto Sans KR";
margin-bottom: 10px;
}
.my-page-coupon__tooltip dl {
padding: 5px;
}
.my-page-coupon__tooltip dd {
position: relative;
font-size: 12px;
padding-left: 10px;
margin-top: 3px;
color: var(--gray500);
}
.my-page-coupon__tooltip dd::before {
content: "";
position: absolute;
top: 6px;
left: 0;
width: 3px;
height: 3px;
background-color: #333;
border-radius: 50%;
}
.my-page-coupon .notice.empty-list {
padding: 40px 0;
border-bottom: 1px solid var(--gray200);
}