#gift-list-small-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;

    transform: scale(0.8);

    display: none;
}
#gift-button {
    cursor: pointer;
}
#gift-list-small-panel {
    position: absolute;
    top: 80%;
    right: 23%;
}
#gift-list-small-container {
    position: absolute;
    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;
    padding: 25px 5px 20px 15px;
    box-sizing: border-box;
}
#gift-list-small {
    width: 100%;
    height: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Enables momentum scrolling on iOS */
}
.gift-list-small-item {
    position: relative;

    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #FFF;
    margin-top: 15px; 
    
    cursor: pointer;
}
.gift-list-small-item:first-child {
    margin-top: 0;
}
.gift-list-small-item > * {
    width: 100%;
}
/* Custom scrollbar styles for WebKit browsers */
#gift-list-small::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}
#gift-list-small::-webkit-scrollbar-track {
    background: transparent; /* Background of the scrollbar track */
    border-radius: 10px;
}
#gift-list-small::-webkit-scrollbar-thumb {
    background-color: #888; /* Color of the scrollbar thumb */
    border-radius: 20px;
}
#gift-list-small::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Color of the scrollbar thumb on hover */
}
#gift-bubble {
    position: absolute;
    top: -15%;
    left: -5%;
}
#gift-number {
    position: absolute;
    top: 0;
    left: 0;

    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 100%;
    height: 100%;
    padding-bottom: 40%;
    padding-left: 6%;
    box-sizing: border-box;

    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #343b6f;
}

.gift-list-small-item .clickBlock {
    background-color: rgba(0,0,0,0.4);
}
.gift-received-stamp {
    position: absolute;
    bottom: 5px;
    right: 5px;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    font-size: 0.8rem;
    font-weight: bold;

    background-color: orange;
    color: #FFF;
    text-align: center;
    word-break: keep-all;
}