@media(max-width: 599px){

.reward_wrapper{
    width: 100vw;
    padding: 30px 0;
    background-color: #e7c8aa;
}

.reward_content_wrapper{
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 1vw;
    margin: 30px auto;
    width: calc(95vw - 2vw);
}

.reward_category_wrapper{
    padding: 30px 10px;
    display: flex;
    justify-content: flex-end;
}

.reward_category_wrapper p{
    display: inline-block;
    color: #333;
    padding: 3px 10px;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
}
#category_title{
    color: #333;
    cursor: default;
}
#all_back{
    background-color: #aaa;
}

.reward_flex_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.reward_item{
    width: 44.5vw;
    transition: 0.1s;
    margin: 5vw 1vw;
    /* padding: 20px 0; */
    /* margin: 50px; */
}

.reward_item:hover{
    transition: 0.3s;
    opacity: 0.8;
}

.reward_item img{
    width: 44vw;
    height: 33vw;
    object-fit: cover;
    border-radius: 5px;
}

.reward_tag_wrapper{
    height: 30px;
    overflow: hidden;
    padding: 0 10px ;
}
.reward_tag_wrapper p{
    display: inline-block;
    color: #fff;
    padding: 1px 6px;
    border-radius: 20px;
    font-size: 10px;
}
.reward_item_description_wrapper h2{
    margin-bottom: 0;
    font-size: 13px;
}
.reward_item_description_wrapper p{
    font-size: 13px;
    margin: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* width: 30vw; */
}
}