.white-popup-cart {
    max-width: 1230px;
    margin: 30px auto;
    box-shadow: 0 0 20px -5px #000;
    -webkit-box-shadow: 0 0 20px -5px #000;
    -ms-box-shadow: 0 0 20px -5px #000;
    -o-box-shadow: 0 0 20px -5px #000;
    background-color: #fff;
    position: relative;
}
.popup-body {
    padding: 25px 20px;
    position: relative;
}

.header-cart {
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--html-bg-website);
    font-weight: bold;
}
.body-cart{
    border: 1px solid #ccc;
    border-bottom: 0;
}
.name-cart h3 a {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--html-bg-website);
}
.item-cart{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 10px;
}
.item-cart .thumb-cart {
    width: 80px;
    border: 1px solid #ccc;
    padding: 5px;
}
.desc-cart {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 100px);
}
.wrap_qty_popup {
    position: relative;
    display: flex;
}
.wrap_qty_popup span.up, .wrap_qty_popup span.down {
    display: inline-block;
    width: 20px;
    height: 28px;
    border: 1px solid #dfdfdf;
    line-height: 25px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    font-family: var(--font-utmavobold);
}
.wrap_qty_popup input {
    background: #fff;
    border:1px solid #dfdfdf;
    border-right:none;
    border-radius: 2px;
    padding: 0px 0px 0px 0px;
    width: 40px;
}
.delete-order {
    padding: 10px;
    color: #f00;
    font-size: 1.5em;
    cursor: pointer;
}