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
110
111
112
| /*
| ====================
| Order Summary
| ====================
| */
|
| .widget-three {
| position: relative;
| background: $m-color_10;
| padding: 20px;
| border-radius: 8px;
| height: 100%;
|
| .widget-heading {
| margin-bottom: 54px;
|
| h5 {
| font-size: 19px;
| display: block;
| color: $m-color_3;
| font-weight: 600;
| margin-bottom: 0;
| }
| }
|
| .widget-content {
| font-size: 17px;
|
| .summary-list {
| display: flex;
|
| &:not(:last-child) {
| margin-bottom: 30px;
| }
| }
|
| .w-icon {
| display: inline-block;
| padding: 8px 8px;
| border-radius: 50%;
| display: inline-flex;
| align-self: center;
| height: 34px;
| width: 34px;
| margin-right: 12px;
|
| svg {
| display: block;
| width: 17px;
| height: 17px;
| }
| }
|
| .summary-list {
| &:nth-child(1) .w-icon {
| background: $secondary;
| }
|
| &:nth-child(2) .w-icon {
| background: $m-color_14;
| }
|
| &:nth-child(3) .w-icon {
| background: $warning;
| }
|
| &:nth-child(1) .w-icon svg {
| color: $l-secondary;
| }
|
| &:nth-child(2) .w-icon svg {
| color: $l-success;
| }
|
| &:nth-child(3) .w-icon svg {
| color: $l-warning;
| }
| }
|
| .w-summary-details {
| width: 100%;
| align-self: center;
| }
|
| .w-summary-info {
| display: flex;
| justify-content: space-between;
| margin-bottom: 1px;
|
| h6 {
| font-size: 13px;
| font-weight: 600;
| margin-bottom: 0;
| color: $m-color_6;
| }
|
| p {
| font-size: 12px;
| font-weight: 600;
| margin-bottom: 0;
| color: $m-color_6;
| }
| }
|
| .w-summary-stats .progress {
| margin-bottom: 0;
| height: 6px;
| border-radius: 20px;
| box-shadow: none;
| }
| }
| }
|
|