body{
    padding: 0px;
    margin: 0px;
    background-color: #eeeeee;
}
.container {
    width: 75%;
    margin: 0 auto;
}
.nav-container{
    padding: 15px 60px;
    width: 100%;
    background-color: #02b5b5;
    color: #fff;
    box-sizing: border-box;
}
.float-left{
    float: left;
}
.float-right{
    float: right;
}
.clear{
    clear: both;
}
.logo{
    font-size: 20px;
}
.nav-links a{
    margin-left: 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}
.search{
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    margin-top: 20px;
}
.cart-products ,.products{
    margin: 5px auto;
    text-align: center;
}
.cart-products .card,.fav-products .card,.card{
    width: calc(100%/6 - 10px); 
    height: 340px; 
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin: 5px;
    text-align: left;
    vertical-align: top; 
    overflow: hidden; 
}
.cart-products .card .card-im,.card .card-img {
    width: 100%;
    height: 50%; 
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}
.card h3{
    font-size: 16px;
    margin: 10px 0 5px 0;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card p{
    font-size: 14px;
    margin: 0 0 10px 0;
    height: 20px;
    overflow: hidden;
}

.card .actions a{
    display: block;
    padding: 8px 16px;
    background-color: #02b5b5;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 5px;
    cursor: pointer;
}
.cart-products,.fav-products {
    text-align: left;
}
.cart-products .card .price{
    padding: 2px;
}
.cart-products .card .count{
    margin-left: 20px;
}
.sub-total{
    clear: both;
}
.cart-products .card .count a {
    display: inline-block;
    background-color: #02b5b5;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.fav-products .card{
    height: 250px; 
}
