#cart {
    overflow-x: auto;
}

#cart table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    white-space: nowrap;
}

#cart table img {
    width: 70px;
}

#cart table td:nth-child(1) {
    width: 100px;
    text-align: center;
    color: #088178;
    cursor: pointer;
}

#cart table td:nth-child(2) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(3) {
    width: 250px;
    text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
    width: 150px;
    text-align: center;
}

#cart table td:nth-child(5) input {
    width: 70px;
    padding: 10px 5px 10px 15px;
    outline: none;
}

#cart table thead {
    border: 1px solid #c8cac7;
    border-left: none;
    border-right: none;
}

#cart table thead td {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 0;
}

#cart table tbody tr td {
    padding-top: 15px;
}

#cart table td {
    font-size: 13px;
}

#cart-add {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#coupon {
    width: 50%;
    margin-bottom: 30px;
}

#coupon h3,
#sub-total {
    padding-bottom: 15px;
}

#coupon input {
    padding: 10px 20px;
    outline: none;
    width: 60%;
    margin-right: 10px;
    border: 1px solid #c8cac7;
    border-radius: 30px;
}

#coupon p{
    text-align: center;
    font-size: 20px;
    margin-top:50px ;
}
.proceed {
    background-color: #088178;
    color: white;
    border-radius: 30px;
    padding: 12px 20px;
}
.proceed:hover {
    background-color: transparent;
    color: #088178;
    border: 1px solid #088178;
    border-radius: 30px;
    padding: 12px 40px;
    cursor: pointer;
    transition: 0.3s ease;
}

#sub-total {
    width: 50%;
    margin-bottom: 30px;
    border: 1px solid #e2e2e2;
    padding: 30px;
    border-radius: 30px;

}
#sub-total h3{
    margin-bottom: 10px;
}
#sub-total table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
    
}

#sub-total table td {
    width: 50%;
    border: 1px solid #e2e2e2;
    padding: 10px;
    font-size: 13px;
}

@media screen and (max-width:477px) {
    #cart-add {
        flex-direction: column;
    }

    #coupon {
        width: 100%;
    }

    #sub-total {
        width: 100%;
        padding: 20px;
    }

}





















.decrease-qty{
    width: 20px;
    margin: 0 8px;
    border-radius: 7px;
}
.increase-qty{
     width: 20px;
    margin: 0 8px;
     border-radius: 7px;
}
.delete__button{
         width:50px;
    margin: 2px 8px;
     border-radius: 7px;
}