click_effects-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1547 @@
1
+ .cbutton {
2
+ cursor: pointer;
3
+ position: relative;
4
+ display: inline-block;
5
+ margin: 1em;
6
+ padding: 0;
7
+ border: none;
8
+ background: none;
9
+ color: #286aab;
10
+ font-size: 1.4em;
11
+ overflow: visible;
12
+ -webkit-transition: color 0.7s;
13
+ transition: color 0.7s;
14
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
15
+ }
16
+
17
+ .cbutton.cbutton--click,
18
+ .cbutton:focus {
19
+ outline: none;
20
+ color: #3c8ddc;
21
+ }
22
+
23
+ .cbutton__icon {
24
+ display: block;
25
+ }
26
+
27
+ .cbutton__text {
28
+ position: absolute;
29
+ opacity: 0;
30
+ pointer-events: none;
31
+ }
32
+
33
+ .cbutton::after {
34
+ position: absolute;
35
+ top: 50%;
36
+ left: 50%;
37
+ margin: -35px 0 0 -35px;
38
+ width: 70px;
39
+ height: 70px;
40
+ border-radius: 50%;
41
+ content: '';
42
+ opacity: 0;
43
+ pointer-events: none;
44
+ }
45
+
46
+ .cbutton--box {
47
+ width: 24px;
48
+ height: 24px;
49
+ border: 4px solid rgb(22, 35, 47);
50
+ }
51
+
52
+ .cbutton--box-color-1 {
53
+ background: #ff8b00;
54
+ }
55
+
56
+ .cbutton--box-color-2 {
57
+ background: #b61854;
58
+ }
59
+
60
+ .cbutton--box-color-3 {
61
+ background: #1d5cab;
62
+ }
63
+
64
+ .cbutton--box-color-4 {
65
+ background: #f2438c;
66
+ }
67
+
68
+ .cbutton--box-color-5 {
69
+ background: #ff6414;
70
+ }
71
+
72
+ .cbutton--box-color-6 {
73
+ background: #5ed500;
74
+ }
75
+
76
+ .cbutton--box-color-7 {
77
+ background: #0077ff;
78
+ }
79
+
80
+ .cbutton--box-color-8 {
81
+ background: #7bff00;
82
+ }
83
+
84
+ .cbutton--box-color-9 {
85
+ background: #fff;
86
+ }
87
+
88
+ /* Individual Effects */
89
+
90
+ /* Effect Boris */
91
+ .cbutton--effect-boris::after {
92
+ background: rgba(111,148,182,0.1);
93
+ }
94
+
95
+ .cbutton--effect-boris.cbutton--click::after {
96
+ -webkit-animation: anim-effect-boris 0.3s forwards;
97
+ animation: anim-effect-boris 0.3s forwards;
98
+ }
99
+
100
+ @-webkit-keyframes anim-effect-boris {
101
+ 0% {
102
+ -webkit-transform: scale3d(0.3, 0.3, 1);
103
+ transform: scale3d(0.3, 0.3, 1);
104
+ }
105
+ 25%, 50% {
106
+ opacity: 1;
107
+ }
108
+ to {
109
+ opacity: 0;
110
+ -webkit-transform: scale3d(1.2, 1.2, 1);
111
+ transform: scale3d(1.2, 1.2, 1);
112
+ }
113
+ }
114
+
115
+ @keyframes anim-effect-boris {
116
+ 0% {
117
+ -webkit-transform: scale3d(0.3, 0.3, 1);
118
+ transform: scale3d(0.3, 0.3, 1);
119
+ }
120
+ 25%, 50% {
121
+ opacity: 1;
122
+ }
123
+ to {
124
+ opacity: 0;
125
+ -webkit-transform: scale3d(1.2, 1.2, 1);
126
+ transform: scale3d(1.2, 1.2, 1);
127
+ }
128
+ }
129
+
130
+ /* Jelena */
131
+ .cbutton--effect-jelena::after {
132
+ border: 2px solid rgba(111,148,182,0.5);
133
+ }
134
+
135
+ .cbutton--effect-jelena.cbutton--click::after {
136
+ -webkit-animation: anim-effect-jelena 0.3s ease-out forwards;
137
+ animation: anim-effect-jelena 0.3s ease-out forwards;
138
+ }
139
+
140
+ @-webkit-keyframes anim-effect-jelena {
141
+ 0% {
142
+ opacity: 1;
143
+ -webkit-transform: scale3d(0.5, 0.5, 1);
144
+ transform: scale3d(0.5, 0.5, 1);
145
+ }
146
+ to {
147
+ opacity: 0;
148
+ -webkit-transform: scale3d(1.2, 1.2, 1);
149
+ transform: scale3d(1.2, 1.2, 1);
150
+ }
151
+ }
152
+
153
+ @keyframes anim-effect-jelena {
154
+ 0% {
155
+ opacity: 1;
156
+ -webkit-transform: scale3d(0.5, 0.5, 1);
157
+ transform: scale3d(0.5, 0.5, 1);
158
+ }
159
+ to {
160
+ opacity: 0;
161
+ -webkit-transform: scale3d(1.2, 1.2, 1);
162
+ transform: scale3d(1.2, 1.2, 1);
163
+ }
164
+ }
165
+
166
+ /* Radomir */
167
+ .cbutton--effect-radomir::after {
168
+ box-shadow: inset 0 0 0 35px rgba(111,148,182,0);
169
+ }
170
+
171
+ .cbutton--effect-radomir.cbutton--click::after {
172
+ -webkit-animation: anim-effect-radomir 0.5s ease-out forwards;
173
+ animation: anim-effect-radomir 0.5s ease-out forwards;
174
+ }
175
+
176
+ @-webkit-keyframes anim-effect-radomir {
177
+ 0% {
178
+ opacity: 1;
179
+ -webkit-transform: scale3d(0.4, 0.4, 1);
180
+ transform: scale3d(0.4, 0.4, 1);
181
+ }
182
+ 80% {
183
+ box-shadow: inset 0 0 0 2px rgba(111,148,182,0.8);
184
+ opacity: 0.1;
185
+ }
186
+ 100% {
187
+ box-shadow: inset 0 0 0 2px rgba(111,148,182,0.8);
188
+ opacity: 0;
189
+ -webkit-transform: scale3d(1.2, 1.2, 1);
190
+ transform: scale3d(1.2, 1.2, 1);
191
+ }
192
+ }
193
+
194
+ @keyframes anim-effect-radomir {
195
+ 0% {
196
+ opacity: 1;
197
+ -webkit-transform: scale3d(0.4, 0.4, 1);
198
+ transform: scale3d(0.4, 0.4, 1);
199
+ }
200
+ 80% {
201
+ box-shadow: inset 0 0 0 2px rgba(111,148,182,0.8);
202
+ opacity: 0.1;
203
+ }
204
+ 100% {
205
+ box-shadow: inset 0 0 0 2px rgba(111,148,182,0.8);
206
+ opacity: 0;
207
+ -webkit-transform: scale3d(1.2, 1.2, 1);
208
+ transform: scale3d(1.2, 1.2, 1);
209
+ }
210
+ }
211
+
212
+ /* Sanja */
213
+ .cbutton--effect-sanja::after {
214
+ background: rgba(111,148,182,0.1);
215
+ }
216
+
217
+ .cbutton--effect-sanja.cbutton--click::after {
218
+ -webkit-animation: anim-effect-sanja 1s ease-out forwards;
219
+ animation: anim-effect-sanja 1s ease-out forwards;
220
+ }
221
+
222
+ @-webkit-keyframes anim-effect-sanja {
223
+ 0% {
224
+ opacity: 1;
225
+ -webkit-transform: scale3d(0.5, 0.5, 1);
226
+ transform: scale3d(0.5, 0.5, 1);
227
+ }
228
+ 25% {
229
+ opacity: 1;
230
+ -webkit-transform: scale3d(1, 1, 1);
231
+ transform: scale3d(1, 1, 1);
232
+ }
233
+ 100% {
234
+ opacity: 0;
235
+ -webkit-transform: scale3d(1, 1, 1);
236
+ transform: scale3d(1, 1, 1);
237
+ }
238
+ }
239
+
240
+ @keyframes anim-effect-sanja {
241
+ 0% {
242
+ opacity: 1;
243
+ -webkit-transform: scale3d(0.5, 0.5, 1);
244
+ transform: scale3d(0.5, 0.5, 1);
245
+ }
246
+ 25% {
247
+ opacity: 1;
248
+ -webkit-transform: scale3d(1, 1, 1);
249
+ transform: scale3d(1, 1, 1);
250
+ }
251
+ 100% {
252
+ opacity: 0;
253
+ -webkit-transform: scale3d(1, 1, 1);
254
+ transform: scale3d(1, 1, 1);
255
+ }
256
+ }
257
+
258
+ /* Novak */
259
+ .cbutton--effect-novak::after {
260
+ background: rgba(111,148,182,0.25);
261
+ }
262
+
263
+ .cbutton--effect-novak.cbutton--click::after {
264
+ -webkit-animation: anim-effect-novak 0.5s forwards;
265
+ animation: anim-effect-novak 0.5s forwards;
266
+ }
267
+
268
+ @-webkit-keyframes anim-effect-novak {
269
+ 0% {
270
+ opacity: 1;
271
+ -webkit-transform: scale3d(0.1, 0.1, 1);
272
+ transform: scale3d(0.1, 0.1, 1);
273
+ }
274
+ 100% {
275
+ opacity: 0;
276
+ -webkit-transform: scale3d(8, 8, 1);
277
+ transform: scale3d(8, 8, 1);
278
+ }
279
+ }
280
+
281
+ @keyframes anim-effect-novak {
282
+ 0% {
283
+ opacity: 1;
284
+ -webkit-transform: scale3d(0.1, 0.1, 1);
285
+ transform: scale3d(0.1, 0.1, 1);
286
+ }
287
+ 100% {
288
+ opacity: 0;
289
+ -webkit-transform: scale3d(8, 8, 1);
290
+ transform: scale3d(8, 8, 1);
291
+ }
292
+ }
293
+
294
+ /* Ilinka */
295
+ .cbutton--effect-ilinka::after {
296
+ background: rgba(111,148,182,0.25);
297
+ }
298
+
299
+ .cbutton--effect-ilinka.cbutton--click::after {
300
+ -webkit-animation: anim-effect-ilinka 0.5s ease-out forwards;
301
+ animation: anim-effect-ilinka 0.5s ease-out forwards;
302
+ }
303
+
304
+ @-webkit-keyframes anim-effect-ilinka {
305
+ 0% {
306
+ opacity: 1;
307
+ }
308
+ 100% {
309
+ opacity: 0;
310
+ }
311
+ }
312
+
313
+ @keyframes anim-effect-ilinka {
314
+ 0% {
315
+ opacity: 1;
316
+ }
317
+ 100% {
318
+ opacity: 0;
319
+ }
320
+ }
321
+
322
+ /* Marin */
323
+ .cbutton--effect-marin::after {
324
+ box-shadow: inset 0 0 0 3px rgba(111,148,182,0.05);
325
+ }
326
+
327
+ .cbutton--effect-marin.cbutton--click::after {
328
+ -webkit-animation: anim-effect-marin 0.5s ease-out forwards;
329
+ animation: anim-effect-marin 0.5s ease-out forwards;
330
+ }
331
+
332
+ @-webkit-keyframes anim-effect-marin {
333
+ 0% {
334
+ opacity: 1;
335
+ }
336
+ 100% {
337
+ box-shadow: inset 0 0 0 3px rgba(111,148,182,0.8);
338
+ opacity: 0;
339
+ -webkit-transform: scale3d(0.75, 0.75, 1);
340
+ transform: scale3d(0.75, 0.75, 1);
341
+ }
342
+ }
343
+
344
+ @keyframes anim-effect-marin {
345
+ 0% {
346
+ opacity: 1;
347
+ }
348
+ 100% {
349
+ box-shadow: inset 0 0 0 3px rgba(111,148,182,0.8);
350
+ opacity: 0;
351
+ -webkit-transform: scale3d(0.75, 0.75, 1);
352
+ transform: scale3d(0.75, 0.75, 1);
353
+ }
354
+ }
355
+
356
+ /* Nikola */
357
+ .cbutton--effect-nikola::after {
358
+ background: rgba(111,148,182,0.1);
359
+ }
360
+
361
+ .cbutton--effect-nikola.cbutton--click::after {
362
+ -webkit-animation: anim-effect-nikola 0.5s forwards;
363
+ animation: anim-effect-nikola 0.5s forwards;
364
+ }
365
+
366
+ @-webkit-keyframes anim-effect-nikola {
367
+ 0% {
368
+ opacity: 0;
369
+ -webkit-transform: scale3d(0.2, 0.2, 1);
370
+ transform: scale3d(0.2, 0.2, 1);
371
+ }
372
+ 50% {
373
+ opacity: 1;
374
+ -webkit-transform: scale3d(1.2, 1.2, 1);
375
+ transform: scale3d(1.2, 1.2, 1);
376
+ }
377
+ 100% {
378
+ opacity: 0;
379
+ -webkit-transform: scale3d(0.8, 0.8, 1);
380
+ transform: scale3d(0.8, 0.8, 1);
381
+ }
382
+ }
383
+
384
+ @keyframes anim-effect-nikola {
385
+ 0% {
386
+ opacity: 0;
387
+ -webkit-transform: scale3d(0.2, 0.2, 1);
388
+ transform: scale3d(0.2, 0.2, 1);
389
+ }
390
+ 50% {
391
+ opacity: 1;
392
+ -webkit-transform: scale3d(1.2, 1.2, 1);
393
+ transform: scale3d(1.2, 1.2, 1);
394
+ }
395
+ 100% {
396
+ opacity: 0;
397
+ -webkit-transform: scale3d(0.8, 0.8, 1);
398
+ transform: scale3d(0.8, 0.8, 1);
399
+ }
400
+ }
401
+
402
+ /* Tamara */
403
+ .cbutton--effect-tamara::after {
404
+ box-shadow: 0 0 0 3px rgba(111,148,182,0.05);
405
+ }
406
+
407
+ .cbutton--effect-tamara.cbutton--click::after {
408
+ -webkit-animation: anim-effect-tamara 0.5s ease-out forwards;
409
+ animation: anim-effect-tamara 0.5s ease-out forwards;
410
+ }
411
+
412
+ @-webkit-keyframes anim-effect-tamara {
413
+ 0% {
414
+ box-shadow: 0 0 0 3px rgba(111,148,182,0.3);
415
+ opacity: 1;
416
+ -webkit-transform: scale3d(0.6, 0.6, 1);
417
+ transform: scale3d(0.6, 0.6, 1);
418
+ }
419
+ 100% {
420
+ box-shadow: 0 0 0 100px rgba(111,148,182,0);
421
+ opacity: 0;
422
+ -webkit-transform: scale3d(1, 1, 1);
423
+ transform: scale3d(1, 1, 1);
424
+ }
425
+ }
426
+
427
+ @keyframes anim-effect-tamara {
428
+ 0% {
429
+ box-shadow: 0 0 0 3px rgba(111,148,182,0.3);
430
+ opacity: 1;
431
+ -webkit-transform: scale3d(0.6, 0.6, 1);
432
+ transform: scale3d(0.6, 0.6, 1);
433
+ }
434
+ 100% {
435
+ box-shadow: 0 0 0 100px rgba(111,148,182,0);
436
+ opacity: 0;
437
+ -webkit-transform: scale3d(1, 1, 1);
438
+ transform: scale3d(1, 1, 1);
439
+ }
440
+ }
441
+
442
+ /* Zoran */
443
+ .cbutton--effect-zoran::after {
444
+ background: rgba(111,148,182,0.1);
445
+ }
446
+
447
+ .cbutton--effect-zoran.cbutton--click::after {
448
+ -webkit-animation: anim-effect-zoran 0.5s ease-out forwards;
449
+ animation: anim-effect-zoran 0.5s ease-out forwards;
450
+ }
451
+
452
+ @-webkit-keyframes anim-effect-zoran {
453
+ 0% {
454
+ opacity: 0.2;
455
+ }
456
+ 50% {
457
+ opacity: 1;
458
+ -webkit-transform: scale3d(0.6, 1, 1);
459
+ transform: scale3d(0.6, 1, 1);
460
+ -webkit-animation-timing-function: ease-in;
461
+ animation-timing-function: ease-in;
462
+ }
463
+ 100% {
464
+ opacity: 0.3;
465
+ -webkit-transform: scale3d(1.1, 1.1, 1);
466
+ transform: scale3d(1.1, 1.1, 1);
467
+ }
468
+ }
469
+
470
+ @keyframes anim-effect-zoran {
471
+ 0% {
472
+ opacity: 0.2;
473
+ }
474
+ 50% {
475
+ opacity: 1;
476
+ -webkit-transform: scale3d(0.6, 1, 1);
477
+ transform: scale3d(0.6, 1, 1);
478
+ -webkit-animation-timing-function: ease-in;
479
+ animation-timing-function: ease-in;
480
+ }
481
+ 100% {
482
+ opacity: 0.3;
483
+ -webkit-transform: scale3d(1.1, 1.1, 1);
484
+ transform: scale3d(1.1, 1.1, 1);
485
+ }
486
+ }
487
+
488
+ /* Ivana */
489
+ .cbutton--effect-ivana::before {
490
+ position: absolute;
491
+ top: 50%;
492
+ left: 50%;
493
+ margin: -35px 0 0 -35px;
494
+ width: 70px;
495
+ height: 70px;
496
+ border-radius: 50%;
497
+ content: '';
498
+ opacity: 0;
499
+ pointer-events: none;
500
+ }
501
+
502
+ .cbutton--effect-ivana::before,
503
+ .cbutton--effect-ivana::after {
504
+ box-shadow: 0 0 0 2px rgba(111,148,182,0.5);
505
+ }
506
+
507
+ .cbutton--effect-ivana.cbutton--click::before {
508
+ -webkit-animation: anim-effect-ivana-1 0.5s forwards;
509
+ animation: anim-effect-ivana-1 0.5s forwards;
510
+ }
511
+
512
+ .cbutton--effect-ivana.cbutton--click::after {
513
+ -webkit-animation: anim-effect-ivana-2 0.5s forwards;
514
+ animation: anim-effect-ivana-2 0.5s forwards;
515
+ }
516
+
517
+ @-webkit-keyframes anim-effect-ivana-1 {
518
+ 0% {
519
+ opacity: 1;
520
+ -webkit-transform: scale3d(0.5, 0.5, 1);
521
+ transform: scale3d(0.5, 0.5, 1);
522
+ }
523
+ 100% {
524
+ opacity: 0;
525
+ -webkit-transform: scale3d(1.1, 1.1, 1);
526
+ transform: scale3d(1.1, 1.1, 1);
527
+ }
528
+ }
529
+
530
+ @keyframes anim-effect-ivana-1 {
531
+ 0% {
532
+ opacity: 1;
533
+ -webkit-transform: scale3d(0.5, 0.5, 1);
534
+ transform: scale3d(0.5, 0.5, 1);
535
+ }
536
+ 100% {
537
+ opacity: 0;
538
+ -webkit-transform: scale3d(1.1, 1.1, 1);
539
+ transform: scale3d(1.1, 1.1, 1);
540
+ }
541
+ }
542
+
543
+ @-webkit-keyframes anim-effect-ivana-2 {
544
+ 0% {
545
+ opacity: 1;
546
+ -webkit-transform: scale3d(0.5, 0.5, 1);
547
+ transform: scale3d(0.5, 0.5, 1);
548
+ }
549
+ 50%, 100% {
550
+ opacity: 0;
551
+ -webkit-transform: scale3d(1.2, 1.2, 1);
552
+ transform: scale3d(1.2, 1.2, 1);
553
+ }
554
+ }
555
+
556
+ @keyframes anim-effect-ivana-2 {
557
+ 0% {
558
+ opacity: 1;
559
+ -webkit-transform: scale3d(0.5, 0.5, 1);
560
+ transform: scale3d(0.5, 0.5, 1);
561
+ }
562
+ 50%, 100% {
563
+ opacity: 0;
564
+ -webkit-transform: scale3d(1.2, 1.2, 1);
565
+ transform: scale3d(1.2, 1.2, 1);
566
+ }
567
+ }
568
+
569
+ /* Marko */
570
+ .cbutton--effect-marko::after {
571
+ box-shadow: inset 0 0 0 2px rgba(111,148,182,0.3);
572
+ }
573
+
574
+ .cbutton--effect-marko.cbutton--click::after {
575
+ -webkit-animation: anim-effect-marko 0.5s forwards;
576
+ animation: anim-effect-marko 0.5s forwards;
577
+ }
578
+
579
+ @-webkit-keyframes anim-effect-marko {
580
+ 0% {
581
+ opacity: 1;
582
+ }
583
+ 50% {
584
+ box-shadow: inset 0 0 0 35px rgba(111,148,182,0.1);
585
+ opacity: 1;
586
+ }
587
+ 100% {
588
+ box-shadow: inset 0 0 0 35px rgba(111,148,182,0.1);
589
+ opacity: 0;
590
+ -webkit-transform: scale3d(1.1, 1.1, 1);
591
+ transform: scale3d(1.1, 1.1, 1);
592
+ }
593
+ }
594
+
595
+ @keyframes anim-effect-marko {
596
+ 0% {
597
+ opacity: 1;
598
+ }
599
+ 50% {
600
+ box-shadow: inset 0 0 0 35px rgba(111,148,182,0.1);
601
+ opacity: 1;
602
+ }
603
+ 100% {
604
+ box-shadow: inset 0 0 0 35px rgba(111,148,182,0.1);
605
+ opacity: 0;
606
+ -webkit-transform: scale3d(1.1, 1.1, 1);
607
+ transform: scale3d(1.1, 1.1, 1);
608
+ }
609
+ }
610
+
611
+ /* Stoja */
612
+ .cbutton--effect-stoja::before {
613
+ position: absolute;
614
+ top: 50%;
615
+ left: 50%;
616
+ margin: -35px 0 0 -35px;
617
+ width: 70px;
618
+ height: 70px;
619
+ border-radius: 50%;
620
+ content: '';
621
+ opacity: 0;
622
+ pointer-events: none;
623
+ }
624
+
625
+ .cbutton--effect-stoja::before,
626
+ .cbutton--effect-stoja::after {
627
+ box-shadow: 0 0 0 2px rgba(111,148,182,0.5);
628
+ }
629
+
630
+ .cbutton--effect-stoja-left::before,
631
+ .cbutton--effect-stoja-left::after {
632
+ -webkit-clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%);
633
+ clip-path: polygon(0% 0%, 50% 0%, 50% 50%, 0% 50%);
634
+ }
635
+
636
+ .cbutton--effect-stoja-top::before,
637
+ .cbutton--effect-stoja-top::after {
638
+ -webkit-clip-path: polygon(10% 0%, 90% 0%, 50% 50%);
639
+ clip-path: polygon(25% 0%, 75% 0%, 50% 50%);
640
+ }
641
+
642
+ .cbutton--effect-stoja-right::before,
643
+ .cbutton--effect-stoja-right::after {
644
+ -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 50%, 50% 50%);
645
+ clip-path: polygon(50% 0%, 100% 0%, 100% 50%, 50% 50%);
646
+ }
647
+
648
+ .cbutton--effect-stoja.cbutton--click::before {
649
+ -webkit-animation: anim-effect-stoja-1 0.5s forwards;
650
+ animation: anim-effect-stoja-1 0.5s forwards;
651
+ }
652
+
653
+ .cbutton--effect-stoja.cbutton--click::after {
654
+ -webkit-animation: anim-effect-stoja-2 0.5s forwards;
655
+ animation: anim-effect-stoja-2 0.5s forwards;
656
+ }
657
+
658
+ @-webkit-keyframes anim-effect-stoja-1 {
659
+ 0% {
660
+ opacity: 1;
661
+ -webkit-transform: scale3d(0.3, 0.3, 1);
662
+ transform: scale3d(0.3, 0.3, 1);
663
+ }
664
+ 100% {
665
+ opacity: 0;
666
+ -webkit-transform: scale3d(1, 1, 1);
667
+ transform: scale3d(1, 1, 1);
668
+ }
669
+ }
670
+
671
+ @keyframes anim-effect-stoja-1 {
672
+ 0% {
673
+ opacity: 1;
674
+ -webkit-transform: scale3d(0.3, 0.3, 1);
675
+ transform: scale3d(0.3, 0.3, 1);
676
+ }
677
+ 100% {
678
+ opacity: 0;
679
+ -webkit-transform: scale3d(1, 1, 1);
680
+ transform: scale3d(1, 1, 1);
681
+ }
682
+ }
683
+
684
+ @-webkit-keyframes anim-effect-stoja-2 {
685
+ 0% {
686
+ opacity: 1;
687
+ -webkit-transform: scale3d(0.5, 0.5, 1);
688
+ transform: scale3d(0.5, 0.5, 1);
689
+ }
690
+ 100% {
691
+ opacity: 0;
692
+ -webkit-transform: scale3d(1.5, 1.5, 1);
693
+ transform: scale3d(1.5, 1.5, 1);
694
+ }
695
+ }
696
+
697
+ @keyframes anim-effect-stoja-2 {
698
+ 0% {
699
+ opacity: 1;
700
+ -webkit-transform: scale3d(0.5, 0.5, 1);
701
+ transform: scale3d(0.5, 0.5, 1);
702
+ }
703
+ 100% {
704
+ opacity: 0;
705
+ -webkit-transform: scale3d(1.5, 1.5, 1);
706
+ transform: scale3d(1.5, 1.5, 1);
707
+ }
708
+ }
709
+
710
+ /* Azra */
711
+ .cbutton--effect-azra img {
712
+ position: absolute;
713
+ top: 50%;
714
+ left: 50%;
715
+ margin: -35px 0 0 -35px;
716
+ width: 70px;
717
+ height: 70px;
718
+ border-radius: 50%;
719
+ opacity: 0;
720
+ pointer-events: none;
721
+ }
722
+
723
+ .cbutton--effect-azra.cbutton--click img {
724
+ -webkit-animation: anim-effect-azra 0.5s ease-in forwards;
725
+ animation: anim-effect-azra 0.5s ease-in forwards;
726
+ }
727
+
728
+ @-webkit-keyframes anim-effect-azra {
729
+ 0% {
730
+ opacity: 0;
731
+ -webkit-transform: scale3d(0.2, 0.2, 1) translate3d(0, 100%, 0);
732
+ transform: scale3d(0.2, 0.2, 1) translate3d(0, 100%, 0);
733
+ }
734
+ 50% {
735
+ opacity: 0.7;
736
+ -webkit-transform: scale3d(0.5, 0.5, 1) translate3d(0, 100%, 0);
737
+ transform: scale3d(0.5, 0.5, 1) translate3d(0, 100%, 0);
738
+ -webkit-animation-timing-function: ease-out;
739
+ animation-timing-function: ease-out;
740
+ }
741
+ 100% {
742
+ opacity: 0;
743
+ -webkit-transform: scale3d(0.5, 0.5, 1) translate3d(0, 200%, 0);
744
+ transform: scale3d(0.5, 0.5, 1) translate3d(0, 200%, 0);
745
+ }
746
+ }
747
+
748
+ @keyframes anim-effect-azra {
749
+ 0% {
750
+ opacity: 0.5;
751
+ -webkit-transform: scale3d(0.2, 0.2, 1) translate3d(0, 100%, 0);
752
+ transform: scale3d(0.2, 0.2, 1) translate3d(0, 100%, 0);
753
+ }
754
+ 100% {
755
+ opacity: 0;
756
+ -webkit-transform: scale3d(0.5, 0.5, 1) translate3d(0, 200%, 0);
757
+ transform: scale3d(0.5, 0.5, 1) translate3d(0, 200%, 0);
758
+ }
759
+ }
760
+
761
+ /* Dejan */
762
+
763
+ .cbutton--effect-dejan::after {
764
+ margin: -4px 0 0 -4px;
765
+ width: 8px;
766
+ height: 8px;
767
+ }
768
+
769
+ .cbutton--box-color-4.cbutton--effect-dejan::after {
770
+ background: #f2438c;
771
+ }
772
+
773
+ .cbutton--box-color-5.cbutton--effect-dejan::after {
774
+ background: #ff6414;
775
+ }
776
+
777
+ .cbutton--box-color-6.cbutton--effect-dejan::after {
778
+ background: #5ed500;
779
+ }
780
+
781
+ .cbutton--effect-dejan .cbutton__helper {
782
+ position: absolute;
783
+ bottom: 0;
784
+ opacity: 0;
785
+ pointer-events: none;
786
+ }
787
+
788
+ .cbutton--effect-dejan .cbutton__helper--first {
789
+ left: -15px;
790
+ width: 30px;
791
+ height: 30px;
792
+ -webkit-transform-origin: -40% 50%;
793
+ transform-origin: -40% 50%;
794
+ }
795
+
796
+ .cbutton--effect-dejan .cbutton__helper--second {
797
+ left: 0px;
798
+ width: 30px;
799
+ height: 60px;
800
+ -webkit-transform-origin: 140% 50%;
801
+ transform-origin: 140% 50%;
802
+ }
803
+
804
+ .cbutton--effect-dejan .cbutton__helper img {
805
+ position: absolute;
806
+ top: 0;
807
+ left: 0;
808
+ }
809
+
810
+ .cbutton--effect-dejan.cbutton--click .cbutton__helper--first {
811
+ -webkit-animation: anim-effect-dejan-1 0.3s ease-out forwards;
812
+ animation: anim-effect-dejan-1 0.3s ease-out forwards;
813
+ }
814
+
815
+ .cbutton--effect-dejan.cbutton--click .cbutton__helper--second {
816
+ -webkit-animation: anim-effect-dejan-2 0.3s ease-out forwards;
817
+ animation: anim-effect-dejan-2 0.3s ease-out forwards;
818
+ }
819
+
820
+ .cbutton--effect-dejan.cbutton--click .cbutton__helper--first img,
821
+ .cbutton--effect-dejan.cbutton--click .cbutton__helper--second img {
822
+ -webkit-animation: anim-effect-dejan-3 0.3s ease-in forwards;
823
+ animation: anim-effect-dejan-3 0.3s ease-in forwards;
824
+ }
825
+
826
+ .cbutton--effect-dejan.cbutton--click::after {
827
+ -webkit-animation: anim-effect-dejan-4 0.3s ease-out forwards;
828
+ animation: anim-effect-dejan-4 0.3s ease-out forwards;
829
+ }
830
+
831
+ @-webkit-keyframes anim-effect-dejan-1 {
832
+ 0% {
833
+ opacity: 1;
834
+ }
835
+ 100% {
836
+ opacity: 0;
837
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
838
+ transform: rotate3d(0, 0, 1, -90deg);
839
+ }
840
+ }
841
+
842
+ @keyframes anim-effect-dejan-1 {
843
+ 0% {
844
+ opacity: 1;
845
+ }
846
+ 100% {
847
+ opacity: 0;
848
+ -webkit-transform: rotate3d(0, 0, 1, -90deg);
849
+ transform: rotate3d(0, 0, 1, -90deg);
850
+ }
851
+ }
852
+
853
+ @-webkit-keyframes anim-effect-dejan-2 {
854
+ 0% {
855
+ opacity: 1;
856
+ }
857
+ 100% {
858
+ opacity: 0;
859
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
860
+ transform: rotate3d(0, 0, 1, 90deg);
861
+ }
862
+ }
863
+
864
+ @keyframes anim-effect-dejan-2 {
865
+ 0% {
866
+ opacity: 1;
867
+ }
868
+ 100% {
869
+ opacity: 0;
870
+ -webkit-transform: rotate3d(0, 0, 1, 90deg);
871
+ transform: rotate3d(0, 0, 1, 90deg);
872
+ }
873
+ }
874
+
875
+ @-webkit-keyframes anim-effect-dejan-3 {
876
+ 0% {
877
+ -webkit-transform: scale3d(0.4, 0.4, 1);
878
+ transform: scale3d(0.4, 0.4, 1);
879
+ }
880
+ 50% {
881
+ -webkit-transform: scale3d(1, 1, 1);
882
+ transform: scale3d(1, 1, 1);
883
+ -webkit-animation-timing-function: ease-out;
884
+ animation-timing-function: ease-out;
885
+ }
886
+ 100% {
887
+ -webkit-transform: scale3d(1, 1, 1);
888
+ transform: scale3d(1, 1, 1);
889
+ }
890
+ }
891
+
892
+ @keyframes anim-effect-dejan-3 {
893
+ 0% {
894
+ -webkit-transform: scale3d(0.4, 0.4, 1);
895
+ transform: scale3d(0.4, 0.4, 1);
896
+ }
897
+ 50% {
898
+ -webkit-transform: scale3d(1, 1, 1);
899
+ transform: scale3d(1, 1, 1);
900
+ -webkit-animation-timing-function: ease-out;
901
+ animation-timing-function: ease-out;
902
+ }
903
+ 100% {
904
+ -webkit-transform: scale3d(1, 1, 1);
905
+ transform: scale3d(1, 1, 1);
906
+ }
907
+ }
908
+
909
+ @-webkit-keyframes anim-effect-dejan-4 {
910
+ 0% {
911
+ opacity: 1;
912
+ -webkit-transform: scale3d(0.1, 0.1, 1);
913
+ transform: scale3d(0.1, 0.1, 1);
914
+ }
915
+ 80% {
916
+ opacity: 0.7;
917
+ -webkit-transform: translate3d(0, -70px, 0) scale3d(1, 1, 1);
918
+ transform: translate3d(0, -70px, 0) scale3d(1, 1, 1);
919
+ }
920
+ 100% {
921
+ opacity: 0;
922
+ -webkit-transform: translate3d(0, -60px, 0) scale3d(1, 1, 1);
923
+ transform: translate3d(0, -60px, 0) scale3d(1, 1, 1);
924
+ }
925
+ }
926
+
927
+ @keyframes anim-effect-dejan-4 {
928
+ 0% {
929
+ opacity: 1;
930
+ -webkit-transform: scale3d(0.1, 0.1, 1);
931
+ transform: scale3d(0.1, 0.1, 1);
932
+ }
933
+ 80% {
934
+ opacity: 0.7;
935
+ -webkit-transform: translate3d(0, -70px, 0) scale3d(1, 1, 1);
936
+ transform: translate3d(0, -70px, 0) scale3d(1, 1, 1);
937
+ }
938
+ 100% {
939
+ opacity: 0;
940
+ -webkit-transform: translate3d(0, -60px, 0) scale3d(1, 1, 1);
941
+ transform: translate3d(0, -60px, 0) scale3d(1, 1, 1);
942
+ }
943
+ }
944
+
945
+ /* Filipa */
946
+ .cbutton--effect-filipa::after {
947
+ border-radius: 0px;
948
+ box-shadow: 0 0 0 2px rgba(111,148,182,0.9);
949
+ }
950
+
951
+ .cbutton--effect-filipa.cbutton--effect-filipa-left.cbutton--click::after {
952
+ -webkit-animation: anim-effect-filipa-left 0.5s forwards;
953
+ animation: anim-effect-filipa-left 0.5s forwards;
954
+ }
955
+
956
+ @-webkit-keyframes anim-effect-filipa-left {
957
+ 0% {
958
+ opacity: 0.7;
959
+ -webkit-transform: scale3d(0.2, 0.2, 1);
960
+ transform: scale3d(0.2, 0.2, 1)
961
+ }
962
+ 100% {
963
+ opacity: 0;
964
+ -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -135deg);
965
+ transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -135deg);
966
+ }
967
+ }
968
+
969
+ @keyframes anim-effect-filipa-left {
970
+ 0% {
971
+ opacity: 0.7;
972
+ -webkit-transform: scale3d(0.2, 0.2, 1);
973
+ transform: scale3d(0.2, 0.2, 1)
974
+ }
975
+ 100% {
976
+ opacity: 0;
977
+ -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -135deg);
978
+ transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -135deg);
979
+ }
980
+ }
981
+
982
+ .cbutton--effect-filipa.cbutton--effect-filipa-right.cbutton--click::after {
983
+ -webkit-animation: anim-effect-filipa-right 0.5s forwards;
984
+ animation: anim-effect-filipa-right 0.5s forwards;
985
+ }
986
+
987
+ @-webkit-keyframes anim-effect-filipa-right {
988
+ 0% {
989
+ opacity: 0.7;
990
+ -webkit-transform: scale3d(0.2, 0.2, 1);
991
+ transform: scale3d(0.2, 0.2, 1)
992
+ }
993
+ 100% {
994
+ opacity: 0;
995
+ -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 135deg);
996
+ transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 135deg);
997
+ }
998
+ }
999
+
1000
+ @keyframes anim-effect-filipa-right {
1001
+ 0% {
1002
+ opacity: 0.7;
1003
+ -webkit-transform: scale3d(0.2, 0.2, 1);
1004
+ transform: scale3d(0.2, 0.2, 1)
1005
+ }
1006
+ 100% {
1007
+ opacity: 0;
1008
+ -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 135deg);
1009
+ transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 135deg);
1010
+ }
1011
+ }
1012
+
1013
+ /* Lazar */
1014
+ .cbutton--effect-lazar-inverted {
1015
+ -webkit-transform: scale3d(-1, 1, 1);
1016
+ transform: scale3d(-1, 1, 1);
1017
+ }
1018
+ .cbutton--effect-lazar::before {
1019
+ position: absolute;
1020
+ top: 50%;
1021
+ left: 50%;
1022
+ margin: -35px 0 0 0;
1023
+ width: 35px;
1024
+ height: 70px;
1025
+ border-radius: 0 35px 35px 0;
1026
+ background: rgba(111,148,182,0.15);
1027
+ content: '';
1028
+ opacity: 0;
1029
+ -webkit-transform-origin: 0 50%;
1030
+ transform-origin: 0 50%;
1031
+ pointer-events: none;
1032
+ }
1033
+
1034
+ .cbutton--effect-lazar::after {
1035
+ right: 50%;
1036
+ left: auto;
1037
+ margin: -35px 0 0 0;
1038
+ width: 35px;
1039
+ height: 70px;
1040
+ border-radius: 35px 0 0 35px;
1041
+ background: rgba(111,148,182,0.1);
1042
+ -webkit-transform-origin: 100% 50%;
1043
+ transform-origin: 100% 50%;
1044
+ }
1045
+
1046
+ .cbutton--effect-lazar.cbutton--click::before {
1047
+ -webkit-animation: anim-effect-lazar-1 0.8s ease-out forwards;
1048
+ animation: anim-effect-lazar-1 0.8s ease-out forwards;
1049
+ }
1050
+
1051
+ .cbutton--effect-lazar.cbutton--click::after {
1052
+ -webkit-animation: anim-effect-lazar-2 0.8s ease-out forwards;
1053
+ animation: anim-effect-lazar-2 0.8s ease-out forwards;
1054
+ }
1055
+
1056
+ @-webkit-keyframes anim-effect-lazar-1 {
1057
+ 0%, 25% {
1058
+ opacity: 1;
1059
+ -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 0deg);
1060
+ transform: perspective(1000px) rotate3d(0, 1, 0, 0deg);
1061
+ }
1062
+ 100% {
1063
+ opacity: 0;
1064
+ -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 180deg);
1065
+ transform: perspective(1000px) rotate3d(0, 1, 0, 180deg);
1066
+ }
1067
+ }
1068
+
1069
+ @keyframes anim-effect-lazar-1 {
1070
+ 0%, 25% {
1071
+ opacity: 1;
1072
+ }
1073
+ 100% {
1074
+ opacity: 0;
1075
+ -webkit-transform: perspective(1000px) rotate3d(0, 1, 0, 180deg);
1076
+ transform: perspective(1000px) rotate3d(0, 1, 0, 180deg);
1077
+ }
1078
+ }
1079
+
1080
+ @-webkit-keyframes anim-effect-lazar-2 {
1081
+ 0% {
1082
+ opacity: 1;
1083
+ }
1084
+ 100% {
1085
+ opacity: 0;
1086
+ }
1087
+ }
1088
+
1089
+ @keyframes anim-effect-lazar-2 {
1090
+ 0% {
1091
+ opacity: 1;
1092
+ }
1093
+ 100% {
1094
+ opacity: 0;
1095
+ }
1096
+ }
1097
+
1098
+ /* Jagoda */
1099
+ .cbutton--effect-jagoda::before {
1100
+ position: absolute;
1101
+ top: 50%;
1102
+ left: 50%;
1103
+ margin: -25px 0 0 -25px;
1104
+ width: 50px;
1105
+ height: 50px;
1106
+ border-radius: 50%;
1107
+ content: '';
1108
+ opacity: 0;
1109
+ pointer-events: none;
1110
+ }
1111
+
1112
+ .cbutton--effect-jagoda::after {
1113
+ margin: -25px 0 0 -25px;
1114
+ width: 50px;
1115
+ height: 50px;
1116
+ }
1117
+
1118
+ .cbutton--effect-jagoda::before,
1119
+ .cbutton--effect-jagoda::after {
1120
+ box-shadow: 0 0 0 2px rgba(111,148,182,0.5);
1121
+ }
1122
+
1123
+ .cbutton--effect-jagoda.cbutton--click::before,
1124
+ .cbutton--effect-jagoda.cbutton--click::after {
1125
+ -webkit-animation-name: anim-effect-jagoda-2, anim-effect-jagoda-1;
1126
+ animation-name:anim-effect-jagoda-2, anim-effect-jagoda-1;
1127
+ -webkit-animation-duration: 1.2s;
1128
+ animation-duration: 1.2s;
1129
+ -webkit-animation-iteration-count: 5;
1130
+ animation-iteration-count: 5;
1131
+ -webkit-animation-timing-function: ease-out;
1132
+ animation-timing-function: ease-out;
1133
+ -webkit-animation-fill-mode: forwards;
1134
+ animation-fill-mode: forwards;
1135
+ }
1136
+
1137
+ .cbutton--effect-jagoda.cbutton--click::after {
1138
+ -webkit-animation-delay: 0.6s;
1139
+ animation-delay: 0.6s;
1140
+ }
1141
+
1142
+ @-webkit-keyframes anim-effect-jagoda-1 {
1143
+ 0%, 100% {
1144
+ opacity: 0;
1145
+ }
1146
+ 40%, 60% {
1147
+ opacity: 1;
1148
+ }
1149
+ }
1150
+
1151
+ @keyframes anim-effect-jagoda-1 {
1152
+ 0%, 100% {
1153
+ opacity: 0;
1154
+ }
1155
+ 40%, 60% {
1156
+ opacity: 1;
1157
+ }
1158
+ }
1159
+
1160
+ @-webkit-keyframes anim-effect-jagoda-2 {
1161
+ 0% {
1162
+ -webkit-transform: scale3d(0.5, 0.5, 1);
1163
+ transform: scale3d(0.5, 0.5, 1);
1164
+ }
1165
+ 100% {
1166
+ -webkit-transform: scale3d(1.4, 1.4, 1);
1167
+ transform: scale3d(1.4, 1.4, 1);
1168
+ }
1169
+ }
1170
+
1171
+ @keyframes anim-effect-jagoda-2 {
1172
+ 0% {
1173
+ -webkit-transform: scale3d(0.5, 0.5, 1);
1174
+ transform: scale3d(0.5, 0.5, 1);
1175
+ }
1176
+ 100% {
1177
+ -webkit-transform: scale3d(1.4, 1.4, 1);
1178
+ transform: scale3d(1.4, 1.4, 1);
1179
+ }
1180
+ }
1181
+
1182
+ /* Simo */
1183
+ .cbutton--effect-simo::before {
1184
+ position: absolute;
1185
+ top: 50%;
1186
+ left: -20px;
1187
+ margin: -4px 0 0 0;
1188
+ width: 8px;
1189
+ height: 8px;
1190
+ border-radius: 50%;
1191
+ background: rgba(111,148,182,0.3);
1192
+ content: '';
1193
+ opacity: 0;
1194
+ -webkit-transform-origin: 35px 50%;
1195
+ transform-origin: 35px 50%;
1196
+ }
1197
+
1198
+ .cbutton--effect-simo::after {
1199
+ border: 8px solid rgba(111,148,182,0.1);
1200
+ }
1201
+
1202
+ .cbutton--effect-simo.cbutton--click::after {
1203
+ -webkit-animation: anim-effect-simo-1 5s forwards;
1204
+ animation: anim-effect-simo-1 5s forwards;
1205
+ }
1206
+
1207
+ .cbutton--effect-simo.cbutton--click::before {
1208
+ -webkit-animation-name: anim-effect-simo-2, anim-effect-simo-3;
1209
+ animation-name: anim-effect-simo-2, anim-effect-simo-3;
1210
+ -webkit-animation-duration: 5s, 0.4s;
1211
+ animation-duration: 5s, 0.4s;
1212
+ -webkit-animation-iteration-count: 1, infinite;
1213
+ animation-iteration-count: 1, infinite;
1214
+ -webkit-animation-timing-function: ease, linear;
1215
+ animation-timing-function: ease, linear;
1216
+ -webkit-animation-fill-mode: forwards;
1217
+ animation-fill-mode: forwards;
1218
+ }
1219
+
1220
+ @-webkit-keyframes anim-effect-simo-1 {
1221
+ 0%, 100% {
1222
+ -webkit-transform: scale3d(0, 0, 1);
1223
+ transform: scale3d(0, 0, 1);
1224
+ opacity: 0;
1225
+ }
1226
+ 5%, 95% {
1227
+ opacity: 1;
1228
+ -webkit-transform: scale3d(1, 1, 1);
1229
+ transform: scale3d(1, 1, 1);
1230
+ }
1231
+ }
1232
+
1233
+ @keyframes anim-effect-simo-1 {
1234
+ 0%, 100% {
1235
+ -webkit-transform: scale3d(0, 0, 1);
1236
+ transform: scale3d(0, 0, 1);
1237
+ opacity: 0;
1238
+ }
1239
+ 5%, 95% {
1240
+ opacity: 1;
1241
+ -webkit-transform: scale3d(1, 1, 1);
1242
+ transform: scale3d(1, 1, 1);
1243
+ }
1244
+ }
1245
+
1246
+ @-webkit-keyframes anim-effect-simo-2 {
1247
+ 0%, 5%, 95%, 100% {
1248
+ opacity: 0;
1249
+ }
1250
+ 10%, 90% {
1251
+ opacity: 1;
1252
+ }
1253
+ }
1254
+
1255
+ @keyframes anim-effect-simo-2 {
1256
+ 0%, 5%, 95%, 100% {
1257
+ opacity: 0;
1258
+ }
1259
+ 10%, 90% {
1260
+ opacity: 1;
1261
+ }
1262
+ }
1263
+
1264
+ @-webkit-keyframes anim-effect-simo-3 {
1265
+ 100% {
1266
+ -webkit-transform: rotate3d(0, 0, 1, 360deg);
1267
+ transform: rotate3d(0, 0, 1, 360deg);
1268
+ }
1269
+ }
1270
+
1271
+ @keyframes anim-effect-simo-3 {
1272
+ 100% {
1273
+ -webkit-transform: rotate3d(0, 0, 1, 360deg);
1274
+ transform: rotate3d(0, 0, 1, 360deg);
1275
+ }
1276
+ }
1277
+
1278
+ /* Milan */
1279
+ .cbutton--effect-milan::before {
1280
+ content: "";
1281
+ position: absolute;
1282
+ top: 50%;
1283
+ left: 50%;
1284
+ margin: -35px 0 0 -35px;
1285
+ width: 70px;
1286
+ height: 70px;
1287
+ border-radius: 50%;
1288
+ opacity: 0;
1289
+ pointer-events: none;
1290
+ }
1291
+
1292
+ .cbutton--effect-milan::after,
1293
+ .cbutton--effect-milan::before {
1294
+ border: 4px solid rgba(111,148,182,0.1);
1295
+ }
1296
+
1297
+ .cbutton--effect-milan.cbutton--click::after {
1298
+ -webkit-animation-name: anim-effect-milan-3, anim-effect-milan-1;
1299
+ animation-name: anim-effect-milan-3, anim-effect-milan-1;
1300
+ -webkit-animation-duration: 5s, 2s;
1301
+ animation-duration: 5s, 2s;
1302
+ -webkit-animation-iteration-count: 1, infinite;
1303
+ animation-iteration-count: 1, infinite;
1304
+ -webkit-animation-timing-function: ease, linear;
1305
+ animation-timing-function: ease, linear;
1306
+ -webkit-animation-fill-mode: forwards;
1307
+ animation-fill-mode: forwards;
1308
+ }
1309
+
1310
+ .cbutton--effect-milan.cbutton--click::before {
1311
+ -webkit-animation-name: anim-effect-milan-3, anim-effect-milan-2;
1312
+ animation-name: anim-effect-milan-3, anim-effect-milan-2;
1313
+ -webkit-animation-duration: 5s, 2s;
1314
+ animation-duration: 5s, 2s;
1315
+ -webkit-animation-iteration-count: 1, infinite;
1316
+ animation-iteration-count: 1, infinite;
1317
+ -webkit-animation-timing-function: ease, linear;
1318
+ animation-timing-function: ease, linear;
1319
+ -webkit-animation-fill-mode: forwards;
1320
+ animation-fill-mode: forwards;
1321
+ }
1322
+
1323
+ @-webkit-keyframes anim-effect-milan-1 {
1324
+ 0% {
1325
+ -webkit-transform: perspective(1000px) rotate3d(1, 1, 1, 0deg);
1326
+ transform: perspective(1000px) rotate3d(1, 1, 1, 0deg);
1327
+ }
1328
+ 100% {
1329
+ -webkit-transform: perspective(1000px) rotate3d(1, 1, 1, 360deg);
1330
+ transform: perspective(1000px) rotate3d(1, 1, 1, 360deg);
1331
+ }
1332
+ }
1333
+
1334
+ @keyframes anim-effect-milan-1 {
1335
+ 0% {
1336
+ -webkit-transform: perspective(1000px) rotate3d(1, 1, 1, 0deg);
1337
+ transform: perspective(1000px) rotate3d(1, 1, 1, 0deg);
1338
+ }
1339
+ 100% {
1340
+ -webkit-transform: perspective(1000px) rotate3d(1, 1, 1, 360deg);
1341
+ transform: perspective(1000px) rotate3d(1, 1, 1, 360deg);
1342
+ }
1343
+ }
1344
+
1345
+ @-webkit-keyframes anim-effect-milan-2 {
1346
+ 0% {
1347
+ -webkit-transform: perspective(1000px) rotate3d(-1, -1, -1, 0deg);
1348
+ transform: perspective(1000px) rotate3d(-1, -1, -1, 0deg);
1349
+ }
1350
+ 100% {
1351
+ -webkit-transform: perspective(1000px) rotate3d(-1, -1, -1, 360deg);
1352
+ transform: perspective(1000px) rotate3d(-1, -1, -1, 360deg);
1353
+ }
1354
+ }
1355
+
1356
+ @keyframes anim-effect-milan-2 {
1357
+ 0% {
1358
+ -webkit-transform: perspective(1000px) rotate3d(1, -1, 1, 0deg);
1359
+ transform: perspective(1000px) rotate3d(1, -1, 1, 0deg);
1360
+ }
1361
+ 100% {
1362
+ -webkit-transform: perspective(1000px) rotate3d(1, -1, 1, 360deg);
1363
+ transform: perspective(1000px) rotate3d(1, -1, 1, 360deg);
1364
+ }
1365
+ }
1366
+
1367
+ @-webkit-keyframes anim-effect-milan-3 {
1368
+ 0%, 100% {
1369
+ opacity: 0;
1370
+ }
1371
+ 25%, 75% {
1372
+ opacity: 1;
1373
+ }
1374
+ }
1375
+
1376
+ @keyframes anim-effect-milan-3 {
1377
+ 0%, 100% {
1378
+ opacity: 0;
1379
+ }
1380
+ 25%, 75% {
1381
+ opacity: 1;
1382
+ }
1383
+ }
1384
+
1385
+ /* Zorka */
1386
+ .cbutton--effect-zorka .cbutton__helper {
1387
+ position: absolute;
1388
+ top: 50%;
1389
+ left: 50%;
1390
+ margin: -35px 0 0 -100px;
1391
+ width: 200px;
1392
+ height: 70px;
1393
+ opacity: 0;
1394
+ -webkit-filter: url(../index.html#lb-goo-filter);
1395
+ filter: url(../index.html#lb-goo-filter);
1396
+ pointer-events: none;
1397
+ }
1398
+
1399
+ .cbutton--effect-zorka .cbutton__helper::before,
1400
+ .cbutton--effect-zorka .cbutton__helper::after {
1401
+ position: absolute;
1402
+ top: 50%;
1403
+ left: 50%;
1404
+ margin: -28px 0 0 -28px;
1405
+ width: 56px;
1406
+ height: 56px;
1407
+ border-radius: 50%;
1408
+ background: rgb(111,148,182);
1409
+ content: '';
1410
+ }
1411
+
1412
+ .cbutton--effect-zorka.cbutton--click .cbutton__helper {
1413
+ -webkit-animation: anim-effect-zorka-1 0.7s ease-out;
1414
+ animation: anim-effect-zorka-1 0.7s ease-out;
1415
+ }
1416
+
1417
+ .cbutton--effect-zorka.cbutton--click .cbutton__helper::before {
1418
+ -webkit-animation: anim-effect-zorka-2 0.7s ease-out forwards;
1419
+ animation: anim-effect-zorka-2 0.7s ease-out forwards;
1420
+ }
1421
+
1422
+ .cbutton--effect-zorka.cbutton--click .cbutton__helper::after {
1423
+ -webkit-animation: anim-effect-zorka-3 0.7s ease-out forwards;
1424
+ animation: anim-effect-zorka-3 0.7s ease-out forwards;
1425
+ }
1426
+
1427
+ @-webkit-keyframes anim-effect-zorka-1 {
1428
+ 0% {
1429
+ opacity: 0.1;
1430
+ }
1431
+ 50% {
1432
+ opacity: 0.175;
1433
+ }
1434
+ 100% {
1435
+ opacity: 0;
1436
+ }
1437
+ }
1438
+
1439
+ @keyframes anim-effect-zorka-1 {
1440
+ 0% {
1441
+ opacity: 0.1;
1442
+ }
1443
+ 50% {
1444
+ opacity: 0.175;
1445
+ }
1446
+ 100% {
1447
+ opacity: 0;
1448
+ }
1449
+ }
1450
+
1451
+ @-webkit-keyframes anim-effect-zorka-2 {
1452
+ 100% {
1453
+ -webkit-transform: translate3d(40px, 0, 0) scale3d(0.8, 0.8, 1);
1454
+ transform: translate3d(40px, 0, 0) scale3d(0.8, 0.8, 1);
1455
+ }
1456
+ }
1457
+
1458
+ @keyframes anim-effect-zorka-2 {
1459
+ 100% {
1460
+ -webkit-transform: translate3d(40px, 0, 0) scale3d(0.8, 0.8, 1);
1461
+ transform: translate3d(40px, 0, 0) scale3d(0.8, 0.8, 1);
1462
+ }
1463
+ }
1464
+
1465
+ @-webkit-keyframes anim-effect-zorka-3 {
1466
+ 100% {
1467
+ -webkit-transform: translate3d(-40px, 0, 0) scale3d(0.8, 0.8, 1);
1468
+ transform: translate3d(-40px, 0, 0) scale3d(0.8, 0.8, 1);
1469
+ }
1470
+ }
1471
+
1472
+ @keyframes anim-effect-zorka-3 {
1473
+ 100% {
1474
+ -webkit-transform: translate3d(-40px, 0, 0) scale3d(0.8, 0.8, 1);
1475
+ transform: translate3d(-40px, 0, 0) scale3d(0.8, 0.8, 1);
1476
+ }
1477
+ }
1478
+
1479
+ /* Stana */
1480
+ .cbutton--effect-stana .cbutton__helper {
1481
+ position: absolute;
1482
+ top: 50%;
1483
+ left: 50%;
1484
+ margin: -40px 0 0 -40px;
1485
+ width: 80px;
1486
+ height: 80px;
1487
+ opacity: 0;
1488
+ pointer-events: none;
1489
+ }
1490
+
1491
+ .cbutton--effect-stana line {
1492
+ fill: none;
1493
+ stroke-width: 2;
1494
+ }
1495
+
1496
+ .cbutton--box-color-7 line {
1497
+ stroke: #0077ff;
1498
+ }
1499
+
1500
+ .cbutton--box-color-8 line {
1501
+ stroke: #7bff00;
1502
+ }
1503
+
1504
+ .cbutton--box-color-9 line {
1505
+ stroke: #fff;
1506
+ }
1507
+
1508
+ .clip-ring {
1509
+ -webkit-transform-origin: 50% 50%;
1510
+ transform-origin: 50% 50%;
1511
+ }
1512
+
1513
+ .cbutton--effect-stana.cbutton--click .cbutton__helper {
1514
+ -webkit-animation: anim-effect-stana 0.4s ease-in forwards;
1515
+ animation: anim-effect-stana 0.4s ease-in forwards;
1516
+ }
1517
+
1518
+ @-webkit-keyframes anim-effect-stana {
1519
+ 0%, 100% {
1520
+ opacity: 1;
1521
+ }
1522
+ 50% {
1523
+ opacity: 0.3;
1524
+
1525
+ -webkit-animation-timing: ease-out;
1526
+ animation-timing: ease-out;
1527
+ }
1528
+ }
1529
+
1530
+ @keyframes anim-effect-stana {
1531
+ 0%, 100% {
1532
+ opacity: 1;
1533
+ }
1534
+ 50% {
1535
+ opacity: 0.3;
1536
+
1537
+ -webkit-animation-timing: ease-out;
1538
+ animation-timing: ease-out;
1539
+ }
1540
+ }
1541
+
1542
+ .cbutton--effect-stana.cbutton--click .clip-ring {
1543
+ -webkit-transition: -webkit-transform 0.4s ease-in-out;
1544
+ transition: transform 0.4s ease-in-out;
1545
+ -webkit-transform: scale3d(3, 3, 1);
1546
+ transform: scale3d(3, 3, 1);
1547
+ }