.cart .row{
    display: grid;
    grid-template-columns: 150px 1fr 150px 150px 200px;
    grid-gap: 20px;
    padding: 20px 30px;
    border-bottom: 1px solid #D9D9D9;
    align-items: center;
    background: #fff;
}
.cart .row.title{
    border-radius: 15px 15px 0px 0px;
    background: #E8E8E8;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.31);
    color: #070707;
    font-weight: 600;
    font-size: 20px;
}
.cart .products{
    border-radius: 0px 0px 20px 20px;
    background: #F4F4F4;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.12);
}
.cart .row .item-thumb{
    border-radius: 10px;
    border: 1px solid #EBEBEB;
    text-align: center;
}
.cart .row .item-thumb a{
    display: flex;
    align-items: center;
    width: 150px;
    height: 150px;
    text-align: center;
    justify-content: space-around;
}
.cart .row .item-thumb img{
    border-radius: 10px;
    max-width: 100%;
    max-height: 100%;
}
.item-name a{
    color: #070707;
    font-weight: 400;
}
.item-qty  button,
.item-qty  input{
    height: 40px;
    text-align: center;
    font-weight: bold;
    border: none;
    background: url("img/plus.svg") no-repeat center;
}
.item-qty button{
    width: 64px;
    z-index: 10;
    position: relative;
}
.item-qty button.minus:after,
.item-qty button.plus:after{
    content: " ";
    position: absolute;
    height: 22px;
    width: 2px;
    display: block;
    background: #D9D9D9;
    right: 0;
    top: 9px;
}
.item-qty button.minus{
    background: url("img/minus.svg") no-repeat center;
}
.item-qty button.plus:after{
    left: 0;
    right: auto;
}
.item-qty button{
    text-indent: -9999px;
    font-size: 0;
}
.item-qty input{
    width: 145px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #D9D9D9;
    background: #E8E8E8;
    box-sizing: border-box;
    margin-left: -40px;
    margin-right: -40px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 16px;
}
.item-qty .gray{
    display: flex;
    justify-content: space-between;
}
.item-total{
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}
.item-remove{
    opacity: 0.7;
    color: #474747;
    cursor: pointer;
    margin-top: 20px;
    display: flex;
    align-items: center;
}
.item-remove .remove{
    width: 13px;
    height: 13px;
    background: url("img/delete.svg") no-repeat;
    margin-right: 10px;
    display: inline-block;
}
#discount-row{
    display: flex;
    justify-content: space-between;
    padding: 30px;
    align-items: center;
}
.affiliate{
    color: #7B7B7B;
    max-width: 520px;
    display: block;
    padding-bottom: 30px;
    padding-left: 30px;
}
.affiliate strong{
    color: #070707;
}
#use-coupon{
    border-radius: 25px;
    border: 1px solid #6E6E6E;
    height: 50px;
    display: flex;
    color: #070707;
    font-size: 18px;
    line-height: 50px;
    padding: 0 30px;
    white-space: nowrap;
}
.afill{
    color: #57B548;
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    padding: 0 20px;
}
.cart-discount{
    padding-left: 10px;
}
.total {
    padding-left: 10px;
}
.cart-total-title, .total {
    color: #070707;
    font-size: 20px;
    font-weight: 600;
}
.cart-total-title{
    color: #4E4E4E;
}
.cart_bottom{
    display: flex;
    justify-content: space-between;
}
.cart-checkout input{
    border-radius: 25px;
    height: 50px;
    border: none;
    color: #E8E8E8;
    padding: 0 20px;
    width: 246px;
    cursor: pointer;
}
.cart-checkout{
    padding-right: 30px;
}
.hpme_bottom_banner{
    margin: 40px 0;
}
#apply-coupon-code input[type="text"]{
    border-radius: 15px;
    border: 1px solid #DBDBDB;
    background: #F1F1F1;
    padding: 15px 20px 16px 20px;
}
#apply-coupon-code input[type="submit"]{
    border-radius: 15px;
    border: 1px solid #DBDBDB;
    background: #a9a9a9;
    padding: 15px 20px 16px 20px;
    color: #000;
}
.clear-both{
    clear: both;
}
.top_cart_block{
    display: flex;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
}
.delete_all{
    cursor: pointer;
    border: 1px solid #C8C8C8;
    border-radius: 25px;
    color: #070707;
    padding: 13px 42px;
    display: flex;
    align-items: center;
}
.delete_all img{
    margin-right: 5px;
}
.cart__nav.cart__nav--back{
    cursor: pointer;
    border: 1px solid #C8C8C8;
    border-radius: 25px;
    color: #070707;
    padding: 13px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#discount-row .large.no-border{
    white-space: nowrap;
}
.item-qty{
    text-align: center;
}