* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

body {
    background: #f6f6f7;
    margin: 0;
    padding: 0;
}

nav {
    position: fixed;
    top: 0;
    z-index: 1000;
}

#container {
    width: 90%;
    margin: auto;
    margin-top: 130px;
    /* border: 1px solid black; */
}

.card-title {
    /* border: 1px solid blue; */
    /* display: grid; */
    display: flex;
    align-items: center;

}

#card-count {
    /* border: 1px solid goldenrod; */
    margin: 3px;

    flex-grow: 2;
}

#order-status {
    /* border: 1px solid goldenrod; */
    height: 50px;
    margin: 3px 0px;
    padding-bottom: 17px;
    display: flex;
    flex-grow: 5;
    align-self: center;
    justify-content: flex-end;
}

#order-status li {
    display: flex;
    float: left;
    list-style: none;
    margin: 5px 40px;
    align-items: center;

}


/* container-items */


.cart-product-name {
    /* border: 1px solid red; */
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
}



.cart-product {
    background: #ffff;
    width: 55%;
    padding: 10px;

}

.product-itemsdetails {
    display: flex;

    /* border: 1px solid blue; */

}

.product-img {
    margin: 15px 0px 50px 19px;
    align-self: center;
    width: auto;
}

.product-img>img {
    width: 70px;
    height: 70px;
    margin-top: 20px;
}

.product-itemsName {
    /* border: 1px solid green; */
    width: 100%;
    margin: 0 0 0px 20px;
    padding: 20px;
}

.product-itemsPrice span {
    margin: 8px;
}

#mrp-price {
    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    text-decoration: line-through;
    padding: 0 2px 0 0;
}

#save-price {
    font-size: 14px;
    color: #00a100;
    line-height: 20px;
}

.product-qty {
    /* border: 1px solid red; */
    margin: 10px;
    flex-grow: 5;
    display: flex;
    align-self: center;
    justify-content: flex-end;
}

.product-qty span {
    margin: 8px;
}

#qty {
    margin-top: 15px;
}


.container-boxleft {
    /* border: 1px solid red; */
    /* height: 1800px; */
    display: flex;
    margin-bottom: 50px;
}

#applypromo {
    /* border: 1px solid green; */
    background: #fff;
    padding: 10px;
    margin: 0px 0px 10px 20px;
    width: 95%;


}

#coupon-box input {
    width: 70%;
    margin: 0;
    height: 37px;
    border: transparent;
}

input:focus {
    outline: none;
    border: 0;

}

#cimg {
    margin: 0;
    margin-bottom: -8px;
    margin-left: 15px;
}

#couponApply {
    background: transparent;
    border: none;
    color: gray;
    margin-left: 4%;
}


#applypromo>div:first-child {
    display: flex;
    justify-content: space-between;

}

#applypromo>div:first-child>span {
    align-self: center;

}

/* 
#applypromo>div:first-child>span>a {
    color: red;
    text-decoration: none;
} */

#container-boxRight {
    width: 45%;
}

.Payment-box {
    margin: 8px 0px 15px 23px;
    width: 95%;
    position: sticky;
    top: 100px;
}

#payment-detials {
    background: #fff;
    margin: 0px 0px 15px 0px;
    padding: 5px 17px 40px 15px;
    border-radius: 4px;
}

#payment-detials label {

    font-size: 14px;
    color: rgba(0, 0, 0, .5);
    line-height: 24px;
}

#payment-detials>div:nth-child(4) {
    font-weight: bold;


}

#payment-detials>div:nth-child(5) label {
    float: right;
    color: #00a100;
    margin-top: 10px;
}

#btn-checkout {
    float: right;
    width: 50%;
    padding: 10px 6px;
    color: #fff;
    background: #008ecc;
    border-radius: 4px;
    border: none;
}

#btn-checkout:hover {
    cursor: pointer;
}

.span-right {
    float: right;
}

ul {
    padding: 0;
}

/* media Queries */

/* medium Screens  */

@media all and (min-width:320px) and (max-width:768px) {

    .card-title {
        display: none;

    }

    .container-boxleft {
        display: block;
        /* background: #00a100; */

    }

    .cart-product {
        width: 100%;
    }

    #container-boxRight {
        margin-top: 20px;
        width: 100%;
    }
}