.grey-box{
    background-color: #fafafa;
    background-image: linear-gradient(62deg, #fafafa 0%, #ddd 100%);
}
.title{
    background-color: #0093E9;
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    font-size: 1.2em;
    text-align: center;
    padding:5px 5px;
}

.item{
    display:flex;
    align-items: center;
    column-gap: 5px;
    padding:5px;
    border-radius:4px;
    border-bottom:1px dashed #aaa;
    cursor: pointer;
    margin:2px 0;
}

.item:hover{
    background:#ccc;
}

.item > div{
    display:inline-block;
}
.item .div-img{
    width:23%;
}
.item .div-img img{
    width:100%;
}

.item .description{
    width:54%;
}
.item .description h4{ margin:0; padding:2px; font-size:1.2em }
.item .description p{ margin:0; padding:2px; color:#aaa }

.item .price{
    text-align: center;
    width:20%;
    font-size:1.2em;
    font-weight: bold;
    color:#aaa;
}

.summary{

    display:flex;
    justify-content: space-between;
    padding:5px 10px;
}

#list-box{
    height: 100%;
    overflow-x: hidden;
}
#footer{
    box-shadow: 1px -3px 1px #ccc;
    background:#fafafa;
    
    width:100%;
    position: fixed;
    bottom:0;
    left:0;
}

.input-inside-field {
    width: 100%;
}
input[type=number] {
    -moz-appearance: textfield;
}
.input-number::-webkit-inner-spin-button,
.input-number::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
input.is-invalid {
    border-color: red;
}