#cart_layout {
    position: fixed;
    min-height: 100vh;
    min-width: 100vw;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
}
#closer{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
#cart {
    max-width: 1000px;
    max-height: 100vh;
    width: 100%;
    background-color: white;
    margin: auto auto;
    position: relative;
    overflow: auto;
}
.close_btn {
    position: absolute;
    top: -15px;
    right: -5px;
}
#cart_items{
    padding: 30px;
}
.cart_item{
    padding-bottom: 25px;
    padding-top: 30px;
    border-bottom: 1px solid #969696;
}
.cart_item:last-child{
    border: none;
    padding-bottom: 0;
}
.cart_item:first-child{
    padding-top: 0;
}
.delete_btn{
    display: block;
    width: 20px;
    height: 21px;
    background-image: url("/img/uikit/del.png");
    cursor: pointer;
}
.cart_item_img {
    border: 1px solid #E6E6E6;
    padding: 3px;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.cart_item_img  img {
    max-width: 140px;
    max-height: 140px;
}
.cart_item_content{
    padding-left: 90px;
    vertical-align: top;
}
.btn_up{
    background-image: url("/img/uikit/arrow-bag_up.png");
    width: 15px;
    height: 8px;
    display: inline-block;
    margin-right: 15px;
}
.btn_down{
    background-image: url("/img/uikit/arrow-bag_down.png");
    width: 15px;
    height: 8px;
    display: inline-block;
    margin-left: 15px;

}
#empty_notice {
    display: none;
}