#product-grid {
    margin: 40px;
}

#shopping-cart table {
    width: 100%;
    background-color: #F0F0F0;
    border-top: var(--grayBorder);
    border-left: var(--grayBorder);
}

#shopping-cart table td {
    background-color: #FFFFFF;
}

#shopping-cart th,
#shopping-cart td {
    padding: 5px 10px;
    border-bottom: var(--grayBorder);
    border-right: var(--grayBorder);
}

#shopping-cart th {
    background: #f2f2f2;
}

.txt-heading {
    color: #211a1a;
    border-bottom: 1px solid var(--grayBorder);
    overflow: auto;
}

#btnEmpty {
    background-color: #ffffff;
    border: #d00000 1px solid;
    padding: 5px 10px;
    color: #d00000;
    float: right;
    text-decoration: none;
    border-radius: 3px;
    margin: 10px 0px;
}

.btnAddAction {
    padding: 5px 10px;
    margin-left: 5px;
    background-color: #efefef;
    border: #E0E0E0 1px solid;
    color: #211a1a;
    float: right;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

#product-grid .txt-heading {
    margin-bottom: 18px;
}

.product-item {
    float: left;
    background: #ffffff;
    margin: 30px 30px 0px 0px;
    border: #E0E0E0 1px solid;
}

.product-image {
    height: 155px;
    width: 250px;
    background-color: #FFF;
}

.clear-float {
    clear: both;
}

.demo-input-box {
    border-radius: 2px;
    border: #CCC 1px solid;
    padding: 2px 1px;
}

.tbl-cart {
    font-size: 0.9em;
}

.tbl-cart th {
    font-weight: normal;
}

.product-title {
    margin-bottom: 20px;
}

.product-price {
    float: left;
}

.cart-action {
    float: right;
}

.product-quantity {
    padding: 5px 10px;
    border-radius: 3px;
    border: #E0E0E0 1px solid;
}

.product-tile-footer {
    padding: 15px 15px 0px 15px;
    overflow: auto;
}

.cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: #E0E0E0 1px solid;
    padding: 2px;
    vertical-align: middle;
    margin-right: 15px;
}

.no-records {
    display: flex;
    align-items: center;
    width: 100%;
    float: left;
    justify-content: center;
    flex-direction: column;
}

.no-records svg {
    width: 50%;
    float: left;
}

.no-records span {
    padding: 10px;
}

.no-records a {
    padding: 10px 20px;
    color: #fff;
    background: var(--maincolor);
    border-radius: 10px 20px;
}

.btnRemoveAction {
    color: var(--optcolor);
    cursor: pointer;
}

.btnRemoveAction:hover {
    color: var(--maincolor);
    transition: .3s;
}

#cart {
    float: left;
}