blob: 78637f5fcdf620d0a85db3d0bb300e5d4fab9482 (
plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
.cart #cart { display: block; }
.cart #footer .cancel { display: block }
.cart #footer .checkout { display: block }
/*
.cart #footer .checkout_proceed { display: block }
*/
#cart {
display: none;
}
#cart .steps {
width: 100%;
border-bottom: 1px solid #bbb;
font-size: 0;
}
#cart .steps span {
display: inline-block;
font-size: 14px;
text-align: center;
padding: 15px 0 14px;
color: #bbb;
width: 33%;
position:relative;
}
.summary_step, .shipping_step {
border-right: 1px solid #bbb
}
#cart.summary .summary_step,
#cart.payment .payment_step,
#cart.shipping .shipping_step {
color: #000;
}
#cart_summary,
#cart_shipping,
#cart_payment,
#cart_confirm,
#cart_thanks {
height: calc(100vh - 195px);
overflow: hidden;
position: relative;
}
#cart.summary #cart_summary { display: block }
#cart_summary {
display: none;
}
.full .cart_body { display: block; }
.empty .cart_empty { display: block; }
.cart_body {
display: none;
}
.cart_empty {
display: none;
text-align: center;
margin: 0;
}
#cart.payment #cart_payment { display: block }
#cart_payment {
display: none;
}
#cart.shipping #cart_shipping { display: block }
#cart_shipping {
display: none;
}
#cart.confirm #cart_confirm { display: block }
#cart_confirm {
display: none;
}
#cart.thanks #cart_thanks { display: block }
#cart_thanks {
display: none;
}
.summary-container {
top:0px;
}
.billing-container {
height:calc(100vh - 210px);
top:16px;
}
.cart_item_row {
display:table;
position:relative;
width:calc(100vw - 10px);
margin:0 auto;
}
.cart_item_image, .cart_item_info, .cart_item_price {
display:table-cell
}
.cart_item_image img {
max-width:100px
}
.cart_item_info {
padding-left:50px
}
|