holygrail2 1.1.16 → 1.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/style.css +257 -183
- package/dist/style.css.map +1 -1
- package/doc/docs.css +75 -13
- package/doc/docs.css.map +1 -1
- package/guide/index.html +1566 -1137
- package/package.json +1 -1
- package/scss/abstract/_setup.scss +12 -12
- package/scss/base/_animations.scss +7 -7
- package/scss/base/_helpers.scss +4 -0
- package/scss/base/_rtl.scss +0 -2
- package/scss/docs.scss +2 -2
- package/scss/elements/_buttons.scss +19 -12
- package/scss/elements/_progressbar.scss +1 -1
- package/scss/elements/_tabs.scss +4 -3
- package/scss/layouts/_mainmenu.scss +2 -8
package/dist/style.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
/*
|
|
3
3
|
Paquete: holygrail2
|
|
4
|
-
Versión: 1.1.
|
|
4
|
+
Versión: 1.1.17
|
|
5
5
|
*/
|
|
6
6
|
@charset "UTF-8";
|
|
7
7
|
*,
|
|
@@ -207,6 +207,68 @@ button {
|
|
|
207
207
|
transform: rotate(-360deg);
|
|
208
208
|
}
|
|
209
209
|
}
|
|
210
|
+
.duration-50 {
|
|
211
|
+
animation-duration: 50ms;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.duration-150 {
|
|
215
|
+
animation-duration: 150ms;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
.duration-300 {
|
|
219
|
+
animation-duration: 300ms;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.duration-400 {
|
|
223
|
+
animation-duration: 400ms;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.duration-500 {
|
|
227
|
+
animation-duration: 500ms;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.duration-700 {
|
|
231
|
+
animation-duration: 700ms;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.duration-800 {
|
|
235
|
+
animation-duration: 800ms;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.duration-1000 {
|
|
239
|
+
animation-duration: 1000ms;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.slide-in {
|
|
243
|
+
-webkit-animation: slide-right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
244
|
+
animation: slide-right 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.slide-out {
|
|
248
|
+
-webkit-animation: slide-left 300ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
249
|
+
animation: slide-left 300ms cubic-bezier(0.39, 0.575, 0.565, 1) both;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.fade-in {
|
|
253
|
+
-webkit-animation: fade-in 300ms ease-in-out both;
|
|
254
|
+
animation: fade-in 300ms ease-in-out both;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.fade-out {
|
|
258
|
+
-webkit-animation: fade-out 150ms ease-in-out both;
|
|
259
|
+
animation: fade-out 150ms ease-in-out both;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.expand-top {
|
|
263
|
+
-webkit-animation: scale-up-top 700ms ease-in-out both;
|
|
264
|
+
animation: scale-up-top 700ms ease-in-out both;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
.collapse-top {
|
|
268
|
+
-webkit-animation: scale-down-top 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
269
|
+
animation: scale-down-top 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
|
|
270
|
+
}
|
|
271
|
+
|
|
210
272
|
.text-center {
|
|
211
273
|
text-align: center;
|
|
212
274
|
}
|
|
@@ -1554,7 +1616,7 @@ button {
|
|
|
1554
1616
|
width: 48px;
|
|
1555
1617
|
height: 48px;
|
|
1556
1618
|
padding: 10px;
|
|
1557
|
-
border: 1px solid #
|
|
1619
|
+
border: 1px solid #a9a9a9;
|
|
1558
1620
|
box-sizing: border-box;
|
|
1559
1621
|
border-radius: 50%;
|
|
1560
1622
|
}
|
|
@@ -1586,7 +1648,7 @@ svg-icon.ico-success path {
|
|
|
1586
1648
|
fill: #76ae4a;
|
|
1587
1649
|
}
|
|
1588
1650
|
svg-icon.ico-feel path {
|
|
1589
|
-
fill: #
|
|
1651
|
+
fill: #a9a9a9;
|
|
1590
1652
|
}
|
|
1591
1653
|
|
|
1592
1654
|
.icon-white svg-icon path {
|
|
@@ -1612,7 +1674,7 @@ svg-icon.ico-feel path {
|
|
|
1612
1674
|
}
|
|
1613
1675
|
|
|
1614
1676
|
.has-feel svg path {
|
|
1615
|
-
fill: #
|
|
1677
|
+
fill: #a9a9a9;
|
|
1616
1678
|
}
|
|
1617
1679
|
|
|
1618
1680
|
.has-success svg path {
|
|
@@ -1628,7 +1690,7 @@ svg-icon.ico-feel path {
|
|
|
1628
1690
|
align-content: center;
|
|
1629
1691
|
justify-content: center;
|
|
1630
1692
|
align-items: center;
|
|
1631
|
-
background-color: #
|
|
1693
|
+
background-color: #a9a9a9;
|
|
1632
1694
|
flex: 0 0 40px;
|
|
1633
1695
|
}
|
|
1634
1696
|
.ico-ball .ico-count {
|
|
@@ -2270,7 +2332,7 @@ svg-icon.ico-pre {
|
|
|
2270
2332
|
content: "";
|
|
2271
2333
|
width: 100%;
|
|
2272
2334
|
aspect-ratio: 3/4;
|
|
2273
|
-
background-color: #
|
|
2335
|
+
background-color: #a9a9a9;
|
|
2274
2336
|
}
|
|
2275
2337
|
.sk-load_3-4::marker {
|
|
2276
2338
|
display: none;
|
|
@@ -2285,7 +2347,7 @@ svg-icon.ico-pre {
|
|
|
2285
2347
|
content: "";
|
|
2286
2348
|
width: 100%;
|
|
2287
2349
|
aspect-ratio: 2/3;
|
|
2288
|
-
background-color: #
|
|
2350
|
+
background-color: #a9a9a9;
|
|
2289
2351
|
}
|
|
2290
2352
|
.sk-load_2-3::marker {
|
|
2291
2353
|
display: none;
|
|
@@ -2300,7 +2362,7 @@ svg-icon.ico-pre {
|
|
|
2300
2362
|
content: "";
|
|
2301
2363
|
width: 100%;
|
|
2302
2364
|
aspect-ratio: 1/1;
|
|
2303
|
-
background-color: #
|
|
2365
|
+
background-color: #a9a9a9;
|
|
2304
2366
|
}
|
|
2305
2367
|
.sk-load_1-1::marker {
|
|
2306
2368
|
display: none;
|
|
@@ -2315,7 +2377,7 @@ svg-icon.ico-pre {
|
|
|
2315
2377
|
content: "";
|
|
2316
2378
|
width: 100%;
|
|
2317
2379
|
aspect-ratio: 2/1;
|
|
2318
|
-
background-color: #
|
|
2380
|
+
background-color: #a9a9a9;
|
|
2319
2381
|
}
|
|
2320
2382
|
.sk-load_2-1::marker {
|
|
2321
2383
|
display: none;
|
|
@@ -2330,7 +2392,7 @@ svg-icon.ico-pre {
|
|
|
2330
2392
|
content: "";
|
|
2331
2393
|
width: 100%;
|
|
2332
2394
|
aspect-ratio: 4/3;
|
|
2333
|
-
background-color: #
|
|
2395
|
+
background-color: #a9a9a9;
|
|
2334
2396
|
}
|
|
2335
2397
|
.sk-load_4-3::marker {
|
|
2336
2398
|
display: none;
|
|
@@ -2345,7 +2407,7 @@ svg-icon.ico-pre {
|
|
|
2345
2407
|
content: "";
|
|
2346
2408
|
width: 100%;
|
|
2347
2409
|
aspect-ratio: 3/2;
|
|
2348
|
-
background-color: #
|
|
2410
|
+
background-color: #a9a9a9;
|
|
2349
2411
|
}
|
|
2350
2412
|
.sk-load_3-2::marker {
|
|
2351
2413
|
display: none;
|
|
@@ -2360,7 +2422,7 @@ svg-icon.ico-pre {
|
|
|
2360
2422
|
content: "";
|
|
2361
2423
|
width: 100%;
|
|
2362
2424
|
aspect-ratio: 16/9;
|
|
2363
|
-
background-color: #
|
|
2425
|
+
background-color: #a9a9a9;
|
|
2364
2426
|
}
|
|
2365
2427
|
.sk-load_16-9::marker {
|
|
2366
2428
|
display: none;
|
|
@@ -4481,11 +4543,11 @@ mark {
|
|
|
4481
4543
|
}
|
|
4482
4544
|
|
|
4483
4545
|
.c-dark-grey {
|
|
4484
|
-
color: #
|
|
4546
|
+
color: #666666;
|
|
4485
4547
|
}
|
|
4486
4548
|
|
|
4487
4549
|
.c-middle-grey {
|
|
4488
|
-
color: #
|
|
4550
|
+
color: #a9a9a9;
|
|
4489
4551
|
}
|
|
4490
4552
|
|
|
4491
4553
|
.c-light-grey {
|
|
@@ -4497,7 +4559,7 @@ mark {
|
|
|
4497
4559
|
}
|
|
4498
4560
|
|
|
4499
4561
|
.second-color {
|
|
4500
|
-
color: #
|
|
4562
|
+
color: #666666;
|
|
4501
4563
|
}
|
|
4502
4564
|
|
|
4503
4565
|
.is-info {
|
|
@@ -4529,15 +4591,15 @@ mark {
|
|
|
4529
4591
|
}
|
|
4530
4592
|
|
|
4531
4593
|
.c-feel {
|
|
4532
|
-
color: #
|
|
4594
|
+
color: #000000;
|
|
4533
4595
|
}
|
|
4534
4596
|
|
|
4535
4597
|
.c-feel-dark {
|
|
4536
|
-
color: #
|
|
4598
|
+
color: #a9a9a9;
|
|
4537
4599
|
}
|
|
4538
4600
|
|
|
4539
4601
|
.c-feel-light {
|
|
4540
|
-
color: #
|
|
4602
|
+
color: #f0f0f0;
|
|
4541
4603
|
}
|
|
4542
4604
|
|
|
4543
4605
|
.c-tier-silver {
|
|
@@ -4545,11 +4607,11 @@ mark {
|
|
|
4545
4607
|
}
|
|
4546
4608
|
|
|
4547
4609
|
.c-tier-platinum {
|
|
4548
|
-
color: #
|
|
4610
|
+
color: #99b0c5;
|
|
4549
4611
|
}
|
|
4550
4612
|
|
|
4551
4613
|
.c-tier-gold {
|
|
4552
|
-
color: #
|
|
4614
|
+
color: #dcbe99;
|
|
4553
4615
|
}
|
|
4554
4616
|
|
|
4555
4617
|
.c-limited {
|
|
@@ -4570,19 +4632,19 @@ mark {
|
|
|
4570
4632
|
}
|
|
4571
4633
|
|
|
4572
4634
|
.bg-feel-light {
|
|
4573
|
-
background-color: #
|
|
4635
|
+
background-color: #f0f0f0;
|
|
4574
4636
|
}
|
|
4575
4637
|
|
|
4576
4638
|
.bg-feel-dark {
|
|
4577
|
-
background-color: #
|
|
4639
|
+
background-color: #a9a9a9;
|
|
4578
4640
|
}
|
|
4579
4641
|
|
|
4580
4642
|
.bg-dark-grey {
|
|
4581
|
-
background-color: #
|
|
4643
|
+
background-color: #666666;
|
|
4582
4644
|
}
|
|
4583
4645
|
|
|
4584
4646
|
.bg-middle-grey {
|
|
4585
|
-
background-color: #
|
|
4647
|
+
background-color: #a9a9a9;
|
|
4586
4648
|
}
|
|
4587
4649
|
|
|
4588
4650
|
.bg-light-grey {
|
|
@@ -4632,7 +4694,7 @@ mark {
|
|
|
4632
4694
|
}
|
|
4633
4695
|
|
|
4634
4696
|
.bg-feel {
|
|
4635
|
-
background-color: #
|
|
4697
|
+
background-color: #000000;
|
|
4636
4698
|
}
|
|
4637
4699
|
|
|
4638
4700
|
.bg-dark {
|
|
@@ -4645,11 +4707,11 @@ mark {
|
|
|
4645
4707
|
}
|
|
4646
4708
|
|
|
4647
4709
|
.bg-tier-platinum {
|
|
4648
|
-
background-color: #
|
|
4710
|
+
background-color: #99b0c5;
|
|
4649
4711
|
}
|
|
4650
4712
|
|
|
4651
4713
|
.bg-tier-gold {
|
|
4652
|
-
background-color: #
|
|
4714
|
+
background-color: #dcbe99;
|
|
4653
4715
|
}
|
|
4654
4716
|
|
|
4655
4717
|
.bg-cover {
|
|
@@ -4777,7 +4839,7 @@ b {
|
|
|
4777
4839
|
hr {
|
|
4778
4840
|
width: 100%;
|
|
4779
4841
|
margin: 0;
|
|
4780
|
-
border-top: 1px solid #
|
|
4842
|
+
border-top: 1px solid #a9a9a9;
|
|
4781
4843
|
border-bottom: 1px solid transparent;
|
|
4782
4844
|
border-left: 1px solid transparent;
|
|
4783
4845
|
border-right: 1px solid transparent;
|
|
@@ -4850,10 +4912,10 @@ hr {
|
|
|
4850
4912
|
}
|
|
4851
4913
|
|
|
4852
4914
|
.hg-status-d {
|
|
4853
|
-
color: #
|
|
4915
|
+
color: #666666;
|
|
4854
4916
|
}
|
|
4855
4917
|
.hg-status-d::before {
|
|
4856
|
-
background-color: #
|
|
4918
|
+
background-color: #666666;
|
|
4857
4919
|
}
|
|
4858
4920
|
|
|
4859
4921
|
.block-right {
|
|
@@ -5012,7 +5074,7 @@ strong {
|
|
|
5012
5074
|
}
|
|
5013
5075
|
|
|
5014
5076
|
.bb-line {
|
|
5015
|
-
border-bottom: var(--line-width) solid #
|
|
5077
|
+
border-bottom: var(--line-width) solid #a9a9a9;
|
|
5016
5078
|
}
|
|
5017
5079
|
|
|
5018
5080
|
.border-1 {
|
|
@@ -5020,7 +5082,7 @@ strong {
|
|
|
5020
5082
|
}
|
|
5021
5083
|
|
|
5022
5084
|
.border-1-grey {
|
|
5023
|
-
border: var(--line-width) solid #
|
|
5085
|
+
border: var(--line-width) solid #a9a9a9;
|
|
5024
5086
|
}
|
|
5025
5087
|
|
|
5026
5088
|
.border-1-light {
|
|
@@ -5161,12 +5223,12 @@ strong {
|
|
|
5161
5223
|
background-color: #f0f0f0;
|
|
5162
5224
|
}
|
|
5163
5225
|
.ov-custom::-webkit-scrollbar-thumb {
|
|
5164
|
-
background-color: #
|
|
5226
|
+
background-color: #666666;
|
|
5165
5227
|
border-radius: 16px;
|
|
5166
5228
|
border: 3px solid #fff;
|
|
5167
5229
|
}
|
|
5168
5230
|
.ov-custom::-webkit-scrollbar-thumb:hover {
|
|
5169
|
-
background-color: #
|
|
5231
|
+
background-color: #666666;
|
|
5170
5232
|
border: 2px solid #f0f0f0;
|
|
5171
5233
|
}
|
|
5172
5234
|
.ov-custom::-webkit-scrollbar-button {
|
|
@@ -5484,26 +5546,26 @@ strong {
|
|
|
5484
5546
|
}
|
|
5485
5547
|
}
|
|
5486
5548
|
|
|
5487
|
-
.
|
|
5549
|
+
.scrollcustom {
|
|
5488
5550
|
overflow: auto;
|
|
5489
5551
|
/* Track */
|
|
5490
5552
|
/* Handle */
|
|
5491
5553
|
}
|
|
5492
|
-
.
|
|
5554
|
+
.scrollcustom::-webkit-scrollbar {
|
|
5493
5555
|
width: 5px;
|
|
5494
5556
|
height: 5px;
|
|
5495
5557
|
}
|
|
5496
|
-
.
|
|
5558
|
+
.scrollcustom::-webkit-scrollbar-track {
|
|
5497
5559
|
background: #fff;
|
|
5498
5560
|
-webkit-border-radius: 10px;
|
|
5499
5561
|
border-radius: 0;
|
|
5500
5562
|
}
|
|
5501
|
-
.
|
|
5563
|
+
.scrollcustom::-webkit-scrollbar-thumb {
|
|
5502
5564
|
-webkit-border-radius: 10px;
|
|
5503
5565
|
border-radius: 10px;
|
|
5504
5566
|
background: #999;
|
|
5505
5567
|
}
|
|
5506
|
-
.
|
|
5568
|
+
.scrollcustom::-webkit-scrollbar-thumb:window-inactive {
|
|
5507
5569
|
background: #999;
|
|
5508
5570
|
}
|
|
5509
5571
|
|
|
@@ -5560,7 +5622,7 @@ strong {
|
|
|
5560
5622
|
height: 5px;
|
|
5561
5623
|
}
|
|
5562
5624
|
.min-scrollcustom-x.has-dark::-webkit-scrollbar-track {
|
|
5563
|
-
background: #
|
|
5625
|
+
background: #a9a9a9;
|
|
5564
5626
|
-webkit-border-radius: 10px;
|
|
5565
5627
|
border-radius: 0;
|
|
5566
5628
|
}
|
|
@@ -5618,6 +5680,10 @@ strong {
|
|
|
5618
5680
|
text-decoration: line-through;
|
|
5619
5681
|
}
|
|
5620
5682
|
|
|
5683
|
+
.gap-16 {
|
|
5684
|
+
gap: 16px;
|
|
5685
|
+
}
|
|
5686
|
+
|
|
5621
5687
|
.guide section {
|
|
5622
5688
|
padding-bottom: 20px;
|
|
5623
5689
|
}
|
|
@@ -6009,7 +6075,7 @@ strong {
|
|
|
6009
6075
|
padding: 24px 16px;
|
|
6010
6076
|
margin-top: 16px;
|
|
6011
6077
|
text-align: center;
|
|
6012
|
-
background-color: #
|
|
6078
|
+
background-color: #000000;
|
|
6013
6079
|
color: #000;
|
|
6014
6080
|
}
|
|
6015
6081
|
|
|
@@ -6045,7 +6111,7 @@ button {
|
|
|
6045
6111
|
border: none;
|
|
6046
6112
|
white-space: nowrap;
|
|
6047
6113
|
cursor: pointer;
|
|
6048
|
-
padding:
|
|
6114
|
+
padding: 16px 8px;
|
|
6049
6115
|
background-color: transparent;
|
|
6050
6116
|
height: 40px;
|
|
6051
6117
|
font-family: arial, sans-serif;
|
|
@@ -6055,13 +6121,14 @@ button {
|
|
|
6055
6121
|
text-decoration: none;
|
|
6056
6122
|
opacity: 0.6;
|
|
6057
6123
|
outline: none;
|
|
6124
|
+
cursor: pointer;
|
|
6058
6125
|
}
|
|
6059
6126
|
.btn[disabled], .btn:disabled, .btn.disabled {
|
|
6060
6127
|
pointer-events: none;
|
|
6061
6128
|
filter: grayscale(1);
|
|
6062
|
-
background-color: #
|
|
6063
|
-
border: 1px solid #
|
|
6064
|
-
color: #
|
|
6129
|
+
background-color: #f0f0f0;
|
|
6130
|
+
border: 1px solid #f0f0f0;
|
|
6131
|
+
color: #666666;
|
|
6065
6132
|
opacity: 1;
|
|
6066
6133
|
cursor: not-allowed;
|
|
6067
6134
|
}
|
|
@@ -6075,26 +6142,23 @@ button {
|
|
|
6075
6142
|
}
|
|
6076
6143
|
.has-light .btn:focus, .has-light .btn.focus, .has-light .btn:hover, .has-light .btn.hover, .has-light .btn:visited, .has-light .btn:active, .has-light .btn.active {
|
|
6077
6144
|
color: #fff;
|
|
6078
|
-
background-color: #
|
|
6079
|
-
border-color: #
|
|
6145
|
+
background-color: #a9a9a9;
|
|
6146
|
+
border-color: #a9a9a9;
|
|
6080
6147
|
}
|
|
6081
6148
|
.has-light .btn[disabled], .has-light .btn:disabled, .has-light .btn.disabled {
|
|
6082
6149
|
cursor: default;
|
|
6083
6150
|
pointer-events: none;
|
|
6084
6151
|
filter: grayscale(1);
|
|
6085
|
-
background-color: #
|
|
6086
|
-
border: 1px solid #
|
|
6087
|
-
color: #
|
|
6152
|
+
background-color: #f0f0f0;
|
|
6153
|
+
border: 1px solid #f0f0f0;
|
|
6154
|
+
color: #666666;
|
|
6088
6155
|
opacity: 1;
|
|
6089
6156
|
}
|
|
6090
6157
|
.btn.btn-separate {
|
|
6091
6158
|
display: flex;
|
|
6092
6159
|
align-items: center;
|
|
6093
6160
|
justify-content: space-between;
|
|
6094
|
-
padding:
|
|
6095
|
-
}
|
|
6096
|
-
.btn.btn-separate svg {
|
|
6097
|
-
margin-left: 8px;
|
|
6161
|
+
padding: 16px 32px;
|
|
6098
6162
|
}
|
|
6099
6163
|
.btn.btn-separate.btn--mini, .btn.btn-separate.btn--small {
|
|
6100
6164
|
width: max-content;
|
|
@@ -6102,7 +6166,7 @@ button {
|
|
|
6102
6166
|
.btn.btn-feel-invert {
|
|
6103
6167
|
color: #000;
|
|
6104
6168
|
background-color: transparent;
|
|
6105
|
-
border: 1px solid #
|
|
6169
|
+
border: 1px solid #000000;
|
|
6106
6170
|
}
|
|
6107
6171
|
.btn.btn-feel-invert svg g {
|
|
6108
6172
|
fill: #000;
|
|
@@ -6114,12 +6178,12 @@ button {
|
|
|
6114
6178
|
.btn.btn-feel-invert:focus, .btn.btn-feel-invert.focus, .btn.btn-feel-invert:hover, .btn.btn-feel-invert.hover, .btn.btn-feel-invert:active, .btn.btn-feel-invert.active {
|
|
6115
6179
|
color: #000;
|
|
6116
6180
|
opacity: 1;
|
|
6117
|
-
border-color: rgba(
|
|
6181
|
+
border-color: rgba(0, 0, 0, 0.5);
|
|
6118
6182
|
}
|
|
6119
6183
|
.btn.btn-feel-invert[disabled], .btn.btn-feel-invert:disabled, .btn.btn-feel-invert.disabled {
|
|
6120
6184
|
opacity: 1;
|
|
6121
6185
|
border-color: #f0f0f0;
|
|
6122
|
-
color: #
|
|
6186
|
+
color: #666666;
|
|
6123
6187
|
cursor: default;
|
|
6124
6188
|
}
|
|
6125
6189
|
.btn.has-ico-center {
|
|
@@ -6263,26 +6327,26 @@ button {
|
|
|
6263
6327
|
}
|
|
6264
6328
|
.btn-primary:focus, .btn-primary.focus, .btn-primary:hover, .btn-primary.hover, .btn-primary:active, .btn-primary.active {
|
|
6265
6329
|
color: #fff;
|
|
6266
|
-
background-color: #
|
|
6267
|
-
border: 1px solid #
|
|
6330
|
+
background-color: #666666;
|
|
6331
|
+
border: 1px solid #666666;
|
|
6268
6332
|
opacity: 1;
|
|
6269
6333
|
cursor: pointer;
|
|
6270
6334
|
}
|
|
6271
6335
|
.btn-primary[disabled], .btn-primary:disabled, .btn-primary.disabled {
|
|
6272
|
-
background-color: #
|
|
6273
|
-
border: 1px solid #
|
|
6274
|
-
color: #
|
|
6336
|
+
background-color: #a9a9a9;
|
|
6337
|
+
border: 1px solid #a9a9a9;
|
|
6338
|
+
color: #666666;
|
|
6275
6339
|
opacity: 1;
|
|
6276
6340
|
}
|
|
6277
6341
|
.btn-primary[disabled] svg g, .btn-primary:disabled svg g, .btn-primary.disabled svg g {
|
|
6278
|
-
fill: #
|
|
6279
|
-
stroke: #
|
|
6342
|
+
fill: #666666;
|
|
6343
|
+
stroke: #666666;
|
|
6280
6344
|
}
|
|
6281
6345
|
.btn-primary[disabled] svg circle, .btn-primary:disabled svg circle, .btn-primary.disabled svg circle {
|
|
6282
|
-
stroke: #
|
|
6346
|
+
stroke: #666666;
|
|
6283
6347
|
}
|
|
6284
6348
|
.btn-primary[disabled] svg path, .btn-primary:disabled svg path, .btn-primary.disabled svg path {
|
|
6285
|
-
fill: #
|
|
6349
|
+
fill: #666666;
|
|
6286
6350
|
}
|
|
6287
6351
|
.has-light .btn-primary {
|
|
6288
6352
|
color: #000;
|
|
@@ -6301,8 +6365,8 @@ button {
|
|
|
6301
6365
|
}
|
|
6302
6366
|
.has-light .btn-primary:focus, .has-light .btn-primary.focus, .has-light .btn-primary:hover, .has-light .btn-primary.hover, .has-light .btn-primary:active, .has-light .btn-primary.active {
|
|
6303
6367
|
color: #fff;
|
|
6304
|
-
background-color: #
|
|
6305
|
-
border: 1px solid #
|
|
6368
|
+
background-color: #666666;
|
|
6369
|
+
border: 1px solid #666666;
|
|
6306
6370
|
opacity: 1;
|
|
6307
6371
|
}
|
|
6308
6372
|
.has-light .btn-primary:focus svg g, .has-light .btn-primary.focus svg g, .has-light .btn-primary:hover svg g, .has-light .btn-primary.hover svg g, .has-light .btn-primary:active svg g, .has-light .btn-primary.active svg g {
|
|
@@ -6316,9 +6380,9 @@ button {
|
|
|
6316
6380
|
fill: #fff;
|
|
6317
6381
|
}
|
|
6318
6382
|
.has-light .btn-primary[disabled], .has-light .btn-primary:disabled, .has-light .btn-primary.disabled {
|
|
6319
|
-
background-color: #
|
|
6320
|
-
border: 1px solid #
|
|
6321
|
-
color: #
|
|
6383
|
+
background-color: #a9a9a9;
|
|
6384
|
+
border: 1px solid #a9a9a9;
|
|
6385
|
+
color: #666666;
|
|
6322
6386
|
opacity: 1;
|
|
6323
6387
|
}
|
|
6324
6388
|
|
|
@@ -6340,24 +6404,24 @@ button {
|
|
|
6340
6404
|
.btn-secondary:focus, .btn-secondary.focus, .btn-secondary:hover, .btn-secondary.hover, .btn-secondary:active, .btn-secondary.active {
|
|
6341
6405
|
color: #000;
|
|
6342
6406
|
background-color: #fff;
|
|
6343
|
-
border: 1px solid #
|
|
6407
|
+
border: 1px solid #666666;
|
|
6344
6408
|
opacity: 1;
|
|
6345
6409
|
}
|
|
6346
6410
|
.btn-secondary[disabled], .btn-secondary:disabled, .btn-secondary.disabled {
|
|
6347
6411
|
background-color: #fff;
|
|
6348
|
-
border: 1px solid #
|
|
6349
|
-
color: #
|
|
6412
|
+
border: 1px solid #a9a9a9;
|
|
6413
|
+
color: #666666;
|
|
6350
6414
|
opacity: 1;
|
|
6351
6415
|
}
|
|
6352
6416
|
.btn-secondary[disabled] svg g, .btn-secondary:disabled svg g, .btn-secondary.disabled svg g {
|
|
6353
|
-
fill: #
|
|
6354
|
-
stroke: #
|
|
6417
|
+
fill: #a9a9a9;
|
|
6418
|
+
stroke: #a9a9a9;
|
|
6355
6419
|
}
|
|
6356
6420
|
.btn-secondary[disabled] svg circle, .btn-secondary:disabled svg circle, .btn-secondary.disabled svg circle {
|
|
6357
|
-
stroke: #
|
|
6421
|
+
stroke: #a9a9a9;
|
|
6358
6422
|
}
|
|
6359
6423
|
.btn-secondary[disabled] svg path, .btn-secondary:disabled svg path, .btn-secondary.disabled svg path {
|
|
6360
|
-
fill: #
|
|
6424
|
+
fill: #a9a9a9;
|
|
6361
6425
|
}
|
|
6362
6426
|
.has-light .btn-secondary {
|
|
6363
6427
|
color: #fff;
|
|
@@ -6376,8 +6440,8 @@ button {
|
|
|
6376
6440
|
}
|
|
6377
6441
|
.has-light .btn-secondary:focus, .has-light .btn-secondary.focus, .has-light .btn-secondary:hover, .has-light .btn-secondary.hover, .has-light .btn-secondary:active, .has-light .btn-secondary.active {
|
|
6378
6442
|
color: #fff;
|
|
6379
|
-
background-color: #
|
|
6380
|
-
border: 1px solid #
|
|
6443
|
+
background-color: #666666;
|
|
6444
|
+
border: 1px solid #666666;
|
|
6381
6445
|
opacity: 1;
|
|
6382
6446
|
}
|
|
6383
6447
|
.has-light .btn-secondary:focus svg g, .has-light .btn-secondary.focus svg g, .has-light .btn-secondary:hover svg g, .has-light .btn-secondary.hover svg g, .has-light .btn-secondary:active svg g, .has-light .btn-secondary.active svg g {
|
|
@@ -6392,8 +6456,8 @@ button {
|
|
|
6392
6456
|
}
|
|
6393
6457
|
.has-light .btn-secondary[disabled], .has-light .btn-secondary:disabled, .has-light .btn-secondary.disabled {
|
|
6394
6458
|
background-color: transparent;
|
|
6395
|
-
border: 1px solid #
|
|
6396
|
-
color: #
|
|
6459
|
+
border: 1px solid #666666;
|
|
6460
|
+
color: #666666;
|
|
6397
6461
|
opacity: 1;
|
|
6398
6462
|
}
|
|
6399
6463
|
|
|
@@ -6415,7 +6479,7 @@ button {
|
|
|
6415
6479
|
.btn-phantom:focus, .btn-phantom.focus, .btn-phantom:hover, .btn-phantom.hover, .btn-phantom:active, .btn-phantom.active {
|
|
6416
6480
|
color: #000;
|
|
6417
6481
|
background-color: transparent;
|
|
6418
|
-
border: 1px solid #
|
|
6482
|
+
border: 1px solid #666666;
|
|
6419
6483
|
opacity: 1;
|
|
6420
6484
|
}
|
|
6421
6485
|
|
|
@@ -6438,7 +6502,7 @@ button {
|
|
|
6438
6502
|
|
|
6439
6503
|
.btn-primary-feel {
|
|
6440
6504
|
color: #000;
|
|
6441
|
-
background-color: #
|
|
6505
|
+
background-color: #000000;
|
|
6442
6506
|
}
|
|
6443
6507
|
.btn-primary-feel svg g {
|
|
6444
6508
|
fill: #000;
|
|
@@ -6453,20 +6517,20 @@ button {
|
|
|
6453
6517
|
.btn-primary-feel:focus, .btn-primary-feel.focus, .btn-primary-feel:hover, .btn-primary-feel.hover, .btn-primary-feel:active, .btn-primary-feel.active {
|
|
6454
6518
|
color: #000;
|
|
6455
6519
|
opacity: 1;
|
|
6456
|
-
background-color: rgba(
|
|
6520
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
6457
6521
|
}
|
|
6458
6522
|
.btn-primary-feel:disabled, .btn-primary-feel[disabled], .btn-primary-feel.disabled {
|
|
6459
6523
|
pointer-events: none;
|
|
6460
6524
|
cursor: default;
|
|
6461
|
-
border: 1px solid #
|
|
6462
|
-
color: #
|
|
6463
|
-
background-color: #
|
|
6525
|
+
border: 1px solid #a9a9a9 !important;
|
|
6526
|
+
color: #666666 !important;
|
|
6527
|
+
background-color: #a9a9a9 !important;
|
|
6464
6528
|
filter: none;
|
|
6465
6529
|
opacity: 1;
|
|
6466
6530
|
}
|
|
6467
6531
|
.btn-primary-feel:disabled svg-icon, .btn-primary-feel[disabled] svg-icon, .btn-primary-feel.disabled svg-icon {
|
|
6468
|
-
background-color: #
|
|
6469
|
-
border: 1px solid #
|
|
6532
|
+
background-color: #a9a9a9 !important;
|
|
6533
|
+
border: 1px solid #a9a9a9 !important;
|
|
6470
6534
|
}
|
|
6471
6535
|
|
|
6472
6536
|
.btn-secondary-feel {
|
|
@@ -6484,21 +6548,21 @@ button {
|
|
|
6484
6548
|
.btn-secondary-feel:focus, .btn-secondary-feel.focus, .btn-secondary-feel:hover, .btn-secondary-feel.hover, .btn-secondary-feel:active, .btn-secondary-feel.active {
|
|
6485
6549
|
opacity: 1;
|
|
6486
6550
|
color: #000;
|
|
6487
|
-
border: 1px solid #
|
|
6551
|
+
border: 1px solid #666666;
|
|
6488
6552
|
background-color: #fff;
|
|
6489
6553
|
}
|
|
6490
6554
|
.btn-secondary-feel:disabled, .btn-secondary-feel[disabled], .btn-secondary-feel.disabled {
|
|
6491
6555
|
pointer-events: none;
|
|
6492
6556
|
cursor: default;
|
|
6493
|
-
border: 1px solid #
|
|
6494
|
-
color: #
|
|
6495
|
-
background-color: #
|
|
6557
|
+
border: 1px solid #a9a9a9 !important;
|
|
6558
|
+
color: #666666 !important;
|
|
6559
|
+
background-color: #a9a9a9 !important;
|
|
6496
6560
|
filter: none;
|
|
6497
6561
|
opacity: 1;
|
|
6498
6562
|
}
|
|
6499
6563
|
.btn-secondary-feel:disabled svg-icon, .btn-secondary-feel[disabled] svg-icon, .btn-secondary-feel.disabled svg-icon {
|
|
6500
|
-
background-color: #
|
|
6501
|
-
border: 1px solid #
|
|
6564
|
+
background-color: #a9a9a9 !important;
|
|
6565
|
+
border: 1px solid #a9a9a9 !important;
|
|
6502
6566
|
}
|
|
6503
6567
|
.has-light .btn-secondary-feel {
|
|
6504
6568
|
color: #fff;
|
|
@@ -6508,8 +6572,8 @@ button {
|
|
|
6508
6572
|
.has-light .btn-secondary-feel:focus, .has-light .btn-secondary-feel.focus, .has-light .btn-secondary-feel:hover, .has-light .btn-secondary-feel.hover, .has-light .btn-secondary-feel:active, .has-light .btn-secondary-feel.active {
|
|
6509
6573
|
opacity: 1;
|
|
6510
6574
|
color: #fff;
|
|
6511
|
-
border: 1px solid #
|
|
6512
|
-
background-color: #
|
|
6575
|
+
border: 1px solid #666666;
|
|
6576
|
+
background-color: #666666;
|
|
6513
6577
|
}
|
|
6514
6578
|
|
|
6515
6579
|
.btn-tertiary {
|
|
@@ -6534,7 +6598,7 @@ button {
|
|
|
6534
6598
|
pointer-events: none;
|
|
6535
6599
|
cursor: default;
|
|
6536
6600
|
border: 0 solid transparent !important;
|
|
6537
|
-
color: #
|
|
6601
|
+
color: #666666 !important;
|
|
6538
6602
|
background-color: transparent !important;
|
|
6539
6603
|
filter: none;
|
|
6540
6604
|
opacity: 1;
|
|
@@ -6572,7 +6636,7 @@ button {
|
|
|
6572
6636
|
.btn-invert-light {
|
|
6573
6637
|
color: #000;
|
|
6574
6638
|
background-color: transparent;
|
|
6575
|
-
border: 1px solid #
|
|
6639
|
+
border: 1px solid #a9a9a9;
|
|
6576
6640
|
}
|
|
6577
6641
|
.btn-invert-light:focus, .btn-invert-light.focus, .btn-invert-light:hover, .btn-invert-light:active, .btn-invert-light.active {
|
|
6578
6642
|
opacity: 0.6;
|
|
@@ -6667,8 +6731,7 @@ button {
|
|
|
6667
6731
|
justify-content: center;
|
|
6668
6732
|
align-items: center;
|
|
6669
6733
|
border-radius: 0;
|
|
6670
|
-
margin-top: -
|
|
6671
|
-
margin-right: 12px;
|
|
6734
|
+
margin-top: -2px;
|
|
6672
6735
|
top: 0;
|
|
6673
6736
|
left: 1px;
|
|
6674
6737
|
}
|
|
@@ -6681,7 +6744,7 @@ button {
|
|
|
6681
6744
|
opacity: 1;
|
|
6682
6745
|
}
|
|
6683
6746
|
.btn-social:disabled svg path, .btn-social[disabled] svg path, .btn-social.disabled svg path {
|
|
6684
|
-
fill: #
|
|
6747
|
+
fill: #666666;
|
|
6685
6748
|
}
|
|
6686
6749
|
|
|
6687
6750
|
.btn-google,
|
|
@@ -6743,8 +6806,12 @@ button {
|
|
|
6743
6806
|
.has-light .btn-apple:active,
|
|
6744
6807
|
.has-light .btn-apple.active {
|
|
6745
6808
|
opacity: 1;
|
|
6746
|
-
background-color: #
|
|
6747
|
-
border: 1px solid #
|
|
6809
|
+
background-color: #666666;
|
|
6810
|
+
border: 1px solid #666666;
|
|
6811
|
+
}
|
|
6812
|
+
.btn-apple svg-icon path,
|
|
6813
|
+
.has-light .btn-apple svg-icon path {
|
|
6814
|
+
fill: #fff;
|
|
6748
6815
|
}
|
|
6749
6816
|
|
|
6750
6817
|
.btn-apple-secondary,
|
|
@@ -6763,7 +6830,7 @@ button {
|
|
|
6763
6830
|
.has-light .btn-apple-secondary.active {
|
|
6764
6831
|
opacity: 1;
|
|
6765
6832
|
background-color: #fff;
|
|
6766
|
-
border: 1px solid #
|
|
6833
|
+
border: 1px solid #666666;
|
|
6767
6834
|
}
|
|
6768
6835
|
|
|
6769
6836
|
.btn-naver,
|
|
@@ -6785,6 +6852,10 @@ button {
|
|
|
6785
6852
|
background-color: #03cf5d;
|
|
6786
6853
|
border: 1px solid #03cf5d;
|
|
6787
6854
|
}
|
|
6855
|
+
.btn-naver svg-icon path,
|
|
6856
|
+
.has-light .btn-naver svg-icon path {
|
|
6857
|
+
fill: #fff;
|
|
6858
|
+
}
|
|
6788
6859
|
|
|
6789
6860
|
.btn-wechat,
|
|
6790
6861
|
.has-light .btn-wechat {
|
|
@@ -6805,6 +6876,10 @@ button {
|
|
|
6805
6876
|
background-color: #03cf5d;
|
|
6806
6877
|
border: 1px solid #2dc100;
|
|
6807
6878
|
}
|
|
6879
|
+
.btn-wechat svg-icon path,
|
|
6880
|
+
.has-light .btn-wechat svg-icon path {
|
|
6881
|
+
fill: #fff;
|
|
6882
|
+
}
|
|
6808
6883
|
|
|
6809
6884
|
.btn-block {
|
|
6810
6885
|
display: block;
|
|
@@ -6895,7 +6970,7 @@ button {
|
|
|
6895
6970
|
transform: translateY(40px);
|
|
6896
6971
|
}
|
|
6897
6972
|
.btn-anim:disabled, .btn-anim[disabled], .btn-anim.disabled {
|
|
6898
|
-
background-color: #
|
|
6973
|
+
background-color: #a9a9a9;
|
|
6899
6974
|
border-color: transparent;
|
|
6900
6975
|
opacity: 1;
|
|
6901
6976
|
}
|
|
@@ -6937,7 +7012,7 @@ button {
|
|
|
6937
7012
|
color: #fff;
|
|
6938
7013
|
}
|
|
6939
7014
|
.btn-social-login.btn-outline-login {
|
|
6940
|
-
border: #
|
|
7015
|
+
border: #a9a9a9 solid 1px;
|
|
6941
7016
|
}
|
|
6942
7017
|
.btn-social-login.disabled {
|
|
6943
7018
|
filter: invert(1);
|
|
@@ -6950,37 +7025,37 @@ button {
|
|
|
6950
7025
|
}
|
|
6951
7026
|
|
|
6952
7027
|
.btn-feel {
|
|
6953
|
-
background-color: #
|
|
6954
|
-
border: 1px solid #
|
|
7028
|
+
background-color: #000000;
|
|
7029
|
+
border: 1px solid #000000;
|
|
6955
7030
|
color: #000;
|
|
6956
7031
|
}
|
|
6957
7032
|
.btn-feel:hover, .btn-feel.hover, .btn-feel:focus, .btn-feel.focus {
|
|
6958
|
-
background-color: #
|
|
6959
|
-
border: 1px solid #
|
|
7033
|
+
background-color: #f0f0f0;
|
|
7034
|
+
border: 1px solid #f0f0f0;
|
|
6960
7035
|
color: #000;
|
|
6961
7036
|
opacity: 1;
|
|
6962
7037
|
}
|
|
6963
7038
|
.btn-feel[disabled], .btn-feel:disabled, .btn-feel.disabled {
|
|
6964
|
-
background-color: #
|
|
6965
|
-
border: 1px solid #
|
|
6966
|
-
color: #
|
|
7039
|
+
background-color: #a9a9a9;
|
|
7040
|
+
border: 1px solid #a9a9a9;
|
|
7041
|
+
color: #666666;
|
|
6967
7042
|
opacity: 1;
|
|
6968
7043
|
}
|
|
6969
7044
|
.has-light .btn-feel {
|
|
6970
|
-
background-color: #
|
|
6971
|
-
border: 1px solid #
|
|
7045
|
+
background-color: #000000;
|
|
7046
|
+
border: 1px solid #000000;
|
|
6972
7047
|
color: #000;
|
|
6973
7048
|
}
|
|
6974
7049
|
.has-light .btn-feel:hover, .has-light .btn-feel.hover, .has-light .btn-feel:focus, .has-light .btn-feel.focus {
|
|
6975
|
-
background-color: #
|
|
6976
|
-
border: 1px solid #
|
|
7050
|
+
background-color: #f0f0f0;
|
|
7051
|
+
border: 1px solid #f0f0f0;
|
|
6977
7052
|
color: #000;
|
|
6978
7053
|
opacity: 1;
|
|
6979
7054
|
}
|
|
6980
7055
|
.has-light .btn-feel[disabled], .has-light .btn-feel:disabled, .has-light .btn-feel.disabled {
|
|
6981
|
-
background-color: #
|
|
6982
|
-
border: 1px solid #
|
|
6983
|
-
color: #
|
|
7056
|
+
background-color: #a9a9a9;
|
|
7057
|
+
border: 1px solid #a9a9a9;
|
|
7058
|
+
color: #666666;
|
|
6984
7059
|
opacity: 1;
|
|
6985
7060
|
}
|
|
6986
7061
|
|
|
@@ -6989,7 +7064,7 @@ button {
|
|
|
6989
7064
|
align-items: center;
|
|
6990
7065
|
justify-content: space-between;
|
|
6991
7066
|
gap: 8px;
|
|
6992
|
-
padding:
|
|
7067
|
+
padding: 16px 32px;
|
|
6993
7068
|
border: none;
|
|
6994
7069
|
background-color: rgba(0, 0, 0, 0.4);
|
|
6995
7070
|
color: #fff;
|
|
@@ -7058,14 +7133,14 @@ button {
|
|
|
7058
7133
|
border: 1px solid #fff;
|
|
7059
7134
|
}
|
|
7060
7135
|
.has-light .btn-primary-feel:hover, .has-light .btn-primary-feel.hover, .has-light .btn-primary-feel:focus, .has-light .btn-primary-feel.focus {
|
|
7061
|
-
background-color: rgba(
|
|
7062
|
-
color: #
|
|
7063
|
-
border-color: rgba(
|
|
7136
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
7137
|
+
color: #666666;
|
|
7138
|
+
border-color: rgba(0, 0, 0, 0.6);
|
|
7064
7139
|
}
|
|
7065
7140
|
.has-light .btn-primary-feel[disabled], .has-light .btn-primary-feel:disabled, .has-light .btn-primary-feel.disabled {
|
|
7066
7141
|
opacity: 1;
|
|
7067
7142
|
background-color: #f0f0f0;
|
|
7068
|
-
color: #
|
|
7143
|
+
color: #666666;
|
|
7069
7144
|
cursor: default;
|
|
7070
7145
|
}
|
|
7071
7146
|
.has-light .btn-google svg path {
|
|
@@ -7607,7 +7682,7 @@ button {
|
|
|
7607
7682
|
.checkbox-card .checkbox-card-label {
|
|
7608
7683
|
border-radius: 0;
|
|
7609
7684
|
overflow: hidden;
|
|
7610
|
-
border: 1px solid #
|
|
7685
|
+
border: 1px solid #a9a9a9;
|
|
7611
7686
|
background: #fff;
|
|
7612
7687
|
flex-direction: column;
|
|
7613
7688
|
display: flex;
|
|
@@ -7629,7 +7704,7 @@ button {
|
|
|
7629
7704
|
color: #fff;
|
|
7630
7705
|
}
|
|
7631
7706
|
.has-light .checkbox-card .checkbox-card-label {
|
|
7632
|
-
border: 1px solid #
|
|
7707
|
+
border: 1px solid #666666;
|
|
7633
7708
|
background: #000;
|
|
7634
7709
|
}
|
|
7635
7710
|
.has-light .checkbox-card [type=radio]:checked + .checkbox-card-label, .has-light .checkbox-card :hover + .checkbox-card-label {
|
|
@@ -7758,7 +7833,7 @@ fieldset[disabled] .form-control {
|
|
|
7758
7833
|
}
|
|
7759
7834
|
|
|
7760
7835
|
input::input-placeholder {
|
|
7761
|
-
color: #
|
|
7836
|
+
color: #a9a9a9;
|
|
7762
7837
|
transform: translate3d(0, 0, 0);
|
|
7763
7838
|
}
|
|
7764
7839
|
|
|
@@ -7995,12 +8070,12 @@ input::input-placeholder {
|
|
|
7995
8070
|
font-family: arial, sans-serif;
|
|
7996
8071
|
font-weight: 500;
|
|
7997
8072
|
pointer-events: none;
|
|
7998
|
-
border-color: #
|
|
8073
|
+
border-color: #a9a9a9;
|
|
7999
8074
|
padding: 24px 0;
|
|
8000
8075
|
}
|
|
8001
8076
|
|
|
8002
8077
|
.info-text {
|
|
8003
|
-
color: #
|
|
8078
|
+
color: #666666;
|
|
8004
8079
|
margin-top: 4px;
|
|
8005
8080
|
width: 100%;
|
|
8006
8081
|
float: left;
|
|
@@ -8058,13 +8133,13 @@ input::input-placeholder {
|
|
|
8058
8133
|
}
|
|
8059
8134
|
.form-input-label-2 .input-text,
|
|
8060
8135
|
.error-zone .input-text {
|
|
8061
|
-
color: #
|
|
8136
|
+
color: #666666;
|
|
8062
8137
|
margin-top: 4px;
|
|
8063
8138
|
line-height: 1;
|
|
8064
8139
|
}
|
|
8065
8140
|
.form-input-label-2 .info-text,
|
|
8066
8141
|
.error-zone .info-text {
|
|
8067
|
-
color: #
|
|
8142
|
+
color: #666666;
|
|
8068
8143
|
margin-top: 4px;
|
|
8069
8144
|
width: auto;
|
|
8070
8145
|
position: absolute;
|
|
@@ -8118,7 +8193,7 @@ input::input-placeholder {
|
|
|
8118
8193
|
padding-top: 1px;
|
|
8119
8194
|
padding-bottom: calc(14px / 3);
|
|
8120
8195
|
font-size: 9px;
|
|
8121
|
-
color: #
|
|
8196
|
+
color: #666666;
|
|
8122
8197
|
}
|
|
8123
8198
|
.form-input-label-2 input:focus,
|
|
8124
8199
|
.error-zone input:focus {
|
|
@@ -8130,7 +8205,7 @@ input::input-placeholder {
|
|
|
8130
8205
|
padding-top: 1px;
|
|
8131
8206
|
padding-bottom: calc(14px / 3);
|
|
8132
8207
|
font-size: 9px;
|
|
8133
|
-
color: #
|
|
8208
|
+
color: #666666;
|
|
8134
8209
|
}
|
|
8135
8210
|
.form-input-label-2 input::-webkit-list-button, .form-input-label-2 input::-webkit-calendar-picker-indicator,
|
|
8136
8211
|
.error-zone input::-webkit-list-button,
|
|
@@ -8167,7 +8242,7 @@ input::input-placeholder {
|
|
|
8167
8242
|
}
|
|
8168
8243
|
.form-input-label-2 input:-ms-input-placeholder,
|
|
8169
8244
|
.error-zone input:-ms-input-placeholder {
|
|
8170
|
-
color: #
|
|
8245
|
+
color: #666666 !important;
|
|
8171
8246
|
}
|
|
8172
8247
|
.form-input-label-2 input,
|
|
8173
8248
|
.error-zone input {
|
|
@@ -8454,7 +8529,7 @@ input::input-placeholder {
|
|
|
8454
8529
|
display: none;
|
|
8455
8530
|
}
|
|
8456
8531
|
.formlabel input:-ms-input-placeholder {
|
|
8457
|
-
color: #
|
|
8532
|
+
color: #666666;
|
|
8458
8533
|
}
|
|
8459
8534
|
}
|
|
8460
8535
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
@@ -8462,7 +8537,7 @@ input::input-placeholder {
|
|
|
8462
8537
|
display: none;
|
|
8463
8538
|
}
|
|
8464
8539
|
.formlabel input:-ms-input-placeholder {
|
|
8465
|
-
color: #
|
|
8540
|
+
color: #666666 !important;
|
|
8466
8541
|
}
|
|
8467
8542
|
}
|
|
8468
8543
|
a:hover {
|
|
@@ -8500,7 +8575,7 @@ a:hover {
|
|
|
8500
8575
|
z-index: 1;
|
|
8501
8576
|
cursor: pointer;
|
|
8502
8577
|
border-radius: 50%;
|
|
8503
|
-
border: var(--line-width) solid #
|
|
8578
|
+
border: var(--line-width) solid #a9a9a9;
|
|
8504
8579
|
}
|
|
8505
8580
|
|
|
8506
8581
|
.inner-button {
|
|
@@ -8542,19 +8617,19 @@ a:hover {
|
|
|
8542
8617
|
transition: background-size 0.4s;
|
|
8543
8618
|
}
|
|
8544
8619
|
.c-dark-grey .link-line {
|
|
8545
|
-
background-image: linear-gradient(transparent calc(100% - 1px), #
|
|
8620
|
+
background-image: linear-gradient(transparent calc(100% - 1px), #666666 10px);
|
|
8546
8621
|
}
|
|
8547
8622
|
.link-line:hover {
|
|
8548
8623
|
opacity: 0.6;
|
|
8549
8624
|
}
|
|
8550
8625
|
.link-line.c-feel-dark {
|
|
8551
|
-
background-image: linear-gradient(transparent calc(100% - 1px), #
|
|
8626
|
+
background-image: linear-gradient(transparent calc(100% - 1px), #a9a9a9 10px);
|
|
8552
8627
|
}
|
|
8553
8628
|
.link-line.c-dark-grey {
|
|
8554
|
-
background-image: linear-gradient(transparent calc(100% - 1px), #
|
|
8629
|
+
background-image: linear-gradient(transparent calc(100% - 1px), #666666 10px);
|
|
8555
8630
|
}
|
|
8556
8631
|
.link-line.c-feel {
|
|
8557
|
-
background-image: linear-gradient(transparent calc(100% - 1px), #
|
|
8632
|
+
background-image: linear-gradient(transparent calc(100% - 1px), #000000 10px);
|
|
8558
8633
|
}
|
|
8559
8634
|
.link-line.is-error, .link-line.c-error {
|
|
8560
8635
|
background-image: linear-gradient(transparent calc(100% - 1px), #b40016 10px);
|
|
@@ -8830,7 +8905,7 @@ ul.list-mini > li::after {
|
|
|
8830
8905
|
.list-box {
|
|
8831
8906
|
display: table-cell;
|
|
8832
8907
|
box-sizing: border-box;
|
|
8833
|
-
border: 1px solid #
|
|
8908
|
+
border: 1px solid #666666;
|
|
8834
8909
|
transition: all 0.2s ease;
|
|
8835
8910
|
opacity: 0.5;
|
|
8836
8911
|
left: -1px;
|
|
@@ -8920,7 +8995,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
8920
8995
|
width: 100%;
|
|
8921
8996
|
height: 8px;
|
|
8922
8997
|
border-radius: 0;
|
|
8923
|
-
background-color: #
|
|
8998
|
+
background-color: #f0f0f0;
|
|
8924
8999
|
display: flex;
|
|
8925
9000
|
align-items: flex-start;
|
|
8926
9001
|
justify-content: flex-start;
|
|
@@ -8958,7 +9033,8 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
8958
9033
|
align-items: center;
|
|
8959
9034
|
vertical-align: top;
|
|
8960
9035
|
cursor: pointer;
|
|
8961
|
-
padding: 0 20px
|
|
9036
|
+
padding: 0 20px 0;
|
|
9037
|
+
line-height: 1;
|
|
8962
9038
|
}
|
|
8963
9039
|
.tabs li.is-active a, .tabs li.is-active span, .tabs li.is-active .tab {
|
|
8964
9040
|
position: relative;
|
|
@@ -8969,13 +9045,13 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
8969
9045
|
width: 4px;
|
|
8970
9046
|
height: 4px;
|
|
8971
9047
|
background-color: #000;
|
|
8972
|
-
bottom:
|
|
9048
|
+
bottom: -8px;
|
|
8973
9049
|
}
|
|
8974
9050
|
.tabs li::after {
|
|
8975
9051
|
display: none;
|
|
8976
9052
|
}
|
|
8977
9053
|
.tabs.tabs-resetfirst ul li:first-child a {
|
|
8978
|
-
padding: 0 20px
|
|
9054
|
+
padding: 0 20px 0 0;
|
|
8979
9055
|
}
|
|
8980
9056
|
.tabs.is-center ul {
|
|
8981
9057
|
justify-content: center;
|
|
@@ -9110,7 +9186,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9110
9186
|
}
|
|
9111
9187
|
.tabs-gray a,
|
|
9112
9188
|
.tabs-gray span {
|
|
9113
|
-
color: #
|
|
9189
|
+
color: #666666;
|
|
9114
9190
|
border-color: #f0f0f0;
|
|
9115
9191
|
}
|
|
9116
9192
|
|
|
@@ -9135,7 +9211,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9135
9211
|
right: 0;
|
|
9136
9212
|
width: 1px;
|
|
9137
9213
|
height: 20px;
|
|
9138
|
-
background-color: #
|
|
9214
|
+
background-color: #a9a9a9;
|
|
9139
9215
|
}
|
|
9140
9216
|
.tabs-mini li.is-active a {
|
|
9141
9217
|
opacity: 1;
|
|
@@ -9147,7 +9223,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9147
9223
|
max-width: 450px;
|
|
9148
9224
|
}
|
|
9149
9225
|
.tabs-mini.tabs-map ul {
|
|
9150
|
-
border: 1px solid #
|
|
9226
|
+
border: 1px solid #a9a9a9;
|
|
9151
9227
|
}
|
|
9152
9228
|
|
|
9153
9229
|
.tag-warning {
|
|
@@ -9183,7 +9259,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9183
9259
|
}
|
|
9184
9260
|
|
|
9185
9261
|
.tag-feel {
|
|
9186
|
-
background-color: #
|
|
9262
|
+
background-color: #000000;
|
|
9187
9263
|
color: #000;
|
|
9188
9264
|
padding: 6px;
|
|
9189
9265
|
line-height: 1;
|
|
@@ -9212,7 +9288,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9212
9288
|
transform: translateY(100%) translateY(10px);
|
|
9213
9289
|
right: calc(50% - 16px);
|
|
9214
9290
|
background-color: #fff;
|
|
9215
|
-
border: 1px solid #
|
|
9291
|
+
border: 1px solid #a9a9a9;
|
|
9216
9292
|
position: absolute;
|
|
9217
9293
|
width: max-content;
|
|
9218
9294
|
max-width: 320px;
|
|
@@ -9226,8 +9302,8 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9226
9302
|
top: -6px;
|
|
9227
9303
|
right: 10px;
|
|
9228
9304
|
position: absolute;
|
|
9229
|
-
border-top: 1px solid #
|
|
9230
|
-
border-left: 1px solid #
|
|
9305
|
+
border-top: 1px solid #a9a9a9;
|
|
9306
|
+
border-left: 1px solid #a9a9a9;
|
|
9231
9307
|
width: 10px;
|
|
9232
9308
|
height: 10px;
|
|
9233
9309
|
background: #fff;
|
|
@@ -9283,7 +9359,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9283
9359
|
transform: translateY(100%) translateY(10px);
|
|
9284
9360
|
right: -8px;
|
|
9285
9361
|
background-color: #fff;
|
|
9286
|
-
border: 1px solid #
|
|
9362
|
+
border: 1px solid #a9a9a9;
|
|
9287
9363
|
position: absolute;
|
|
9288
9364
|
width: 240px;
|
|
9289
9365
|
z-index: 10;
|
|
@@ -9296,8 +9372,8 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9296
9372
|
top: -6px;
|
|
9297
9373
|
right: 10px;
|
|
9298
9374
|
position: absolute;
|
|
9299
|
-
border-top: 1px solid #
|
|
9300
|
-
border-left: 1px solid #
|
|
9375
|
+
border-top: 1px solid #a9a9a9;
|
|
9376
|
+
border-left: 1px solid #a9a9a9;
|
|
9301
9377
|
width: 10px;
|
|
9302
9378
|
height: 10px;
|
|
9303
9379
|
background: #fff;
|
|
@@ -9326,7 +9402,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9326
9402
|
top: 36px;
|
|
9327
9403
|
right: 0;
|
|
9328
9404
|
background-color: #fff;
|
|
9329
|
-
border: 1px solid #
|
|
9405
|
+
border: 1px solid #a9a9a9;
|
|
9330
9406
|
position: absolute;
|
|
9331
9407
|
width: 100%;
|
|
9332
9408
|
max-width: 327px;
|
|
@@ -9338,8 +9414,8 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9338
9414
|
right: 3px;
|
|
9339
9415
|
content: "";
|
|
9340
9416
|
position: absolute;
|
|
9341
|
-
border-top: 1px solid #
|
|
9342
|
-
border-left: 1px solid #
|
|
9417
|
+
border-top: 1px solid #a9a9a9;
|
|
9418
|
+
border-left: 1px solid #a9a9a9;
|
|
9343
9419
|
width: 10px;
|
|
9344
9420
|
height: 10px;
|
|
9345
9421
|
background: #fff;
|
|
@@ -9456,7 +9532,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9456
9532
|
display: inline-flex;
|
|
9457
9533
|
justify-content: center;
|
|
9458
9534
|
white-space: nowrap;
|
|
9459
|
-
border: 1px solid #
|
|
9535
|
+
border: 1px solid #a9a9a9;
|
|
9460
9536
|
}
|
|
9461
9537
|
|
|
9462
9538
|
.ico-round-sm {
|
|
@@ -9467,7 +9543,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9467
9543
|
display: inline-flex;
|
|
9468
9544
|
justify-content: center;
|
|
9469
9545
|
white-space: nowrap;
|
|
9470
|
-
border: 1px solid #
|
|
9546
|
+
border: 1px solid #a9a9a9;
|
|
9471
9547
|
}
|
|
9472
9548
|
|
|
9473
9549
|
.checkbox-ico {
|
|
@@ -9476,7 +9552,7 @@ ul.list-breadcrumb li.list-breadcrumb-divider {
|
|
|
9476
9552
|
width: 24px;
|
|
9477
9553
|
height: 24px;
|
|
9478
9554
|
left: auto;
|
|
9479
|
-
border: 1px solid #
|
|
9555
|
+
border: 1px solid #a9a9a9;
|
|
9480
9556
|
outline: 0;
|
|
9481
9557
|
vertical-align: top;
|
|
9482
9558
|
margin: 0;
|
|
@@ -9687,7 +9763,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9687
9763
|
width: 100%;
|
|
9688
9764
|
}
|
|
9689
9765
|
.color-wrap button .color-selector::before {
|
|
9690
|
-
border: 1px solid #
|
|
9766
|
+
border: 1px solid #a9a9a9;
|
|
9691
9767
|
content: "";
|
|
9692
9768
|
height: 100%;
|
|
9693
9769
|
left: 0;
|
|
@@ -9699,7 +9775,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9699
9775
|
}
|
|
9700
9776
|
.color-wrap button .color-selector img,
|
|
9701
9777
|
.color-wrap button .color-selector .color-plain {
|
|
9702
|
-
border: 1px solid #
|
|
9778
|
+
border: 1px solid #a9a9a9;
|
|
9703
9779
|
height: 10px;
|
|
9704
9780
|
left: 50%;
|
|
9705
9781
|
margin-left: -5px;
|
|
@@ -9710,7 +9786,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9710
9786
|
width: 10px;
|
|
9711
9787
|
}
|
|
9712
9788
|
.color-wrap button .color-selector span {
|
|
9713
|
-
border: 1px solid #
|
|
9789
|
+
border: 1px solid #a9a9a9;
|
|
9714
9790
|
height: 12px;
|
|
9715
9791
|
left: 50%;
|
|
9716
9792
|
margin-left: -6px;
|
|
@@ -9728,7 +9804,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9728
9804
|
border-radius: 0;
|
|
9729
9805
|
}
|
|
9730
9806
|
.color-wrap button .color-square::before {
|
|
9731
|
-
border: 1px solid #
|
|
9807
|
+
border: 1px solid #a9a9a9;
|
|
9732
9808
|
border-radius: 0;
|
|
9733
9809
|
}
|
|
9734
9810
|
.color-wrap button .color-square:hover {
|
|
@@ -9736,7 +9812,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9736
9812
|
}
|
|
9737
9813
|
.color-wrap button .color-square img,
|
|
9738
9814
|
.color-wrap button .color-square .color-plain {
|
|
9739
|
-
border: 1px solid #
|
|
9815
|
+
border: 1px solid #a9a9a9;
|
|
9740
9816
|
border-radius: 0;
|
|
9741
9817
|
}
|
|
9742
9818
|
.color-wrap button .color-square span {
|
|
@@ -9747,7 +9823,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9747
9823
|
margin-left: 5px;
|
|
9748
9824
|
}
|
|
9749
9825
|
.color-wrap .color-more span {
|
|
9750
|
-
border-bottom: 1px dotted #
|
|
9826
|
+
border-bottom: 1px dotted #666666;
|
|
9751
9827
|
}
|
|
9752
9828
|
|
|
9753
9829
|
.modalx-transparent.modalx-backdrop {
|
|
@@ -9758,7 +9834,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
9758
9834
|
pointer-events: none;
|
|
9759
9835
|
}
|
|
9760
9836
|
.modalx-transparent.modalx-backdrop .modalx-content {
|
|
9761
|
-
border: 1px solid #
|
|
9837
|
+
border: 1px solid #a9a9a9;
|
|
9762
9838
|
}
|
|
9763
9839
|
|
|
9764
9840
|
.modalx-xxs {
|
|
@@ -10036,16 +10112,16 @@ ul.list-clear li.list-box:last-child {
|
|
|
10036
10112
|
display: inline-flex;
|
|
10037
10113
|
}
|
|
10038
10114
|
.card9 .card9-sizes:last-child {
|
|
10039
|
-
border-right: 1px solid #
|
|
10115
|
+
border-right: 1px solid #a9a9a9;
|
|
10040
10116
|
}
|
|
10041
10117
|
.card9 .card9-sizes button {
|
|
10042
10118
|
font-family: arial, sans-serif;
|
|
10043
10119
|
font-weight: 500;
|
|
10044
10120
|
border: none;
|
|
10045
10121
|
background-color: #fff;
|
|
10046
|
-
border-top: 1px solid #
|
|
10047
|
-
border-bottom: 1px solid #
|
|
10048
|
-
border-left: 1px solid #
|
|
10122
|
+
border-top: 1px solid #a9a9a9;
|
|
10123
|
+
border-bottom: 1px solid #a9a9a9;
|
|
10124
|
+
border-left: 1px solid #a9a9a9;
|
|
10049
10125
|
border-right: none;
|
|
10050
10126
|
padding: 10px 0;
|
|
10051
10127
|
min-width: 48px;
|
|
@@ -10087,7 +10163,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
10087
10163
|
margin-bottom: 0;
|
|
10088
10164
|
}
|
|
10089
10165
|
.card9 .js-card9-inner .content {
|
|
10090
|
-
background: #
|
|
10166
|
+
background: #a9a9a9;
|
|
10091
10167
|
}
|
|
10092
10168
|
.card9 .card9-slider {
|
|
10093
10169
|
position: absolute;
|
|
@@ -10233,7 +10309,7 @@ ul.list-clear li.list-box:last-child {
|
|
|
10233
10309
|
.product-tag {
|
|
10234
10310
|
font-family: arial, sans-serif;
|
|
10235
10311
|
font-weight: 500;
|
|
10236
|
-
color: #
|
|
10312
|
+
color: #666666;
|
|
10237
10313
|
letter-spacing: 0;
|
|
10238
10314
|
line-height: 1;
|
|
10239
10315
|
}
|
|
@@ -10366,7 +10442,7 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
10366
10442
|
height: calc(100% - 48px);
|
|
10367
10443
|
content: "";
|
|
10368
10444
|
position: absolute;
|
|
10369
|
-
background-color: #
|
|
10445
|
+
background-color: #666666;
|
|
10370
10446
|
top: 44px;
|
|
10371
10447
|
left: 20px;
|
|
10372
10448
|
}
|
|
@@ -10389,7 +10465,7 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
10389
10465
|
overflow: hidden;
|
|
10390
10466
|
background-color: #fff;
|
|
10391
10467
|
z-index: 1002;
|
|
10392
|
-
border-bottom: var(--line-width) solid #
|
|
10468
|
+
border-bottom: var(--line-width) solid #666666;
|
|
10393
10469
|
}
|
|
10394
10470
|
@media (min-width: 768px) {
|
|
10395
10471
|
.header-account-head {
|
|
@@ -10510,7 +10586,7 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
10510
10586
|
.hg-bread {
|
|
10511
10587
|
background-color: #fff;
|
|
10512
10588
|
padding: 0;
|
|
10513
|
-
border-bottom: var(--line-width) solid #
|
|
10589
|
+
border-bottom: var(--line-width) solid #666666;
|
|
10514
10590
|
}
|
|
10515
10591
|
.hg-bread .hg-bread-inner {
|
|
10516
10592
|
display: table;
|
|
@@ -11269,8 +11345,6 @@ div.card9-wrap .rat-content:hover .card9-add {
|
|
|
11269
11345
|
}
|
|
11270
11346
|
.is-rtl .btn.btn-separate svg-icon {
|
|
11271
11347
|
transform: scaleX(-1);
|
|
11272
|
-
margin-left: 0;
|
|
11273
|
-
margin-right: 8px;
|
|
11274
11348
|
}
|
|
11275
11349
|
.is-rtl .btn.btn-world .btn-world-center {
|
|
11276
11350
|
text-align: right;
|