.TipHistory_ItemContainter {
    max-height: 210px;
    overflow: scroll;
}

.TipHistory_Empty {
    padding: 10px;
    background-color: #eee;
    border-radius: 3px;
    font-size: 12px;
    color: #777;
    text-align: center;
}

.GiftList_ItemContainter {
    display: grid;
    gap: 10px;
    max-height: 250px;
    overflow: scroll;
}

.GiftList_Item {
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-template-rows: auto auto;
    padding: 5px 15px 5px 5px;
    column-gap: 10px;
    align-items: center;
}

.GiftList_Item .GiftImg_Box {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    padding: 7px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
}

.GiftList_Item .GiftImg_Box .GiftImg {
    width: 35px;
    max-height: 50px;
    object-fit: contain;
}

.GiftList_Item .GiftName {
    font-size: 13px;
    font-weight: bold;
    color: #333;
}

.GiftList_Item .GiftRequiredPoint {
    font-size: 12px;
    color: #555;
    text-align: right;
}