#store_header{
    width: 100%;
    height: 50px;
    background-color: #a0a5b7;
    display: flex;
    align-items: center;
    justify-content: center;
}
#store_icon{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
#store_header_text{
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}
#store_content{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#store_content_left{
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(circle, rgba(7,76,104,0.25) 0%, rgba(7,76,104,0.25) 54%, rgba(50,140,160,0.25) 100%);
    background-size: cover;
    height: 100%;
    overflow: scroll;
    /* scrollbar-color: ; */
    scrollbar-width: thin;
}

#store_popup {
    width: 35%;
    height: 45px;
    padding: 5px;
    padding-top: 20px;
    border-radius: 10px;
    background-color: #a0a5b7;
    display: none;
    align-items: center;
    justify-content: center;
    /* justify-content: right; */
    position: absolute;
    bottom: 0%;
    left: 0%;
    cursor: pointer;
}

#store_popup_text {
    font-size: 14px;
    pointer-events: none;
    text-align: center;
}

.store_content_left_item{
    width: 200px;
    height: 200px;
    background-color: #fff;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.store_content_left_item:hover{
    background-color: #e0e5f7;
}
.store_content_left_item img{
    width: 100px;
    height: 100px;
}
.store_content_left_item p{
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
}
.store_content_right_item{
    display: none;
    width: 200px;
    height: 200px;
    background-color: #fff;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.store_content_right_item:hover{
    background-color: #e0e5f7;
}
.store_content_right_item img{
    width: 100px;
    height: 100px;
}
.store_content_right_item p{
    font-size: 15px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
}