ul.item_list{
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.item_list li{
    min-height: 100px;
    background-color: #f5f5f5;
    border: 1px solid #e9e9e9;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
ul.item_list li div.item_title{
    width: 100%;
    font-size: 13px;
    font-weight: bold;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
ul.item_list li div.item_price{
    display: flex;
    align-items: center;
    gap: 10px;
}
ul.item_list li div.item_price span.item_price{
    font-size: 14px;
}
ul.item_list li div.item_price span.item_price::before {
    margin-right: 5px;
    content: "₩";
}
ul.item_list li div.item_price .hidden{
    visibility: hidden;
    width: 15px;
}
ul.item_list li div.item_price i{
    cursor:pointer;
    font-size: 15px;
}
ul.item_list li div.item_controller{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}
span.option-box button{
    width: 25px;
    height: 25px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
    border: 1px solid #ccc;
}
span.option-box input[type=text]{
    width: 50px;
    height: 30px;
    border: none;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }