* {
    margin: 0;
    padding: 0;
}


/* Root with HTMl tag  */


/*Root class and id Start*/

.container {
    width: 1200px;
    min-height: 100%;
    margin: 0 auto;
    background-color: #F2F4F9;
    font-family: 'Montserrat', sans-serif;
}


/*Root class and id End*/

.section-container {
    padding: 0 100px;
}


/*Root col and Row Start*/

.row {
    width: auto;
    margin: 0 -15px;
    padding-bottom: 15px;
    /* overflow: hidden; use for float left clear */
    overflow: hidden;
}

.col-md-1 {
    width: 8.33%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-2 {
    width: 16.66%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-3 {
    width: 25%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-4 {
    width: 33.33%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-5 {
    width: 41.65%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-6 {
    width: 50%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-7 {
    width: 58.33%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-8 {
    width: 66.67%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-9 {
    width: 75%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

.col-md-12 {
    width: 100%;
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}


/*Root col and Row End*/


/* Product item column Stat*/


/* Serach product */

#searchProduct {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}


/* Product Card */

.product-container {
    min-height: 80%;
}

.product-section {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 8px;
}

.card {
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    border-radius: 5px;
}

.card-header {
    width: 100%;
}

.card-img {
    width: 73px;
    height: 50px;
    object-fit: fill;
}

.card:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.card-body {
    padding: 6px 2px;
}

.card-span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    width: 67px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.price-tag {
    font-size: 11px;
}


/* Footer */

hr {
    border: 1px solid #e6e6e6;
}

.footer {
    padding: 12px 4px;
    display: flex;
    justify-content: space-between;
}

.btn {
    padding: 5px 15px;
    border: none;
    cursor: pointer;
    background-color: white;
    border-radius: 4px;
}


/* Product item column End*/


/* Checkout product Start */

.right-side-column {
    background-color: white;
    min-height: 94%;
    border-radius: 5px;
    margin: 8px 0;
    padding: 10px 10px;
}


/* Header btn */

.left-header {
    padding: 8px 14px;
}

.atag {
    text-decoration: none;
    color: #570357;
    font-weight: 600;
    font-size: 12px;
}


/* Checkout List and Cost details */


/* checkout list card */

.checkout {
    padding: 6px 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 86%;
}

.card-list {
    margin-top: 8px;
    height: 60px;
    border-bottom: 2px solid #F2F4F9;
}

.card-list-body {
    display: flex;
    column-gap: 5px;
}

.product-info {
    display: flex;
    column-gap: 10px;
}

.img-div {
    position: relative;
}

.card-list-img {
    padding: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}

.quanty {
    position: absolute;
    top: -7px;
    left: 42px;
    text-align: center;
    min-height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background-color: #53B39C;
    color: white;
}

.card-list-span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    width: 185px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product-name,
.product-price,
.product-delete {
    align-self: center;
}

.product-action {
    display: flex;
    column-gap: 10px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
}

.btn-delete {
    border: none;
    cursor: pointer;
}


/* .checkout-cost-details {} */

.discount {
    color: #7d097d;
}

.cost-list {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 8px;
}

.btn-cost-list {
    width: 100%;
    padding: 12px 12px;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    background-color: 7872B9;
    color: white;
}


/* Checkout product End */