File size: 1,488 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#container{
    max-width: 1500px;
    margin: 0 auto;
}
.product-cart-section{
    margin: 3rem 0;
    display:flex;
    gap: 1rem;
}
.product-list{
    color: #0F1111;
    padding: 1rem;
    flex-grow: 1;
    background-color: #FFF;
}
.product-list h2{
    font-weight: 400;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: .8rem;
}
.divider{
    width: 100%;
    height: 1px;
    background-color: #DDD;
}
.cart{
    display: flex;
    justify-content: start;
    gap: 1rem;
    padding: 1.1rem;
}
.cart-img img{
    max-width: 10rem;
}
.cart-detail{
    display: flex;
    gap: .4rem;
    flex-direction: column;
    justify-content: start;
}
.cart-title{
    font-size: 18px;
    word-break: normal;
    line-height: 1.3em;
}
.cart-stock{
    color: #007600;
}
span{
    font-size: 12px;
    line-height: 16px;
}
.cart-shipping{
    color:#0F1111;
}
.product-cart{
    background-color: #fff;
    color:#0F1111;
    padding: 1rem;
    width: 24%;
}
.cart-price{
    width: max-content;
}
.cart-price span{
    font-size: 1.2rem;
    font-weight: 700;
}
.cart-Qts{
    color: #007185;
    padding: 0 8px;
    border-right: 1px solid #ddd;
    cursor: pointer;
}
.cart-total{
    padding: 1rem;
    float: right;
    font-size: 18px;
    line-height: 24px;
}
.Qts{
    padding: .3rem .6rem;
    border-radius: 7px;
    background-color: #F0F2F2ed;
    box-shadow: 0 2px 5px rgba(15,17,17,.15);
}
.product-cart .cart-total{
    float: none;
}
.green{
    color: #067D62;
}