-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1090 lines (1090 loc) · 273 KB
/
index.html
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Mining Simulator</title>
</head>
<body class="pushmenu-push">
<style type="text/css">
body{background:#fff;text-align:center;font-weight:normal;font-size:16px;line-height:1;color:#524e4e;cursor:default;position:relative;margin:0 auto;width:auto;text-align:center;min-width:340px;overflow-y:scroll;}[v-cloak]{display:none;}.text-center{text-align:center;}.loader{border:12px solid #f3f3f3;border-top:12px solid #fbc342;border-radius:50%;width:120px;height:120px;animation:spin 2s linear infinite;margin:100px auto;}@keyframes spin{0%{transform:rotate(0deg);}100%{transform:rotate(360deg);}}.loadingFrame{width:100%;}::selection{background:#fba342;color:#fff;}::-moz-selection{background:#fba342;color:#fff;}:focus{outline:0;}::-webkit-input-placeholder{color:#bababa;font-style:italic;font-size:16px;font-weight:300;}:-moz-placeholder{color:#bababa;font-style:italic;font-size:16px;font-weight:300;}::-moz-placeholder{color:#bababa;font-style:italic;font-size:16px;font-weight:300;}:-ms-input-placeholder{color:#bababa;font-style:italic;font-size:16px;font-weight:300;}*{box-sizing:border-box;}h1{}h2{font-weight:700;color:#3a3939;font-size:28px;margin:0 0 10px 0;padding:0;text-align:center;}h3{font-weight:300;color:#524e4e;font-size:24px;margin:0;padding:0;text-align:center;}h4{margin:0;padding:0;}p a:link,p a:visited,p a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}p a:hover,p a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}.frame{width:1170px;margin:0 auto;}.frame .row{overflow:hidden;}.frame .col_2{width:calc(50% - 15px);margin-right:30px;float:left;}.frame .col_2:last-child{margin-right:0;}.frame .col_3{width:calc(33.33% - 20px);margin-right:30px;float:left;}.frame .col_3:last-child{margin-right:0;}.frame .col_4{width:calc(25% - 22.5px);margin-right:30px;float:left;}.frame .col_4:last-child{margin-right:0;}.frame .col_5{width:calc(20% - 24px);margin-right:30px;float:left;}.frame .col_5:last-child{margin-right:0;}.frame .col_6{width:calc(16.66% - 25px);margin-right:30px;float:left;}.frame .col_6:last-child{margin-right:0;}header{border-bottom:1px solid #dbdbdb;overflow:hidden;padding:74px 0 20px 0;height:144px;}header .logo{text-indent:9999px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px 0px;width:192px;height:50px;display:block;float:left;overflow:hidden;}header nav.main{background:transparent;margin:7px 0 10px auto;display:table;float:right;}header nav.main a:link,header nav.main a:visited,header nav.main a:active{float:right;color:#524e4e;text-decoration:none;font-weight:400;font-size:16px;padding:10px;margin:0 30px 0 0;}header nav.main a.selected{color:#fba342;}header nav.main a:hover,header nav.main a:visited:hover{color:inherit;text-decoration:none;font-weight:400;opacity:0.5;}header nav.main a.selected:hover,header nav.main a.selected:visited:hover{color:#fba342;text-decoration:none;font-weight:400;opacity:0.5;}header nav.main .one{float:right;padding:0;margin:10px 0 10px 10px;}header nav.main .one a:link,header nav.main .one a:visited,header nav.main .one a:active{padding:0;float:none;margin:0;}header nav.top{background:#fba542;background:-moz-linear-gradient(left,#fb8842 0%,#fbc342 50%,#7db9e8 100%);background:-webkit-linear-gradient(left,#fb8842 0%,#fbc342 100%);background:linear-gradient(to right,#fb8842 0%,#fbc342 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb8842',endColorstr='#7db9e8',GradientType=1);position:absolute;top:0;left:0;right:0;}header nav.top a:link,header nav.top a:visited,header nav.top a:active{color:#fff;text-decoration:none;font-weight:700;font-size:14px;padding:20px 40px 20px 0;float:left;}header nav.top a:hover,header nav.top a:visited:hover{color:#fff;text-decoration:none;opacity:0.8;}header nav.top #languages{float:right;position:relative;}header nav.top #languages #sel_lang{color:#fff;text-decoration:none;font-weight:700;font-size:14px;padding:20px 0 0 0;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:right -150px;padding-right:26px;cursor:pointer;}header nav.top #languages #hide_lang{display:none;position:absolute;background:#272727;padding:20px 20px;top:54px;right:0px;}header nav.top #languages #hide_lang a{padding:10px 20px 10px 20px;margin:0;display:table;float:none;}header nav.top #languages #hide_lang a:hover{opacity:1.0;color:#fbc342;}header nav.top #languages #sel_lang::selection{background:transparent;color:inherit;}header nav.top #languages #sel_lang::-moz-selection{background:transparent;color:inherit;}footer{background:#272727;padding:0 0 40px 0;text-align:left;color:#ababab;font-size:14px;}footer h4{color:#fff;font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:40px 0 20px 0;}footer p{line-height:1.3;}footer a:link,footer a:visited,footer a:active{color:#ababab;font-size:14px;text-decoration:none;font-weight:400;display:table;margin:0 0 10px 0;}footer a:hover,footer a:visited:hover{color:#fbc342;}footer .divider{margin:40px 0 40px 0;border-top:1px solid #474747;}footer .col_2 a{display:inline-table;}footer .col_2 h4{margin:0px 0 20px 0;}footer .logo{text-indent:9999px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px -49px;width:192px;height:50px;display:block;margin-bottom:20px;}footer .stratum{display:inline-block;width:50%;text-align:left;margin:0 0 15px 0;}footer .stratum label{float:left;}footer .stratum .bullet{background:#696969;border-radius:30px;width:12px;height:12px;display:block;float:left;margin:0 10px 0 0;}footer .stratum .bullet.online{background:#68b541;}footer .stratum .bullet.offline{background:#e92424;}.footerHeight{background:#272727;padding:30px 0 30px 0;text-align:left;color:#ababab;font-size:14px;width:100%;margin:0;}.button_big{font-size:16px;color:#fff;font-weight:700;text-decoration:none;background:#fbc342;padding:14px 20px;border-radius:3px;display:inline-table;cursor:pointer;border:0;}.button_big:hover{opacity:0.8;}.button_outlined_big{font-size:24px;color:#fff;font-weight:700;text-decoration:none;background:transparent;padding:20px 60px;border-radius:4px;display:inline-table;border:3px solid #fff;text-transform:uppercase;margin:40px auto 0 auto;cursor:pointer;}.button_outlined_big:hover{background:#fff;border-color:#fff;color:#212020;}.button_outlined{font-size:16px;color:#524e4e;font-weight:700;text-decoration:none;background:transparent;padding:15px 30px;border-radius:4px;display:inline-table;border:3px solid #524e4e;margin:40px 0 40px 0;cursor:pointer;}.button_outlined:hover{background:#524e4e;border-color:#524e4e;color:#fff;}.focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}#cookie_message{background:#fcfcfc;border-top:1px solid #dbdbdb;padding:0;}#cookie_message .frame{position:relative;overflow:hidden;}#cookie_message .icon{width:40px;height:50px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-290px -100px;position:absolute;top:0;left:0;}#cookie_message p{color:#524e4e;font-weight:400;font-size:14px;text-align:left;padding:22px 0 22px 54px;margin:0;display:block;float:left;}#cookie_message .button{float:left;background:#68b641;color:#fff;font-weight:700;padding:8px 14px;border-radius:3px;text-transform:uppercase;font-size:12px;margin:15px 0 0 10px;cursor:pointer;}#cookie_message .button:hover{opacity:0.8;}#cookie_message a:link,#cookie_message a:active,#cookie_message a:visited{padding:8px 4px;margin:15px 0 0 10px;float:left;color:#128ede;text-decoration:underline;font-weight:inherit;font-size:12px;}#cookie_message a:link:hover,#cookie_message a:visited:hover{color:#fbc342;}@media (max-width: 1200px) {.frame{width:calc(100% - 60px);margin:0 30px;min-width:280px;}header{padding-top:64px;height:134px;}header nav.top a:link,header nav.top a:visited,header nav.top a:active{padding:15px 30px 15px 0;}header nav.top #languages #sel_lang{padding-top:15px;background-position:right -156px;}header nav.top #languages #hide_lang{top:44px;}header nav.main a:link,header nav.main a:visited,header nav.main a:active{margin:0 20px 0 0}footer{padding:30px 0;}}@media (max-width: 1000px) {header{padding-top:20px;height:74px;}header .logo{text-indent:9999px;background:url("../images/web/sprite.svg") no-repeat;background-size:400px 400px;background-position:0px 0px;width:130px;height:33px;overflow:hidden;}header .menu{display:none;position:absolute;top:0;bottom:0;right:0;margin-right:-300px;width:300px;background:#272727;z-index:99;}header .menu .close{width:50px;height:50px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-50px -100px;cursor:pointer;position:absolute;right:0;top:0;}header nav.top{position:relative;background:transparent;left:unset;right:unset;top:unset;display:table;width:100%;}header nav.top .frame{margin:0;width:100%;}header nav.top #languages{float:none;padding-top:20px;clear:both;}header nav.top #languages a{padding:0 0 20px 0;}header nav.top a:link,header nav.top a:active,header nav.top a:visited,header nav.main a:link,header nav.main a:active,header nav.main a:visited{display:table;float:right;width:100%;color:#fff;font-weight:700;padding:10px 0 10px 0;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:12px;margin:0;}header nav.main{display:table;width:100%;}header nav.main .one{float:none;width:100%;padding:17px 0 17px;border-bottom:1px solid #484848;margin:0;margin-bottom:20px;}header nav.main .one a{display:inline-table;width:auto;}header .hamburger{width:50px;height:50px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px -100px;float:right;cursor:pointer;margin-top:-8px;margin-right:-12px;}header nav.main{margin:0;}header nav.main a:hover,header nav.main a:visited:hover,header nav.top a:hover,header nav.top a:visited:hover{opacity:1.0;color:#fbc342;}header nav a.hide{display:none!important;}header nav.top #languages #sel_lang{display:none;}header nav.top #languages #hide_lang{display:table!important;position:relative;background:transparent;border-top:1px solid #484848;padding:20px;margin:0 auto;width:100%;top:auto;right:auto;}.pushmenu-left{right:-300px;}.pushmenu-left.pushmenu-open{right:0;}.pushmenu-push{overflow-x:hidden;position:relative;right:0;}.pushmenu-push-toright{right:300px;}.pushmenu,.pushmenu-push{-webkit-transition:all 0.5s ease;-moz-transition:all 0.5s ease;transition:all 0.5s ease;}#cookie_message p{float:none;width:100%;line-height:1.3;padding:15px 0 20px 54px;}#cookie_message .button{margin:-12px 0 0 48px;}#cookie_message a:link,#cookie_message a:visited,#cookie_message a:active{margin:-13px 0 20px 10px;}}@media (max-width: 760px) {footer .frame .row .col_4{width:calc(50% - 20px);}footer .frame .row .col_4:nth-child(1){margin-bottom:20px;}footer .frame .row .col_4:nth-child(2){margin-right:0;}footer .frame .row .col_4:nth-child(3){clear:both;}footer .frame .row .col_2{width:100%;float:none;margin-right:0;}footer .frame .row .col_2:nth-child(2){margin-top:40px;}footer .stratum{width:100%;}}@media (max-width: 400px) {footer .frame .row .col_4{width:100%;float:none;margin-right:0;margin-bottom:40px;}footer .frame .row .col_4:first-child{margin-bottom:40px;}footer .frame .row .col_4:last-child{margin-bottom:0;}footer .frame .row .col_4:nth-child(3) a{display:inline-table;}footer .frame .row .col_4:nth-child(3) a:after{content:" - ";}footer .frame .row .col_4:nth-child(3) a:last-child:after{content:"";}footer .frame .row .col_4 .facebook,footer .frame .row .col_4 .vk,footer .frame .row .col_4 .youtube,footer .frame .row .col_4 .github,footer .frame .row .col_4 .bitcointalk{text-indent:-9999px;line-height:0;background:#696969;color:#272727;border-radius:50px;padding:18px 10px 13px 10px;display:inline-table;font-weight:600;font-size:12px;margin-right:5px;width:36px;height:36px;}footer .frame .row .col_4 .twitter{text-indent:-9999px;line-height:0;background:#696969;color:#272727;border-radius:50px;padding:18px 8px 13px 8px;display:inline-table;font-weight:600;font-size:12px;margin-right:5px;width:36px;height:36px;}footer .frame .row .col_4 .reddit{text-indent:-9999px;line-height:0;background:#696969;color:#272727;border-radius:50px;padding:18px 14px 13px 14px;display:inline-table;font-weight:600;font-size:12px;margin-right:5px;width:36px;height:36px;}footer .frame .row .col_4 .facebook:after{content:"FB";text-indent:0;display:block;}footer .frame .row .col_4 .twitter:after{content:"TW";text-indent:0;display:block;}footer .frame .row .col_4 .vk:after{content:"VK";text-indent:0;display:block;}footer .frame .row .col_4 .youtube:after{content:"YT";text-indent:0;display:block;}footer .frame .row .col_4 .reddit:after{content:"R";text-indent:0;display:block;}footer .frame .row .col_4 .github:after{content:"GH";text-indent:0;display:block;}footer .frame .row .col_4 .bitcointalk:after{content:"BT";text-indent:0;display:block;}footer .frame .row .col_4 .facebook:hover{background:#3b5998;color:#fff;}footer .frame .row .col_4 .twitter:hover{background:#1da1f2;color:#fff;}footer .frame .row .col_4 .vk:hover{background:#507299;color:#fff;}footer .frame .row .col_4 .reddit:hover{background:#000;color:#fff;}footer .frame .row .col_4 .youtube:hover{background:#ee1c1b;color:#fff;}footer .frame .row .col_4 .github:hover{background:#000;color:#fff;}footer .frame .row .col_4 .bitcointalk:hover{background:#000;color:#fff;}}#intro{padding:60px 0;background:#fcfcfc;background-size:cover;border-bottom:1px solid #dbdbdb;text-align:center;}#intro h1{color:#524e4e;font-weight:100;font-size:60px;padding:0;margin:0 0 20px 0;}#intro h2{color:#524e4e;font-weight:300;font-size:22px;padding:0;margin:0;}#intro.index{background-image:url("../images/web/background_index.svg");}#intro .tiles{margin:60px 0 0 0;}#intro .tiles .tile{width:440px;display:inline-table;background:#fff;border:1px solid #dbdbdb;border-radius:5px;margin:0 10px 0 10px;padding:30px 40px;text-align:left;transition-duration:300ms;}#intro .tiles .tile:hover{box-shadow:0px 0px 10px rgba(0,0,0,0.1);transition-duration:300ms;}#intro .tiles .tile p{margin:0;padding:0;font-size:18px;font-weight:300;line-height:1.15;}#intro .tiles .tile p b{font-size:36px;font-weight:900;display:table;text-transform:uppercase;}#intro .tiles .tile:first-child p b{color:#fbc342;}#intro .tiles .tile p b.yellow{color:#fbc342;}#intro .tiles .tile:last-child p b{color:#fb8842;}#intro .tiles .tile p b.orange{color:#fb8842;}#intro .tiles .tile p small{font-size:12px;}#intro .tiles .tile ul{margin:30px 0 30px 20px;padding:0;}#intro .tiles .tile:first-child ul li{list-style-image:url("../images/web/li1.gif");margin-bottom:15px;font-size:16px;font-weight:300;}#intro .tiles .tile:last-child ul li{list-style-image:url("../images/web/li2.gif");margin-bottom:15px;font-size:16px;font-weight:300;}#intro .tiles .tile:last-child .button_big{background:#fb8842;}#intro .tiles .tile .inline{display:inline-table;margin:0 0 0 10px;font-size:14px;font-weight:300;}#intro .tiles .tile .inline a:link,#intro .tiles .tile .inline a:visited,#intro .tiles .tile .inline a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}#intro .tiles .tile .inline a:hover,#intro .tiles .tile .inline a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}#indexstats{margin:80px 0;text-align:left;}#indexstats .col_3{width:calc(33.33% - 53.33px);margin-right:80px;float:left;}#indexstats .col_3:last-child{margin-right:0;}#indexstats h4{color:#3a3939;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:0 0 20px 0;float:left;}#indexstats .link{float:right;font-size:12px;}#indexstats .col_3:last-child .link{margin-right:5px;}#indexstats .col_3 a.link:link,#indexstats .col_3 a.link:visited,#indexstats .col_3 a.link:active{color:#128ede;text-decoration:underline;font-weight:inherit;}#indexstats .col_3 a.link:hover,#indexstats .col_3 a.link:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}#indexstats .stat_info{clear:both;border-bottom:1px solid #dbdbdb;overflow:hidden;padding:10px 0;}#indexstats .stat_info time{font-size:9px;color:#959595;text-transform:uppercase;letter-spacing:2px;display:table;padding-bottom:5px;}#indexstats .stat_info .name{font-size:14px;color:#524e4e;font-weight:700;float:left;}#indexstats .stat_info a.name:link,#indexstats .stat_info a.name:visited,#indexstats .stat_info a.name:active{color:#128ede;text-decoration:underline;font-weight:300;}#indexstats .stat_info a.name:hover,#indexstats .stat_info a.name:visited:hover{color:#fbc342;text-decoration:underline;font-weight:300;}#indexstats .stat_info .price{font-size:14px;color:#524e4e;font-weight:700;float:right;}#indexstats .news_box{clear:both;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);padding:30px;margin:0 5px 5px 0;position:relative;}#indexstats .news_box .icon{background:url("../images/web/news_icons.svg") no-repeat;background-size:60px 60px;width:30px;height:30px;position:absolute;bottom:15px;right:15px;z-index:-1;}#indexstats .news_box .icon#tech{background-position:0px 0px;}#indexstats .news_box .icon#news{background-position:-30px 0px;}#indexstats .news_box .title{font-weight:700;color:#3a3939;text-decoration:none;line-height:1.3;}#indexstats .news_box time{font-size:9px;color:#959595;text-transform:uppercase;letter-spacing:2px;display:table;padding:10px 0 15px 0;}#indexstats .news_box p{font-size:13px;line-height:1.5;margin:0;padding:0;}#indexstats .empty{clear:both;margin:0 0 0 0;background:transparent;border:2px dashed #dbdbdb;border-radius:5px;box-shadow:none;padding:40px;text-align:center;}#indexstats .empty p{color:#959595;font-weight:300;font-size:20px;letter-spacing:0;text-transform:none;margin:0 auto 0 auto;text-align:center;border:0;padding:0;display:block;}@media (max-width: 1200px) {#intro h1{font-size:46px;}#intro h2{font-size:22px;}#indexstats{margin:40px 0;}#indexstats .col_3{width:calc(33.33% - 40px);margin-right:60px;}#indexstats .col_3:last-child{margin-right:0;}}@media (max-width: 1000px) {#intro{background-size:auto 100%;background-position:top right;}#intro h1{font-size:40px;}#intro h2{font-size:20px;}#intro .tiles .tile{display:table;margin:0 auto 0 auto;}#intro .tiles .tile:first-child{margin-bottom:30px;}#indexstats{margin:30px 0;}#indexstats .col_3{width:calc(50% - 40px);margin-right:80px;}#indexstats .col_3:nth-child(2){margin-right:0;}#indexstats .col_3:last-child{clear:both;margin-top:30px;width:100%;margin-right:0;}#indexstats .stat_info:last-child{border-bottom:0;}}@media (max-width: 760px) {#intro{padding:30px 0;}#intro h1{font-size:34px;font-weight:300;}#intro h2{font-size:18px;font-weight:300;}h2{font-size:22px;}h3{font-size:20px;}#intro .tiles{margin:30px 0 0 0;}#intro .tiles .tile{width:100%;}#intro .tiles .tile .inline{display:table;text-align:left;margin-top:20px;}#indexstats .col_3{clear:both;margin-bottom:30px;padding-bottom:30px;border-bottom:1px solid #dbdbdb;width:100%;margin-right:0;}#indexstats .col_3:last-child{margin-top:0;margin-bottom:0;padding-bottom:0;border-bottom:0;}}@media (max-width: 400px) {}#buyersintro{padding:80px 0;background:#212020 url("../images/web/background_buyers.jpg") no-repeat center center;background-size:cover;text-align:center;}#buyersintro h1{color:#fff;font-weight:700;font-size:42px;padding:0;margin:0 0 20px 0;}#buyersintro h2{color:#fff;font-weight:300;font-size:24px;padding:0;margin:0;}#buyersintro .subtext{color:#b8b8b8;font-weight:300;font-size:14px;margin:10px auto 0 auto;}#buyersintro .subtext a{color:#b8b8b8;}#buyersintro .subtext a:hover{color:#fbc342;}.buyers{padding:80px 0;border-bottom:1px solid #dbdbdb;}.buyers .features{overflow:hidden;margin:80px 0 0 0;}.buyers .features .feature{width:calc(33.33% - 80px);margin-right:120px;float:left;text-align:left;margin-bottom:40px;position:relative;padding-left:50px;}.buyers .features .feature:nth-child(3n){margin-right:0;}.buyers .features .feature:nth-child(4),.buyers .features .feature:nth-child(5),.buyers .features .feature:nth-child(6){margin-bottom:0;}.buyers .features .feature .icon{width:30px;height:30px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-108px -115px;cursor:pointer;position:absolute;left:0;top:0;}.buyers .features .feature h4{color:#524e4e;font-weight:700;font-size:18px;margin-bottom:10px;}.buyers .features .feature p{color:#5c5d5d;font-weight:400;font-size:16px;line-height:1.5;margin:0;padding:0;}.buyers .algorithms{overflow:hidden;margin:80px 0 0 0;}.buyers .algorithms .algorithm{width:calc(20% - 24px);margin-right:30px;float:left;text-align:left;margin-bottom:30px;position:relative;text-align:center;border:2px solid #fac341;border-radius:4px;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:20px 10px;height:90px;text-decoration:none;}.buyers .algorithms .algorithm:nth-child(5n){margin-right:0;}.buyers .algorithms .algorithm h4{color:#3a3939;font-weight:700;font-size:14px;margin-bottom:5px;text-decoration:none;}.buyers .algorithms .algorithm p{color:#959595;font-weight:400;font-size:12px;line-height:1.3;margin:0;padding:0;text-decoration:none;text-align:center;}.buyers .algorithms .hide{display:none;}.buyers .algorithms .button_big{clear:both;float:none;display:table;margin:0 auto;}.buyers .steps{overflow:hidden;margin:80px 0 0 0;}.buyers .steps .step{width:calc(25% - 60px);margin-right:80px;float:left;text-align:center;margin-bottom:80px;position:relative;}.buyers .steps .step:nth-child(4n){margin-right:0;}.buyers .steps .step .icon{width:250px;height:175px;background:url("../images/web/howto_icons.svg") no-repeat;background-size:1000px 750px;margin:0 auto;}.buyers .steps .step:nth-child(1) .icon{background-size:1000px 750px;background-position:-8px -53px;}.buyers .steps .step:nth-child(2) .icon{background-size:1000px 750px;background-position:-260px -50px;}.buyers .steps .step:nth-child(3) .icon{background-size:1000px 750px;background-position:-508px -50px;}.buyers .steps .step:nth-child(4) .icon{background-size:1000px 750px;background-position:-752px -55px;}.buyers .steps .step p{color:#3a3939;font-weight:700;font-size:16px;line-height:1.3;text-align:center;}.buyers .steps .step p a{font-weight:400;color:#128ede;}.buyers .steps .step p a:hover{color:#fbc342;}.buyers .offers{overflow:hidden;margin:80px auto 0 auto;width:80%;}.buyers .offers .col_3{margin-bottom:20px;}.buyers .offers .col_3 .price_header{background:#fbc342;border-radius:10px 10px 0 0;display:table;width:100%;margin:0;color:#fff;}.buyers .offers .col_3.sha256 .price_header{background:#fbc342;}.buyers .offers .col_3.daggerhashimoto .price_header{background:#7c7aa5;}.buyers .offers .col_3.cryptonight .price_header{background:#fb7116;}.buyers .offers .col_3.equihash .price_header{background:#1a93d2;}.buyers .offers .col_3.lyra2rev2 .price_header{background:#46933a;}.buyers .offers .col_3 .price_header .title{font-size:10px;letter-spacing:10px;text-transform:uppercase;font-weight:400;padding:12px 0 12px 0;border-bottom:1px solid rgba(255,255,255,0.3);}.buyers .offers .col_3 .price_header .price{font-size:36px;font-weight:700;padding:20px 0 5px 0;}.buyers .offers .col_3 .price_header .price small{font-size:20px;color:#fff;}.buyers .offers .col_3 .price_header .time{font-size:14px;padding:0 0 20px 0;}.buyers .offers .col_3 .price_body{background:#3a3939;display:table;width:100%;margin:0;color:#fff;padding:20px 0;}.buyers .offers .col_3 .price_body p{font-size:14px;padding:0;margin:0;text-align:center;}.buyers .offers .col_3 .price_body .price{font-size:36px;font-weight:700;margin:5px 0;}.buyers .offers .col_3 .price_result{background:#f8f8f8;border-radius:0 0 10px 10px;display:table;width:100%;margin:0;padding:30px 0;}.buyers .offers .col_3 .price_result p{font-size:12px;padding:0;margin:0;}.buyers .offers .col_3 .price_result .price{font-size:24px;font-weight:700;margin:5px 0;}.buyers .offers .col_3 .price_result a{background:#fbc342;font-weight:700;color:#fff;padding:10px 15px;margin:0 auto;text-decoration:none;border-radius:3px;font-size:14px;}.buyers .offers .col_3 .price_result a:hover{opacity:0.8;}.buyers .offers .col_3.sha256 .price_result a{background:#fbc342;}.buyers .offers .col_3.daggerhashimoto .price_result a{background:#7c7aa5;}.buyers .offers .col_3.cryptonight .price_result a{background:#fb7116;}.buyers .offers .col_3.equihash .price_result a{background:#1a93d2;}.buyers .offers .col_3.lyra2rev2 .price_result a{background:#46933a;}.buyers small{color:#959595;}.buyers_cta{background:#15aabc;min-height:90px;text-align:left;}.buyers_cta .frame{position:relative;}.buyers_cta .icon{width:110px;height:150px;background:url("../images/web/sprite.png") no-repeat;background-position:0px 0px;position:absolute;left:0;bottom:-20px;}.buyers_cta .title{margin:0 278px 0 150px;font-weight:700;font-size:22px;padding:20px 0 0 0;color:#fff;}.buyers_cta .title small{font-size:16px;font-weight:400;padding:5px 0 20px 0;line-height:1.3;display:block;}.buyers_cta .button_register{background:#015d77;color:#fff;font-size:16px;font-weight:700;padding:14px 26px;border-radius:3px;text-decoration:none;margin:0 0 0 40px;text-transform:uppercase;position:absolute;right:0;top:22px;}.buyers_cta .button_register:hover{background:#fbc342;}#sellersintro{padding:80px 0;background:#fcfcfc url("../images/web/background_sellers.jpg") no-repeat center center;background-size:cover;text-align:center;border-bottom:1px solid #dbdbdb;}#sellersintro h1{color:#524e4e;font-weight:700;font-size:42px;padding:0;margin:0 0 20px 0;}#sellersintro h2{color:#524e4e;font-weight:300;font-size:24px;padding:0;margin:0;}#sellersintro .button_outlined_big{color:#524e4e;border-color:#524e4e;text-transform:none;margin:40px 10px 0 10px;}#sellersintro .button_outlined_big small{font-weight:400;font-size:14px;display:table;margin-bottom:5px;margin-left:auto;margin-right:auto;}#sellersintro .button_outlined_big:hover{background:#524e4e;border-color:#524e4e;color:#fff;}.sellers{padding:80px 0;border-bottom:1px solid #dbdbdb;}.sellers.assistence{background:#e8f3f9;padding:60px 0 20px 0;margin:80px 0 0 0;}.sellers p{font-size:18px;line-height:1.3;text-align:center;}.sellers .counter{margin:0 auto;text-align:center;}.sellers .counter p{font-size:18px;margin:0;padding:0;text-align:center;}.sellers .counter p a{color:#524e4e;}.sellers .counter p a:hover{color:#fbc342;}.counter-wrapper{position:relative;margin:40px auto 40px auto;display:table;padding-right:80px;}.counter-wrapper ul#myCounter{margin:0;padding:0;}.flip-counter{position:relative;list-style-type:none;margin:0 auto;}.flip-counter li{float:right;}.no-csstransforms3d span.back{display:none;}.flip-counter.default .digit{position:relative;z-index:0;width:50px;height:60px;margin-left:10px;background-color:#fff;text-align:center;line-height:0;-webkit-box-shadow:1px 1px 5px 0px rgba(232,241,255,0.5);-moz-box-shadow:1px 1px 5px 0px rgba(232,241,255,0.5);box-shadow:1px 1px 5px 0px rgba(232,241,255,0.5);-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;border:1px solid #e1e1e1;}.flip-counter.default .digit:last-child{margin-left:0;}.flip-counter.default .digit span{position:absolute;left:0;height:29px;width:48px;overflow:hidden;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;font-size:30px;font-family:sans-serif;font-weight:600;text-indent:2px;background-color:#fff;color:#262625;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flip-counter.default .digit span.front{top:0;padding-top:29px;border-radius:8px 8px 0 0;}.flip-counter.default .digit span.back{bottom:0;border-radius:0 0 8px 8px;}.flip-counter.default .digit .line{position:absolute;z-index:10;height:29px;width:48px;}.flip-counter.default .digit .hinge-wrap{z-index:5;position:relative;overflow:visible;-webkit-perspective:300px;-moz-perspective:300px;-ms-perspective:300px;perspective:300px;}.flip-counter.default .digit .hinge{position:absolute;height:29px;width:48px;-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;-webkit-transition:-webkit-transform 0.3s ease-in;-moz-transition:-moz-transform 0.3s ease-in;transition:transform 0.3s ease-in;-webkit-transform-origin:50% 100%;-moz-transform-origin:50% 100%;-ms-transform-origin:50% 100%;-o-transform-origin:50% 100%;transform-origin:50% 100%;}.flip-counter.default .digit .hinge span{height:0;z-index:5;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;}.flip-counter.default .digit .hinge span.front{padding-top:29px;}.flip-counter.default .digit .hinge span.back{height:29px;-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-ms-transform:rotateX(180deg);-o-transform:rotateX(180deg);transform:rotateX(180deg);}.flip-counter.default .digit.animate .hinge{-webkit-transform:rotateX(-180deg);-moz-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);-o-transform:rotateX(-180deg);transform:rotateX(-180deg);}.flip-counter.default .digit-delimiter{padding-top:29px;margin:0 2px 0 15px;font-family:sans-serif;font-weight:600;font-size:30px;color:#262625;}.digit-currency{position:absolute;top:16px;right:0;padding:0;font-family:sans-serif;font-weight:600;font-size:30px;color:#262625;display:inline-table;}.sellers .features{overflow:hidden;margin:80px 0 0 0;}.sellers .features .feature{width:calc(33.33% - 20px);margin-right:30px;float:left;text-align:left;margin-bottom:0;position:relative;padding-left:40px;}.sellers .features .feature:nth-child(3n){margin-right:0;}.sellers .features .feature .icon{width:30px;height:30px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;cursor:pointer;position:absolute;left:0;top:0;}.sellers .features .feature:nth-child(1) .icon{background-position:-157px -113px;}.sellers .features .feature:nth-child(2) .icon{background-position:-199px -116px;}.sellers .features .feature:nth-child(3) .icon{background-position:-239px -115px;}.sellers .features .feature h4{color:#524e4e;font-weight:700;font-size:18px;margin:5px 0 10px 0;}.sellers .features .feature ul{margin:20px 0 0 18px;padding:0;}.sellers .features .feature ul li{list-style-image:url("../images/web/li1.gif");color:#5c5d5d;font-weight:400;font-size:16px;line-height:1.5;margin:0 0 10px 0;padding:0 0 0 5px;}.sellers .steps{overflow:hidden;margin:80px 0 0 0;}.sellers .steps .step{width:calc(33.33% - 80px);margin-right:120px;float:left;text-align:center;margin-bottom:30px;position:relative;}.sellers .steps .step:nth-child(3n){margin-right:0;}.sellers .steps .step .icon{width:250px;height:180px;background:url("../images/web/howto_icons.svg") no-repeat;background-size:1000px 750px;margin:0 auto;}.sellers .steps .step:nth-child(1) .icon{background-position:-743px -58px;}.sellers .steps .step:nth-child(2) .icon{background-position:-3px -300px;}.sellers .steps .step:nth-child(3) .icon{background-position:0px -58px;}.sellers .steps .step h4{color:#3a3939;font-weight:700;font-size:16px;line-height:1;}.sellers .steps .step p{color:#3a3939;font-weight:400;font-size:14px;line-height:1.3;}.sellers .steps .step p a{font-weight:400;color:#128ede;}.sellers .steps .step p a:hover{color:#fbc342;}.sellers .button_big.support{margin-bottom:60px;background:#128ede;}.sellers_cta{border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:30px 20px;margin:60px auto 120px auto;width:700px;}.sellers_cta .frame{width:100%;margin:-46px 0 0 0;}.sellers_cta .frame h2{background:#fff;padding:0 20px;display:table;margin:0 auto 10px auto;}.sellers_cta .frame h3{margin-bottom:30px;}.sellers_cta .button_big{margin:0 10px;}.sellers_cta .button_big:nth-child(4){background:#fba342;}.sellers_cta .button_big:nth-child(5){background:#fb8842;}#intro.farm_mining{}.stratum_form{border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:30px;margin:60px auto 20px auto;width:auto;display:table;overflow:hidden;position:relative;}.stratum_form .algorithms{float:left;text-align:left;margin-right:20px;}.stratum_form .location{float:left;text-align:left;margin-right:20px;}.stratum_form .button_big{float:left;text-align:left;padding:13px 15px;margin-top:26px;}.stratum_form label{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;}.stratum_form .select{clear:both;display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;}.stratum_form .select select{border:0;color:#524e4e;background-color:#fff;font-size:16px;font-weight:400;padding-right:10px;}.stratum_form .select select option{background-color:#fff;}a.help_link:link,a.help_link:visited,a.help_link:active{color:#128ede;}a.help_link:hover,a.help_link:visited:hover{color:#fbc342;}.map{width:auto;max-width:700px;height:auto;margin:0 auto;position:relative;}.map .loc{width:40px;height:40px;cursor:pointer;position:absolute;}.map #eu{top:170px;left:353px;}.map #usa{top:190px;left:128px;}.map #jp{top:198px;right:120px;}.map #hk{top:232px;right:148px;}.map #in{top:249px;right:222px;}.map #br{top:294px;left:249px;}#stratum_server{background:#adacac;color:#fff;font-weight:700;padding:30px;border-radius:3px;margin:40px auto 0 auto;display:none;}.contact_box{border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:40px 40px;margin:60px auto 120px auto;width:400px;}.contact_box .frame{width:auto;margin:-56px 0 0 0;}.contact_box .frame h2{background:#fff;padding:0 20px;display:table;margin:0 auto 30px auto;}.contact_box label{font-size:16px;font-weight:400;color:#524e4e;text-align:left;float:left;margin-bottom:5px;}.contact_box label.req{font-size:12px;font-weight:700;color:#e2e2e2;float:right;text-transform:uppercase;letter-spacing:1px;}.contact_box input[type=text]{clear:both;display:table;width:100%;border:1px solid #dbdbdb;border-radius:1px;padding:10px 10px;color:#524e4e;margin-bottom:20px;font-size:16px;font-weight:400;}.contact_box input[type=text]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}.contact_box textarea{clear:both;display:table;width:100%;border:1px solid #dbdbdb;border-radius:1px;padding:10px 10px;color:#524e4e;margin-bottom:20px;font-size:16px;font-weight:400;resize:vertical;height:250px;}.contact_box textarea:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}.contact_box .button_big{margin:0 auto 0 auto;display:block;clear:both;}.pricing{margin:60px auto 0 auto;overflow:hidden;}.pricing .element{width:calc(33.33% - 20px);margin-right:30px;float:left;margin-bottom:30px;}.pricing .element:last-child{margin-right:0;}.pricing .element h4{color:#38454b;font-size:18px;margin:0 0 10px 0;text-align:center;padding:0;text-decoration:none;}.pricing .element h4 a{color:#38454b;text-decoration:none;}.pricing .element h4 a:hover{color:#fbc342;}.pricing .element .image{border-radius:5px;background:#697377;color:#fff;font-weight:700;font-size:28px;padding:60px 0;text-align:center;width:250px;margin:0 auto;display:table;text-decoration:none;}.pricing .element .image:hover{opacity:0.8;}.pricing .element .image small{font-weight:400;font-size:16px;}.pricing .element .image.asic{background:url("../images/web/asic.jpg") no-repeat center center;}.asic_cta{margin:80px 0;}.asic_cta .button_big{margin:40px 20px 0 20px;}.recommended{overflow:hidden;margin:60px 0 0 0;text-align:left;}.recommended .nhm_image{border-radius:5px;box-shadow:0px 0px 20px rgba(0,0,0,0.1);margin:20px 10px 20px auto;line-height:0;font-size:0;padding:0;max-width:500px;}.recommended .nhm_image img{width:100%;border-radius:5px;}.recommended .col_2.content{margin:30px 0 0 0;padding-left:10px;}.recommended .col_2.content h3{text-align:left;font-size:32px;font-weight:300;color:#1f1f1f;}.recommended .col_2.content h4{text-align:left;font-size:20px;font-weight:300;color:#595959;}.recommended .col_2.content ul{margin:40px 0 0 25px;padding:0;}.recommended .col_2.content ul li{list-style-image:url("../images/web/li3.gif");font-size:18px;margin-bottom:30px;line-height:1.3;}.recommended .col_2.content .button_big{margin:20px auto 0 auto;}.recommended .col_2.content .button_outlined_big{font-size:18px;color:#524e4e;font-weight:700;padding:12px 37px;border-radius:4px;border:3px solid #524e4e;text-transform:none;margin:20px 0 0 10px;cursor:pointer;}.recommended .col_2.content .button_outlined_big:hover{background:#524e4e;border-color:#524e4e;color:#fff;}.supported{overflow:hidden;margin:60px 0 0 0;text-align:center;}.software{border:0;background:#fff;}.software h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 40px 0;}.software h2{margin-top:60px;}.software h3{margin-bottom:60px;}.software p{color:#3a3939;font-weight:400;font-size:18px;line-height:1.5;text-align:center;margin:0 15% 40px 15%;}.software .col_3{margin:0 0 80px 0;}.software .col_3 .icon{width:150px;height:150px;border-radius:100px;background:#fff url("../images/web/sprite.svg") no-repeat;background-position:-0px -0px;background-size:800px 800px;border:3px solid #f3f3f3;margin:0 auto 20px auto;}.software .col_3 .nhm{background-position:-120px -250px;}.software .col_3 .eth{background-position:1px -250px;}.software .col_3 .zec{background-position:-255px -250px;}.software .col_3 .amd{background-position:-392px -250px;}.software .col_3 .nvidia{background-position:-542px -250px;}.software .col_3 .asic{background-position:0px -433px;}.software .col_3 h2{color:#3a3939;font-weight:700;font-size:20px;padding:0;margin:0 0 5px 0;}.software .col_3 h3{color:#3a3939;font-weight:400;font-size:16px;padding:0;margin:0 0 20px 0;}.software .col_3 p{color:#3a3939;font-weight:400;font-size:16px;padding:0;margin:0 0 10px 0;}.software .col_3 .button_download{font-size:16px;color:#fff;font-weight:700;text-decoration:none;background:#fbc342;padding:12px 20px;border-radius:4px;display:inline-table;cursor:pointer;border:0;margin:0 5px 0 0;}.software .col_3 .button_download:hover{opacity:0.8;}.software .col_3 .button_instructions{font-size:16px;color:#212020;font-weight:700;text-decoration:none;background:transparent;padding:9px 17px;border-radius:4px;display:inline-table;border:3px solid #212020;margin:0 0 0 5px;cursor:pointer;}.software .col_3 .button_instructions:hover{background:#212020;border-color:#212020;color:#fff;}#intro.help{padding:80px 0;background:#3a93d0 url("../images/web/patternHelp.png?v=1") repeat;text-align:center;border-bottom:0;margin:-1px 0 0 0;}#intro.help h1{color:#fff;font-weight:700;font-size:42px;padding:0;margin:0 0 20px 0;text-align:center;}#intro.help h2{color:#fff;font-weight:300;font-size:24px;padding:0;margin:0;text-align:center;}#intro.help .search{margin:68px auto 0 auto;width:auto;text-align:left;display:table;}#intro.help .search input[type=text]{width:400px;border-radius:2px;padding:14px;background:#fff;border:0;font-size:16px;color:#212020;display:inline-block;}#intro.help .search .button_big{background:#04436c;border-radius:3px;display:table;padding:13px 25px;display:inline-block;margin-left:10px;}#intro.help .search small{display:block;color:#d8e3eb;margin:5px 0 0 0;text-align:left;}#intro.help .search small a{color:#d8e3eb;text-decoration:underline;}#intro.help .search small a:hover{color:#fbc342;text-decoration:underline;}#intro.help_small{padding:20px 0 20px 0;background:#3a93d0 url("../images/web/patternHelp.png?v=1") repeat;text-align:left;border-bottom:0;margin:-1px 0 0 0;}#intro.help_small .search{margin:0 auto 0 auto;width:100%;text-align:left;display:table;}#intro.help_small .search input[type=text]{width:400px;border-radius:3px;padding:14px;background:#fff;border:0;font-size:16px;color:#212020;display:inline-block;}#intro.help_small .search .button_big{background:#04436c;border-radius:3px;display:table;padding:15px 25px;display:inline-block;margin-left:10px;}.breadcrumbs{margin:20px auto 20px auto;font-size:12px;color:#9b9b9b;text-align:left;line-height:1.5;}.breadcrumbs a:link,.breadcrumbs a:active,.breadcrumbs a:visited{color:#128ede;text-decoration:underline;}.breadcrumbs a:hover,.breadcrumbs a:visited:hover{color:#fbc342;text-decoration:underline;}.help{padding:0 0 40px 0;overflow:hidden;}.help h2{text-align:left;margin-bottom:30px;}.help p{color:#3a3939;font-weight:400;font-size:16px;padding:0;text-align:left;line-height:1.3;float:left;margin:20px 0 0 0;}.help p small{color:#959595;}.help a.button_big{border-radius:100px;background:#128ede;padding:15px 25px;float:left;margin:15px 0 0 30px;}.help h3{color:#3a3939;font-size:16px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:0 0 30px 0;text-align:left;}.help ul{text-align:left;list-style:none;margin:0;padding:0 0 40px 0;-webkit-column-count:2;-moz-column-count:2;column-count:2;border-bottom:1px solid #dbdbdb;}.help ul li{padding-bottom:15px;line-height:1.15;font-size:14px;}.help ul li a:link,.help ul li a:visited,.help ul li a:active{color:#128ede;text-decoration:none;}.help ul li a:hover,.help ul li a:visited:hover{color:#fbc342;text-decoration:underline;}.help .help_box{background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);padding:30px;margin-bottom:20px;}.help .help_box:nth-child(2n+1){margin-right:0;}.help .help_box ul{border-bottom:0;text-align:left;list-style:none;margin:0;padding:0;-webkit-column-count:2;-moz-column-count:2;column-count:2;}.help .help_box ul li{margin-bottom:8px;padding-bottom:0;line-height:1.3;font-size:14px;display:table;}.help .help_box ul li a:link,.help .help_box ul li a:visited,.help .help_box ul li a:active{color:#128ede;text-decoration:none;}.help .help_box ul li a:hover,.help .help_box ul li a:visited:hover{color:#fbc342;text-decoration:underline;}.help .help_box ul li:last-child{padding-bottom:0;}.help .col_3{border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);transition-duration:300ms;}.help .col_3:hover{box-shadow:0px 0px 10px rgba(0,0,0,0.1);transition-duration:300ms;}.help .col_3 h3{font-size:24px;font-weight:700;padding:30px 30px 0 30px;color:#3a3939;text-transform:none;margin:0 auto;letter-spacing:0;text-align:center;}.help .col_3 h4{font-size:14px;font-weight:400;margin:5px 0 30px 0;border-bottom:1px solid #dbdbdb;padding:0 30px 30px 30px;}.help .col_3 ul{list-style:none;margin:0 30px 10px 30px;padding:0;-webkit-column-count:1;-moz-column-count:1;column-count:1;border-bottom:0;text-align:center;}.help .col_3 ul li{padding-bottom:20px;line-height:1.3;font-size:14px;}.help .col_3 ul li a:link,.help .col_3 ul li a:visited,.help .col_3 ul li a:active{color:#128ede;text-decoration:none;}.help .col_3 ul li a:hover,.help .col_3 ul li a:visited:hover{color:#fbc342;text-decoration:underline;}.help .col_3 ul li:last-child a:link,.help .col_3 ul li:last-child a:visited,.help .col_3 ul li:last-child a:active{color:#fff;font-weight:700;padding:9px 25px 9px 25px;background:#128ede;border-radius:100px;margin:5px auto 0 auto;display:table;}.help .col_3 ul li:last-child a:hover,.help .col_3 ul li:last-child a:visited:hover{opacity:0.8;text-decoration:none;}.help .left{width:300px;float:left;}.help .left h3{margin-top:0;}.help .left ul{-webkit-column-count:1;-moz-column-count:1;column-count:1;padding-bottom:20px;margin-bottom:30px;}.help .left ul:last-child{border-bottom:0;padding-bottom:0;}.help .left ul li a.selected:link,.help .left ul li a.selected:visited,.hel .left p ul li a.selected:active{color:#fba342;text-decoration:none;}.help .left ul li a.selected:hover,.help .left ul li a.selected:visited:hover{color:#fbc342;text-decoration:underline;}.help .left .support{}.help .left .support h2{margin-bottom:0;color:#3a3939;font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;;}.help .left .support p{color:#3a3939;font-weight:400;font-size:14px;padding:0;text-align:left;line-height:1.3;float:none;margin:20px 0 0 0;}.help .left .support a.button_big{border-radius:100px;background:#128ede;padding:13px 22px;margin:15px 0 0 0;display:table;float:none;color:#fff;font-size:14px;}.help .left .support a.button_big:hover{text-decoration:none;}.help .right{width:calc(100% - 330px);float:right;}.help .right h1{color:#3a3939;text-align:left;line-height:1.15;margin:0 0 40px 0;font-size:36px;}.help .right h2{color:#3a3939;margin:0 0 20px 0;font-size:24px;line-height:1.3;}.help .right h3{color:#3a3939;font-size:18px;font-weight:700;letter-spacing:0;text-transform:none;margin:0 0 20px 0;text-align:left;line-height:1.3;}.help .right p{color:#3a3939;font-weight:400;font-size:16px;padding:0;text-align:justify;line-height:1.5;margin:0 0 20px 0;float:none;}.help .right blockquote{color:#3a3939;font-weight:400;font-size:16px;padding:0;text-align:justify;line-height:1.5;margin:0 0 20px 40px;float:none;}.help .right ol{color:#3a3939;font-weight:400;font-size:16px;padding:0;text-align:left;line-height:1.3;margin:0 0 20px 40px;float:none;}.help .right ol li{margin-bottom:20px;font-size:16px;line-height:1.5;}.help .right ul{color:#3a3939;font-weight:400;font-size:16px;padding:0;text-align:left;line-height:1.3;margin:0 0 20px 40px;float:none;-webkit-column-count:1;-moz-column-count:1;column-count:1;list-style:circle;border:0;}.help .right ul li{margin-bottom:0;font-size:16px;line-height:1.5;padding-bottom:10px;}.help .right a:link,.help .right a:visited,.help .right a:active{color:#128ede;text-decoration:none;}.help .right a:hover,.help .right a:visited:hover{color:#fbc342;text-decoration:underline;}.help .right img{width:auto;max-width:100%;height:auto;border-radius:2px;;margin:0 auto;}.help .right p code{margin:0 0 20px 0;display:table;background:#f5f5f5;display:block;padding:20px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.help .right pre{text-align:left;}.help .right pre code{margin:0 0 20px 0;display:table;background:#f5f5f5;display:block;padding:20px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.help .right ul li code{margin:0 0 0 0;display:table;background:#f5f5f5;display:block;padding:20px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.help .right ol li code{margin:0 0 0 0;display:table;background:#f5f5f5;display:block;padding:20px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.help .right table{margin:0 0px 20px 0;clear:both;width:100%;border-collapse:separate;border-spacing:0 0;clear:both;border:1px solid #dbdbdb;box-shadow:2px 2px 3px rgba(0,0,0,0.05);border-radius:5px;text-align:left;float:none;}.help .right table tr{background:transparent;}.help .right table tr:nth-child(2n+1){background:transparent;}.help .right table tr:first-child{border-radius:5px 5px 0 0;border-bottom:1px solid #dbdbdb;}.help .right table tr:last-child{border-radius:0 0 5px 5px;}.help .right table tr th{background:transparent;font-size:10px;font-weight:normal;color:#959595;letter-spacing:1px;text-transform:uppercase;padding:15px 15px;border-bottom:1px solid #dbdbdb;text-align:left;}.help .right table tr th:first-child{border-radius:5px 0 0 0;text-align:left;}.help .right table tr th:last-child{border-radius:0 5px 0 0;text-align:left;}.help .right table tr td{padding:15px 15px;font-size:14px;color:#524e4e;font-weight:normal;background:transparent;vertical-align:middle;border-bottom:1px solid #dbdbdb;text-align:left;}.help .right table tr td a:link,.help .right table tr td a:visited,.help .right table tr td a:active{color:#524e4e;text-decoration:none;}.help .right table tr td a:hover{color:#fbc342;text-decoration:none;}.help .right table tr td small{display:block;font-size:12px;font-weight:normal;color:#959595;margin-top:5px;}.help .right table a:link,.help .right table a:visited,.help .right table a:active{color:#128ede;}.help .right table a:hover,.help .right table a:visited:hover{color:#fbc342;}.help .right table tr td a.button:link,.help .right table tr td a.button:active,.help .right table tr td a.button:visited{background:#68b641;border-radius:3px;font-weight:700;color:#fff;text-transform:uppercase;font-size:12px;text-decoration:none;padding:8px 15px;}.help .right table tr td .button:hover{color:#fff;opacity:0.75;}.help .right table tr:last-child td{border-bottom:none;}.help .right textarea{height:400px;}.help ul.search_results{text-align:left;list-style:none;margin:30px 0 0 0;padding:0 0 20px 0;-webkit-column-count:1;-moz-column-count:1;column-count:1;border-bottom:1px solid #dbdbdb;width:100%;}.help ul.search_results li{padding-bottom:10px;line-height:1.3;font-size:14px;display:table;width:100%;margin-bottom:10px;}.help ul.search_results li a:link,.help ul li a:visited,.help ul li a:active{color:#128ede;text-decoration:none;}.help ul.search_results li a:hover,.help ul li a:visited:hover{color:#fbc342;text-decoration:underline;}@media (max-width: 1200px) {.buyers .features .feature{width:calc(33.33% - 20px);margin-right:30px;}.buyers .steps .step{width:calc(50% - 15px);margin-right:30px;}.buyers .steps .step:nth-child(2n){margin-right:0;}#sellersintro .button_outlined_big{padding:15px 25px;font-size:20px;}.sellers .features .feature{width:calc(33.33% - 20px);margin-right:30px;}.sellers .steps .step{width:calc(33% - 20px);margin-right:30px;}.recommended .nhm_image{margin:20px 20px 0 20px;width:auto;}}@media (max-width: 1000px) {.buyers .offers{width:100%;}.buyers .algorithms .algorithm{width:calc(33.33% - 20px);}.buyers .algorithms .algorithm:nth-child(5n){margin-right:30px;}.buyers .algorithms .algorithm:nth-child(3n){margin-right:0;}.sellers .features .feature{padding-left:0;}.sellers .features .feature h4{padding-left:40px;}.pricing .element{width:auto;float:none;margin-right:0;}.pricing .element:nth-child(n){margin-right:0;}.recommended .col_2.content h3{font-size:30px;}.recommended .col_2.content h4{font-size:18px;}.recommended .col_2.content ul li{font-size:16px;margin-bottom:20px;}.recommended .col_2.content .button_big{padding:15px 25px;}.recommended .col_2.content .button_outlined_big{padding:12px 25px;}.software .col_3{width:calc(50% - 15px);margin-right:30px;}.software .col_3:nth-child(2n){margin-right:0;}#intro.help{padding:40px 0;}#intro.help .search{margin:40px auto 0;}.help .col_3{width:100%;margin-right:0;margin-bottom:30px;}.help .col_3:nth-child{margin-right:0;}.help .col_3 ul li{height:auto;}}@media (max-width: 760px) {#intro h1{font-size:30px;}#intro h2{font-size:18px;}#buyersintro{padding:60px 0;}#buyersintro h1{font-size:34px;}#buyersintro h2{font-size:20px;}#buyersintro .button_outlined_big{padding:18px 35px;font-size:20px;}.buyers{padding:60px 0;}.buyers .features{margin-top:40px;}.buyers .features .feature{width:calc(50% - 15px);margin-right:30px;}.buyers .features .feature:nth-child(3n){margin-right:30px;}.buyers .features .feature:nth-child(2n){margin-right:0;}.buyers .offers{width:100%;max-width:300px;margin-top:40px;}.buyers .offers .col_3{float:none;width:100%;margin:0 0 60px 0;}.buyers .algorithms{margin-top:40px;}.buyers .algorithms .algorithm{width:calc(50% - 15px);}.buyers .algorithms .algorithm:nth-child(5n){margin-right:30px;}.buyers .algorithms .algorithm:nth-child(3n){margin-right:30px;}.buyers .algorithms .algorithm:nth-child(2n){margin-right:0;}.buyers .steps{margin-top:40px;}.buyers .steps .step{width:100%;margin-right:0;margin-bottom:40px;}.buyers .steps .step:nth-child(n){margin-right:0;}.buyers_cta{padding-bottom:1px;}.buyers_cta .icon{top:-20px;bottom:auto;}.buyers_cta .title{margin:0 20px 5px 140px;}.buyers_cta .title small{padding-bottom:0;}.buyers_cta .button_register{position:relative;margin:20px 0 20px 140px;display:table;top:0;}#sellersintro{padding:60px 0;}#sellersintro h1{font-size:34px;}#sellersintro h2{font-size:20px;margin-bottom:40px;}#sellersintro .button_outlined_big{display:table;margin:20px auto 0 auto;padding:18px 50px;}.sellers{padding:60px 0;}.sellers p{line-height:1.3;}.sellers .features{margin-top:60px;}.sellers .features .feature{width:50%;float:none;margin:0 auto 40px auto;}.sellers .features .feature:nth-child(n){margin-right:auto;}.sellers .features .feature:last-child{margin-bottom:0;}.sellers .features .feature h4{padding-top:5px;}.sellers .features .feature ul li{margin:0 0 0 0;}.sellers .steps{margin-top:40px;}.sellers .steps .step{width:100%;float:none;margin-bottom:40px;}.sellers .steps .step:nth-child(n){margin-right:0;}.stratum_form .algorithms{float:left;width:calc(50% - 15px);margin:0;}.stratum_form .location{float:right;width:calc(50% - 15px);margin:0;}.stratum_form .select select{width:100%;}.stratum_form .button_big{float:none;width:100%;text-align:center;}.sellers .frame .map img{width:100%;}.contact_box{width:calc(100% - 60px);margin-bottom:30px;}.map{display:none;}#stratum_server{width:100%;margin:40px 0 0 0;padding:25px 15px;font-size:14px;word-break:break-all;}.pricing{}.counter-wrapper{position:relative;margin:20px auto 20px auto;display:table;padding-right:40px;}.flip-counter.default .digit{width:24px;height:36px;margin-left:3px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:1px 1px 3px 0px rgba(232,241,255,0.5);-moz-box-shadow:1px 1px 3px 0px rgba(232,241,255,0.5);box-shadow:1px 1px 5px 0px rgba(232,241,255,0.5);}.flip-counter.default .digit span{height:17px;width:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;font-size:16px;}.flip-counter.default .digit span.front{padding-top:17px;border-radius:4px 4px 0 0;}.flip-counter.default .digit span.back{border-radius:0 0 4px 4px;}.flip-counter.default .digit .line{height:17px;width:20px;}.flip-counter.default .digit .hinge{height:17px;width:20px;}.flip-counter.default .digit .hinge span.front{padding-top:17px;}.flip-counter.default .digit .hinge span.back{height:17px;}.flip-counter.default .digit-delimiter{padding-top:10px;margin:0 0 0 3px;font-size:16px;}.digit-currency{top:12px;font-size:14px;}.sellers_cta{margin:40px auto 60px auto;width:auto;max-width:450px;padding:30px;}.sellers_cta .button_big{display:block;float:none;margin:0 auto 20px auto;}.sellers_cta .button_big:last-child{margin-bottom:0;}.recommended{margin:30px 0 0 0;}.frame .recommended .col_2{width:100%;float:none;text-align:center;margin:0 auto;}.recommended .nhm_image{margin:10px auto 40px auto;box-shadow:0 0 10px rgba(0,0,0,0.1);}.recommended .col_2.content h3{display:table;margin:0 auto;}.recommended .col_2.content h4{display:table;margin:0 auto;}.recommended .col_2.content ul{text-align:center;margin:40px auto 20px auto;display:table;}.software .col_3{width:100%;margin-right:0;}.software .col_3:nth-child(n){margin-right:0;}.software .col_3 p{margin-bottom:20px;}#intro.help h1{font-size:30px;}#intro.help h2{font-size:18px;}#intro.help .search input[type="text"]{width:200px;}#intro.help .search .button_big{padding:13px 15px;}#intro.help_small .search input[type="text"]{width:60%;padding:10px 12px;}#intro.help_small .search .button_big{width:calc(40% - 20px);text-align:center;padding:10px 12px;}.help h2{font-size:18px;}.help p{font-size:14px;width:100%;}.help a.button_big{padding:13px 20px;font-size:16px;display:table;margin-left:0;}.help .right{float:none;width:100%;margin-left:0;margin-bottom:40px;padding-bottom:20px;border-bottom:1px solid #dbdbdb;}.help .left{float:none;width:100%;margin-right:0;}}@media (max-width: 500px) {.buyers .offers{width:100%;max-width:300px;}.buyers .features .feature{width:100%;margin-right:0;}.buyers .features .feature:nth-child(n){margin-right:0;margin-bottom:30px;}.buyers .algorithms .algorithm{width:100%;}.buyers .algorithms .algorithm:nth-child(n){margin-right:0;}.buyers_cta .icon{width:84px;height:114px;background-size:600px 600px;left:-20px;}.buyers_cta .title{margin:0 0px 0px 85px;}.buyers_cta .button_register{margin:20px 0 20px 0;width:100%;text-align:center;}.sellers .features .feature{width:100%;}.sellers_cta{margin:40px auto 30px auto;width:calc(100% - 50px);max-width:320px;}.sellers_cta .frame{min-width:100px;margin-top:-41px;}.sellers_cta .frame h2{font-size:18px;padding:0 15px;}.sellers_cta .frame h3{font-size:14px;}.stratum_form{width:100%;margin-top:30px;}.stratum_form .algorithms{float:none;width:100%;margin:0 0 10px 0;}.stratum_form .location{float:none;width:100%;margin:0;}.sellers .frame a.button_big{width:100%;float:none;margin-bottom:10px;}.sellers .frame a.button_big.support{margin-bottom:30px;}.contact_box{border:0;box-shadow:none;padding:0;margin-top:30px;}.contact_box .frame{margin-top:0;}.contact_box .button_big{width:100%;}.asic_cta{margin:30px auto 30px auto;}.asic_cta .button_big{width:100%;margin:20px auto 0 auto;}.recommended .nhm_image{margin:10px 10px 40px 10px;}.recommended .col_2.content ul{text-align:left;margin:40px 40px 20px 40px;}#intro.help .search input[type="text"]{width:100%;padding:11px;}#intro.help .search .button_big{width:100%;font-size:16px;padding:13px 15px 13px 15px;margin:10px 0 10px 0;}#intro.help_small .search input[type="text"]{width:50%;}#intro.help_small .search .button_big{width:calc(50% - 20px);text-align:center;}.help ul{-webkit-column-count:1;-moz-column-count:1;column-count:1;}}@media (max-width: 400px) {.recommended .col_2.content .button_big{float:none;display:block;margin:0 auto 10px auto;}.recommended .col_2.content .button_outlined_big{float:none;display:block;margin:0 auto 10px auto;}}.sticky{position:fixed;right:0;left:0;top:0;z-index:1001;border-top:0;background:#38454b;}.instructions{background:#38454b;margin:60px 0 0 0;}.instructions .menu{border-bottom:1px solid #4c585d;padding:30px 0;font-size:20px;font-weight:700;color:#fff;display:table;width:100%;}.instructions .menu a:link,.instructions .menu a:visited,.instructions .menu a:active{color:#fff;text-decoration:none;display:table-cell;width:inherit;}.instructions .menu a:hover,.instructions .menu a:visited:hover{color:#fbc342;}.instructions .segment{overflow:hidden;margin:0 0 60px 0;clear:both;padding:60px 0 0 0;}.instructions .segment:last-child{margin-bottom:0;}.instructions .segment .info{float:left;width:25%;text-align:left;}.instructions .segment .info a:link,.instructions .segment .info a:visited,.instructions .segment .info a:active{color:#fbc342;text-decoration:underline;}.instructions .segment .info h2{text-align:left;color:#fbc342;font-size:32px;font-weight:700;}.instructions .segment .info h3{text-align:left;color:#7d8b92;font-size:18px;font-weight:400;}.instructions .segment .info p{text-align:left;color:#fff;font-size:16px;font-weight:400;line-height:1.5;margin-top:30px;}.instructions .segment .content{float:right;width:70%;text-align:left;}.instructions .segment .content h3{text-align:left;color:#fff;font-size:30px;font-weight:700;margin:60px 0 30px 0;}.instructions .segment .content h3:first-child{margin-top:0;}.instructions .segment .content h4{text-align:left;color:#fff;font-size:20px;font-weight:700;line-height:1.5;margin:30px 0 30px 0;}.instructions .segment .content p{text-align:left;color:#fff;font-size:16px;font-weight:300;line-height:1.5;margin:0 0 30px 0;}.instructions .segment .content p.columns{-webkit-column-count:4;-moz-column-count:4;column-count:4;}.instructions .segment .content .important{font-weight:700;color:#fbc342;}.instructions .segment .content p b{font-weight:700;}.instructions .segment .content ul{text-align:left;color:#fff;font-size:16px;font-weight:300;line-height:1.5;margin:0 0 60px 20px;padding:0;}.instructions .segment .content ul li{margin-bottom:20px;}.instructions .segment .content ul li b{font-weight:700;color:#fbc342;}.instructions .segment .content a:link,.instructions .segment .content a:visited,.instructions .segment .content a:active{color:#fbc342;text-decoration:underline;}.instructions .segment .content code{margin:0 0 30px 0;display:table;background:#14191c;display:block;padding:30px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#9a9fa2;overflow-wrap:break-word;word-break:break-all;font-size:16px;overflow-x:auto;}.instructions .segment .content pre code{line-height:1.15;}.instructions .segment .content small{display:block;margin:0 0 30px 0;}@media (max-width: 1200px) {.instructions .menu .frame{width:100%;margin:0;}.instructions .menu .frame a{display:inline;margin:0 20px;}}@media (max-width: 1000px) {.instructions .menu{border-color:#8f9ba0;}.instructions .menu .frame a{font-size:16px;}.instructions .segment{margin-bottom:0;}.instructions .segment .info{float:none;width:100%;margin-bottom:30px;border-bottom:1px solid #4c585d;padding-bottom:30px;}.instructions .segment .content{float:none;width:100%;border-bottom:1px solid #8f9ba0;padding-bottom:60px;padding-top:0;}.instructions .segment .content code{font-size:14px;padding:15px;}.instructions .segment .content p.columns{-webkit-column-count:3;-moz-column-count:3;column-count:3;}.instructions .segment:last-child .content{border-bottom:0;padding-bottom:30px;}}@media (max-width: 760px) {.instructions .menu{display:none;}.instructions .segment .content code{font-size:12px;}.instructions .segment .content h3{font-size:24px;}.instructions .segment .content p.columns{-webkit-column-count:2;-moz-column-count:2;column-count:2;}}@media (max-width: 500px) {}@media (max-width: 400px) {}#registerintro{padding:60px 0 120px 0;background:#fcfcfc;border-bottom:1px solid #dbdbdb;text-align:center;}#registerintro h1{color:#524e4e;font-weight:100;font-size:56px;padding:0;margin:0 0 20px 0;}#register{background:#fff;border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:30px 40px;width:386px;margin:-80px auto 0 auto;text-align:left;}#register .error{font-weight:700;color:#eb4635;font-size:16px;padding-bottom:20px;margin:0 auto;text-align:center;display:table;}#register .error:empty{padding:0px;}#register .succ{font-weight:700;color:#68b641;font-size:16px;padding-bottom:20px;margin:0 auto;text-align:center;display:table;}#register .succ:empty{padding:0px;}#register .info{font-weight:700;color:#524e4e;font-size:16px;padding-bottom:20px;margin:0 auto;text-align:center;display:table;}#register .info:empty{padding:0px;}#register label{font-size:16px;font-weight:400;color:#524e4e;text-align:left;float:left;margin-bottom:5px;}#register label.req{font-size:12px;font-weight:700;color:#e2e2e2;float:right;text-transform:uppercase;letter-spacing:1px;}#register label.req.red{color:#e92424;}#register input[type=text]{clear:both;display:table;width:100%;border:1px solid #dbdbdb;border-radius:1px;padding:10px 10px;color:#524e4e;margin-bottom:20px;font-size:16px;font-weight:400;}#register input[type=text]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}#register input[type=password]{clear:both;display:table;width:100%;border:1px solid #dbdbdb;border-radius:1px;padding:10px 10px;color:#524e4e;margin-bottom:20px;font-size:16px;font-weight:400;}#register input[type=password]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}#register .checkbox{border:1px solid #dbdbdb;border-radius:1px;background:#fff;width:28px;height:28px;float:left;margin-bottom:20px;cursor:pointer;}#register .checkbox.active{background:#fff url("../images/web/sprite.png") no-repeat;background-position:-108px 3px;}#register .terms{font-size:12px;margin:7px 0 0 10px;float:left;}#register .terms a{color:#128ede;}#register .button_big{margin:0 auto 0 auto;display:table;clear:both;}#register .button_big:disabled{background-color:#ddd;background-image:url("../images/web/loading-white.gif");background-repeat:no-repeat;background-position:right 15px center;padding-right:35px;}#register .recaptcha{width:100%;margin-bottom:20px;}#register .recaptcha .g-recaptcha{width:auto;display:table;margin:0 auto;}#register .backtologin{cursor:pointer;}.register_subnote{width:386px;margin:10px auto 60px auto;font-size:12px;color:#524e4e;line-height:1.3;overflow:hidden;}.register_subnote a{color:#128ede;}.register_subnote a:hover{color:#fbc342;}.register_subnote .left{float:left;}.register_subnote .right{float:right;}@media (max-width: 760px) {#registerintro{background:transparent;border:0;padding:30px 0 0 0;}#registerintro h1{font-size:36px;}#register{margin:30px 30px 20px 30px;width:auto;}.register_subnote{width:calc(100% - 60px);margin:10px 30px 60px 30px;}}@media (max-width: 500px) {#registerintro h1{font-size:20px;font-weight:700;border-bottom:1px solid #dbdbdb;padding-bottom:30px;}#register{padding:0;margin:30px 30px 20px 30px;border:0;box-shadow:none;}#register .button_big{width:100%;text-align:center;}.register_subnote{margin-bottom:30px;}.register_subnote .left{float:none;}.register_subnote .right{float:none;margin-top:10px;}#register .recaptcha .g-recaptcha{margin:0 auto;}}.page{margin:50px 0;text-align:left;}.page h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;display:inline-block;}.page p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.3;text-align:justify;margin:0 0 40px 0;display:table;}.page span.title_connector{color:#3a3939;font-weight:400;font-size:20px;padding:0;margin:0 15px 20px 15px;display:inline-block;}.page .select{padding:0;margin:0 15px 20px 15px;display:inline-block;clear:both;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;}.page .select.right{float:right;display:block;width:auto;margin-top:11px;padding-bottom:10px;}.page .select select{border:0;color:#3a3939;background:#fff;font-weight:400;font-size:20px;padding-right:10px;background-color:#fff;}.page .select select option{background-color:#fff;}.page .divider{margin:20px 0 20px 0;border-top:1px solid #eeeeee;}.page .left{text-align:left;font-size:16px;display:table;float:left;width:50%;padding-bottom:2px;}.page .right{text-align:right;font-size:16px;display:table;float:right;width:50%;padding-bottom:2px;}.page span b{font-weight:700;font-size:16px;}.page table{margin:20px 0px;clear:both;width:100%;border-collapse:collapse;clear:both;border-radius:5px 5px 0 0;}.page table tr{}.page table tr:nth-child(2n+1){background:#f8f8f8;}.page table tr:last-child{border-bottom:1px solid #dbdbdb;}.page table tr th{background:#fba342;color:#fff;padding:15px 15px;font-size:14px;text-align:left;}.page table tr td{padding:15px 15px;font-size:14px;text-align:left;}.page table tr th:first-child,.page table tr td:first-child{text-align:left;}.page table tr th:first-child{border-radius:5px 0 0 0;}.page table tr th:last-child{border-radius:0 5px 0 0;}.page table tr td .shw{display:none;}.page table a:link,.page table a:visited,.page table a:active{color:#128ede;}.page table a:hover,.page table a:visited:hover{color:#fbc342;}.page table.light{margin:20px 0px;clear:both;width:100%;border-collapse:separate;border-spacing:0 0;clear:both;border:1px solid #dbdbdb;box-shadow:2px 2px 3px rgba(0,0,0,0.05);border-radius:5px;}.page table.light tr{background:transparent;}.page table.light tr:nth-child(2n+1){background:transparent;}.page table.light tr:first-child{border-radius:5px 5px 0 0;border-bottom:1px solid #dbdbdb;}.page table.light tr:last-child{border-radius:0 0 5px 5px;}.page table.light tr th{background:transparent;font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;padding:15px 15px;border-bottom:1px solid #dbdbdb;}.page table.light tr th:first-child{border-radius:5px 0 0 0;}.page table.light tr th:last-child{border-radius:0 5px 0 0;text-align:right;}.page table.light tr td{padding:15px 15px;font-size:16px;color:#524e4e;font-weight:700;background:transparent;vertical-align:middle;border-bottom:1px solid #dbdbdb;}.page table.light tr td a:link,.page table.light tr td a:visited,.page table.light tr td a:active{color:#524e4e;text-decoration:none;}.page table.light tr td a:hover{color:#fbc342;text-decoration:none;}.page table.light tr td:first-child{width:50%;}.page table.light tr td:last-child{text-align:right;}.page table.light tr td small{display:block;font-size:12px;font-weight:400;color:#959595;margin-top:5px;}.page table.light a:link,.page table.light a:visited,.page table.light a:active{color:#128ede;}.page table.light a:hover,.page table.light a:visited:hover{color:#fbc342;}.page table.light tr td a.button:link,.page table.light tr td a.button:active,.page table.light tr td a.button:visited{background:#68b641;border-radius:3px;font-weight:700;color:#fff;text-transform:uppercase;font-size:12px;text-decoration:none;padding:8px 15px;}.page table.light tr td .button:hover{color:#fff;opacity:0.75;}.page table.light tr:last-child td{border-bottom:none;}.page table.inside{padding:0;margin:30px 30px 20px 30px;width:calc(100% - 60px);}.page table.inside tr{background:transparent;}.page table.inside tr:first-child{border-bottom:1px solid #dbdbdb;}.page table.inside tr th{background:transparent;font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;padding:0 15px 10px 15px;border-bottom:1px solid #dbdbdb;cursor:pointer;}.page table.inside tr th.selectedSort{font-weight:900;color:#3a3939;}.page table.inside tr td{padding:8px 15px;font-size:12px;color:#524e4e;font-weight:400;background:transparent;vertical-align:middle;}.page table.inside tr th:first-child,.page table.inside tr td:first-child{padding-left:0;}.page table.inside tr th:last-child,.page table.inside tr td:last-child{padding-right:0;}.page table.inside tr td small{display:block;font-size:12px;font-weight:400;color:#959595;margin-top:5px;}.page table.inside tr th .sort{width:18px;height:11px;display:inline-table;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;}.page table.inside tr th .none{background-position:-425px -448px;}.page table.inside tr th .asc{background-position:-401px -448px;}.page table.inside tr th .desc{background-position:-376px -448px;}.page .filter{border-spacing:10px 0;border-collapse:separate;margin:0 -10px;}.page .filter .address{display:table-cell;width:100%;text-align:left;}.page .filter .address label{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;margin:0 0 10px 0;display:block;}.page .filter .address input[type=text]{clear:both;border:1px solid #dbdbdb;border-radius:3px;padding:10px 10px;color:#524e4e;font-size:16px;font-weight:400;width:100%;}.page .filter .address input[type=text]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}.page .filter .button{display:table-cell;vertical-align:bottom;}.page .filter .button .button_big{display:block;background:#999999;margin:20px 0 0 20px;padding:12px 40px;}.page .pages{float:right;}.page .pages .prev{margin-right:10px;font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:3px 9px;}.page .pages .prev:hover{background:#fba342;border-radius:3px;color:#fff;}.page .pages .prev.disabled{opacity:0.2;color:#3a3939;cursor:default;font-size:14px;}.page .pages .prev.disabled:hover{opacity:0.2;color:#3a3939;background:transparent;}.page .pages .next{margin-left:10px;font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:3px 9px;}.page .pages .next:hover{background:#fba342;border-radius:3px;color:#fff;}.page .pages .next.disabled{opacity:0.2;color:#3a3939;cursor:default;font-size:14px;}.page .pages .next.disabled:hover{opacity:0.2;color:#3a3939;background:transparent;}.page .pages .dots{letter-spacing:2px;font-weight:700;font-size:14px;padding:5px 0;}.page .pages .num{font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:3px 9px;margin:0 2px;}.page .pages .num:hover{background:#fba342;border-radius:3px;color:#fff;}.page .pages .num.selected{background:#fba342;border-radius:3px;color:#fff;cursor:default;}.page .workersCount{float:left;margin:0 30px;}.page .workersCount .text{margin-right:10px;font-weight:400;cursor:pointer;color:#3a3939;font-size:14px;padding:5px 0;}.page .workersCount .num{font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:3px 6px;margin:0 2px;}.page .workersCount .num:hover{background:#fba342;border-radius:3px;color:#fff;}.page .workersCount .num.selected{background:#fba342;border-radius:3px;color:#fff;cursor:default;}.page .sorting_row{overflow:hidden;border-bottom:1px solid #dbdbdb;padding-top:4px;padding-bottom:24px;}.page.find_miner{overflow:hidden;}.page.find_miner .left{float:left;width:calc(100% - 480px);}.page.find_miner .left .filter{border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:20px 10px;margin:0;width:100%;display:table;overflow:hidden;}.page.find_miner .left .filter .address{float:left;display:block;width:calc(100% - 220px);}.page.find_miner .left .filter .button{float:right;display:block;width:200px;}.page.find_miner .left .filter .button .button_big{background:#fbc342;width:100%;padding:12px 0;text-align:center;margin:19px 0 0 0;}.page.find_miner .right{float:right;width:420px;text-align:left;}.page.find_miner .right h2{text-align:left;}.page.find_miner .right ul{list-style:none;margin:20px 0 20px 0;padding:0 0 10px 0;border-bottom:1px solid #dbdbdb;}.page.find_miner .right ul li{overflow:hidden;margin-bottom:10px;}.page.find_miner .right ul li .address{float:left;margin-top:5px;}.page.find_miner .right ul li .button_remove{float:right;}.page.find_miner .right .button_remove{background:#eb4635;padding:8px 12px;text-transform:uppercase;color:#fff;font-size:12px;font-weight:700;border-radius:2px;cursor:pointer;display:table;}.page.find_miner .right .button_remove:hover{opacity:0.75;}.page.find_miner .right ul li a:link,.page.find_miner .right ul li a:visited,.page.find_miner .right ul li a:active{color:#128ede;}.page.find_miner .right ul li a:hover,.page.find_miner .right ul li a:visited:hover{color:#fbc342;}.page.profile{margin-top:35px;}.page.profile h1{margin-top:16px;}.page.profile h2{text-align:left;font-size:22px;font-weight:700;padding:0;margin:0;display:inline-block;}.page.profile .row{margin-bottom:40px;}.page.profile .row.closer{margin-bottom:0;}.page.profile .row.farther{margin-top:20px;}.page.profile .row.overflow{width:100%;}.page.profile .row.overflow #stats{border:0;border-radius:0;overflow-x:auto;}.page.profile .row.overflow #stats .col_4{}.page.profile .row.overflow #stats .col_4 h2{background:#fba342;border-radius:5px 5px 0 0;color:#fff;font-size:16px;font-weight:700;padding:15px 0px;margin:0;text-align:center;display:block;}.page.profile .row.overflow #stats .col_4 .content{border:1px solid #dbdbdb;border-top:0;border-radius:0 0 5px 5px;color:#524e4e;font-size:16px;font-weight:700;padding:15px 0px;text-align:center;height:80px;font-size:24px;}.page.profile .row.overflow #stats .col_4 .content small{font-weight:400;}.page.profile .row.overflow #stats .col_4 .content sub{font-weight:400;font-size:14px;display:block;margin-top:5px;color:#9b9b9b;}.page.profile .row.overflow #stats .col_4 .content a{font-weight:400;font-size:14px;display:block;margin-top:5px;color:#9b9b9b;}.page.profile .col_1_3{float:right;width:calc(35% - 30px);}.page.profile .col_1_3 .payout{margin:20px 0 10px 0;}.page.profile .col_1_3 .payout .payout_header{background:#68b641 url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-410px -10px;border-radius:5px 5px 0 0;color:#fff;overflow:hidden;padding:20px 20px;font-size:16px;}.page.profile .col_1_3 .payout .payout_content{border:1px solid #dbdbdb;border-top:0;border-radius:0 0 5px 5px;overflow:hidden;padding:10px 20px;font-size:14px;}.page.profile .col_1_3 .payout .title{padding:5px 10px;font-weight:700;float:left;width:50%;}.page.profile .col_1_3 .payout .value{padding:5px 10px;float:left;width:50%;}.page.profile .col_1_3 .payout .value sub{display:block;margin:5px 0 0 0;opacity:0.7;}.page.profile .col_1_3 .payout .value a:link,.page.profile .col_1_3 .payout .value a:visited,.page.profile .col_1_3 .payout .value a:active{color:#fff;text-decoration:none;}.page.profile .col_1_3 .payout .value a:hover,.page.profile .col_1_3 .payout .value a:visited:hover{color:#fff;text-decoration:none;opacity:0.6;}.page.profile .col_1_3 .payout .value .info{float:none;display:inline-block;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -350px;cursor:pointer;margin:0 0 -1px 5px;}.page.profile .col_1_3 .payout .line{overflow:hidden;}.page.profile .col_1_3 small{font-size:12px;color:#9b9b9b;line-height:1.3;}.page.profile .col_2_3{float:left;width:65%;margin-bottom:40px;}.page.profile .col_2_3 table.light{box-shadow:none;}.page.profile .col_2_3 table.light .shw{display:none;}.page.profile .col_2_3 table.light tr td{font-weight:400;font-size:14px;border-bottom:0;padding:10px 15px;}.page.profile .col_2_3 table.light tr td.results{border-top:1px solid #dbdbdb;font-weight:700;vertical-align:top;}.page.profile .col_2_3 table.light tr td:first-child{font-weight:700;width:auto;}.page.profile .col_2_3 table.light tr td.nodata{text-align:center;font-weight:400;color:#9b9b9b;}.page.profile .col_2_3 table.light tr td sub{font-size:12px;color:#9b9b9b;display:block;margin-top:5px;font-weight:400;}.page.profile .inforow{margin-top:-10px;}.page.profile .inforow .autorefresh{float:left;}.page.profile .inforow .autorefresh .icon{width:30px;height:30px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-448px -160px;display:block;float:left;}.page.profile .inforow .autorefresh p{font-size:14px;color:#9b9b9b;padding-top:2px;margin-bottom:20px;}.page.profile .inforow .autorefresh p #time{font-weight:700;color:#f9c241;margin:0 5px;}.page #stats{border:1px solid #dbdbdb;border-radius:5px;position:relative;}.page #stats h2{text-align:left;font-size:22px;padding:30px 30px 0 30px;font-weight:700;display:table;color:#3a3939;}.page #stats h3{text-align:left;font-size:18px;padding:30px 30px 0 30px;font-weight:700;display:table;color:#3a3939;}.page #stats .search{border:1px solid #dbdbdb;border-radius:3px;position:absolute;top:20px;right:30px;width:200px;}.page #stats .search input{padding:8px;border-radius:3px;font-size:12px;color:#999;width:calc(100% - 30px);border:0;}.page #stats .search .ico.search{border:0;position:relative;top:6px;right:6px;float:right;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-280px -684px;width:20px;height:20px;-webkit-filter:grayscale(100%);filter:grayscale(100%);}.page #stats ul{padding:30px 0 0 0;border-bottom:1px solid #dbdbdb;margin:0;list-style:none;}.page #stats ul li{display:inline-block;border-bottom:6px solid #fff;padding:0 5px 10px 5px;text-align:center;width:140px;cursor:pointer;}.page #stats ul li.selected{border-color:#fba342;font-weight:700;cursor:default;}.page #stats ul li:hover{border-color:#dbdbdb;}.page #stats ul li.selected:hover{border-color:#fba342;}.page #stats .chart{margin:30px;}.page #stats .pieChart{margin:30px;border-top:1px solid #dbdbdb;padding-top:30px;}.page #stats .pages{margin:0 30px;}.page #stats .shw{display:none;}.algorithms_cta{overflow:hidden;margin:90px 0 120px 0;}.algorithms_cta .left{float:left;width:calc(50% - 1px);text-align:left;border-right:1px solid #dbdbdb;padding:0 60px 0 0;}.algorithms_cta .right{float:right;width:50%;text-align:left;padding:0 0 0 60px;}.algorithms_cta h2{text-align:left;color:#524e4e;font-size:36px;font-weight:900;}.algorithms_cta h3{text-align:left;color:#585858;font-size:26px;font-weight:300;}.algorithms_cta p{text-align:left;color:#524e4e;font-size:16px;line-height:1.5;}.algorithms_cta ul{text-align:left;color:#524e4e;font-size:16px;line-height:1.5;margin:20px 0 0 20px;padding:0;}.algorithms_cta ul li{list-style-image:url("../images/web/li4.gif");margin-bottom:10px;}.algorithms_cta .inline{display:inline-table;margin:0 0 0 10px;font-size:14px;}.algorithms_cta .inline a:link,.algorithms_cta .inline a:visited,.algorithms_cta .inline a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}.algorithms_cta .inline a:hover,.algorithms_cta .inline a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}.marketplace_cta{background:#15aabc;text-align:center;overflow:hidden;box-shadow:inset 0px 4px 1px rgba(0,0,0,0.10);margin:10px 0 10px 0;clear:both;}.marketplace_cta p{display:inline;font-weight:700;font-size:16px;padding:0;color:#fff;}.marketplace_cta .button_outlined{background:transparent;color:#fff;font-size:16px;font-weight:700;padding:10px 20px;border-radius:4px;text-decoration:none;float:none;display:inline-table;margin:15px 0 15px 10px;text-transform:normal;border:2px solid #fff;}.marketplace_cta .button_outlined:hover{background:#fff;color:#15aabc;}.page.marketplace{margin-bottom:0;overflow:hidden;}.page.marketplace .divider{margin-top:0;clear:both;}.marketplace .wait{background:rgba(255,255,255,0.8);position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:1000;display:none;}.marketplace .wait .loader{border:7px solid #f3f3f3;border-top:7px solid #fbc342;border-radius:50%;width:50px;height:50px;animation:spin 2s linear infinite;position:fixed;top:40%;left:50%;margin-left:-25px;}.marketplace .eu{width:48%;float:left;}.marketplace .usa{width:48%;float:right;}.marketplace .legend{clear:both;margin:0 auto 30px auto;}.marketplace table.market{width:100%;margin:20px 0 60px 0;border-collapse:seperate;border-spacing:0 0;}.marketplace table.market tr{}.marketplace table.market tr:nth-child(2):hover{background:transparent;}.marketplace table.market tr th{}.marketplace .eu table.market thead tr.header th{background:#fba342;}.marketplace .usa table.market thead tr.header th{background:#fb8842;}.marketplace table.market tr.titles th{background:transparent;}.marketplace table.market tr:first-child th{color:#fff;font-size:16px;font-weight:700;padding:15px 15px;}.marketplace table.market tr:first-child th:first-child{text-align:left;border-radius:5px 0 0 0;}.marketplace table.market tr:first-child th:last-child{text-align:right;border-radius:0 5px 0 0;}.marketplace table.market tr:first-child th sub{color:#fff;font-size:9px;font-weight:400;text-transform:uppercase;letter-spacing:3px;display:block;margin:0 0 5px 0;}.marketplace table.market tr.titles th{color:#2c2c2c;font-size:10px;text-transform:uppercase;letter-spacing:3px;font-weight:900;padding:10px 15px;vertical-align:top;text-align:right;border-bottom:1px solid #dbdbdb;}.marketplace table.market tr.titles th:first-child{text-align:left;font-weight:800;}.marketplace table.market tr.titles th sub{font-size:8px;color:#9b9b9b;font-weight:400;letter-spacing:1px;display:block;margin-top:3px;}.marketplace table.market tr td{font-size:14px;font-weight:400;padding:8px 15px;text-align:right;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr td:first-child,.marketplace table.market tr td:nth-child(2){text-align:left;}.marketplace table.market tr td:nth-child(3){font-weight:700;}.marketplace table.market tr.fixed td{background:#f6f6f6;border-top:1px solid #aaa;}.marketplace table.market tr.standard{background:transparent;}.marketplace table.market tr.standard td{background:transparent;border-top:1px solid #dbdbdb;}.marketplace table.market tr.first td{border-top:1px solid #dbdbdb;}.marketplace table.market tr td{border-bottom:1px solid #f6f6f6;}.marketplace table.market tr td:first-child,.marketplace table.market tr th:first-child{width:20px;font-weight:700;padding-right:0;}.marketplace table.market tr.dead{background:#ffeeee;}.marketplace table.market tr.my{background:#fffbf1;}.marketplace table.market tr.my td:hover{background:#fffbf1;}.marketplace table.market tr.dead td{border-bottom:1px solid #f2cfcf;}.marketplace table.market tr.empty td{padding:3px 0;}.marketplace table.market tr.my td{border-bottom:1px solid #f5ecd5;}.marketplace table.market tr.empty.dead{background:transparent;}.marketplace table.market tr td .icon.dead{width:16px;height:16px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-480px -163px;display:inline-block;margin-left:-4px;}.marketplace table.market tr:last-child td{border-bottom:1px solid #dbdbdb;}.marketplace table.market tr td span{background:transparent;}.marketplace table.market tr.fixed td .green{background:#f6f6f6;webkit-animation:fadeOutGreenFixed 3s linear;animation:fadeOutGreenFixed 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.fixed td .red{background:#f6f6f6;webkit-animation:fadeOutRedFixed 3s linear;animation:fadeOutRedFixed 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.dead td .green{background:#ffeeee;webkit-animation:fadeOutGreenDead 3s linear;animation:fadeOutGreenDead 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.dead td .red{background:#ffeeee;webkit-animation:fadeOutRedDead 3s linear;animation:fadeOutRedDead 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.dead td .yellow{background:#ffeeee;webkit-animation:fadeOuYellowDead 3s linear;animation:fadeOuYellowDead 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.my td .green{background:#fffbf1;webkit-animation:fadeOutGreenMy 3s linear;animation:fadeOutGreenMy 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.my td .red{background:#fffbf1;webkit-animation:fadeOutRedMy 3s linear;animation:fadeOutRedMy 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr.my td .yellow{background:#fffbf1;webkit-animation:fadeOutYellowMy 3s linear;animation:fadeOutYellowMy 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr td .green{background:#fff;webkit-animation:fadeOutGreen 3s linear;animation:fadeOutGreen 3s linear;font-family:arial,helvetica,sans-serif;}.marketplace table.market tr td .red{background:#fff;webkit-animation:fadeOutRed 3s linear;animation:fadeOutRed 3s linear;font-family:arial,helvetica,sans-serif;}@-webkit-keyframes fadeOutGreenFixed{from{background:#68b641;}to{background:transparent;}}@keyframes fadeOutGreenFixed{from{background:#68b641;}to{background:transparent;}}@-webkit-keyframes fadeOutGreenDead{from{background:#68b641;}to{background:transparent;}}@keyframes fadeOutGreenDead{from{background:#68b641;}to{background:transparent;}}@-webkit-keyframes fadeOutGreenMy{from{background:#68b641;}to{background:transparent;}}@keyframes fadeOutGreenMy{from{background:#68b641;}to{background:transparent;}}@-webkit-keyframes fadeOutGreen{from{background:#68b641;}to{background:#fff;}}@keyframes fadeOutGreen{from{background:#68b641;}to{background:#fff;}}@-webkit-keyframes fadeOutRedFixed{from{background:#ff3535;}to{background:transparent;}}@keyframes fadeOutRedFixed{from{background:#ff3535;}to{background:transparent;}}@-webkit-keyframes fadeOutRedDead{from{background:#ff3535;}to{background:transparent;}}@keyframes fadeOutRedDead{from{background:#ff3535;}to{background:transparent;}}@-webkit-keyframes fadeOutRedMy{from{background:#ff3535;}to{background:transparent;}}@keyframes fadeOutRedMy{from{background:#ff3535;}to{background:transparent;}}@-webkit-keyframes fadeOutRed{from{background:#ff3535;}to{background:transparent;}}@keyframes fadeOutRed{from{background:#ff3535;}to{background:transparent;}}@-webkit-keyframes fadeOutYellowDead{from{background:#faa242;}to{background:transparent;}}@keyframes fadeOutYellowDead{from{background:#faa242;}to{background:transparent;}}@-webkit-keyframes fadeOutYellowMy{from{background:#faa242;}to{background:transparent;}}@keyframes fadeOutYellowMy{from{background:#faa242;}to{background:transparent;}}.marketplace ul.legend{font-size:14px;display:table;margin:0 auto 30px auto;list-style:none;padding:0;}.marketplace ul.legend li{display:inline-block;margin:0 15px;}.marketplace ul.legend .symbol{font-weight:700;}.marketplace ul.legend .symbol.dead{width:16px;height:16px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-480px -163px;display:inline-block;margin-bottom:-3px;}.marketplace ul.legend .symbol.outbid{width:13px;height:20px;background:#68b541 url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-368px -685px;border:0;border-radius:2px;display:inline-block;margin-bottom:-5px;}.marketplace ul.legend a:link,.marketplace ul.legend a:visited,.marketplace ul.legend a:active{color:#3a3939;text-decoration:none;}.marketplace ul.legend a:hover,.marketplace ul.legend a:visited:hover{color:#fbc342;text-decoration:underline;}.marketplace .empty{clear:both;margin:60px 0 60px 0;background:transparent;border:2px dashed #dbdbdb;border-radius:5px;box-shadow:none;padding:40px;text-align:center;}.marketplace .empty p{color:#959595;font-weight:300;font-size:20px;letter-spacing:0;text-transform:none;margin:0 auto 0 auto;text-align:center;border:0;padding:0;display:block;}.marketplace .empty .button{background:#128ddd;display:table;border-radius:3px;margin:20px auto 0 auto;font-weight:700;color:#fff;font-size:16px;text-decoration:none;padding:12px 18px;}.marketplace .empty .button:hover{opacity:0.8;}#intro.calc{padding-bottom:100px;}.page .row{overflow:hidden;}.page #custom{color:#128ede;text-align:right;float:right;margin:20px 0 0 0;display:block;text-decoration:underline;cursor:pointer;line-height:1.3;}.page #custom:hover{color:#fbc342;}.page #custom_left{color:#128ede;float:left;display:block;margin:20px 0 0 0;text-decoration:underline;cursor:pointer;line-height:1.3;}.page #custom_left:hover{color:#fbc342;}.page .form{border:2px solid #fac341;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;background:#fff;padding:10px 20px 15px 20px;margin:-90px auto 0 auto;width:100%;display:table;overflow:hidden;}.page .form .hardware{float:left;text-align:left;margin-right:20px;width:calc(100% - 505px);}.page .form .currency{float:left;text-align:left;margin-right:20px;width:100px;}.page .form .electricity{float:left;text-align:left;margin-right:20px;width:185px;}.page .form .button_big{float:left;text-align:center;padding:13px 15px;margin-top:26px;width:160px;cursor:pointer;}.page .form .button_big.disabled{background:#d5d5d5;cursor:default;}.page .form .button_big.disabled:hover{opacity:1.0;}.page .form label{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;display:block;margin-top:6px;}.page .form input[type=text]{display:inline-table;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;color:#524e4e;font-size:16px;font-weight:700;width:60px;}.page .form input[type=text]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}.page .form input[type=number]{display:inline-table;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;color:#524e4e;font-size:16px;font-weight:700;width:60px;}.page .form input[type=number]:focus{box-shadow:0px 0px 10px rgba(0,0,0,0.1);}.page .form sub{color:#524e4e;font-size:16px;font-weight:700;margin-left:5px;}.page .form .select{width:100%;display:table;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;}.page .form .select select{width:100%;border:0;color:#524e4e;font-size:16px;font-weight:700;padding-right:10px;background:#fff;}.page .form .select select:disabled{opacity:0.1;background:#fff;font-weight:400;}.page .form .select select option{font-weight:400;background-color:#fff;}.page .form .custom_settings{display:none;clear:both;overflow:hidden;padding:0 1px 0 1px;border-top:1px solid #dbdbdb;margin-top:100px;}.page .form .custom_settings .algorithm{width:calc(16.66% - 25px);margin-right:30px;float:left;text-align:left;margin-top:30px;position:relative;text-align:left;text-decoration:none;}.page .form .custom_settings .algorithm:nth-child(6n){margin-right:0;}.page .form .custom_settings .algorithm h4{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;display:block;}.page .form .custom_settings .algorithm .form_data{overflow:hidden;border:1px solid #dbdbdb;border-radius:4px;position:relative;margin:5px 0 0 0;padding:10px 0;}.page .form .custom_settings .algorithm.power .form_data{border:1px solid #128ede;}.page .form .custom_settings .algorithm.cost .form_data{border:1px solid #68b541;}.page .form .custom_settings .algorithm .form_data input[type=text]{width:80px;color:#524e4e;font-size:14px;border:0;padding:0 0 0 15px;margin:0;font-weight:400;}.page .form .custom_settings .algorithm .form_data input[type=text]:focus{box-shadow:none;}.page .form .custom_settings .algorithm .form_data label{position:absolute;top:0;right:0;bottom:0;background:#f8f8f8;border-left:1px solid #dbdbdb;padding:13px 15px;line-height:1;font-weight:700;font-size:14px;margin:0;text-transform:none;color:#524e4e;letter-spacing:0;}.page .form .custom_settings .algorithm.power .form_data label{background:#128ede;color:#fff;}.page .form .custom_settings .algorithm.cost .form_data label{background:#68b541;color:#fff;}.page .hardware_results{overflow:hidden;display:table;padding:0 5px 10px 5px;}.page .hardware_results .top5{float:left;width:calc(33.33% - 20px);margin-right:30px;}.page .hardware_results .top5:last-child{margin-right:0;}.page .hardware_results table.hardware_list{margin:40px auto 10px auto;}.page .hardware_results table.hardware_list tr td{font-weight:400;vertical-align:top;height:83px;font-size:14px;}.page .hardware_results table.hardware_list tr td a:link,.page .hardware_results table.hardware_list tr td a:visited,.page .hardware_results table.hardware_list tr td a:active{font-weight:700;}.page .hardware_results table.hardware_list tr td sub a:link,.page .hardware_results table.hardware_list tr td sub a:visited,.page .hardware_results table.hardware_list tr td sub a:active{font-weight:400;}.page .hardware_results table.hardware_list tr td:first-child{font-weight:700;font-size:14px;}.page .hardware_results table.hardware_list tr th:last-child{text-align:right;}.page .hardware_results table.hardware_list tr td:last-child{min-width:160px;}.page .hardware_results table.hardware_list tr td sub{font-size:12px;display:block;color:#9b9b9b;font-weight:400;margin-top:5px;}.page .hardware_results table.hardware_list tr td sub a:link,.page table.hardware_list tr td sub a:active,.page table.hardware_list tr td sub a:visited{color:#9b9b9b;}.page .disclaimer{font-size:12px;color:#9b9b9b;line-height:1.3;text-align:center;margin:0 auto;}.page#profitability{display:block;}.page#profitability h3{margin-bottom:5px;margin-top:80px;}.page#profitability h2{margin-bottom:40px;}.page#profitability table.light{margin:0 0px 10px 0px;box-shadow:none;}.page#profitability table.light tr{background:transparent;}.page#profitability table.light tr th{text-align:center;}.page#profitability table.light tr td{padding:15px 15px;font-size:14px;font-weight:400;width:auto;text-align:center;}.page#profitability table.light tr td:first-child{text-align:left;}.page#profitability table.light tr td sub{display:block;font-size:12px;font-weight:400;color:#959595;margin-top:5px;}.page#profitability table.light tr:last-child td{border-bottom:none;}.page#profitability table.light tr.profit td{background:#f9fcf8;font-weight:700;color:#68b641;}.page#profitability table.light tr.profit td:first-child{color:#524e4e;border-radius:0 0 0 4px;}.page#profitability table.light tr.profit td:last-child{border-radius:0 0 4px 0;}.page#profitability table.light tr.notprofit td{background:#fff3f3;font-weight:700;color:#eb4141;}.page#profitability table.light tr.notprofit td:first-child{color:#524e4e;border-radius:0 0 0 4px;}.page#profitability table.light tr.notprofit td:last-child{border-radius:0 0 4px 0;}.page#profitability small{font-size:12px;color:#9b9b9b;line-height:1.3;text-align:center;margin:0 auto 0 auto;display:table;}.page#profitability .algorithms{overflow:hidden;margin:0 0 0 0;}.page#profitability .algorithms .algorithm{width:calc(16.66% - 25px);margin-right:30px;float:left;text-align:left;margin-bottom:30px;position:relative;text-align:center;border:2px solid #fac341;border-radius:4px;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:20px 10px;text-decoration:none;}.page#profitability .algorithms .algorithm:nth-child(6n){margin-right:0;}.page#profitability .algorithms .algorithm h4{color:#3a3939;font-weight:700;font-size:14px;margin-bottom:5px;text-decoration:none;}.page#profitability .algorithms .algorithm p{color:#959595;font-weight:400;font-size:14px;line-height:1.3;margin:0 auto;padding:0;text-decoration:none;text-align:center;}.page#profitability .algorithms .algorithm.disabled{border-color:#dbdbdb;color:#dbdbdb;}.page#profitability .algorithms .algorithm.mostprofit{border-color:#68b641;}.page#profitability .algorithms .algorithm:hover{opacity:0.5;}.page#profitability .result{margin:70px auto 70px auto;display:table;border:2px solid #68b641;border-radius:4px;box-shadow:2px 2px 0px #ffffff,4px 4px 0px #e2e2e2;padding:40px 60px;border-radius:5px;}.page#profitability .result h2{margin:0 auto 0 auto;display:block;}.page#profitability .result h3{margin:10px auto 20px auto;display:block;font-size:20px;line-height:1.15;}.page#profitability .result .button_big{margin:20px auto 0 auto;display:table;background:#68b641;}.page#profitability .result.notprofit{border-color:#fbc342;}.page#profitability .result.notprofit .button_big{background:#fbc342;}.page#profitability .social{margin:0 auto 100px auto;text-align:center;}#intro.referrals{background:#fff url("../images/web/background_referrals.svg") no-repeat top center;width:100%;background-size:100% auto;}#intro.referrals p{font-size:18px;margin:50px auto 0 auto;line-height:1.3;border-top:1px solid #dbdbdb;padding-top:50px;}#intro.referrals .col_3 .icon{width:250px;height:220px;background:url("../images/web/howto_icons.svg") no-repeat;background-size:1000px 750px;margin:0 auto;}#intro.referrals .col_3 .icon.ref1{background-position:-246px -264px;}#intro.referrals .col_3 .icon.ref2{background-position:-484px -264px;}#intro.referrals .col_3 .icon.ref3{background-position:-746px -264px;}#intro.referrals .col_3 h2{font-weight:700;font-size:20px;text-align:center;margin-bottom:40px;}#intro.referrals .col_3 ul{margin:0 0 0 30px;padding:0;text-align:left;}#intro.referrals .col_3 ul li{list-style-image:url("../images/web/li3.gif");font-size:14px;margin-bottom:15px;line-height:1.3;padding-left:10px;}#intro.referrals .col_3 p{font-size:14px;margin:0 0 15px 0;line-height:1.3;border:0;padding-top:0;}#intro.referrals .col_3 small{color:#959595;display:block;line-height:1.3;}#intro.referrals .col_3 small a:link,#intro.referrals .col_3 small a:visited,#intro.referrals .col_3 small a:active{color:#128ede;}#intro.referrals .col_3 small a:hover,#intro.referrals .col_3 small a:visited:hover{color:#fbc342;}#intro.referrals .col_3 .button_big{margin-bottom:10px;}.page.news{overflow:hidden;}.page.news .newsfeed,.page.news .newsprofile{width:calc(100% - 320px);float:left;}.page.news .rightside{width:250px;float:right;}.page.news .newsfeed h1,.page.news .rightside h2{color:#3a3939;font-size:13px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:0 0 20px 0;text-align:left;}.page.news .newsfeed a{text-decoration:none;}.page.news .newsfeed h2{font-size:30px;text-align:left;margin:0 0 5px 0;line-height:1.15;color:#2b2b2b;}.page.news .newsfeed .row{border-bottom:1px solid #dbdbdb;padding:0 0 60px 0;margin:0 0 60px 0;}.page.news .newsfeed time{font-size:14px;text-align:left;margin:0 0 30px 0;color:#959595;display:table;}.page.news .newsfeed .content{position:relative;}.page.news .newsfeed .icon{position:absolute;left:0;top:0;}.page.news .newsfeed p{font-size:16px;text-align:left;margin:0 0 0 130px;min-height:70px;display:block;line-height:1.5;}.page.news .newsfeed .button_big{margin:0 auto 40px auto;display:table;}.page.news .rightside .row{margin:0 0 40px 0;}.page.news .rightside .row a:link,.page.news .rightside .row a:visited,.page.news .rightside .row a:active{display:table;color:#128ede;margin-bottom:10px;font-size:14px;}.page.news .rightside .row a:hover,.page.news .rightside .row a:visited:hover{display:table;color:#fbc342;}.page.news .rightside a.facebook{background:#3b5998 url("../images/web/sprite.svg") no-repeat;background-position:0px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.facebook:hover{opacity:0.8;}.page.news .rightside a.twitter{background:#55acee url("../images/web/sprite.svg") no-repeat;background-position:-36px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.twitter:hover{opacity:0.8;}.page.news .rightside a.vk{background:#507299 url("../images/web/sprite.svg") no-repeat;background-position:-72px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.vk:hover{opacity:0.8;}.page.news .rightside a.reddit{background:#2f2f2f url("../images/web/sprite.svg") no-repeat;background-position:-109px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.reddit:hover{opacity:0.8;}.page.news .rightside a.youtube{background:#cc181e url("../images/web/sprite.svg") no-repeat;background-position:-145px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.youtube:hover{opacity:0.8;}.page.news .rightside a.github{background:#2f2f2f url("../images/web/sprite.svg") no-repeat;background-position:-181px -435px;background-size:800px 800px;width:36px;height:36px;display:table;float:left;margin:0 5px 0 0;text-indent:-9999px;border-radius:4px;}.page.news .rightside a.github:hover{opacity:0.8;}.page.news .newsprofile a.back{font-size:10px;text-align:left;margin:0 0 26px 0;color:#959595;display:table;text-transform:uppercase;text-decoration:none;letter-spacing:1px;}.page.news .newsprofile a.back:hover{color:#fbc342;text-decoration:underline;}.page.news .newsprofile a{color:#128ede;}.page.news .newsprofile h1{font-size:30px;font-weight:700;text-align:left;margin:0 0 5px 0;line-height:1.15;color:#2b2b2b;}.page.news .newsprofile time{font-size:14px;text-align:left;margin:0 0 30px 0;color:#959595;display:table;}.page.news .newsprofile .socials{margin-bottom:30px;}.page.news .newsprofile .socials:last-child{margin-bottom:0;}.page.news .newsprofile h2{font-size:24px;font-weight:700;text-align:left;margin:0 0 30px 0;line-height:1.3;color:#524e4e;}.page.news .newsprofile h3{font-size:18px;font-weight:700;text-align:left;margin:0 0 30px 0;line-height:1.3;color:#524e4e;}.page.news .newsprofile h4{font-size:14px;font-weight:700;text-align:left;margin:0 0 30px 0;line-height:1.3;color:#524e4e;}.page.news .newsprofile p{font-size:16px;text-align:jusitfy;margin:0 0 30px 0;color:#524e4e;line-height:1.5;}.page.news .newsprofile ul{font-size:16px;text-align:jusitfy;margin:0 0 30px 0;color:#524e4e;line-height:1.5;}.page.news .newsprofile ul li{font-size:16px;text-align:jusitfy;margin:0 0 10px 0;color:#524e4e;line-height:1.5;}.page.news .newsprofile ul li ul{margin-top:20px;}.page.news .newsprofile ol{font-size:16px;text-align:jusitfy;margin:0 0 30px 0;color:#524e4e;line-height:1.5;}.page.news .newsprofile ol li{font-size:16px;text-align:jusitfy;margin:0 0 10px 0;color:#524e4e;line-height:1.5;}.page.news .newsprofile p a:link,.page.news .newsprofile p a:visited,.page.news .newsprofile p a:active,.page.news .newsprofile li a:link,.page.news .newsprofile li a:visited,.page.news .newsprofile li a:active{font-size:16px;text-align:jusitfy;margin:0 0 0 0;color:#128ede;display:inline;text-transform:none;text-decoration:underline;}.page.news .newsprofile p a:hover,.page.news .newsprofile p a:visited:hover,.page.news .newsprofile li a:hover,.page.news .newsprofile li a:visited:hover{color:#fbc342;}.page.news .newsprofile code{margin:0 0 30px 0;background:#f5f5f5;display:block;padding:30px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.page.news .newsprofile p img{max-width:100%;margin:0 auto;}.page.news .newsprofile center img{max-width:100%;width:auto;margin:0 auto;}.page.news .newsprofile iframe{margin-bottom:30px;}.page.news .newsprofile select{width:100%;margin-bottom:20px;background:#fff;background-color:#fff;}.page.news .newsprofile select option{background-color:#fff;}.page.news .newsprofile textarea{width:100%;margin-bottom:20px;text-align:left;height:600px;}.page.news .newsprofile input{width:100%;margin-bottom:20px;}.page.about{}.page.about h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.about h2{color:#3a3939;font-weight:700;font-size:24px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.about p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 20px 0;}.page.about p b{width:160px;display:inline-block;margin-bottom:10px;}.page.about .row{padding-bottom:0;margin-top:60px;margin-bottom:0;}.page.about .col_4{text-align:center;}.page.about .col_4 .icon{width:250px;height:170px;background:url("../images/web/howto_icons.svg") no-repeat;background-size:1000px 750px;margin:0 auto 10px auto;}.page.about .col_4 .ico1{background-position:12px -502px;}.page.about .col_4 .ico2{background-position:-238px -500px;}.page.about .col_4 .ico3{background-position:-743px -52px;}.page.about .col_4 .ico4{background-position:0px -52px;}.page.about .col_4 h3{font-weight:700;font-size:26px;}.page.about .col_4 small{color:#959595;font-size:14px;margin:5px 0 30px 0;display:block;line-height:1.15;}.page.about .col_4 p{font-size:14px;text-align:center;margin:0 auto 40px auto;}.page.about .col_4.contact_box{margin-top:0;margin-bottom:30px;padding:30px 20px;}.page.about .col_4.contact_box h3{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;}.page.about .col_4.contact_box a:link,.page.about .col_4.contact_box a:visited,.page.about .col_4.contact_box a:active{color:#128ede;display:table;margin:5px auto 0 auto;font-size:14px;}.page.about .col_4.contact_box a:hover,.page.about .col_4.contact_box a:visited:hover{color:#fbc342;}.page.about .col_3{text-align:center;}.page.about .col_3 .image{margin:0 auto 20px auto;}.page.about .col_3 h3{font-weight:700;font-size:22px;}.page.about .col_3 small{color:#959595;font-size:14px;margin:5px 0 10px 0;display:block;line-height:1.15;}.page.about .col_3 p{font-size:14px;text-align:center;margin:0 auto 40px auto;}.page.about small{font-size:14px;display:block;margin:0 0 36px 0;line-height:1.5;}.page.about small a:link,.page.about small a:visited,.page.about small a:active{color:#128ede;}.page.about small a:hover,.page.about small a:visited:hover{color:#fbc342;}.page.list_pools{}.page.list_pools h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.list_pools h2{color:#3a3939;font-weight:700;font-size:24px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.list_pools p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 20px 0;}.page.list_pools .row{overflow:visible;}.page.list_pools .col_3{text-align:center;font-size:14px;display:block;line-height:1.5;background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);width:100%;margin:20px 0 0 0;padding:20px;float:none;}.page.list_pools .col_3 h2{font-weight:700;font-size:22px;text-align:left;margin:0;padding:0;}.page.list_pools .col_3 p{font-size:16px;text-align:left;margin:0 0 0 0;}.page.list_pools .col_3 p.coins{font-size:14px;text-align:left;margin:20px 0 0 0;color:#3a3939;}.page.list_pools .col_3 a:link,.page.list_pools .col_3 a:visited,.page.list_pools .col_3 a:active{color:#128ede;text-decoration:none;text-align:left;margin:0;padding:0;display:table;}.page.list_pools .col_3 a:hover,.page.list_pools .col_3 a:visited:hover{color:#fbc342;}.page.api{}.page.api h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.api p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 30px 0;}.page.api .box{background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);margin:0 5px 10px 0;position:relative;text-align:left;}.page.api .box .title{display:none;}.page.api .box ul.tabs.vertical{padding:0 0 0 0;border-bottom:0;border-right:1px solid #dbdbdb;margin:0;list-style:none;display:table-cell;width:300px;min-width:300px;vertical-align:top;}.page.api .box ul.tabs.vertical li{display:block;padding:20px 15px 20px 21px;border-bottom:1px solid #dbdbdb;text-align:left;cursor:pointer;width:100%;}.page.api .box ul.tabs.vertical li.selected{border-left:6px solid #fba342;padding:20px 15px 20px 15px;font-weight:700;cursor:default;}.page.api .box ul.tabs.vertical li:hover{border-left:6px solid #dbdbdb;padding:20px 15px 20px 15px;}.page.api .box ul.tabs.vertical li.selected:hover{border-left:6px solid #fba342;border-bottom:1px solid #dbdbdb;padding:20px 15px 20px 15px;}.page.api .box #general,.page.api .box #public,.page.api .box #private{display:table-cell;vertical-align:top;padding:30px;width:calc(100% - 301px);max-width:width:calc(100% - 301px);}.page.api .box #public,.page.api .box #private{display:none;}.page.api .box .content{display:block;width:100%;overflow:hidden;}.page.api .box h3{text-align:left;margin:0 0 30px 0;font-weight:700;color:#222;}.page.api .box .divider{border-bottom:1px solid #dbdbdb;padding:30px 0 0 0;margin:0 0 60px 0;border-top:0;}.page.api .box code{margin:0 0 30px 0;background:#f5f5f5;display:block;padding:30px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.page.api .box pre{background-color:#f5f5f5;border-radius:5px;color:#717171;font-family:'Droid Sans Mono',monospace;display:block;font-size:14px;line-height:1.5;margin:0 0 30px;padding:30px;width:auto;overflow-x:auto;overflow-wrap:break-word;word-break:break-all;}.page.api .box p:last-child{margin-bottom:0;}.page.jobs{}.page.jobs h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.jobs p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 40px 0;}.page.jobs table.light{margin:0 auto;}.page.jobs table.light tr{cursor:pointer;}.page.jobs table.light tr.clickdisabled{cursor:default;}.page.jobs table.light tr th:last-child{text-align:left;}.page.jobs table.light tr td{vertical-align:top;text-align:left;}.page.jobs table.light tr td p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 auto 0 auto;width:100%;}.page.jobs table.light tr td p a:link,.page.jobs table.light tr td p a:active,.page.jobs table.light tr td p a:visited{color:#128ede;}.page.jobs table.light tr td p a:link:hover,.page.jobs table.light tr td p a:visited:hover{color:#fbc342;text-decoration:underline;}.page.jobs table.light tr td ul{color:#3a3939;list-style-type:circle;}.page.jobs table.light tr td ul li{color:#3a3939;}.page.jobs .more{color:#fba342;margin-left:0;}.page.jobs .hidden{font-weight:400;line-height:1.5;margin:30px 0 30px 30px;display:none;width:auto;}.page.privacy-terms{}.page.privacy-terms h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:table;}.page.privacy-terms p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 30px 0;}.page.privacy-terms ul{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 30px 0;}.page.privacy-terms ul li{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 30px 0;}.page.privacy-terms ul li p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;margin:0 0 0 0;}.page.privacy-terms h2{color:#3a3939;font-size:16px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:50px 0 20px 0;text-align:left;}.page.privacy-terms small{color:#999;}.page.media{}.page.media h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:table;}.page.media p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 0 0;}.page.media h2{color:#3a3939;font-size:16px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin:0 0 5px 0;text-align:left;}.page.media h3{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 40px 0;}.page.media h3.no_margin{margin-bottom:0;}.page.media h3 a:link,.page.media h3 a:visited,.page.media h3 a:active{color:#128ede;}.page.media h3 a:hover,.page.media h3 a:visited:hover{color:#fbc342;}.page.media .row{margin-bottom:40px;border-bottom:1px solid #dbdbdb;padding-bottom:40px;overflow:hidden;}.page.media .row:last-child{border-bottom:0;padding-bottom:0;}.page.media .row .col_4{margin-bottom:30px;}.page.media .row .col_4 a:link,.page.media .row .col_4 a:visited,.page.media .row .col_4 a:active{color:#128ede;display:block;text-align:center;margin:0 auto 10px auto;}.page.media .row .col_4 a:hover,.page.media .row .col_4 a:visited:hover{color:#fbc342;}.page.media .row .col_4 .logo_big_light{width:270px;height:100px;margin:0 auto 20px auto;display:table;}.page.media .row .col_4 .logo_big_light .logo{background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px 0px;width:192px;height:50px;display:block;margin:25px auto 0 auto;}.page.media .row .col_4 .logo_small_light{width:100px;height:100px;margin:0 auto 20px auto;display:table;}.page.media .row .col_4 .logo_small_light .logo{background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:0px 0px;width:66px;height:66px;display:block;margin:17px auto 0 auto;}.page.media .row .col_4 .logo_big_dark{width:270px;height:100px;margin:0 auto 20px auto;display:table;background:#222222;border-radius:10px;}.page.media .row .col_4 .logo_big_dark .logo{background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px -49px;width:192px;height:50px;display:block;margin:25px auto 0 auto;}.page.media .row .col_4 .logo_small_dark{width:100px;height:100px;margin:0 auto 20px auto;display:table;background:#222222;border-radius:10px;}.page.media .row .col_4 .logo_small_dark .logo{background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:0px -66px;width:66px;height:66px;display:block;margin:17px auto 0 auto;}.page.media .row .colors{background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:0px -518px;width:634px;height:20px;margin:0 0 40px 0;display:table;}.page.media .row ul{-webkit-column-count:4;-moz-column-count:4;column-count:4;width:634px;margin:0;padding:0;}.page.media .row ul li{display:table;list-style:none;margin-bottom:30px;}.page.media .row ul li .square{width:32px;height:32px;float:left;border-radius:3px;}.page.media .row ul li .square.color1{background:#fbc342;}.page.media .row ul li .square.color2{background:#fba342;}.page.media .row ul li .square.color3{background:#fb8842;}.page.media .row ul li .square.color4{background:#3a3939;}.page.media .row ul li .square.color5{background:#128ede;}.page.media .row ul li .square.color6{background:#15aabc;}.page.media .row ul li .square.color7{background:#68b641;}.page.media .row ul li .square.color8{background:#e2e2e2;}.page.media .row ul li .color_name{float:left;font-weight:700;color:#3a3939;margin:8px 0 0 10px;text-transform:uppercase;}.page.media .row .col_6{background:#128ede;padding:15px 20px;border-radius:50px;color:#fff;text-decoration:none;font-size:18px;text-align:center;font-weight:700;}.page.media .row .col_6:nth-child(6n){margin-right:0;margin-bottom:30px;}.page.media .row .col_6 small{font-size:14px;font-weight:400;margin:0 0 0 0;display:block;}.page.media .row .col_6:hover{background:#fbc342;}.page.payments p{margin:0 0 10px 0;}.page.payments ul{display:table;color:#3a3939;font-weight:400;font-size:16px;line-height:1.3;text-align:justify;margin:0 0 30px 20px;list-style-type:circle;padding:0;}.page.payments ul li{margin:0 0 10px 0;padding:0;}.page.payments .empty{margin:0 0 0 0;background:transparent;border:2px dashed #dbdbdb;border-radius:5px;box-shadow:none;padding:40px;text-align:center;}.page.payments .empty p{color:#959595;font-weight:300;font-size:24px;letter-spacing:0;text-transform:none;margin:0 auto 0 auto;text-align:center;border:0;padding:0;display:block;}.page.pool-settings h2{text-align:left;margin-top:40px;margin-bottom:20px;font-size:24px;}.page.pool-settings h3{text-align:left;margin-top:20px;margin-bottom:20px;font-weight:700;font-size:18px;color:#3a3939;}.page.pool-settings p{margin-bottom:20px;line-height:1.5;}.page.pool-settings #pool_verify{margin:0 0 40px 0;padding:20px 20px 0 20px;background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);position:relative;text-align:left;}.page.pool-settings #pool_verify .row{width:100%;overflow:hidden;margin-bottom:20px;}.page.pool-settings #pool_verify .row .col_1_2{width:calc(50% - 15px);margin-right:30px;float:left;}.page.pool-settings #pool_verify .row .col_2_2{width:calc(50% - 15px);margin-right:0;float:left;}.page.pool-settings #pool_verify .row label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;}.page.pool-settings #pool_verify .row label span{float:left;margin:2px 5px 0 0;}.page.pool-settings #pool_verify .row label .info{float:left;display:table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -333px;cursor:pointer;margin:0}.page.pool-settings #pool_verify .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}.page.pool-settings #pool_verify .row .select{display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}.page.pool-settings #pool_verify .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}.page.pool-settings #pool_verify .row .select select option{background-color:#fff;}.page.pool-settings #pool_verify .row .stratum{width:100%;position:relative;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;}.page.pool-settings #pool_verify .row .stratum .prot{background:#f3f3f3;border-right:1px solid #dbdbdb;position:absolute;left:0;top:0;bottom:0;border-radius:1px 0 0 1px;padding:11px;font-size:14px;}.page.pool-settings #pool_verify .row .stratum input{border:0;border-radius:0;color:#524e4e;margin:0;padding:8px 8px 8px 125px;color:#524e4e;font-size:14px;font-weight:400;width:100%;border-radius:0 2px 2px 0;}.page.pool-settings #pool_verify .row .button_save{display:block;width:100%;text-align:center;margin:18px 0 0 0;padding:11px 0 11px 0;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}.page.pool-settings #pool_verify .row .button_save:hover{opacity:0.8;}.page.pool-settings #pool_verify .row sub{color:#888888;display:table;padding:5px 0 0 0;float:none;clear:both;}.page.pool-settings table.light{margin-top:30px;}.page.pool-settings pre{margin:20px 0 20px 0;display:table;background:#f5f5f5;display:block;padding:30px;border-radius:5px;font-family:'Droid Sans Mono',monospace;color:#717171;overflow-wrap:break-word;word-break:break-all;font-size:14px;overflow-x:auto;line-height:1.3;}.page.software-developers{}.page.software-developers h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.software-developers h2{color:#3a3939;font-weight:700;font-size:24px;padding:0;margin:0 0 20px 0;text-align:left;display:block;}.page.software-developers p{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 20px 0;}.page.software-developers ul{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 20px 0;}.page.software-developers ol{color:#3a3939;font-weight:400;font-size:16px;line-height:1.5;text-align:left;margin:0 0 20px 0;}.page.software-developers p a:link,.page.software-developers p a:visited,.page.software-developers p a:active,.page.software-developers ul li a:link,.page.software-developers ul li a:visited,.page.software-developers ul li a:active,.page.software-developers ol li a:link,.page.software-developers ol li a:visited,.page.software-developers ol li a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}.page.software-developers p a:hover,.page.software-developers p a:visited:hover,.page.software-developers ul li a:hover,.page.software-developers ul li a:visited:hover,.page.software-developers ol li a:hover,.page.software-developers ol li a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}.page.thank_you{text-align:center;padding:100px 0;}.page.thank_you .icon{background:url("../images/web/sprite.svg") no-repeat;background-position:-70px -578px;background-size:800px 800px;width:66px;height:66px;display:table;margin:0 auto 10px auto;}.page.thank_you .icon.succ{background-position:-70px -578px;}.page.thank_you .icon.err{background-position:-141px -578px;}.page.thank_you .icon.time{background-position:-417px -578px;}.page.thank_you h1{}.page.thank_you p{text-align:center;margin:0 auto 0 auto;font-size:22px;}.page.thank_you .socials{text-align:center;margin:60px auto 0 auto;}.page.thank_you .socials p{color:#999999;font-size:16px;}.page.thank_you .socials .facebook{background:url("../images/web/sprite.svg") no-repeat;background-position:-230px -596px;background-size:800px 800px;width:15px;height:30px;display:inline-table;text-indent:-99999px;margin:20px 15px 0 15px;opacity:0.15;}.page.thank_you .socials .twitter{background:url("../images/web/sprite.svg") no-repeat;background-position:-270px -596px;background-size:800px 800px;width:26px;height:30px;display:inline-table;text-indent:-99999px;margin:20px 15px 0 15px;opacity:0.15;}.page.thank_you .socials .vk{background:url("../images/web/sprite.svg") no-repeat;background-position:-315px -597px;background-size:800px 800px;width:28px;height:30px;display:inline-table;text-indent:-99999px;margin:20px 15px 0 15px;opacity:0.15;}.page.thank_you .socials .reddit{background:url("../images/web/sprite.svg") no-repeat;background-position:-361px -595px;background-size:800px 800px;width:30px;height:30px;display:inline-table;text-indent:-99999px;margin:20px 15px 0 15px;opacity:0.15;}.page.thank_you .socials .facebook:hover,.page.thank_you .socials .twitter:hover,.page.thank_you .socials .vk:hover,.page.thank_you .socials .reddit:hover{opacity:1.0;}@media (max-width: 1200px) {.page{margin:30px 0;}.page.find_miner .left{float:none;margin-bottom:30px;width:100%;}.page.find_miner .right{float:none;width:100%;}.page.about .frame .row .col_4{width:calc(50% - 15px);}.page.about .frame .row .col_4:nth-child(2n){margin-right:0;}.page.media .row .col_4{width:calc(50% - 15px);margin-bottom:40px;}.page.media .row .col_4:nth-child(2n){margin-right:0;}.page.media .row .col_6{width:calc(33.33% - 20px);margin-bottom:30px;}.page.media .row .col_6:nth-child(3n){margin-right:0;}.page#profitability{margin-bottom:0;}.page#profitability .algorithms .algorithm{width:calc(20% - 24px);}.page#profitability .algorithms .algorithm:nth-child(6n){margin-right:30px;}.page#profitability .algorithms .algorithm:nth-child(5n){margin-right:0;}.page .form .custom_settings{display:none;clear:both;overflow:hidden;padding:0 1px 0 1px;border-top:1px solid #dbdbdb;margin-top:100px;}.page .form .custom_settings .algorithm{width:calc(25% - 22.5px);}.page .form .custom_settings .algorithm:nth-child(6n){margin-right:30px;}.page .form .custom_settings .algorithm:nth-child(4n){margin-right:0;}.page .hardware_results{overflow:visible;display:table;padding:0 0 10px 0;margin:0 auto;width:100%;}.page .hardware_results .top5{float:none;width:100%;margin-right:0;}.page .hardware_results .top5 table tr td{height:auto;}.marketplace .market tr th,.marketplace .market tr.titles th,.marketplace .market tr td{padding:10px;}.page.profile .col_1_3{float:right;width:calc(40% - 30px);}.page.profile .col_2_3{float:left;width:60%;margin-bottom:40px;}.page.thank_you{padding:50px 0;}}@media (max-width: 1000px) {.page table tr td{vertical-align:top;}.page table tr th.fn{border-radius:5px 0 0 0;text-align:left;}.page table tr td.fn{text-align:left;}.page table tr th.ln{border-radius:0 5px 0 0;}.page table tr th.ln.fn{border-radius:5px 5px 0 0;}.page table tr .rmv{display:none;}.page table tr td .shw{display:block;margin:5px 0 0 0;line-height:1.5;color:#888;font-size:14px;}.page table tr td .shw b{color:#524e4e;}.page table.inside{margin-bottom:15px;}.page table.inside tr .fn{text-align:left;}#intro.referrals .frame .row .col_3{width:400px;float:none;margin:0 auto 0 auto;text-align:center;border-bottom:1px solid #dbdbdb;padding-bottom:40px;}#intro.referrals .frame .row .col_3:last-child{border-bottom:0;padding-bottom:0;}.page.news .newsfeed .icon{display:none;}.page.news .newsfeed p{margin-left:0;}.page #stats ul{padding-top:16px;}.page #stats ul li{width:100px;}.page#profitability .algorithms .algorithm{width:calc(25% - 22.5px);}.page#profitability .algorithms .algorithm:nth-child(5n){margin-right:30px;}.page#profitability .algorithms .algorithm:nth-child(4n){margin-right:0;}.marketplace_cta{margin-bottom:30px;}.marketplace .eu,.marketplace .usa{width:100%;float:none;margin:0 0 30px 0;}.marketplace .market tr th,.marketplace .market tr.titles th,.marketplace .market tr td{padding:10px 15px;}.page.marketplace{margin-top:20px;}.page.profile h1{font-size:22px;margin-top:7px;margin-bottom:15px;}.page.profile .select.right{margin-top:-10px;}.page.profile .row.overflow{width:100%;overflow-x:scroll;}.page.profile .row.overflow #stats{border:0;border-radius:0;width:1010px;}.page.profile .row.overflow #stats .col_4{width:230px;margin-bottom:20px;}.page.profile .col_1_3{float:none;width:100%;margin-right:0;margin-bottom:20px;}.page.profile .col_2_3{float:none;width:100%;margin-right:0;}.page.profile table.light tr .rmv{display:table-cell;}.page.profile #stats table.inside tr .rmv{display:none;}.page.profile #stats .pages{margin:0 30px;width:calc(100% - 60px);}.page.profile #stats .pages .prev,.page.profile #stats .pages .next{display:none;}.page.profile #stats .pages{float:none;display:table;text-align:right;margin-bottom:0;width:calc(100% - 60px);}.page .workersCount{float:none;display:table;text-align:left;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid #dbdbdb;width:calc(100% - 60px);}.page .workersCount .text{display:block;padding-top:0;margin-bottom:15px;}.algorithms_cta h2{font-size:28px;}.algorithms_cta h3{font-size:20px;}.algorithms_cta .button_outlined{padding:15px 20px;margin:20px 0;}.algorithms_cta p,.algorithms_cta ul{font-size:14px;}.page.pricing table.light tr td:first-child{width:auto;}.page.pricing table.light tr .rmv{display:none;}.page.pricing table.light tr td .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;font-weight:400;}.page.pricing table.light tr td .shw b{color:#524e4e;}.page.pricing table.light tr td .shw small{font-weight:400;color:#888;display:inline;font-size:10px;}.page.algos table.light tr td:first-child{width:100%;}.page.algos table.light tr th.rmv,.page.algos table.light tr td.rmv{display:none;}.page.algos table.light tr td .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;font-weight:400;}.page.algos table.light tr td .shw b{color:#524e4e;}.page.algos table.light tr td .shw small{font-weight:400;color:#888;display:inline;font-size:10px;}.page.algos table.light tr td small{word-break:break-all;}}@media (max-width: 760px) {.page h1{font-size:24px;}.page span.title_connector{font-size:16px;margin:0 10px 20px 0;}.page .select select{font-size:16px;}.page .filter .button .button_big{font-size:16px;padding:12px 20px;}.page .pages .prev,.page .pages .next{display:none;}.page .left b,.page .right b{display:block;margin-bottom:5px;}.page .left,.page .right,.page p.payments{font-size:14px;}.page p.payments{font-size:14px;line-height:1;}.page p.payments b{display:block;margin-top:10px;margin-bottom:5px;}.page.find_miner .right h2{font-size:24px;}.page.news .newsfeed,.page.news .newsprofile{float:none;width:100%;border-bottom:1px solid #dbdbdb;margin-bottom:40px;}.page.news .newsprofile{padding-bottom:20px;}.page.news .rightside{float:none;width:100%;}.page.news .newsfeed .row{margin-bottom:40px;padding-bottom:40px;}.page.news .newsfeed h2,.page.news .newsprofile h1{font-size:20px;}.page.about .frame .row .col_4{width:100%;}.page.about .frame .row .col_4:nth-child(n){margin-right:0;}.page.api .box ul.tabs.vertical{display:none;}.page.api .box #general,.page.api .box #public,.page.api .box #private{display:block!important;overflow:hidden;border-bottom:1px solid #dbdbdb;width:100%;}.page.api .box .title{display:table;font-size:22px;margin:0 0 30px 0;font-weight:300;}.page.jobs table.light tr td{line-height:1.5;}.page.jobs .hidden{margin:10px 0px 0px 0px;font-size:14px;}.page.media .row .colors{display:none;}.page.media .row ul{-webkit-column-count:3;-moz-column-count:3;column-count:3;width:100%;}.page .form .hardware{float:none;margin-right:0;width:100%;margin-bottom:20px;}.page .form .currency{width:calc(50% - 20px);}.page .form .electricity{width:calc(50% - 20px);}.page .form .button_big{float:none;width:100%;}.page#profitability table.light tr .rmv{display:none;}.page#profitability h3{margin-top:40px;}.page#profitability .social{margin-bottom:80px;}.page#profitability .algorithms .algorithm{width:calc(33.33% - 20px);}.page#profitability .algorithms .algorithm:nth-child(4n){margin-right:30px;}.page#profitability .algorithms .algorithm:nth-child(3n){margin-right:0;}.page .form .custom_settings{margin-top:30px;}.page .form .custom_settings .algorithm{width:calc(33.33% - 20px);}.page .form .custom_settings .algorithm:nth-child(4n){margin-right:30px;}.page .form .custom_settings .algorithm:nth-child(3n){margin-right:0;}.page #stats .chart{margin:10px;}.page.profile .inforow{margin-top:-10px;margin-bottom:20px;}.page.profile .inforow .autorefresh{float:none;}.marketplace_cta p{display:table;margin:20px auto 0 auto;font-size:12px;}.marketplace_cta .button_outlined{display:inline-block;margin:10px 5px 20px 5px;}.marketplace .legend{line-height:2;}.marketplace ul.legend li{display:block;margin:0 0 15px 0;}.page.marketplace .select{margin:0px 0 20px 0;}.page.profile h1{font-size:18px;}.page.profile .col_1_3{float:none;width:100%;}.page.profile .col_2_3{float:none;width:100%;}.page.profile table.light tr .rmv{display:none;}.page.profile table.light tr.rmv{display:none;}.algorithms_cta{margin-bottom:20px;margin-top:60px;}.algorithms_cta .left{border:0;float:none;width:100%;border-bottom:1px solid #dbdbdb;padding-bottom:20px;margin-bottom:40px;}.algorithms_cta .right{border:0;float:none;width:100%;margin:0;padding:0;}.page #custom_left{float:none;width:100%;text-align:center;}.page #custom{float:none;width:100%;text-align:center;margin:10px 0 30px 0;}}@media (max-width: 600px) {.page table tr .shorten{text-align:left;}.page table tr td.shorten a{display:block;padding-bottom:1px;width:120px;max-width:120px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;text-align:inherit;}.page .form .hardware{float:none;margin-right:0;width:100%;margin-bottom:20px;}.page .form .currency{width:calc(35% - 10px);}.page .form .electricity{width:calc(65% - 10px);}.page#profitability .algorithms .algorithm{width:calc(50.00% - 15px);}.page#profitability .algorithms .algorithm:nth-child(3n){margin-right:30px;}.page#profitability .algorithms .algorithm:nth-child(2n){margin-right:0;}.page#profitability .result h2{font-size:18px;}.page#profitability .result .button_big{padding:15px 20px;}.page .form .custom_settings .algorithm{width:calc(50% - 15px);}.page .form .custom_settings .algorithm:nth-child(3n){margin-right:30px;}.page .form .custom_settings .algorithm:nth-child(2n){margin-right:0;}.marketplace .eu,.marketplace .usa{width:calc(100% + 30px);float:none;margin:0 -15px 30px -15px;}.marketplace .market tr th,.marketplace .market tr.titles th,.marketplace .market tr td{padding:7px 5px;}.marketplace .market tr.titles th{letter-spacing:1px;font-size:10px;}.marketplace .market tr.titles th sub{letter-spacing:0px;}.marketplace .market tr td{font-size:12px;}.page .form .currency{width:calc(35% - 20px);}.page .form .electricity{width:calc(65% - 20px);}.page.profile h2{font-size:20px;display:block;margin-bottom:0;}.page.profile .select.right{margin:0 0 0 0;display:table;float:none;}.page.profile .col_2_3 table.light tr td{font-size:14px;padding:10px 10px;word-spacing:0px;}.page.profile .col_2_3 table.light tr td sub{font-size:10px;}.page.profile .col_2_3 table.light tr th{padding:10px 10px;}.page.profile .col_1_3 .payout .title,.page.profile .col_1_3 .payout .value{font-size:14px;}.page.profile .col_1_3 .payout .payout_header{padding:15px;}.page.profile .col_1_3 .payout .payout_content{padding:10px 15px;}.page.profile #stats h3{padding:15px 15px 0 15px;font-size:14px;}.page #stats .search{position:relative;top:0;right:0;width:calc(100% - 40px);margin:20px 20px 0 20px;}.page #stats .search .ico.search{margin:0;width:20px;}.page.profile #stats .shw{display:block;font-size:14px;margin-top:20px;}.page.profile .col_2_3 table.light .shw{display:block;font-size:14px;margin-top:20px;font-weight:400;}.page.profile .col_2_3 table.light .rmv2{display:none;}.page.profile .col_2_3 table.light tr td{border-bottom:1px solid #dbdbdb;}.page.profile .col_2_3 table.light tr:last-child td{border-bottom:0;}.page.profile .col_2_3 table.light tr:nth-last-child(2) td{border-bottom:0;}.page.profile #stats table.inside{margin:10px 0 20px 0;width:100%;}.page.profile #stats table.inside tr th,.page.profile #stats table.inside tr td{padding:10px 20px;text-align:left;}.page.profile #stats table.inside tr th.ln,.page.profile #stats table.inside tr td.ln{text-align:right;}.page.profile #stats table.inside tr th.rmv2,.page.profile #stats table.inside tr td.rmv2{display:none;}.page.profile #stats table.inside tr td{border-bottom:1px solid #dbdbdb;}.page.profile #stats .pages{margin:0 15px 0 auto;}.page .workersCount{width:calc(100% - 40px);margin:0 20px 20px 20px;}.page .sorting_row{border-bottom:0;}.page.profile .rmv{display:none;}.page.profile .row.closer{margin-bottom:20px;}.algorithms_cta .left p{word-break:break-all;}.page.about .col_3{width:100%;margin-right:0;}.page.about .col_3:nth-child(n){width:100%;margin-right:0;}}@media (max-width: 500px) {.page .left,.page .right{font-size:12px;}.page h1{font-size:20px;display:block;margin-bottom:0;}.page p,.page.payments p{margin-top:30px;}.page span.title_connector{font-size:14px;margin:0 10px 20px 0;}.page .select select{font-size:14px;}.page .filter .address input[type="text"]{padding:8px 10px;}.page .filter .button .button_big{font-size:14px;padding:12px 20px;margin-left:0;}.page .divider{margin:10px 0 20px 0;}.page.find_miner .left .filter{margin-top:20px;}.page.find_miner .left .filter .address{float:none;width:100%;}.page.find_miner .left .filter .button{float:none;width:100%;}.page.find_miner .right h2{font-size:20px;}.page.find_miner .right ul li .address{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;width:200px;}.page.find_miner .right ul li .button_remove{padding:6px 9px;}#intro.referrals .frame .row .col_3{width:100%;}#intro.referrals p{font-size:16px;padding-top:30px;}.page.news .newsfeed h2,.page.news .newsprofile h1{font-size:18px;}.page.news .newsfeed .button_big{display:block;text-align:center;}.page.media .row .col_4{width:100%;}.page.media .row .col_4:nth-child(n){margin-right:0;}.page.media .row .col_4:last-child{margin-bottom:0;}.page.media .row .col_6{width:calc(50% - 15px);margin-bottom:30px;}.page.media .row .col_6:nth-child(3n){margin-right:30px;}.page.media .row .col_6:nth-child(2n){margin-right:0;}.page.media .row ul{-webkit-column-count:2;-moz-column-count:2;column-count:2;}.page#profitability table.light tr th,.page#profitability table.light tr td{word-spacing:0px;padding:15px 10px;}.page#profitability table.light tr td sub{font-size:10px;margin-top:0;}.page#profitability .algorithms .algorithm{padding:10px 5px;width:calc(50.00% - 5px);margin-right:10px;margin-bottom:10px;}.page#profitability .algorithms .algorithm:nth-child(5n){margin-right:10px;}.page#profitability .algorithms .algorithm:nth-child(4n){margin-right:10px;}.page#profitability .algorithms .algorithm:nth-child(3n){margin-right:10px;}.page#profitability .algorithms .algorithm:nth-child(2n){margin-right:0;}.page#profitability .algorithms .algorithm h4{font-size:12px;margin-bottom:5px;}.page#profitability .algorithms .algorithm p{font-size:12px;}.page#profitability .social{margin-bottom:60px;}.page .form .custom_settings .algorithm{width:100%;}.page .form .custom_settings .algorithm:nth-child(n){margin-right:0;}.page #stats ul li{width:auto;font-size:12px;padding:0 10px 10px 10px;}.page.profile #stats ul li{width:auto;font-size:12px;padding:0 10px 10px 10px;}.page.profile h1{margin-bottom:20px;word-wrap:break-word;}.page.profile .select.right{margin-bottom:20px;}.page.marketplace .select{margin-bottom:10px;}.page.marketplace h1{margin-bottom:10px;}.page.profile .inforow{margin-top:-30px;}.marketplace table.market tr th.rmv{display:none;}.marketplace table.market tr td.rmv{display:none;}.marketplace table.market tr th,.marketplace table.market tr.titles th,.marketplace table.market tr td{padding:8px 0px;}.marketplace table.market tr th:first-child{padding-left:10px;}.marketplace table.market tr td:first-child{padding-left:10px;}.marketplace table.market tr th:last-child{padding-right:10px;}.marketplace table.market tr td:last-child{padding-right:10px;}.page.profile .col_1_3 .payout .payout_header{background-position:right -20px;}.page.profile .col_1_3 .payout .title,.page.profile .col_1_3 .payout .value{padding:5px 0;}.algorithms_cta .button_outlined{font-size:14px;padding:15px 10px;margin:20px 0 10px 0;}.page.pool-settings #pool_verify .row{width:100%;overflow:hidden;margin-bottom:20px;}.page.pool-settings #pool_verify .row .col_1_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}.page.pool-settings #pool_verify .row .col_2_2{width:100%;margin-right:0;float:none;}}@media (max-width: 400px) {.page .filter .address input[type="text"]{padding:5px 10px;}.page .filter .button .button_big{font-size:12px;padding:10px 10px;margin-left:0;}.page.find_miner .right ul li .address{width:150px;}.page .form .electricity input[type="text"]{width:55px;font-size:12px;padding:11px 10px;}.page .form .select select{font-size:12px;}.page .form sub{font-size:12px;}}.no_border{border-bottom:0;padding-bottom:0;}.no_margin{margin-bottom:0;}.page .empty{clear:both;margin:30px 0 0 0;background:transparent;border:2px dashed #dbdbdb;border-radius:5px;box-shadow:none;padding:40px;text-align:center;}.page .empty p{color:#959595;font-weight:300;font-size:20px;letter-spacing:0;text-transform:none;margin:0 auto 0 auto;text-align:center;border:0;padding:0;display:block;}.page .notify{background:#5a6077;color:#fff;padding:20px;border-radius:4px;width:100%;display:table;margin:0 0 20px 0;font-size:14px;font-weight:700;text-align:center;}.page .notify a:link,#content .notify a:visited,#content .notify a:active{color:#fff;}.page .notify a:hover,#content .notify a:visited:hover{color:#fff;opacity:0.6;}.page .notify.red{background:#ef5350;}.page .notify.green{background:#68b541;}#maintenanceNotice{background:#ef5350;color:#fff;padding:25px;border-radius:0;width:100%;display:table;margin:0;font-size:16px;font-weight:700;text-align:center;position:fixed;left:0;bottom:0;right:0;z-index:999;opacity:0.95;line-height:1.3;}#paymentsNotice{background:#68b541;color:#fff;padding:25px;border-radius:0;width:100%;display:table;margin:0;font-size:16px;font-weight:700;text-align:center;position:fixed;left:0;bottom:0;right:0;z-index:999;opacity:0.95;line-height:1.3;}#notificationNotice{background:#faa242;color:#fff;padding:25px;border-radius:0;width:100%;display:table;margin:0;font-size:16px;font-weight:700;text-align:center;position:fixed;left:0;bottom:0;right:0;z-index:999;opacity:0.95;line-height:1.3;}.isInDevMode{position:fixed;bottom:10px;text-align:center;left:calc(50% - 100px);color:#fff;background:#ef5350;height:30px;line-height:30px;width:200px;border-radius:5px;opacity:0.5;}.login-trouble{margin-top:30px;}.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}* html .clearfix{zoom:1;}*:first-child+html .clearfix{zoom:1;}.go-to-legacy{position:absolute;top:0;background:#fba342;padding:5px 10px;border-bottom-left-radius:5px;border-bottom-right-radius:5px;text-transform:uppercase;font-size:12px;font-weight:bold;right:0;margin-top:-35px;}.go-to-legacy a,.go-to-legacy a:hover,.go-to-legacy a:active,.go-to-legacy a:visited{text-decoration:none;color:#fff;}@media (max-width: 1000px){.go-to-legacy{margin-top:-20px;}}.page.marketplace{overflow:visible;}.page.profile.marketplace .frame{position:relative;}
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,700,900&subset=cyrillic-ext');*{font-family:'Roboto',sans-serif;}
.clear{clear:both;}p{text-align:left;}header.loggedin{border-bottom:1px solid #dbdbdb;overflow:visible;padding:70px 0 15px 0;height:120px;}header.loggedin .logo{text-indent:9999px;background:url("../images/web/sprite.svg") no-repeat;background-size:400px 400px;background-position:0px 0px;width:130px;height:33px;display:block;float:left;overflow:hidden;}header.loggedin nav.main{background:transparent;margin:0;}header.loggedin nav.main a:link,header.loggedin nav.main a:visited,header.loggedin nav.main a:active{float:right;color:#524e4e;text-decoration:none;font-weight:400;font-size:14px;padding:9px 20px 10px 20px;cursor:pointer;margin:0;}header.loggedin nav.main a.selected{color:#fba342;}header.loggedin nav.main a:hover,header nav.main a:visited:hover{color:inherit;text-decoration:none;font-weight:400;opacity:0.5;}header.loggedin nav.main a.selected:hover,header nav.main a.selected:visited:hover{color:#fba342;text-decoration:none;font-weight:400;opacity:0.5;}header.loggedin nav.main a:first-child{padding-right:0;}header.loggedin nav.main #buyers_button{float:right;color:#524e4e;text-decoration:none;font-weight:400;font-size:14px;padding:9px 20px 10px 20px;cursor:pointer;position:relative;}header.loggedin nav.main #buyers_button::selection{background:#fff;color:inherit;}header.loggedin nav.main #buyers_button::-moz-selection{background:#fff;color:inherit;}header.loggedin nav.main #buyers_button.more{border:1px solid #dbdbdb;box-shadow:3px 3px 5px rgba(0,0,0,0.05);border-radius:5px 5px 0 0;padding:8px 19px 10px 19px;}header.loggedin nav.main #buyers_button.more::selection{background:#fff;color:inherit;}header.loggedin nav.main #buyers_button.more::-moz-selection{background:#fff;color:inherit;}header.loggedin nav.main #buyers_button .arrow{background:url("../images/web/sprite.svg") no-repeat;background-position:-226px -450px;background-size:800px 800px;width:12px;height:8px;float:right;margin:5px 0 0 8px;}header.loggedin nav.main #buyers_button .divider{display:none;height:7px;width:100%;background:#fff;z-index:100;position:absolute;bottom:-3px;left:0;right:0;}header.loggedin nav.main #buyers_button #buyers_dropdown{display:none;width:auto;position:absolute;left:-1px;top:34px;text-align:left;background:#fff;box-shadow:3px 3px 5px rgba(0,0,0,0.05);border-radius:0 5px 5px 5px;border:1px solid #dbdbdb;z-index:99;width:200px;}header.loggedin nav.main #buyers_button #buyers_dropdown a,header.loggedin nav.main #buyers_button #buyers_dropdown a:link,header.loggedin nav.main #buyers_button #buyers_dropdown a:active,header.loggedin nav.main #buyers_button #buyers_dropdown a:visited{float:none;display:table;text-align:left;padding:15px 25px;}header.loggedin nav.main #sellers_button{float:right;color:#524e4e;text-decoration:none;font-weight:400;font-size:14px;padding:9px 20px 10px 20px;cursor:pointer;position:relative;}header.loggedin nav.main #sellers_button::selection{background:#fff;color:inherit;}header.loggedin nav.main #sellers_button::-moz-selection{background:#fff;color:inherit;}header.loggedin nav.main #sellers_button.more{border:1px solid #dbdbdb;box-shadow:3px 3px 5px rgba(0,0,0,0.05);border-radius:5px 5px 0 0;padding:8px 19px 10px 19px;}header.loggedin nav.main #sellers_button.more::selection{background:#fff;color:inherit;}header.loggedin nav.main #sellers_button.more::-moz-selection{background:#fff;color:inherit;}header.loggedin nav.main #sellers_button .arrow{background:url("../images/web/sprite.svg") no-repeat;background-position:-226px -450px;background-size:800px 800px;width:12px;height:8px;float:right;margin:5px 0 0 8px;}header.loggedin nav.main #sellers_button .divider{display:none;height:7px;width:100%;background:#fff;z-index:100;position:absolute;bottom:-3px;left:0;right:0;}header.loggedin nav.main #sellers_button #sellers_dropdown{display:none;width:auto;position:absolute;left:-1px;top:34px;text-align:left;background:#fff;box-shadow:3px 3px 5px rgba(0,0,0,0.05);border-radius:0 5px 5px 5px;border:1px solid #dbdbdb;z-index:99;width:200px;}header.loggedin nav.main #sellers_button #sellers_dropdown a,header.loggedin nav.main #sellers_button #sellers_dropdown a:link,header.loggedin nav.main #sellers_button #sellers_dropdown a:active,header.loggedin nav.main #sellers_button #sellers_dropdown a:visited{float:none;display:table;text-align:left;padding:15px 25px;}header.loggedin nav.top{background:#fba542;background:-moz-linear-gradient(left,#fb8842 0%,#fbc342 50%,#7db9e8 100%);background:-webkit-linear-gradient(left,#fb8842 0%,#fbc342 100%);background:linear-gradient(to right,#fb8842 0%,#fbc342 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb8842',endColorstr='#7db9e8',GradientType=1);position:absolute;top:0;left:0;right:0;}header.loggedin nav.top a:link,header nav.top a:visited,header nav.top a:active{color:#fff;text-decoration:none;font-weight:700;font-size:14px;padding:20px 40px 20px 0;float:left;}header.loggedin nav.top a:hover,header nav.top a:visited:hover{color:#fff;text-decoration:none;opacity:0.8;}header.loggedin nav.top #languages{float:right;position:relative;}header.loggedin nav.top #languages #sel_lang{color:#fff;text-decoration:none;font-weight:700;font-size:14px;padding:20px 0 0 0;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:right -151px;padding-right:26px;cursor:pointer;}header.loggedin nav.top #languages #hide_lang{display:none;position:absolute;background:#272727;padding:20px 20px;top:54px;right:0px;z-index:100;}header.loggedin nav.top #languages #hide_lang a{padding:10px 20px 10px 20px;margin:0;display:table;float:none;}header.loggedin nav.top #languages #hide_lang a:hover{opacity:1.0;color:#fbc342;}header.loggedin nav.top #languages #sel_lang::selection{background:transparent;color:inherit;}header.loggedin nav.top #languages #sel_lang::-moz-selection{background:transparent;color:inherit;}#popbackground{display:none;background:rgba(38,38,38,0.8);position:absolute;top:0;left:0;right:0;bottom:0;z-index:105;}#withdrawUp{display:none;background:#fff;padding:30px 0;width:430px;box-shadow:0px 0px 30px rgba(0,0,0,0.55);position:absolute;top:100px;left:50%;margin-left:-215px;z-index:106;border-radius:5px;text-align:left;}#withdrawUp h2{text-align:left;margin-bottom:30px;padding:0 30px;}#withdrawUp .closeNow{width:10px;height:10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-326px -450px;cursor:pointer;margin:0;position:absolute;top:15px;right:15px;}#withdrawUp .grey{background:#f8f8f8;padding:20px 30px 10px 30px;margin:0 0 20px 0;}#withdrawUp .row{width:100%;overflow:hidden;position:relative;padding:0 30px;}#withdrawUp .row label{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;display:block;margin:0 0 10px 0;}#withdrawUp .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0 0 20px 0;padding:8px 8px 8px 10px;color:#524e4e;font-size:16px;font-weight:400;width:100%;}#withdrawUp .row input.shorten{padding-right:40px;}#withdrawUp .row span{display:block;font-weight:400;position:absolute;top:31px;right:12px;font-size:16px;}#withdrawUp .grey .row{padding:0;}#withdrawUp .receipt{margin:0 10px;}#withdrawUp .receipt .row{margin-bottom:5px;padding:0;}#withdrawUp .receipt .row label{font-size:14px;font-weight:400;color:#524e4e;letter-spacing:0px;text-transform:none;display:block;margin:0 0 10px 0;float:left;width:50%;}#withdrawUp .receipt .row .number{font-size:14px;font-weight:400;color:#524e4e;letter-spacing:0px;text-transform:none;display:block;margin:0 0 10px 0;float:right;width:50%;text-align:right;}#withdrawUp .receipt .row.send{border-top:1px solid #dbdbdb;padding-top:15px;margin-bottom:0;}#withdrawUp .receipt .row.send label{font-weight:700;color:#fba342;}#withdrawUp .receipt .row.send .number{font-weight:700;color:#fba342;}#withdrawUp small{color:#888888;margin-bottom:20px;display:table;width:100%;line-height:1.3;}#withdrawUp .button{background:#fba342;border-radius:4px;padding:12px 12px;display:block;color:#fff;font-weight:700;font-size:16px;text-transform:none;margin:0 30px;cursor:pointer;text-decoration:none;text-align:center;}#withdrawUp .button:hover{opacity:0.8;}#withdrawConfirmationUp{display:none;background:#fff;padding:30px 0;width:430px;box-shadow:0px 0px 30px rgba(0,0,0,0.55);position:absolute;top:100px;left:50%;margin-left:-215px;z-index:106;border-radius:5px;text-align:left;}#withdrawConfirmationUp h2{text-align:left;margin-bottom:30px;padding:0 30px;}#withdrawConfirmationUp .closeNow{width:10px;height:10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-326px -450px;cursor:pointer;margin:0;position:absolute;top:15px;right:15px;}#withdrawConfirmationUp .grey{background:#f8f8f8;padding:20px 30px 10px 30px;margin:0 0 20px 0;}#withdrawConfirmationUp .row{width:100%;overflow:visible;position:relative;padding:0 30px;}#withdrawConfirmationUp .row label{font-size:10px;font-weight:400;color:#959595;letter-spacing:1px;text-transform:uppercase;display:block;margin:0 0 10px 0;}#withdrawConfirmationUp .row .linkResend{position:absolute;top:-2px;right:30px;color:#128ddd;text-decoration:underline;font-size:12px;cursor:pointer;}#withdrawConfirmationUp .row .linkResend:hover{color:#fac242;}#withdrawConfirmationUp .row .linkResend.confirmed{color:#68b541;text-decoration:none;cursor:default;}#withdrawConfirmationUp .row .linkResend.confirmed:hover{color:#68b541;}#withdrawConfirmationUp .row .text{font-size:16px;font-weight:700;width:100%;text-align:left;margin-bottom:25px;}#withdrawConfirmationUp .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0 0 20px 0;padding:8px 8px 8px 10px;color:#524e4e;font-size:16px;font-weight:400;width:100%;}#withdrawConfirmationUp .row input.shorten{padding-right:40px;}#withdrawConfirmationUp .row span{display:block;font-weight:400;position:absolute;top:31px;right:12px;font-size:16px;}#withdrawConfirmationUp .grey .row{padding:0;}#withdrawConfirmationUp .receipt{margin:0 10px;}#withdrawConfirmationUp .receipt .row{margin-bottom:5px;padding:0;overflow:hidden;}#withdrawConfirmationUp .receipt .row label{font-size:14px;font-weight:400;color:#524e4e;letter-spacing:0px;text-transform:none;display:block;margin:0 0 10px 0;float:left;width:50%;}#withdrawConfirmationUp .receipt .row .number{font-size:14px;font-weight:400;color:#524e4e;letter-spacing:0px;text-transform:none;display:block;margin:0 0 10px 0;float:right;width:50%;text-align:right;}#withdrawConfirmationUp .receipt .row.send{border-top:1px solid #dbdbdb;padding-top:15px;margin-bottom:0;}#withdrawConfirmationUp .receipt .row.send label{font-weight:700;color:#fba342;}#withdrawConfirmationUp .receipt .row.send .number{font-weight:700;color:#fba342;}#withdrawConfirmationUp small{color:#888888;margin-bottom:20px;display:table;width:100%;line-height:1.3;}#withdrawConfirmationUp .button{background:#fba342;border-radius:4px;padding:12px 12px;display:block;color:#fff;font-weight:700;font-size:16px;text-transform:none;margin:0 30px;cursor:pointer;text-decoration:none;text-align:center;}#withdrawConfirmationUp .button:hover{opacity:0.8;}#depositUp{display:none;background:#fff;padding:30px;width:500px;box-shadow:0px 0px 30px rgba(0,0,0,0.55);position:absolute;top:100px;left:50%;margin-left:-250px;z-index:106;border-radius:5px;text-align:left;}#depositUp h2{text-align:left;margin-bottom:30px;}#depositUp .closeNow{width:10px;height:10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-326px -450px;cursor:pointer;margin:0;position:absolute;top:15px;right:15px;}#depositUp .qr{float:none;margin:0 auto 30px auto;width:auto;display:table;border:1px solid #dbdbdb;}#depositUp .qr img{width:auto;margin:10px;}#depositUp label{font-size:14px;font-weight:400;margin:0 0 5px 0;display:block;text-align:center;}#depositUp b{font-size:18px;font-weight:700;color:#68b641;margin:0 0 20px 0;display:block;text-align:center;}#depositUp a:link,#depositUp a:active,#depositUp a:visited{color:#128ede;text-decoration:underline;font-size:14px;text-align:center;margin:0 auto;display:table;}#depositUp a:hover,#depositUp a:visited:hover{color:#fbc342;}#depositUp small{color:#888888;margin-bottom:20px;display:table;width:100%;line-height:1.3;font-size:12px;text-align:center;}#depositUp small a:link,#depositUp small a:active,#depositUp small a:visited{color:#888888;text-decoration:underline;font-size:12px;text-align:inherit;margin:inherit;display:inline;}#depositUp small a:hover,#depositUp small a:visited:hover{color:#fbc342;}.popup{display:none;background:#fff;padding:30px;width:370px;box-shadow:0px 0px 30px rgba(0,0,0,0.55);position:fixed;top:100px;left:50%;margin-left:-185px;z-index:106;border-radius:5px;text-align:left;}.popup h2{text-align:left;margin-bottom:30px;}.popup p{margin-bottom:30px;}.popup .closeNow{width:10px;height:10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-326px -450px;cursor:pointer;margin:0;position:absolute;top:15px;right:15px;}.popup .row{width:100%;overflow:hidden;}.popup .row label{font-size:16px;font-weight:400;width:100%;margin:0 0 5px 0;display:block;}.popup .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0 0 20px 0;padding:8px;color:#524e4e;font-family:sans-serif;font-size:16px;font-weight:400;width:100%;}.popup .row .text{margin:10px 0 0 0;}.popup .row .text.key{font-family:sans-serif;font-size:20px;font-weight:bold;color:#000;}.popup .row .qr{margin:10px 0 30px 0;}.popup .divider{border-top:1px solid #dbdbdb;margin:30px 0;position:relative;}.popup .divider p{position:absolute;width:40px;left:50%;margin-left:-20px;background:#fff;top:-22px;text-align:center;font-size:14px;color:#888;margin-bottom:0;}.popup .button{background:#fba342;border-radius:3px;padding:12px 12px;display:block;color:#fff;font-weight:700;font-size:16px;text-transform:none;margin:0;cursor:pointer;text-decoration:none;text-align:center;border:}.popup .button.red{background:#e92424;}.popup .button:hover{opacity:0.8;}#withdrawUp .notify{background:#5a6077;color:#fff;padding:15px;border-radius:4px;width:auto;margin:0 30px 20px 30px;font-size:14px;display:none;text-align:center;}#withdrawUp .notify a:link,#content .notify a:visited,#content .notify a:active{color:#fff;}#withdrawUp .notify a:hover,#content .notify a:visited:hover{color:#fff;opacity:0.6;}#withdrawUp .notify.green{background:#68b641;}#withdrawUp .notify.yellow{background:#fbc342;}#withdrawUp .notify.red{background:#ef5350;}#withdrawUp .notify.blue{background:#128ede;}.marketUp{display:none;background:#fff;padding:30px;width:370px;box-shadow:0px 0px 30px rgba(0,0,0,0.55);position:fixed;top:100px;left:50%;margin-left:-185px;z-index:106;border-radius:5px;text-align:left;}.marketUp h2{text-align:center;margin-bottom:30px;}.marketUp .closeNow{width:10px;height:10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-326px -450px;cursor:pointer;margin:0;position:absolute;top:15px;right:15px;}.marketUp p{text-align:center;line-height:1.3;}.marketUp .row{width:100%;overflow:hidden;margin-bottom:20px;}.marketUp .row label{font-size:16px;font-weight:400;width:100%;margin:0 0 5px 0;display:block;}.marketUp .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0 0 0 0;padding:8px;color:#524e4e;font-family:sans-serif;font-size:16px;font-weight:400;width:100%;}.marketUp .row input.shorten{width:calc(100% - 170px);float:left;}.marketUp .row input.bottext{margin-bottom:5px;}.marketUp .row span{display:block;margin:11px 0 0 10px;font-weight:400;width:70px;float:left;}.marketUp small{color:#888888;margin-bottom:20px;display:table;width:100%;line-height:1.3;}.marketUp .row sub{color:#888888;display:table;width:100%;line-height:1.3;}.marketUp .row sub span{display:inline;margin:auto;font-weight:inherit;width:auto;line-height:inherit;float:none;text-decoration:underline;cursor:pointer;}.marketUp .row sub span:hover{color:#fbc342;}.marketUp .row .form_data{overflow:hidden;border:1px solid #dbdbdb;border-radius:4px;position:relative;margin:0 0 5px 0;padding:10px 0;}.marketUp .row .form_data input[type=text]{width:100%;color:#524e4e;font-size:16px;border:0;padding:0 0 0 10px;margin:0;font-weight:400;}.marketUp .row .form_data label{position:absolute;top:0;right:0;bottom:0;background:#f8f8f8;border-left:1px solid #dbdbdb;padding:13px 15px;line-height:1;font-weight:700;font-size:14px;margin:0;text-transform:none;color:#524e4e;width:auto;}.marketUp .button{background:#fba342;border-radius:4px;padding:12px 12px;display:block;color:#fff;font-weight:700;font-size:16px;text-transform:none;margin:0;cursor:pointer;text-decoration:none;text-align:center;border:0;display:block;width:100%;}.marketUp .button:hover{opacity:0.8;}.marketUp .button.red{background:#e92424;}.marketUp .button.green{background:#68b541;}.marketUp .button.gray{background:#aaaaaa;margin-bottom:10px;}.marketUp .button:disabled{background-color:#ddd;background-image:url("../images/web/loading-white.gif");background-repeat:no-repeat;background-position:right 15px center;padding-right:35px;}.marketUp .notify{background:#5a6077;color:#fff;padding:20px;border-radius:4px;width:100%;display:table;margin:0 0 20px 0;font-size:14px;font-weight:700;text-align:center;display:none;}.marketUp .notify a:link,#content .notify a:visited,#content .notify a:active{color:#fff;}.marketUp .notify a:hover,#content .notify a:visited:hover{color:#fff;opacity:0.6;}.marketUp .notify.red{background:#ef5350;}#removeSession h2{text-align:left;margin-bottom:10px;}#changePass p{margin-top:0;line-height:1.3;}#confirm{text-align:center;}#confirm p{margin-top:0;line-height:1.3;text-align:center;margin-bottom:20px;}#confirm .button{display:inline-block;width:auto;margin-right:5px;margin-left:5px;padding:12px 18px;}#confirm .button.gray{background:#999;}#dashboard{background:#fcfcfc;overflow:hidden;padding:50px 0 50px 0;clear:both;}#dashboard h1{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0;display:table;text-align:left;}#dashboard h4{color:#3a3939;font-weight:400;font-size:18px;padding:0;margin:10px 0 20px 0;display:table;text-align:left;}#dashboard .left{float:left;width:calc(100% - 430px);}#dashboard .right{float:right;width:400px;}#dashboard h2{color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:30px auto 10px 5px;text-align:left;display:inline-block;}#dashboard .left h2{width:49%;margin-left:0;}#dashboard .right h2{width:100%;}#dashboard .button_hide{color:#959595;font-size:11px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 10px auto;text-align:right;cursor:pointer;display:inline-block;width:49%;}#dashboard .box{background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);margin:0 5px 10px 0;position:relative;text-align:left;}#dashboard .link{text-align:right;color:#128ede;text-decoration:underline;font-size:12px;margin:0 5px 0 auto;display:table;cursor:pointer;}#dashboard .link:hover{color:#fbc342;}#dashboard .links{display:block;text-align:right;color:#959595;font-size:12px;}#dashboard .links .link{display:inline-block;margin:0 5px 0 5px;}#dashboard .left .box{overflow:hidden;}#dashboard .left .box .worker_element{border-right:1px solid #dbdbdb;padding:30px 0;float:left;color:#3a3939;font-weight:700;font-size:30px;text-align:center;width:calc(20% - 2px);}#dashboard .left .box .worker_element sub{display:table;text-align:center;color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:10px auto 0 auto;}#dashboard .left .box .balance_element{padding:30px 30px;float:left;color:#3a3939;font-weight:700;font-size:30px;text-align:left;width:60%;}#dashboard .left .box .balance_element small{font-size:16px;}#dashboard .left .box .balance_element sub{display:table;text-align:center;color:#959595;font-size:12px;font-weight:400;letter-spacing:0;text-transform:none;margin:5px auto 0 0;}#dashboard .left .box .balance_element .icon{width:56px;height:55px;position:absolute;bottom:15px;right:20px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-564px -149px;}#dashboard .left .box table{width:100%;margin:0;padding:0;border-collapse:collapse;}#dashboard .left .box table tr{}#dashboard .left .box table tr th{color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;text-align:left;padding:15px 20px;border-bottom:1px solid #dbdbdb;}#dashboard .left .box table tr td{text-align:left;font-size:16px;font-weight:400;color:#524e4e;padding:15px 20px;border-bottom:1px solid #dbdbdb;vertical-align:middle;}#dashboard .left .box table tr:last-child td{border-bottom:0;}#dashboard .left .box table tr td .bullet{width:8px;height:8px;border-radius:15px;float:left;display:block;margin:2px 5px 0 0;}#dashboard .left .box table tr td .active{font-size:12px;font-weight:700;text-transform:uppercase;color:#68b641;letter-spacing:1px;}#dashboard .left .box table tr td .active .bullet{background:#68b641;}#dashboard .left .box table tr td .idle{font-size:12px;font-weight:700;text-transform:uppercase;color:#fbc342;letter-spacing:1px;}#dashboard .left .box table tr td .idle .bullet{background:#fbc342;}#dashboard .left .box table tr td .dead{font-size:12px;font-weight:700;text-transform:uppercase;color:#e92424;letter-spacing:1px;}#dashboard .left .box table tr td .dead .bullet{background:#e92424;}#dashboard .left .box .button{background:#128ede;border-radius:4px;padding:8px 12px;display:block;color:#fff;font-weight:700;font-size:12px;text-transform:uppercase;margin:0;cursor:pointer;text-decoration:none;text-align:center;}#dashboard .left .box .button:hover{opacity:0.8;}#dashboard .left .box table .shw{display:none;}#dashboard .left .content_small{}#dashboard .left .content_small .box .smallline{padding:10px;font-size:14px;}#dashboard .left .content_small .box .smallline a{float:right;display:inline;}#dashboard .left .content_small .box .smallline .links{float:right;display:inline;}#dashboard .left .content_small .box .smallline .links a{float:none;}#dashboard .right .box .image{width:45px;height:62px;background:#fff url("../images/web/sprite.svg") no-repeat;background-position:-124px -211px;background-size:600px 600px;position:absolute;top:20px;left:20px;}#dashboard .right .box .data{min-height:80px;padding:19px 0 18px 80px;font-size:36px;font-weight:700;color:#3a3939;line-height:1;}#dashboard .right .box .data sub{padding:0 0 0 0;font-size:16px;font-weight:400;color:#959595;line-height:1;display:table;margin-top:5px;}#dashboard .right .box .buttons{overflow:hidden;}#dashboard .right .box .button{background:#878787;border-radius:3px;padding:10px 0;float:left;color:#fff;font-weight:700;font-size:16px;margin:9px 0 20px 0;cursor:pointer;text-decoration:none;text-align:center;}#dashboard .right .box .button:hover{opacity:0.8;}#dashboard .right .box .button.wallet{background:#fba342;margin-left:20px;margin-right:20px;width:calc(100% - 40px);}#dashboard .right .box .button.withdraw{background:#e92424;margin-left:20px;margin-right:5px;width:calc(50% - 25px);}#dashboard .right .box .button.deposit{background:#68b641;margin-right:20px;margin-left:5px;width:calc(50% - 25px);}#dashboard .right .box .button.disabled{background:#d5d5d5;cursor:default;}#dashboard .right .box .button.disabled:hover{opacity:1.0;}#dashboard .right .box h3{color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0;text-align:left;display:block;border-top:1px solid #dbdbdb;padding:20px 20px 0 20px;}#dashboard .right .box .addr{font-weight:700;padding:10px 20px 20px 20px;}#dashboard .right .box .pending{border-top:1px solid #dbdbdb;padding:20px 20px 0 20px;font-weight:400;padding:20px 20px 20px 20px;color:#D8D8D8;font-size:14px;}#dashboard .right .box .pending.active{color:#fb9142;}#dashboard .right .box .pending .ico{width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-333px -331px;float:left;margin:-2px 5px 0 0;}#dashboard .right .box .pending.active .ico{width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-352px -331px;float:left;margin:-2px 5px 0 0;}#dashboard .right .box table{width:100%;margin:0;padding:0;border-collapse:collapse;}#dashboard .right .box table tr{}#dashboard .right .box table tr th{color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;text-align:right;padding:15px 20px;border-bottom:1px solid #dbdbdb;}#dashboard .right .box table tr td{text-align:right;font-size:16px;font-weight:400;color:#524e4e;padding:15px 20px;border-bottom:1px solid #dbdbdb;vertical-align:top;}#dashboard .right .box table tr th:first-child,#dashboard .right .box table tr td:first-child{text-align:left;}#dashboard .right .box table tr:last-child td{border-bottom:0;}#dashboard .right .box table tr td.minus{color:#e92424;}#dashboard .right .box table tr td.plus{color:#68b641;}#dashboard .right .box table tr td .icon{width:13px;height:18px;float:none;display:inline-block;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;margin:0 5px -5px 0;}#dashboard .right .box table tr td .icon.withdraw{background-position:-509px -163px;}#dashboard .right .box table tr td .icon.deposit{background-position:-534px -163px;}#dashboard .right .box table tr td sub{display:block;text-align:right;color:#9b9b9b;font-weight:400;font-size:12px;margin:5px 0 0 0;}#dashboard .first_visit{margin:0 0 0 0;}#dashboard .first_visit h2{width:100%;}#dashboard .first_visit .box{background:transparent;border:2px dashed #dbdbdb;border-radius:5px;box-shadow:none;padding:40px 40px 0 40px;text-align:center;}#dashboard .first_visit .box h3{color:#959595;font-weight:300;font-size:24px;letter-spacing:0;text-transform:none;margin:0 auto 40px auto;text-align:center;border:0;padding:0;display:table;}#dashboard .first_visit .box p{color:#959595;font-weight:300;margin:0 80px 0 80px;font-size:14px;line-height:1.5;display:table;text-align:center;}#dashboard .first_visit .box p b{font-weight:700;}#dashboard .first_visit .box .button{font-size:14px;padding:15px 25px;display:table;margin:40px auto 40px auto;background:#128ede;border-radius:3px;cursor:pointer;}#dashboard .first_visit .box .inline{display:table;font-size:12px;margin:0 auto 10px auto;cursor:pointer;color:#959595;}#dashboard .first_visit .box .button:hover{opacity:0.8;}@media (max-width:1200px) {header.loggedin{padding-top:64px;height:118px;}header.loggedin nav.top a:link,header.loggedin nav.top a:visited,header.loggedin nav.top a:active{padding:15px 30px 15px 0;}header.loggedin nav.top #languages #sel_lang{padding-top:15px;background-position:right -156px;}header.loggedin nav.main a:link,header.loggedin nav.main a:visited,header.loggedin nav.main a:active{padding:10px 12px;}#dashboard .left .box .worker_element{width:calc(18% - 2px);font-size:24px;padding:25px 0;}#dashboard .left .box .balance_element{width:60%;font-size:24px;padding:25px;}#dashboard .left .box table tr td,#dashboard .right .box table tr td{font-size:14px;padding:15px 5px;}#dashboard .left .box table tr th,#dashboard .right .box table tr th{padding:15px 5px;}#dashboard .left .box table tr td:first-child,#dashboard .left .box table tr th:first-child,#dashboard .right .box table tr td:first-child,#dashboard .right .box table tr th:first-child{padding-left:15px;}#dashboard .left .box table tr td:last-child,#dashboard .left .box table tr th:last-child,#dashboard .right .box table tr td:last-child,#dashboard .right .box table tr th:last-child{padding-right:15px;}#dashboard .right .box .addr{font-size:14px;}#dashboard .right .box .data{font-size:30px;padding:15px 0 15px 63px;}#dashboard .right .box .image{background:url("../images/web/sprite.svg") no-repeat scroll -83px -140px/ 400px 400px;width:32px;height:42px;}#dashboard .right .box .button{margin-top:0;}#dashboard .left .box .button{padding:8px;}#dashboard .first_visit .box .button{padding:15px 25px}#dashboard .right .box table tr td sub{font-size:10px;}#dashboard .right .box table tr td .icon{margin-right:5px;}
}
@media (max-width:1000px) {
header.loggedin{padding:10px 0;height:70px;}
header.loggedin .logo{margin-top:9px;}
header.loggedin .menu{display:none;position:absolute;top:0;bottom:0;right:0;margin-right:-300px;width:300px;background:#272727;z-index:99;}
header.loggedin .menu .close{width:50px;height:50px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-50px -100px;cursor:pointer;position:absolute;right:0;top:0;}
header.loggedin nav.top{position:relative;background:transparent;left:unset;right:unset;top:unset;display:table;width:100%;}
header.loggedin nav.top .frame{margin:0;width:100%;}
header.loggedin nav.top #languages{float:none;padding-top:20px;}
header.loggedin nav.top #languages #hide_lang{padding-top:20px;}
header.loggedin nav.top #languages a{padding:0 0 20px 0;}
header.loggedin nav.top a:link, header.loggedin nav.top a:active, header.loggedin nav.top a:visited,header.loggedin nav.main a:link, header.loggedin nav.main a:active, header.loggedin nav.main a:visited{display:table;float:none;width:100%;color:#fff;font-weight:700;padding:10px 0 10px 0;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:12px;}
header.loggedin.loggedin nav.main{display:table;width:100%;}
header.loggedin.loggedin nav.main .one{float:none;width:100%;padding:0;border-bottom:1px solid #484848;margin-bottom:20px;}
header.loggedin.loggedin nav.main .one a{display:inline-table;width:auto;}
header.loggedin.loggedin .hamburger{width:50px;height:50px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:0px -100px;float:right;cursor:pointer;}
header.loggedin nav.main a:hover, header.loggedin nav.main a:visited:hover, header.loggedin nav.top a:hover, header.loggedin nav.top a:visited:hover{opacity:1.0;color:#fbc342;}
header.loggedin nav a.hide{display:none !important;}
header.loggedin nav.main a.logout{border-bottom:1px solid #484848;padding:20px 0;margin-bottom:20px;}
header.loggedin nav.main #buyers_button{color:#fff;font-weight:700;padding:10px 0 10px 0;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:12px;width:100%;border:0;}
header.loggedin nav.main #buyers_button .arrow{display:none;}
header.loggedin nav.main #sellers_button{color:#fff;font-weight:700;padding:10px 0 10px 0;text-align:center;text-transform:uppercase;letter-spacing:2px;font-size:12px;width:100%;border:0;}
header.loggedin nav.main #sellers_button .arrow{display:none;}
header.loggedin nav.main #buyers_button:hover, header.loggedin nav.main #sellers_button:hover{color:#fbc342;}
header.loggedin nav.main #buyers_button.more, header.loggedin nav.main #sellers_button.more{border:0;color:#fbc342;padding-bottom:0;}
header.loggedin nav.main #buyers_button .divider, header.loggedin nav.main #sellers_button .divider{background:transparent;width:50%;border-bottom:0;margin:0 auto 0 auto;height:0;padding:0;}
header.loggedin nav.main #buyers_button #buyers_dropdown, header.loggedin nav.main #sellers_button #sellers_dropdown{background:transparent;border:0;margin:0 auto;text-align:center;color:#d9d9d9;position:relative;top:0;left:auto;}
header.loggedin nav.main #buyers_button #buyers_dropdown a:link, header.loggedin nav.main #buyers_button #buyers_dropdown a:visited, header.loggedin nav.main #buyers_button #buyers_dropdown a:active{letter-spacing:0px;text-transform:none;font-size:14px;margin:15px 0;padding:0;text-align:center;color:#d9d9d9;font-weight:400;}
header.loggedin nav.main #sellers_button #sellers_dropdown a:link, header.loggedin nav.main #sellers_button #sellers_dropdown a:visited, header.loggedin nav.main #sellers_button #sellers_dropdown a:active{letter-spacing:0px;text-transform:none;font-size:14px;margin:15px 0;padding:0;text-align:center;color:#d9d9d9;font-weight:400;}
header.loggedin nav.main #buyers_button #buyers_dropdown a:hover, header.loggedin nav.main #buyers_button #buyers_dropdown a:visited:hover{color:#fbc342;}
header.loggedin nav.main #sellers_button #sellers_dropdown a:hover, header.loggedin nav.main #sellers_button #sellers_dropdown a:visited:hover{color:#fbc342;}
header.loggedin nav.top #languages #sel_lang{display:none;}
header.loggedin nav.top #languages #hide_lang{display:table;position:relative;background:transparent;padding:0;margin:0 auto;width:100%;top:auto;right:auto;}
#dashboard{padding:30px 0;}
#dashboard .left{float:none;width:100%;margin-right:0;}
#dashboard .right{float:none;width:100%;margin-left:0;}
#dashboard h1{font-size:22px;}
}
@media (max-width: 760px) {
#dashboard .left .box table tr td, #dashboard .right .box table tr td{font-size:12px;}
#dashboard .left .box table tr .rmv2{display:none;}
#dashboard .left .box table tr td .shw{display:block;margin:20px 0 0 0;line-height:1.5;color:#888;font-size:14px;word-break:break-all;}
#dashboard .left .box table tr td .shw b{color:#524e4e;}
#dashboard .left .box table tr td .shw .button{margin:20px auto 0 0;display:inline-block;padding:10px 15px;}
#dashboard .right .box .data{padding-top:21px;}
#dashboard .right .box .data{font-size:22px;}
#dashboard .right .box .data sub{font-size:14px;margin:4px 0 0 0;}
#dashboard .first_visit .box{padding:40px 20px 0 20px;}
#dashboard .first_visit .box p{margin:30px auto 0 auto;width:auto;word-break:break-all;}
#dashboard h1{font-size:18px;}
}
@media (max-width: 600px) {
#dashboard .left .box .worker_element{width:100%;float:none;border-right:0;border-bottom:1px solid #dbdbdb;}
#dashboard .left .box .balance_element{width:100%;float:none;}
#withdrawUp{width:calc(100% - 40px);left:20px;right:20px;margin-left:0;margin-right:0;top:20px;}
#depositUp{width:calc(100% - 40px);left:20px;right:20px;margin-left:0;margin-right:0;top:20px;}
#depositUp b{word-break:break-all;}
#dashboard .left .content_small .box .smallline a{float:none;display:block;text-align:left;margin:10px 0 0 0;}
}
@media (max-width: 400px) {
#dashboard .right .box .addr{font-size:11px;}
}
/* SETTINGS */
#dashboard ul.tabs{padding:20px 0 0 0;border-bottom:1px solid #dbdbdb;margin:0;list-style:none;}
#dashboard ul.tabs li{display:inline-block;border-bottom:6px solid #fff;padding:0 5px 15px 5px;text-align:center;width:140px;cursor:pointer;}
#dashboard ul.tabs li.selected{border-color:#fba342;font-weight:700;cursor:default;}
#dashboard ul.tabs li:hover{border-color:#dbdbdb;}
#dashboard ul.tabs li.selected:hover{border-color:#fba342;}
#dashboard .box.settings {margin-top:20px;overflow:hidden;display:table;width:100%;}
#dashboard .box.settings .title{display:none;}
#dashboard .box.settings h2{text-transform:none;font-size:16px;font-weight:700;color:#3a3939;letter-spacing:0px;margin:0 0 20px 0;}
#dashboard .box.settings p{text-transform:none;font-size:14px;font-weight:400;letter-spacing:0px;margin:0 0 20px 0;line-height:1.5;text-align:left;}
#dashboard .box.settings .row{width:100%;overflow:hidden;margin:0 0 20px 0;text-align:left;}
#dashboard .box.settings .row.qr-field{border:1px solid #dbdbdb;padding:20px;width:100%;overflow:hidden;margin:0 0 20px 0;text-align:left;border-radius:3px;}
#dashboard .box.settings .row label{width:100px;float:left;margin:10px 20px 0 0;font-size:14px;}
#dashboard .box.settings .row .select{float:left;display:table;width:160px;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
#dashboard .box.settings .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
#dashboard .box.settings .row .select select option{background-color:#fff;}
#dashboard .box.settings .row .saved{color:#68b641;font-weight:700;float:left;margin:8px 0 0 13px;display:none;}
#dashboard .box.settings .row .text{float:left;display:block;width:250px;margin:10px 0 0 0;text-align:left;}
#dashboard .box.settings .row .text .link{text-align:left;display:block;font-size:14px;color:#128ede;text-decoration:underline;margin-bottom:10px;}
#dashboard .box.settings .row .text .button{background:#68b641;border-radius:4px;padding:10px 15px;color:#fff;font-weight:700;font-size:14px;margin:-10px 0 0 0;cursor:pointer;text-decoration:none;text-align:center;display:table;}
#dashboard .box.settings .row .text .button.deactivate{background:#e92424;}
#dashboard .box.settings .row .text .button.red{background:#e92424;}
#dashboard .box.settings .row .text .button.blue{background:#128ede;}
#dashboard .box.settings .row .text .button:hover{opacity:0.8;}
#dashboard .box.settings .row .qr{float:left;width:100px;height:100px;margin-right:20px;position:relative;text-align: center;}
#dashboard .box.settings .row .qr.enlarged{width:100%; height:auto;}
#dashboard .box.settings .row .qr img{max-width:100%;filter: blur(1px);}
#dashboard .box.settings .row .qr.enlarged img{max-width:100%;filter: blur(0px);}
#dashboard .box.settings .row .qr.locked{background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-664px -400px;}
#dashboard .box.settings .row .qr .enlarge-qr-box{position: absolute; top: 0; right: 0; left: 0; bottom: 0; background: rgba(255, 255, 255, 0.9);transition: opacity 0.3s; -webkit-transition: opacity 0.3s; cursor: pointer;}
#dashboard .box.settings .row .qr .enlarge-qr-box .zoom{background: url(../images/web/sprite.svg) no-repeat; background-size: 2000px 2000px; background-position: -677px -1682px; position: absolute; top: 0; left: 0; right: 0; bottom: 0;}
#dashboard .box.settings .row .qr.enlarged .enlarge-qr-box .zoom{background: none;}
#dashboard .box.settings .row .qr.enlarged .enlarge-qr-box{background: none;}
#dashboard .box.settings .row .fields{float:left;width:calc(100% - 120px);}
#dashboard .box.settings .row .fields h3{text-transform:none;font-size:16px;font-weight:700;color:#3a3939;letter-spacing:0px;margin:2px 0 10px 0;text-align:left;}
#dashboard .box.settings .row .fields label{width:100%;display:block;float:none;}
#dashboard .box.settings .row .fields .input{width:140px;float:left;border:1px solid #dbdbdb;border-radius:3px;margin:0;padding:6px;margin:20px 20px 0 0;}
#dashboard .box.settings .row .fields .input input{border:0;font-family:'Raleway',calibri,sans-serif;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
#dashboard .box.settings .row .fields .input.error{border:1px solid #e92424;}
#dashboard .box.settings .row .fields .button{background:#128ede;border-radius:4px;padding:10px 15px;color:#fff;font-weight:700;font-size:14px;cursor:pointer;text-decoration:none;text-align:center;display:table;float:left;margin:20px 0 0 0;}
#dashboard .box.settings .row .fields .button.green{background:#68b641;}
#dashboard .box.settings .row .fields .button.red{background:#e92424;}
#dashboard .box.settings .checkbox-group{width:100%;overflow:hidden;margin:0 0 20px 0;}
#dashboard .box.settings .checkbox-group:last-child{margin-bottom:0;}
#dashboard .box.settings .checkbox-group .checkbox{border:1px solid #dbdbdb;width:40px;height:23px;border-radius:30px;float:left;clear:both;margin-bottom:20px;cursor:pointer;background:url("../images/web/bulletBig.png") no-repeat 18px -20px;}
#dashboard .box.settings .checkbox-group .checkbox.check{background:url("../images/web/bulletBig.png") no-repeat 1px 1px;}
#dashboard .box.settings .checkbox-group label{width:calc(100% - 70px);margin:5px 0 0 10px;float:left;font-size:14px;}
#dashboard .box.settings .radio-group{width:100%;overflow:hidden;margin:0 0 0 0;}
#dashboard .box.settings .radio-group .radio{border:1px solid #dbdbdb;width:16px;height:16px;border-radius:15px;float:left;clear:both;margin:0 10px 20px 0;cursor:pointer;}
#dashboard .box.settings .radio-group .radio.check{background:url("../images/web/bullet.png") no-repeat center center;}
#dashboard .box.settings .saved{color:#68b641;font-weight:700;float:none;margin:0px 0 20px 0px;display:none;}
#dashboard .box.settings .subsettings{margin:0 0 0 25px;}
#dashboard .box.settings .subsettings .row{}
#dashboard .box.settings .subsettings .row label{display:table;float:none;width:140px;margin-top:0;margin-bottom:5px;font-size:12px;}
#dashboard .box.settings .subsettings .row .input{float:none;display:table;width:100%;}
#dashboard .box.settings .subsettings .row .input input{border:1px solid #dbdbdb;border-radius:3px;margin:0;padding:6px;color:#524e4e;font-size:14px;font-weight:400;width:calc(100% - 100px);float:left;}
#dashboard .box.settings .subsettings .row .input input::-webkit-input-placeholder{font-size:14px;color:#a0a0a0;}
#dashboard .box.settings .subsettings .row .input input:-moz-placeholder{font-size:14px;color:#a0a0a0;}
#dashboard .box.settings .subsettings .row .input input::-moz-placeholder{font-size:14px;color:#a0a0a0;}
#dashboard .box.settings .subsettings .row .input input:-ms-input-placeholder{font-size:14px;color:#a0a0a0;}
#dashboard .box.settings .subsettings .row .input label{width:60px;float:left;margin:9px 0 0 10px;color:#a0a0a0;}
#dashboard .box.settings .subsettings .link{text-align:left;display:block;font-size:12px;color:#128ede;text-decoration:underline;margin:5px 0 0 0;}
#dashboard .box.settings .subsettings .row .col_1_2{width:270px;float:left;}
#dashboard .box.settings .subsettings .row .col_1_2 .input input{width:100%;}
#dashboard .box.settings .subsettings .row .button_save{font-size:14px;color:#fff;font-weight:700;text-decoration:none;background:#fba342;padding:10px 15px;border-radius:3px;display:inline-table;cursor:pointer;border:0;margin:0 0px 0px 0;}
#dashboard .box.settings .subsettings .row .button_save:hover{opacity:0.8;}
#dashboard .box.settings .divider{border-top:1px solid #dbdbdb;padding-top:20px;}
#dashboard .box.settings ul.sessions{margin:0 0 0 0;padding:0;}
#dashboard .box.settings ul.sessions li{margin:0;padding:0;font-size:14px;font-weight:400;margin:0 0 10px 0;text-align:left;display:block;}
#dashboard .box.settings ul.sessions li:before{content:"- ";text-indent:-5px;}
#dashboard .box.settings ul.sessions li b{color:#68b641;}
#dashboard .box.settings ul.sessions li small{font-size:10px;display:table;width:100%;margin:5px 0 0 10px;color:#999;line-height:1.3;}
#dashboard .box.settings #sessions{padding:30px;}
#dashboard .box.settings #sessions h2{}
#dashboard .box.settings #sessions .sign_out{font-size:14px;color:#128ede;text-decoration:underline;cursor:pointer;float:right;}
#dashboard .box.settings #sessions table{width:100%;margin:0;padding:0;border-collapse:seperate;border-spacing:0px;border:1px solid #dbdbdb;border-radius:2px;}
#dashboard .box.settings #sessions table tr{}
#dashboard .box.settings #sessions table tr:nth-child(2n){background:#fcfcfc;}
#dashboard .box.settings #sessions table tr th{color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;text-align:left;padding:15px 15px;border-bottom:1px solid #dbdbdb;}
#dashboard .box.settings #sessions table tr td{padding:20px 15px 20px 15px;vertical-align:top;font-size:14px;}
#dashboard .box.settings #sessions table tr td small{font-size:10px;font-weight:400;color:#959595;display:table;width:100%;margin-top:5px;line-height:1.3;}
#dashboard .box.settings #sessions table tr td .remove{font-size:14px;color:#128ede;text-decoration:underline;cursor:pointer;}
#dashboard .box.settings #sessions table tr.you{}
#dashboard .box.settings #sessions table tr.you td{color:#fba342;font-weight:700;}
#dashboard .box.settings #sessions table tr.you td:last-child{width:150px;}
#dashboard .box.settings #sessions table tr.you td small{font-weight:400;}
#dashboard .box.settings #sessions table tr td .shw{display:none;}
#dashboard .box.settings #api .row label{width:150px;}
#dashboard .box.settings #api .row .value{margin-top:8px;font-size:14px;float:left;}
#dashboard .box.settings #api .row .value .button_key{display:block;color:#128ede;text-decoration:underline;font-size:14px;margin-top:10px;cursor:pointer;}
#dashboard .box.settings #api .row .value .button_key:hover{color:#fbc342;}
#dashboard .box.settings #api p{line-height:1.3;font-size:14px;margin:0 0 30px 0;}
#dashboard .box.settings ul.tabs.vertical{padding:0 0 0 0;border-bottom:0;border-right:1px solid #dbdbdb;margin:0;list-style:none;display:table-cell;width:300px;vertical-align:top;}
#dashboard .box.settings ul.tabs.vertical li{display:block;padding:20px 15px 20px 21px;border-bottom:1px solid #dbdbdb;text-align:left;cursor:pointer;width:100%;}
#dashboard .box.settings ul.tabs.vertical li.selected{border-left:6px solid #fba342;padding:20px 15px 20px 15px;font-weight:700;cursor:default;}
#dashboard .box.settings ul.tabs.vertical li:hover{border-left:6px solid #dbdbdb;padding:20px 15px 20px 15px;}
#dashboard .box.settings ul.tabs.vertical li.selected:hover{border-left:6px solid #fba342;border-bottom:1px solid #dbdbdb;padding:20px 15px 20px 15px;}
#dashboard .box.settings #account, #dashboard .box.settings #notifications, #dashboard .box.settings #transactions, #dashboard .box.settings #sessions, #dashboard .box.settings #api, #dashboard .box.settings #buyer{display:table-cell;vertical-align:top;padding:30px;width:calc(100% - 301px);}
#dashboard .box.settings #account{display:table-cell;}
#dashboard .box.settings #transactions, #dashboard .box.settings #notifications, #dashboard .box.settings #sessions, #dashboard .box.settings #api, #dashboard .box.settings #buyer{display:none;}
@media (max-width:1200px) {
}
@media (max-width:1000px) {
#dashboard .box.settings ul.tabs.vertical{width:200px;}
}
@media (max-width: 760px) {
#dashboard .box.settings ul.tabs.vertical{display:none;}
#dashboard .box.settings #account, #dashboard .box.settings #notifications, #dashboard .box.settings #transactions, #dashboard .box.settings #sessions, #dashboard .box.settings #api, #dashboard .box.settings #buyer{display:block !important;overflow:hidden;border-bottom:1px solid #dbdbdb;width:100%;}
#dashboard .box.settings #api{border-bottom:0;}
#dashboard .box.settings #sessions h2{display:none;}
#dashboard .box.settings #api h2{display:none;}
#dashboard .box.settings .title{display:table;font-size:22px;margin:0 0 30px 0;font-weight:300;}
#dashboard .box.settings #sessions .title{margin:0 0 10px 0;}
#dashboard .box.settings #sessions .sign_out{float:none;margin:0 0 20px 0;}
#dashboard .box.settings #sessions table tr .rmv{display:none;}
#dashboard .box.settings #sessions table tr td .shw{display:block;margin:0 0 0 0;line-height:1.5;color:#888;font-size:14px;font-weight:400;}
#dashboard .box.settings #sessions table tr td .shw b{color:#524e4e;}
#dashboard .box.settings #sessions table tr.you .shw span{color:#fba342;font-weight:700;}
#dashboard .box.settings #api .row label{float:none;display:block;width:100%;text-align:left;}
#dashboard .box.settings #api .row .value{float:none;display:block;width:100%;text-align:left;}
#dashboard .box.settings .row label{float:none;display:block;width:100%;text-align:left;}
#dashboard .box.settings .row .select{float:none;display:block;width:100%;text-align:left;margin-top:5px;}
#dashboard .box.settings .row .fields .input{display:block;width:100%;float:none;margin-bottom:10px;}
#dashboard .box.settings .row .fields .button{display:table;width:auto;float:none;margin:0 auto 0 0;}
#dashboard .box.settings .row .saved{margin-left:0;}
}
@media (max-width: 500px) {
#dashboard .box.settings .row label{margin-bottom:10px;margin-top:0;float:none;display:table;}
#dashboard .box.settings .row .select{clear:both;margin:0 0 0 0;width:100%;float:none;display:block;}
#dashboard .box.settings .checkbox-group label{width:calc(100% - 50px);margin:5px 0 20px 10px;float:left;font-size:14px;line-height:1.3;}
#dashboard .box.settings .row .qr{float:none;margin:0 auto 10px auto;}
#dashboard .box.settings .row .fields{float:none;margin:0 auto 0 auto;text-align:center;width:100%;}
#dashboard .box.settings .row .fields h3{margin:0 auto 10px auto;text-align:center;display:block;}
#dashboard .box.settings .row .fields label{margin:0 auto;text-align:center;display:block;}
#dashboard .box.settings .row .fields .button{margin:0 auto;}
}
@media (max-width: 400px) {
}
/* TRANSACTIONS (tables & pages) */
#dashboard table.box.table{width:100%;margin:20px auto 20px auto;border-collapse:seperate;border-radius:3px;display:table;border:0;border-spacing:0;}
#dashboard table.box.table tr{}
#dashboard table.box.table tr:first-child{border-radius:3px 3px 0 0;}
#dashboard table.box.table tr:last-child{border-radius:0 0 3px 3px;}
#dashboard table.box.table tr th{color:#fff;font-weight:bold;padding:15px 10px;background:#fba342;font-size:14px;}
#dashboard table.box.table.past tr th{background:#878787;}
#dashboard table.box.table tr th:first-child{padding-left:20px;border-radius:3px 0 0 0;}
#dashboard table.box.table tr th:last-child{padding-right:20px;border-radius:0 3px 0 0;text-align:right;}
#dashboard table.box.table tr td{padding:15px 10px;text-align:left;text-align:left;font-size:14px;vertical-align:middle;border-bottom:1px solid #dbdbdb;line-height:1.3;}
#dashboard table.box.table tr td:first-child{padding-left:20px;border-left:1px solid #dbdbdb;}
#dashboard table.box.table tr td:last-child{padding-right:20px;border-right:1px solid #dbdbdb;text-align:right;}
#dashboard table.box.table tr td input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
#dashboard table.box.table tr td select{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;color:#524e4e;font-size:14px;font-weight:400;width:100%;background-color:#fff;}
#dashboard table.box.table tr td select option{background-color:#fff;}
#dashboard table.box.table tr:last-child td:first-child{border-radius:0 0 0 3px;}
#dashboard table.box.table tr:last-child td:last-child{border-radius:0 0 3px 0;}
#dashboard table.box.table tr td.minus{color:#e92424;font-weight:700;}
#dashboard table.box.table tr td.plus{color:#68b641;font-weight:700;}
#dashboard table.box.table tr td sub{display:table;text-align:center;color:#959595;font-size:12px;font-weight:400;letter-spacing:0;text-transform:none;margin:0 auto 0 0;}
#dashboard table.box.table tr td.minus sub{color:#e92424;margin:0;}
#dashboard table.box.table tr td.plus sub{color:#68b641;margin:0;}
#dashboard table.box.table tr td .icon{width:13px;height:14px;float:left;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;margin:1px 10px 0 0;}
#dashboard table.box.table tr td .icon.withdraw{background-position:-509px -163px;}
#dashboard table.box.table tr td .icon.deposit{background-position:-534px -163px;}
#dashboard table.box.table tr td a:link, #dashboard table.box.table tr td a:visited, #dashboard table.box.table tr td a:active {color:#128ede;text-decoration:underline;font-weight:inherit;}
#dashboard table.box.table tr td a:hover, #dashboard table.box.table tr td a:visited:hover {color:#fbc342;text-decoration:underline;font-weight:inherit;}
#dashboard table.box.table tr td .bullet{width:9px;height:9px;border-radius:15px;position:absolute;left:0;top:1px;}
#dashboard table.box.table tr td .active{font-size:12px;font-weight:700;text-transform:uppercase;color:#68b641;letter-spacing:1px;position:relative;padding-left:14px;line-height:1;}
#dashboard table.box.table tr td .active .bullet{background:#68b641;}
#dashboard table.box.table tr td .idle{font-size:12px;font-weight:700;text-transform:uppercase;color:#fbc342;letter-spacing:1px;position:relative;padding-left:14px;line-height:1;}
#dashboard table.box.table tr td .idle .bullet{background:#fbc342;}
#dashboard table.box.table tr td .offline{font-size:12px;font-weight:700;text-transform:uppercase;color:#e92424;letter-spacing:1px;position:relative;padding-left:14px;line-height:1;}
#dashboard table.box.table tr td .offline .bullet{background:#e92424;}
#dashboard table.box.table tr td .toggle{border:1px solid #dbdbdb;width:40px;height:23px;border-radius:30px;clear:both;cursor:pointer;background:url("../images/web/bulletBig.png") no-repeat 18px -20px;margin:auto 0 auto auto}
#dashboard table.box.table tr td .toggle.check{background:url("../images/web/bulletBig.png") no-repeat 1px 1px;}
#dashboard table.box.table tr td .button{background:#878787;border-radius:3px;padding:8px 12px;display:inline-block;color:#fff;font-weight:700;font-size:12px;text-transform:uppercase;margin:0 0 0 10px;cursor:pointer;text-decoration:none;text-align:center;}
#dashboard table.box.table tr td .button.remove{background:#e92424}
#dashboard table.box.table tr td .button:hover{opacity:0.8;}
#dashboard table.box.table tr .info{float:right;display:table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -350px;cursor:pointer;margin:0 0 0 5px;}
#dashboard .pages{float:right;}
#dashboard .pages .prev{margin-right:20px;font-weight:400;cursor:pointer;color:#3a3939;font-size:14px;padding:5px 10px;}
#dashboard .pages .prev:hover{background:#fba342;border-radius:3px;color:#fff;}
#dashboard .pages .prev.disabled{color:#959595;cursor:default;font-size:14px;}
#dashboard .pages .prev.disabled:hover{color:#959595;background:transparent;}
#dashboard .pages .next{margin-left:20px;font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:5px 10px;}
#dashboard .pages .next:hover{background:#fba342;border-radius:3px;color:#fff;}
#dashboard .pages .next.disabled{opacity:0.2;cursor:default;font-size:14px;}
#dashboard .pages .next.disabled:hover{color:#3a3939;}
#dashboard .pages .dots{letter-spacing:2px;font-weight:700;font-size:14px;padding:5px 0;}
#dashboard .pages .num{font-weight:700;cursor:pointer;color:#3a3939;font-size:14px;padding:5px 10px;margin:0 0 5px 5px;display:inline-block;}
#dashboard .pages .num:hover{background:#fba342;border-radius:3px;color:#fff;}
#dashboard .pages .num.selected{background:#fba342;border-radius:3px;color:#fff;cursor:default;}
#dashboard.wallet h1{margin-bottom:30px;float:left;}
#dashboard.wallet .button_download{float:right;display:block;width:auto;margin:-10px 0 0 0;background:#fff;border:1px solid #dbdbdb;border-radius:3px;cursor:pointer;}
#dashboard.wallet .button_download .icon{width:32px;height:32px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-406px -677px;margin:10px;}
#dashboard.wallet .button_download span{display:none;}
#dashboard.wallet .button_download:hover{opacity:0.5;}
#dashboard.wallet .row{clear:both;}
#dashboard.wallet .box.transactions {margin-top:20px;overflow:hidden;width:100%;}
#dashboard.wallet .box.transactions h2{text-transform:none;font-size:16px;font-weight:700;color:#3a3939;letter-spacing:0px;margin:0 0 20px 0;}
#dashboard.wallet .box.transactions #withdrawals{display:block;}
#dashboard.wallet .box.transactions #transactions, #dashboard .box.transactions #deposits{display:none;}
#dashboard.wallet .box.transactions #transactions, #dashboard.wallet .box.transactions #withdrawals, #dashboard.wallet .box.transactions #deposits{padding:0px 20px 20px 20px;font-size:14px;width:100%;}
#dashboard.wallet .box.transactions #transactions p, #dashboard.wallet .box.transactions #withdrawals p, #dashboard.wallet .box.transactions #deposits p{color:#959595;font-weight:300;font-size:18px;letter-spacing:0;text-transform:none;margin:0;text-align:center;border:0;padding:35px 15px 0 15px;display:block;}
#dashboard.wallet .box.transactions table{width:100%;margin:0;padding:0;border-collapse:seperate;border-spacing:0px;}
#dashboard.wallet .box.transactions table tr{}
#dashboard.wallet .box.transactions table tr th{color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;text-align:left;padding:15px 15px;border-bottom:1px solid #dbdbdb;}
#dashboard.wallet .box.transactions table tr td{padding:15px 15px 15px 15px;vertical-align:middle;font-size:14px;border-bottom:1px solid #f0f0f0;font-weight:400;}
#dashboard.wallet .box.transactions table tr:last-child td{border-bottom:1px solid #dbdbdb;}
#dashboard.wallet .box.transactions table tr th:first-child, #dashboard.wallet .box.transactions table tr td:first-child{padding-left:0;}
#dashboard.wallet .box.transactions table tr th:last-child, #dashboard.wallet .box.transactions table tr td:last-child{padding-right:0;text-align:right;}
#dashboard.wallet .box.transactions table tr td a:link, #dashboard.wallet .box.transactions table tr td a:visited, #dashboard.wallet .box.transactions table tr td a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}
#dashboard.wallet .box.transactions table tr td a:hover, #dashboard.wallet .box.transactions table tr td a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}
#dashboard.wallet .box.transactions table tr td .pending{color:#fb9142;font-weight:700;}
#dashboard.wallet .box.transactions table tr td .confirmed{}
#dashboard.wallet .box.transactions table tr td .button{background:#878787;border-radius:4px;padding:8px 10px;color:#fff;font-weight:700;font-size:14px;margin:0 0 0 auto;cursor:pointer;text-decoration:none;text-align:center;}
#dashboard.wallet .box.transactions table tr td .button.green{background:#68b541;}
#dashboard.wallet .box.transactions table tr td .button.orange{background:#fb9142;}
#dashboard.wallet .box.transactions table tr td .button.red{background:#e92424;}
#dashboard.wallet .box.transactions table tr td .button:hover{opacity:0.8;}
#dashboard.wallet .box.transactions .pages{margin:20px 0 20px 0;}
#dashboard.wallet .col_1_3{width:calc(33.33% - 20px);margin-right:30px;float:left;}
#dashboard.wallet .col_2_3{width:calc(33.33% - 20px);margin-right:30px;float:left;}
#dashboard.wallet .col_3_3{width:calc(33.33% - 20px);margin-right:0;float:left;}
#dashboard.wallet .col_1_3 .box, #dashboard.wallet .col_2_3 .box, #dashboard.wallet .col_3_3 .box{height:157px;margin-right:0;}
#dashboard.wallet #balance .box .image{width:45px;height:62px;background:#fff url("../images/web/sprite.svg") no-repeat;background-position:-124px -211px;background-size:600px 600px;position:absolute;top:20px;left:20px;}
#dashboard.wallet #balance .box .data{min-height:80px;padding:19px 0 18px 80px;font-size:36px;font-weight:700;color:#3a3939;line-height:1;}
#dashboard.wallet #balance .box .data sub{padding:0 0 0 0;font-size:16px;font-weight:400;color:#959595;line-height:1;display:table;margin-top:5px;}
#dashboard.wallet #balance .box .buttons{overflow:hidden;}
#dashboard.wallet #balance .box .button{background:#878787;border-radius:4px;padding:10px 0;float:left;color:#fff;font-weight:700;font-size:14px;margin:9px 0 20px 0;cursor:pointer;text-decoration:none;text-align:center;}
#dashboard.wallet #balance .box .button:hover{opacity:0.8;}
#dashboard.wallet #balance .box .button.withdraw{background:#fba342;margin-left:20px;margin-right:5px;width:calc(50% - 25px);}
#dashboard.wallet #balance .box .button.deposit{background:#68b641;margin-right:20px;margin-left:5px;width:calc(50% - 25px);}
#dashboard.wallet #balance .box .button.disabled{background:#d5d5d5;cursor:default;}
#dashboard.wallet #balance .box .button.disabled:hover{opacity:1.0;}
#dashboard.wallet #address .box h3{color:#959595;font-size:16px;font-weight:400;text-align:left;display:block;padding:20px 20px 0 20px;}
#dashboard.wallet #address .box .addr{font-size:18px;font-weight:700;padding:10px 20px 20px 20px;word-break: break-all;}
#dashboard.wallet #address .box small{color:#959595;font-size:12px;padding:20px 20px 0 20px;display:block;border-top:1px solid #dbdbdb;}
#dashboard.wallet #address .box small a:link, #dashboard.wallet #address .box small a:visited, #dashboard.wallet #address .box small a:active{color:#128ede;text-decoration:underline;font-weight:inherit;}
#dashboard.wallet #address .box small a:hover, #dashboard.wallet #address .box small a:visited:hover{color:#fbc342;text-decoration:underline;font-weight:inherit;}
#dashboard.wallet #pending .box .pending{font-weight:400;color:#D8D8D8;font-size:14px;position:relative;}
#dashboard.wallet #pending .box .pending h3{color:#959595;font-size:16px;font-weight:400;text-align:left;display:block;padding:20px 20px 5px 20px;}
#dashboard.wallet #pending .box .pending.active h3{color:#fb9142;font-size:16px;font-weight:400;text-align:left;display:block;padding:20px 20px 5px 20px;}
#dashboard.wallet #pending .box .pending .ico{width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-423px -331px;float:left;margin:-2px 5px 0 0;}
#dashboard.wallet #pending .box .pending.active .ico{width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-352px -331px;float:left;margin:-2px 5px 0 0;}
#dashboard.wallet #pending .box .pending p{font-weight:400;color:#D8D8D8;font-size:14px;margin:0 20px 0 42px;font-size:16px;}
#dashboard.wallet #pending .box .pending.active p{color:#3a3939;font-weight:700;}
#dashboard.wallet #pending .box .divider{margin-top:20px;border-top:1px solid #dbdbdb;}
#dashboard.wallet #pending .box .pending.active .button{position:absolute;right:15px;bottom:-5px;background:#fb9142;padding:8px 10px;font-size:12px;color:#fff;font-weight:700;display:table;border-radius:3px;cursor:pointer;}
#dashboard.wallet #pending .box .pending.active .button:hover{opacity:0.8;}
#dashboard.wallet .notify{margin-top:10px;}
#dashboard.wallet .shw, #dashboard.wallet .title{display:none;}
/* REFERRALS */
#dashboard.referrals p{text-align:left;line-height:1.5;margin-bottom:30px;}
#dashboard.referrals .box.referral_form{overflow:hidden;padding:20px;margin-top:20px;}
#dashboard.referrals .box.referral_form .col_1_3{float:left;width:calc(25% - 20px);margin-right:20px;}
#dashboard.referrals .box.referral_form .col_2_3{float:left;width:50%;}
#dashboard.referrals .box.referral_form label{font-weight:700;font-size:14px;display:block;margin:0 0 10px 0;}
#dashboard.referrals .box.referral_form .select{float:none;display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
#dashboard.referrals .box.referral_form .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
#dashboard.referrals .box.referral_form .select select option{background-color:#fff;}
#dashboard.referrals .box.referral_form .input{float:none;display:table;width:100%;}
#dashboard.referrals .box.referral_form .input input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;color:#524e4e;font-size:14px;font-weight:400;width:calc(100% - 150px);float:left;}
#dashboard.referrals .box.referral_form .input .link{float:left;margin:8px 0 0 20px;}
#dashboard.referrals h2{font-weight:300;color:#3a3939;font-size:24px;margin:0 0 5px 0;padding:0;text-align:left;text-transform:none;letter-spacing:0px;display:table;}
#dashboard.referrals h3{font-weight:400;color:#888888;font-size:16px;margin:0 0 20px 0;padding:0;text-align:left;text-transform:none;letter-spacing:0px;display:table;}
#dashboard.referrals h3 b{color:#3a3939;}
#dashboard.referrals table{width:100%;margin:20px auto 20px auto;border-collapse:seperate;border-radius:5px;display:table;border:0;border-spacing:0;background:#fff;box-shadow:2px 2px 3px rgba(0, 0, 0, 0.05);text-align:left;}
#dashboard.referrals table tr{}
#dashboard.referrals table tr:first-child{border-radius:5px 5px 0 0;}
#dashboard.referrals table tr:last-child{border-radius:0 0 5px 5px;}
#dashboard.referrals table tr th{color:#fff;font-weight:bold;padding:15px 10px;background:#fba342;}
#dashboard.referrals .col_2:nth-child(2) table tr th{background:#fb8842;}
#dashboard.referrals table tr th:first-child{padding-left:20px;border-radius:5px 0 0 0;}
#dashboard.referrals table tr th:last-child{padding-right:20px;border-radius:0 5px 0 0;text-align:right;}
#dashboard.referrals table tr td{padding:10px 10px;text-align:left;text-align:left;font-size:14px;vertical-align:middle;border-bottom:1px solid #dbdbdb;line-height:1.3;}
#dashboard.referrals table tr td:first-child{padding-left:20px;border-left:1px solid #dbdbdb;}
#dashboard.referrals table tr td:last-child{padding-right:20px;border-right:1px solid #dbdbdb;text-align:right;}
#dashboard.referrals table tr:last-child td:first-child{border-radius:0 0 0 5px;}
#dashboard.referrals table tr:last-child td:last-child{border-radius:0 0 5px 0;}
#dashboard.referrals .pages{float:none;width:100%;overflow:hidden;margin-bottom:50px;}
#dashboard.referrals .pages .prev{float:left;}
#dashboard.referrals .pages .next{float:right;}
#dashboard.referrals .ref_stats{margin:50px 0 0 0;}
#dashboard.referrals .divider{clear:both;border-bottom:1px solid #dbdbdb;padding:40px 0 0 0;margin:0 0 40px 0;}
#dashboard.referrals .box.promotions{margin-top:20px;display:table;width:100%;}
#dashboard.referrals .box.promotions h3{font-weight:700;color:#3a3939}
#dashboard.referrals .box.promotions #signatures{margin:30px 30px 0 30px;}
#dashboard.referrals .box.promotions #signatures label{width:150px;float:left;font-size:14px;margin-top:10px;}
#dashboard.referrals .box.promotions #signatures textarea{width:calc(100% - 180px);margin-left:30px;float:left;border:1px solid #dbdbdb;border-radius:3px;padding:15px;margin-bottom:30px;overflow-x:hidden;height:100px;resize:vertical;font-family:'Droid Sans Mono', monotype;font-size:12px;color:#524e4e;}
#dashboard.referrals .box.promotions #banners{display:none;margin:30px;}
#dashboard.referrals .shw{display:none;}
#dashboard.referrals ul.tabs.vertical{padding:0 0 0 0;border-bottom:0;border-right:1px solid #dbdbdb;margin:0;list-style:none;display:table-cell;width:300px;vertical-align:top;}
#dashboard.referrals ul.tabs.vertical li{display:block;padding:20px 15px 20px 21px;border-bottom:1px solid #dbdbdb;text-align:left;cursor:pointer;width:100%;}
#dashboard.referrals ul.tabs.vertical li.selected{border-left:6px solid #fba342;padding:20px 15px 20px 15px;font-weight:700;cursor:default;}
#dashboard.referrals ul.tabs.vertical li:hover{border-left:6px solid #dbdbdb;padding:20px 15px 20px 15px;}
#dashboard.referrals ul.tabs.vertical li.selected:hover{border-left:6px solid #fba342;border-bottom:1px solid #dbdbdb;padding:20px 15px 20px 15px;}
#dashboard.referrals .banners{display:none;vertical-align:top;padding:30px;width:calc(100% - 301px);position:relative;}
#dashboard.referrals .banners .langs{position:absolute;top:20px;right:26px;text-align:right;width:300px;overflow:hidden;}
#dashboard.referrals .banners .langs .lang{font-family:sans-serif;font-size:12px;padding:4px 10px;background:#fff;border:1px solid #fff;border-radius:3px;float:right;line-height:1.5;cursor:pointer;margin-left:10px;}
#dashboard.referrals .banners .langs .lang:hover{background:#f8f8f8;border:1px solid #dbdbdb;}
#dashboard.referrals .banners .langs .lang.selected{background:#f8f8f8;border:1px solid #dbdbdb;}
#dashboard.referrals .banners .tiles{overflow:hidden;}
#dashboard.referrals .banners .tiles .tile{float:left;width:calc(33.33% - 20px);margin-right:30px;margin-bottom:30px;border:1px solid #dbdbdb;border-radius:3px;font-size:16px;text-align:center;}
#dashboard.referrals .banners .tiles .tile:nth-child(3n){margin-right:0;}
#dashboard.referrals .banners .tiles .tile .image{width:100%;height:100px;background:#f5f5f5;display:flex;border-bottom:1px solid #dbdbdb;margin-bottom:20px;}
#dashboard.referrals .banners .tiles .tile .image img{width:auto;height:auto;text-align:center;max-width:128px;max-height:72px;margin:auto;}
#dashboard.referrals .banners .tiles .tile .button_download{padding:10px 14px;background:#128ddd;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:30px;display:table;margin:10px auto 20px auto;}
#dashboard.referrals .banners .tiles .tile .button_download:hover{opacity:0.8;}
#dashboard.referrals .first_visit .box{overflow:hidden;}
#intro.referrals .subtitle{font-size:24px;margin-top:-10px;}
#intro.referrals .progress{margin:60px auto 0 auto;display:table;overflow:hidden;position:relative;}
#intro.referrals .progress .step_1{width:200px;float:left;font-weight:700;font-size:16px;text-align:center;color:#68b541;line-height:1.15;}
#intro.referrals .progress .step_1 .bullet{width:44px;height:44px;background:#68b541;margin:0 auto 10px auto;border-radius:30px;color:#fff;font-size:24px;z-index:50;}
#intro.referrals .progress .step_1 .bullet .icon{width:20px;height:20px;margin:9px auto 0 auto;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-594px -441px;display:inline-block;}
#intro.referrals .progress .step_2{width:200px;float:left;font-weight:700;font-size:16px;text-align:center;color:#68b541;line-height:1.15;}
#intro.referrals .progress .step_2 .bullet{width:44px;height:44px;background:#68b541;margin:0 auto 10px auto;border-radius:30px;color:#fff;font-size:24px;padding-top:9px;font-family:sans-serif;z-index:50;}
#intro.referrals .progress .step_3{width:200px;float:left;font-weight:700;font-size:16px;text-align:center;color:#dbdbdb;line-height:1.15;}
#intro.referrals .progress .step_3 .bullet{width:44px;height:44px;background:#dbdbdb;margin:0 auto 10px auto;border-radius:30px;color:#fff;font-size:24px;padding-top:9px;font-family:sans-serif;z-index:50;}
#intro.referrals .progress .line{width:200px;float:left;height:6px;background:#dbdbdb;margin:18px -75px 0 -75px;}
#intro.referrals .progress .line.green{background:#68b541;}
#intro.referrals .progress .line.gray{background:#dbdbdb;}
#intro.referrals .bubble{background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);position:relative;text-align:center;width:300px;margin:40px auto 0 auto;padding:30px;line-height:1.5;}
#intro.referrals .bubble .arrow{width:22px;height:10px;position:absolute;left:50%;margin-left:-11px;top:-10px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-618px -449px;display:inline-block;}
#intro.referrals .bubble a:link, #intro.referrals .bubble a:visited, #intro.referrals .bubble a:active{color:#128ede;text-decoration:underline;}
#intro.referrals .bubble a:hover, #intro.referrals .bubble a:visited:hover{color:#fbc342;text-decoration:underline;}
/* WORKERS */
#dashboard.workers{text-align:left;padding:36px 0 50px 0;}
#dashboard.workers h1{display:inline-block;margin-right:20px;}
#dashboard.workers span.title_connector{color:#3a3939;font-weight:400;font-size:20px;padding:0;margin:0 15px 20px 15px;display:inline-block;}
#dashboard.workers .select{margin:0 15px 20px 15px;display:inline-block;clear:both;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;background:#fff;}
#dashboard.workers .select select{border:0;color:#3a3939;font-weight:400;font-size:20px;padding-right:10px;background-color:#fff;}
#dashboard.workers .select select option{background-color:#fff;}
#dashboard.workers .button_right{float:right;display:block;width:auto;margin:10px 0 0 0;padding:15px 18px;background:#fba342;color:#fff;font-weight:700;font-size:18px;text-decoration:none;border-radius:3px;}
#dashboard.workers .button_right:hover{opacity:0.8;}
#dashboard.workers table tr th:last-child, #dashboard.workers table tr td:last-child{text-align:right;}
#dashboard.workers table.box.table tr td select{width:200px;background-color:#fff;}
#dashboard.workers table.box.table tr td select option{background-color:#fff;}
#dashboard.workers table.box.table tr td input{width:200px;}
#dashboard.workers table tr td .shw{display:none;}
#dashboard.workers .first_visit{margin-top:30px;}
#dashboard.workers .first_visit .box p{text-align:center;margin:0 auto;}
#dashboard.workers .first_visit .box .button{color:#fff;font-size:14px;font-weight:700;text-decoration:none;}
#dashboard.workers table.box.table tr td{border-top:1px solid #dbdbdb;border-bottom:0;vertical-align:top;}
#dashboard.workers table.box.table tr.multiple td{padding:0 10px 20px 10px;border-top:0;}
#dashboard.workers table.box.table tr.multiple td.noborder{border-top:0;}
#dashboard.workers table.box.table tr:nth-child(2) td{border-top:0;}
#dashboard.workers table.box.table tr:last-child td{border-bottom:1px solid #dbdbdb;}
#dashboard.workers table.box.table tr.workersOffline td{vertical-align:middle;}
#dashboard.workers table.box.table tr td table{border:0;width:100%;}
#dashboard.workers table.box.table tr td table tr{border:0;}
#dashboard.workers table.box.table tr td table tr td{border:0;padding:0 10px 20px 10px;vertical-align:top;}
#dashboard.workers table.box.table tr:last-child td table tr td{border:0;}
#dashboard.workers table.box.table tr td table tr:last-child td{border:0;padding-bottom:0;}
#dashboard.workers table.box.table tr td table tr td:last-child{text-align:left;}
/* POOLS */
#dashboard.pools{text-align:left;}
#dashboard.pools h1{display:inline-block;margin-right:20px;}
#dashboard.pools .button_right{float:right;display:block;width:auto;margin:0 0 30px 0;padding:15px 18px 15px 40px;background:#68b641;color:#fff;font-weight:700;font-size:18px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
#dashboard.pools .button_right b{font-weight:700;font-size:32px;position:absolute;left:14px;top:6px;}
#dashboard.pools .button_right:hover{opacity:0.8;}
#dashboard.pools .button_right.disabled{background:#d5d5d5;cursor:default;}
#dashboard.pools .button_right.disabled:hover{opacity:1.0;}
#dashboard.pools #addPool.max-pool::after {
content: "100 max";
display: block;
position: absolute;
bottom: -8px;
padding: 2px;
background: #ccc;
left: 0;
right: 0;
text-align: center;
font-size: 13px;
font-weight: 400;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
#dashboard.pools #newpool{display:none;width:100%;}
#dashboard.pools #newpool h2{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0;display:table;text-align:left;letter-spacing:0px;text-transform:none;}
#dashboard.pools #newpool p small{color:#888888;display:block;margin:5px 0 0 0;}
#dashboard.pools #newpool .box{margin:30px 0 50px 0;padding:20px 20px 0 20px;}
#dashboard.pools #newpool .box .row{width:100%;overflow:hidden;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_1_2{width:calc(100% - 370px);margin-right:20px;float:left;}
#dashboard.pools #newpool .box .row .col_2_2{width:350px;margin-right:0;float:left;}
#dashboard.pools #newpool .box .row .col_1_3{width:calc(50% - 195px);margin-right:20px;float:left;}
#dashboard.pools #newpool .box .row .col_2_3{width:calc(50% - 195px);margin-right:20px;float:left;}
#dashboard.pools #newpool .box .row .col_3_3{width:350px;margin-right:0;float:left;}
#dashboard.pools #newpool .box .row .col_3_3 .text{font-weight:bold;display:table;width:100%;clear:both;padding:10px 0 0 0;}
#dashboard.pools #newpool .box .row .col_2_2 .col_1_2{width:calc(50% - 10px);float:left;margin-right:20px;}
#dashboard.pools #newpool .box .row .col_2_2 .col_2_2{width:calc(50% - 10px);float:left;margin-right:0;}
#dashboard.pools #newpool .box .row label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;}
#dashboard.pools #newpool .box .row label span{float:left;margin:2px 5px 0 0;}
#dashboard.pools #newpool .box .row label .info{float:left;display:table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -333px;cursor:pointer;margin:0}
#dashboard.pools #newpool .box .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
#dashboard.pools #newpool .box .row .select{display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
#dashboard.pools #newpool .box .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
#dashboard.pools #newpool .box .row .select select option{background-color:#fff;}
#dashboard.pools #newpool .box .row .stratum{width:100%;position:relative;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;}
#dashboard.pools #newpool .box .row .stratum .prot{background:#f3f3f3;border-right:1px solid #dbdbdb;position:absolute;left:0;top:0;bottom:0;border-radius:1px 0 0 1px;padding:11px;font-size:14px;}
#dashboard.pools #newpool .box .row .stratum input{border:0;border-radius:0;color:#524e4e;margin:0;padding:8px 8px 8px 125px;color:#524e4e;font-size:14px;font-weight:400;width:100%;border-radius:0 2px 2px 0;}
#dashboard.pools #newpool .box .row .button_save{display:block;width:100%;text-align:center;margin:18px 0 0 0;padding:11px 0 11px 0;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
#dashboard.pools #newpool .box .row .button_save:hover{opacity:0.8;}
#dashboard.pools #newpool .box .row sub{color:#888888;display:table;padding:5px 0 0 0;float:none;clear:both;}
#dashboard.pools .first_visit{clear:both;}
#dashboard.pools .first_visit .box h3{margin-bottom:40px;}
#dashboard.pools .max_width{width:100%;}
/* ORDERS */
#dashboard.orders{text-align:left;}
#dashboard.orders .first_visit{margin:30px 0 60px 0;}
#dashboard.orders h1{display:inline-block;}
#dashboard.orders span.title_connector{color:#3a3939;font-weight:400;font-size:20px;padding:0;margin:0 15px 20px 15px;display:inline-block;}
#dashboard.orders .select{margin:0 15px 20px 15px;display:inline-block;clear:both;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:10px 0 0 0;padding:10px;background:#fff;}
#dashboard.orders .select select{border:0;color:#3a3939;font-weight:400;font-size:20px;padding-right:10px;background-color:#fff;}
#dashboard.orders .select select option{background-color:#fff;}
#dashboard.orders .button_right{float:right;display:block;width:auto;margin:0 0 30px 0;padding:15px 18px 15px 40px;background:#68b641;color:#fff;font-weight:700;font-size:18px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
#dashboard.orders .button_right b{font-weight:400;font-size:44px;position:absolute;left:12px;top:2px;}
#dashboard.orders .button_right:hover{opacity:0.8;}
#dashboard.orders .button_right.disabled{background:#d5d5d5;cursor:default;}
#dashboard.orders .button_right.disabled:hover{opacity:1.0;}
#dashboard.orders .button_download{float:right;display:block;width:auto;margin:10px 0 0 0;background:#fff;border:1px solid #dbdbdb;border-radius:3px;cursor:pointer;}
#dashboard.orders .button_download .icon{width:32px;height:32px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-406px -677px;margin:10px;}
#dashboard.orders .button_download span{display:none;}
#dashboard.orders .button_download:hover{opacity:0.5;}
#dashboard.orders table.box.table{margin-bottom:50px;}
#dashboard.orders table.box.table.past{margin-bottom:10px;}
#dashboard.orders table.box.table tr td a.button{color:#fff;text-decoration:none;font-weight:700;}
#dashboard.orders .shw{display:none;}
#dashboard.orders #neworder{display:none;position:relative;width:100%;}
#dashboard.orders #neworder h2{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0;display:table;text-align:left;letter-spacing:0px;text-transform:none;}
#dashboard.orders #neworder p{line-height:1.3;}
#dashboard.orders #neworder p small{color:#888888;display:block;margin:5px 0 0 0;}
#dashboard.orders #neworder .box{margin:30px 0 50px 0;padding:20px 20px 0 20px;}
#dashboard.orders #neworder .box .row{width:100%;overflow:hidden;margin-bottom:20px;}
#dashboard.orders #neworder .box .row label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;height:12px;}
#dashboard.orders #neworder .box .row label span{float:left;margin:2px 5px 0 0;}
#dashboard.orders #neworder .box .row label .info{float:left;display:table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -333px;cursor:pointer;margin:0}
#dashboard.orders #neworder .box .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:7px 8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
#dashboard.orders #neworder .box .row .select{display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
#dashboard.orders #neworder .box .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
#dashboard.orders #neworder .box .row .select select option{background-color:#fff;}
#dashboard.orders #neworder .box .row .col_1_2{width:calc(50% - 10px);margin-right:20px;float:left;overflow:hidden;}
#dashboard.orders #neworder .box .row .col_1_2:last-child{margin-right:0;}
#dashboard.orders #neworder .box .row .number{width:70px;float:left;}
#dashboard.orders #neworder .box .row p{width:calc(100% - 85px);margin:12px 0 0 10px;float:left;font-size:14px;}
#dashboard.orders #neworder .box .row .icon{display:block;float:left;width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-193px -332px;margin-top:10px;}
#dashboard.orders #neworder .box .row .time{display:inline-block;margin:9px 0 0 5px;}
#dashboard.orders #neworder .box .row .button_save{float:left;width:100%;display:block;text-align:center;margin:20px 0 0 0;padding:11px 15px 11px 15px;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
#dashboard.orders #neworder .box .row .button_save:hover{opacity:0.8;}
#dashboard.orders #neworder .box .row sub{color:#888888;display:table;padding:5px 0 0 0;float:none;clear:both;}
#dashboard.orders #neworder .box .divider{border-top:1px solid #dbdbdb;margin-bottom:20px;}
#dashboard.orders #neworder .box .agreement{font-size:12px;margin-bottom:20px;color:#999;}
#dashboard.orders #neworder .box .agreement .check{border:1px solid #dbdbdb;height:23px;width:23px;border-radius:3px;float:left;margin:-6px 10px 0 0;display:table;cursor:pointer;}
#dashboard.orders #neworder .box .agreement .check.active{background:url("../images/web/tick_green.png") no-repeat center center;}
#dashboard.orders #neworder .box .agreement a{color:#128ede;}
/* ORDER DETAILS */
#dashboard.order{text-align:left;}
#dashboard.order .notify{margin-top:30px;}
#dashboard.order .status{float:right;margin:-24px 0 0 0;font-weight:700;font-size:20px;position:relative;padding-left:22px;}
#dashboard.order .status .bullet{width:12px;height:12px;float:left;background:#555;border-radius:10px;position:absolute;left:0;top:3px;}
#dashboard.order .status.active{color:#69b642;}
#dashboard.order .status.active .bullet{background:#69b642;}
#dashboard.order .status.idle{color:#fbc342;}
#dashboard.order .status.idle .bullet{background:#fbc342;}
#dashboard.order .status.dead{color:#e92424;}
#dashboard.order .status.dead .bullet{background:#e92424;}
#dashboard.order .status.delivered{color:#464646;}
#dashboard.order .status.delivered .bullet{background:#464646;}
#dashboard.order .status.gray{color:#c8c8c8;}
#dashboard.order .status.gray .bullet{background:#c8c8c8;}
#dashboard.order .row{margin:30px 0;overflow:visible;}
#dashboard.order .col_1_2{float:left;width:calc(50% - 15px);margin-right:30px;}
#dashboard.order .col_1_2:last-child{margin-right:0;}
#dashboard.order .col_1_2 h2{margin:10px 0 10px 0;}
#dashboard.order .col_1_2 .box{padding:30px;}
#dashboard.order .box .row{margin:0 0 20px 0;clear:both;overflow:hidden;}
#dashboard.order .box .row:last-child{margin:0;}
#dashboard.order .box .row label{width:130px;float:left;font-weight:700;}
#dashboard.order .box .row .text{width:calc(100% - 150px);margin-left:20px;float:left;word-break:break-all;line-height:1.3;}
#dashboard.order .box .row .text a:link, #dashboard.order .box .row .text a:visited, #dashboard.order .box .row .text a:active{color:#128ede;}
#dashboard.order .box .row .text a:hover, #dashboard.order .box .row .text a:visited:hover{color:#fbc342;}
#dashboard.order .box .row .percent{width:40px;margin-left:20px;float:left;color:#68b641;font-weight:700;}
#dashboard.order .box .row .percent.red{color:#e92424;}
#dashboard.order .box .row .percent.yellow{color:#fbc342;}
#dashboard.order .box .row .percent.gray{color:#c8c8c8;}
#dashboard.order .box .progressbar{width:100%;height:10px;border-radius:2px;background:#f8f8f8;margin:20px 0 0 0;}
#dashboard.order .box .progressbar .progress{background:#68b641 url("../images/web/progress_pattern.png") repeat;height:10px;margin:0;border-radius:2px 0 0 2px;-webkit-animation:progressbar 1s linear infinite;animation:progressbar 1s linear infinite;}
@-webkit-keyframes progressbar {
from {background-position:0px 0px;}
to {background-position:40px 0px;}
}
@keyframes progressbar {
from {background-position:0px 0px;}
to {background-position:40px 0px;}
}
#dashboard.order .row .box .progressbar .progress.red{background:#e92424;}
#dashboard.order .row .box .progressbar .progress.yellow{background:#fbc342;}
#dashboard.order .row .box ul{padding:20px 0 0 0;border-bottom:1px solid #dbdbdb;margin:0 0 30px 0;list-style:none;}
#dashboard.order .row .box ul li{display:inline-block;border-bottom:6px solid #fff;padding:0 5px 10px 5px;text-align:center;width:140px;cursor:pointer;margin:0;}
#dashboard.order .row .box ul li.selected{border-color:#fba342;font-weight:700;cursor:default;}
#dashboard.order .row .box ul li:hover{border-color:#dbdbdb;}
#dashboard.order .row .box ul li.selected:hover{border-color:#fba342;}
#dashboard.order .row .box .chart{margin:30px;}
#dashboard.order .row table.details{width:100%;border-collapse:spacing;border-spacing:0px;}
#dashboard.order .row table.details tr{}
#dashboard.order .row table.details tr th{padding:15px 20px;border-bottom:1px solid #dbdbdb;text-align:center;}
#dashboard.order .row table.details tr th small{display:block;margin:5px 0 0 0;font-size:14px;color:#888;font-weight:400;}
#dashboard.order .row table.details tr td{padding:10px 20px;font-size:14px;text-align:center;}
#dashboard.order .row table.details tr.inter td{border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;text-align:center;font-weight:700;}
#dashboard.order .row table.details tr td:first-child{text-align:left;font-weight:700;}
#dashboard.order .row table.details tr td .info{display:inline-table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -333px;cursor:pointer;margin:0}
#dashboard.order .row table.details tr td .red{color:#e92424;}
#dashboard.order .row table.bridges{width:100%;border-collapse:spacing;border-spacing:0px;}
#dashboard.order .row table.bridges tr{}
#dashboard.order .row table.bridges tr th{padding:15px 20px;}
#dashboard.order .row table.bridges tr td{padding:15px 20px;font-size:14px;}
#dashboard.order .row table.bridges thead tr th{border-bottom:1px solid #dbdbdb;}
#dashboard.order .row table.bridges tfoot tr th{border-top:1px solid #dbdbdb;}
#dashboard.order .row table.transactions{width:100%;border-collapse:spacing;border-spacing:0px;}
#dashboard.order .row table.transactions tr{}
#dashboard.order .row table.transactions tr th{padding:15px 20px;border-bottom:1px solid #dbdbdb;}
#dashboard.order .row table.transactions tr td{padding:15px 20px;font-size:14px;}
#dashboard.order .row table .shw{display:none;}
#dashboard.order .row h3{text-align:left;color:#585858;font-size:26px;font-weight:300;margin-top:60px;}
#dashboard.order .row ul{text-align:left;color:#524e4e;font-size:16px;line-height:1.5;margin:20px 0 0 20px;padding:0;}
#dashboard.order .row ul li{list-style-image:url("../images/web/li4.gif");margin-bottom:10px;}
/* SUPPORT */
#dashboard.tickets{text-align:left;}
#dashboard.tickets .row{overflow:visible;}
#dashboard.tickets h1{display:inline-block;}
#dashboard.tickets p{line-height:1.3;margin:30px 0;}
#dashboard.tickets .button_right{float:right;display:block;width:auto;margin:-20px 0 0 0;padding:15px 18px 15px 40px;background:#68b641;color:#fff;font-weight:700;font-size:18px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
#dashboard.tickets .button_right b{font-weight:700;font-size:32px;position:absolute;left:14px;top:6px;}
#dashboard.tickets .button_right:hover{opacity:0.8;}
#dashboard.tickets .button_right.disabled{background:#d5d5d5;cursor:default;}
#dashboard.tickets .button_right.disabled:hover{opacity:1.0;}
#dashboard.tickets .first_visit{clear:both;}
#dashboard.tickets table.box.table tr.solved td{color:#bbb;}
#dashboard.tickets table tr td .shw{display:none;}
#dashboard.tickets #newticket{display:none;position:relative;}
#dashboard.tickets #newticket h2{color:#3a3939;font-weight:700;font-size:30px;padding:0;margin:0;display:table;text-align:left;letter-spacing:0px;text-transform:none;}
#dashboard.tickets #newticket .notify{margin-top:25px;}
#dashboard.tickets #newticket .box{margin:30px 0 50px 0;padding:0;overflow:hidden;}
#dashboard.tickets #newticket .box .col_1_2{width:calc(50% - 11px);border-right:1px solid #dbdbdb;margin-right:20px;float:left;padding:20px 20px 0 20px;}
#dashboard.tickets #newticket .box .col_1_2:last-child{margin-right:0;border-right:0;}
#dashboard.tickets #newticket .box .row{width:100%;overflow:hidden;margin-bottom:20px;}
#dashboard.tickets #newticket .box .row label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;height:12px;}
#dashboard.tickets #newticket .box .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:7px 8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
#dashboard.tickets #newticket .box .row textarea{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:7px 8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;height:200px;min-height:160px;resize:vertical;}
#dashboard.tickets #newticket .box .row .select{display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
#dashboard.tickets #newticket .box .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
#dashboard.tickets #newticket .box .row .select select option{background-color:#fff;}
#dashboard.tickets #newticket .box .row .col_1_2:first-child{width:150px;margin-right:20px;float:left;overflow:hidden;border-right:0;padding:0;}
#dashboard.tickets #newticket .box .row .col_1_2:last-child{width:calc(100% - 170px);float:left;overflow:hidden;border-right:0;padding:0;margin-right:0;}
#dashboard.tickets #newticket .box .row .button_save{width:auto;display:table;text-align:center;margin:0;padding:11px 15px 11px 15px;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;border:0;}
#dashboard.tickets #newticket .box .row .button_save:hover:enabled{opacity:0.8;}
#dashboard.tickets #newticket .box .row .button_save:disabled{background: #d5d5d5;}
#dashboard.tickets #newticket .box .attachment{width:100%;overflow:hidden;margin-bottom:20px;border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;padding:20px 0;}
#dashboard.tickets #newticket .box .attachment label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;height:12px;padding-left:30px;position:relative;overflow:visible;}
#dashboard.tickets #newticket .box .attachment .icon{position:absolute;left:5px;top:-5px;width:20px;height:20px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;}
#dashboard.tickets #newticket .box .attachment .icon.attach{background-position:-495px -444px;}
#dashboard.tickets #newticket .box .attachment input{display:block;width:100%;margin:10px 0;}
#dashboard.tickets #newticket .box .attachment small{color:#888888;display:block;font-size:10px;}
#dashboard.tickets #newticket .box .col_1_2 h3{text-align:left;font-size:22px;font-weight:700;margin:20px 0 30px 0;text-transform:none;letter-spacing:0;;padding:0;display:table;}
#dashboard.tickets #newticket .box .col_1_2 ul{text-align:left;list-style:none;margin:20px 0;padding:0;-webkit-column-count:1;-moz-column-count:1;column-count:1;border:0;}
#dashboard.tickets #newticket .box .col_1_2 ul li{padding-bottom:10px;line-height:1.3;font-size:14px;}
#dashboard.tickets #newticket .box .col_1_2 ul li a:link, #dashboard.tickets #newticket .box .col_1_2 ul li a:visited, #dashboard.tickets #newticket .box .col_1_2 ul li a:active{color:#128ede;text-decoration:none;}
#dashboard.tickets #newticket .box .col_1_2 ul li a:hover, #dashboard.tickets #newticket .box .col_1_2 ul li a:visited:hover{color:#fbc342;text-decoration:underline;}
#dashboard.tickets .first_visit .box h3{margin-bottom:40px;}
#dashboard.ticket{text-align:left;}
#dashboard.ticket .row{text-align:left;overflow:hidden;}
#dashboard.ticket .row a.back{font-size:10px;text-align:left;margin:0 0 26px 0;color:#959595;display:table;text-transform:uppercase;text-decoration:none;letter-spacing:1px;}
#dashboard.ticket .row a.back:hover{color:#fbc342;text-decoration:underline;}
#dashboard.ticket h1{display:block;margin:0 0 30px 0;}
#dashboard.ticket .col_1_2{width:calc(100% - 330px);float:left;margin-right:30px;}
#dashboard.ticket .col_2_2{width:300px;float:left;}
#dashboard.ticket .col_1_2 .box{margin:0 0 20px 0;}
#dashboard.ticket .col_1_2 .box .profile{padding:30px 30px 30px 30px;}
#dashboard.ticket .col_1_2 .box .profile .icon{float:left;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;width:50px;height:50px;display:block;float:left;margin:-7px 20px 0 0;}
#dashboard.ticket .col_1_2 .box .profile .icon.nicehash{background-position:0px 0px;}
#dashboard.ticket .col_1_2 .box .profile .icon.you{background-position:0px -433px;}
#dashboard.ticket .col_1_2 .box .profile b{display:table;}
#dashboard.ticket .col_1_2 .box .profile time{display:table;color:#999;margin:5px 0 0 0;font-size:14px;}
#dashboard.ticket .col_1_2 .box .message{padding:0 30px 30px 30px;line-height:1.5;}
#dashboard.ticket .col_1_2 .box .message textarea{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0 0 20px 0;padding:7px 8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;height:200px;min-height:160px;resize:vertical;}
#dashboard.ticket .col_1_2 .box .message .attachment{width:100%;overflow:hidden;margin-bottom:20px;border-top:1px solid #dbdbdb;border-bottom:1px solid #dbdbdb;padding:20px 0;}
#dashboard.ticket .col_1_2 .box .message .attachment label{display:block;color:#959595;font-size:10px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 8px 0;text-align:left;height:12px;padding-left:30px;position:relative;overflow:visible;}
#dashboard.ticket .col_1_2 .box .message .attachment .icon{position:absolute;left:5px;top:-5px;width:20px;height:20px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;}
#dashboard.ticket .col_1_2 .box .message .attachment .icon.attach{background-position:-495px -444px;}
#dashboard.ticket .col_1_2 .box .message .attachment input{display:block;width:100%;margin:10px 0;}
#dashboard.ticket .col_1_2 .box .message .attachment small{color:#888888;display:block;font-size:10px;}
#dashboard.ticket .col_1_2 .box .message .button{width:auto;display:table;text-align:center;margin:0;padding:6px 15px 6px 15px;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;border:0;}
#dashboard.ticket .col_1_2 .box .message .button:hover{opacity:0.8;}
#dashboard.ticket .col_1_2 .box .divider{border-top:1px solid #dbdbdb;}
#dashboard.ticket .col_2_2 h2{margin:60px 0 20px 0;}
#dashboard.ticket .col_2_2 .row{overflow:hidden;margin:0 0 10px 0;}
#dashboard.ticket .col_2_2 .row label{width:160px;float:left;font-weight:700;padding:5px 0;}
#dashboard.ticket .col_2_2 .row .text{width:140px;float:left;padding:5px 0;text-align:right;}
#dashboard.ticket .col_2_2 .row .status{background:#444;padding:5px 8px;color:#fff;font-weight:700;font-size:12px;border-radius:2px;text-transform:uppercase;margin:0 0 30px auto;display:table;float:right;}
#dashboard.ticket .col_2_2 .row .status.open{background:#68b641;}
#dashboard.ticket .col_2_2 ul{list-style:none;margin:0;padding:0;}
#dashboard.ticket .col_2_2 ul li{overflow:hidden;margin-bottom:15px;}
#dashboard.ticket .col_2_2 ul li a:link, #dashboard.ticket .col_2_2 ul li a:visited, #dashboard.ticket .col_2_2 ul li a:active{width:150px;float:left;color:#128ede;text-decoration:none;font-size:14px;margin-top:5px;padding-left:26px;position:relative;}
#dashboard.ticket .col_2_2 ul li a:hover, #dashboard.ticket .col_2_2 ul li a:visited:hover{color:#fbc342;text-decoration:underline;}
#dashboard.ticket .col_2_2 ul li a .icon{position:absolute;left:0;top:-3px;width:20px;height:20px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;}
#dashboard.ticket .col_2_2 ul li a .icon.image{background-position:-520px -444px;}
#dashboard.ticket .col_2_2 ul li a .icon.text{background-position:-541px -444px;}
#dashboard.ticket .col_2_2 ul li a.button:link, #dashboard.ticket .col_2_2 ul li a.button:visited, #dashboard.ticket .col_2_2 ul li a.button:active{background:#444;float:right;padding:5px 8px;width:auto;color:#fff;font-weight:700;font-size:12px;border-radius:2px;text-transform:uppercase;cursor:pointer;margin-top:2px;}
#dashboard.ticket .col_2_2 ul li a.button.remove:link, #dashboard.ticket .col_2_2 ul li a.button.remove:visited, #dashboard.ticket .col_2_2 ul li a.button.remove:active{background:#eb4635;}
#dashboard.ticket .col_2_2 ul li a.button:hover{opacity:0.8;text-decoration:none;}
#dashboard.ticket .col_2_2 .ticket_button{background:#fba342;display:block;padding:12px 15px;width:auto;color:#fff;font-weight:700;font-size:16px;border-radius:2px;cursor:pointer;margin-top:0;text-align:center;}
#dashboard.ticket .col_2_2 .ticket_button:hover{opacity:0.8;}
#dashboard.ticket .col_2_2 .ticket_button.confirm{background:#eb4635;}
#dashboard.ticket .box.closed{margin-bottom:30px;padding:30px;}
#dashboard.ticket .box.closed h2{text-align:left;color:#68b641;font-size:26px;font-weight:700;text-transform:none;letter-spacing:0px;margin:0;}
#dashboard.ticket .box.closed p{font-size:16px;margin:5px 0 30px 0;}
#dashboard.ticket .box.closed .button{display:inline-block;background:#555;padding:10px 15px;margin:0 20px 0 0;border-radius:3px;color:#fff;font-weight:700;cursor:pointer;}
#dashboard.ticket .box.closed .button:hover{opacity:0.8;}
#dashboard.ticket .box.closed .button.satisfied{background:#68b641;}
#dashboard.ticket .box.closed .feedback{font-weight:700;color:#3a3939;display:none;margin:0;}
#dashboard .notify{background:#5a6077;color:#fff;padding:20px;border-radius:2px;width:100%;display:table;margin:0 0 20px 0;font-size:14px;display:none;}
#dashboard .notify a:link, #content .notify a:visited, #content .notify a:active{color:#fff;}
#dashboard .notify a:hover, #content .notify a:visited:hover{color:#fff;opacity:0.6;}
#dashboard .notify.green{background:#68b641;}
#dashboard .notify.yellow{background:#fbc342;}
#dashboard .notify.red{background:#ef5350;}
#dashboard .notify.blue{background:#128ede;}
@media (max-width:1200px) {
#dashboard.referrals .ref_stats .col_2{width:100%;float:none;margin-right:0;}
#dashboard.wallet .col_1_3{width:calc(50% - 15px);margin-right:30px;margin-bottom:30px;}
#dashboard.wallet .col_2_3{width:calc(50% - 15px);margin-right:0;margin-bottom:30px;}
#dashboard.wallet .col_3_3{float:none;width:100%;clear:both;}
#dashboard.wallet .col_3_3 .box{height:auto;}
#dashboard.wallet #address .box small{padding:20px;}
}
@media (max-width:1000px) {
#dashboard.transactions table tr .rmv{display:none;}
#dashboard.transactions table tr th:first-child, #dashboard.transactions table tr td:first-child{width:170px;}
#dashboard.tickets .button_right{padding:12px 18px 12px 40px;margin:-10px 0 0 0;font-size:16px;}
#dashboard.tickets .button_right b{top:-1px;}
#dashboard.tickets .first_visit .box h3{font-size:22px;}
#dashboard.tickets #newticket h2{font-size:22px;}
#dashboard.tickets #newticket .box .form{border:0;width:100%;float:none;}
#dashboard.tickets #newticket .box .row{width:100%;}
#dashboard.tickets #newticket .box .row .select{width:100%;}
#dashboard.tickets #newticket .box .help{display:none;}
#dashboard.workers .select{margin-top:0;}
#dashboard.workers .button_right{margin-top:0;}
#dashboard.workers table.box.table tr .rmv{display:none;}
#dashboard.workers table.box.table tr th.fn{border-radius:3px 0 0 0;padding-left:15px;}
#dashboard.workers table.box.table tr th.ln{border-radius:0 3px 0 0;padding-right:15px;}
#dashboard.workers table.box.table tr th.fn.ln{border-radius:3px 3px 0 0;padding-left:15px;padding-right:15px;}
#dashboard.workers table.box.table tr td:nth-child(n){border:0;border-radius:0;display:table;border-left:1px solid #dbdbdb;border-right:1px solid #dbdbdb;width:100%;}
#dashboard.workers table.box.table tr td:last-child{border-bottom:1px solid #dbdbdb;}
#dashboard.workers table.box.table tr td:first-child{padding-bottom:0;padding-left:10px;}
#dashboard.workers table.box.table tr td:nth-child(2){font-size:18px;font-weight:bold;}
#dashboard.workers table.box.table tr td.multiple table{border-collapse:spacing;border-spacing:0px;}
#dashboard.workers table.box.table tr td.multiple table tr td:nth-child(n){border:0;padding:0 10px;font-size:14px;font-weight:normal;}
#dashboard.workers table.box.table tr td.multiple table tr td:first-child{padding-top:10px;font-weight:bold;}
#dashboard.workers table.box.table tr td.multiple table tr td:last-child{padding-bottom:10px;}
#dashboard.workers table.box.table tr td.multiple{border-top:1px dashed #dbdbdb;border-bottom:1px dashed #dbdbdb;padding:0;}
#dashboard.workers table.box.table tr td.multiple table tr td:last-child{border-bottom:1px dashed #dbdbdb;}
#dashboard.workers table.box.table tr td.multiple table tr:last-child td:last-child{border-bottom:0}
#dashboard.workers table.box.table tr td select{width:100%;}
#dashboard.pools .button_right{padding:12px 18px 12px 40px;margin:-10px 0 20px 0;font-size:16px;}
#dashboard.pools .button_right b{top:-1px;}
#dashboard.pools table.box.table tr td{display:table;width:100%;border-right:1px solid #dbdbdb;border-left:1px solid #dbdbdb;border-bottom:0;padding:15px 15px 0 15px;text-align:left;}
#dashboard.pools table.box.table tr .rmv{display:none;}
#dashboard.pools table.box.table tr td select{width:100%;}
#dashboard.pools table.box.table tr td input{width:100%;}
#dashboard.pools table.box.table tr td.ln{border-bottom:1px solid #dbdbdb;padding-bottom:15px;}
#dashboard table.box.table tr td .button.edit{margin-left:0;}
#dashboard.pools #newpool .box .row .col_1_3{float:none;width:100%;margin-right:0;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_2_3{width:calc(50% - 10px);}
#dashboard.pools #newpool .box .row .col_3_3{width:calc(50% - 10px);}
#dashboard.pools #newpool .box .row .col_1_2{width:calc(50% - 10px);}
#dashboard.pools #newpool .box .row .col_2_2{width:calc(50% - 10px);}
#dashboard.orders .button_right{padding:12px 18px 12px 40px;margin:-10px 0 20px 0;font-size:16px;}
#dashboard.orders .button_right b{top:-1px;}
#dashboard.orders table.box.table tr td{vertical-align:top;}
#dashboard.orders table tr .rmv{display:none;}
#dashboard.orders table tr .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;}
#dashboard.orders table tr .shw b{color:#524e4e;}
#dashboard.orders #neworder .box .row .col_1_2 .col_1_2{float:none;width:100%;margin-bottom:20px;}
#dashboard.orders #neworder .box .row .col_1_2 .col_1_2:last-child{margin-bottom:0;}
#dashboard.order .col_1_2{margin-right:0;float:none;width:100%;margin-bottom:30px;}
#dashboard.order .col_1_2:last-child{margin-bottom:0px;}
#dashboard.order .row .box ul li{width:100px;}
#dashboard.order .row table .rmv{display:none;}
#dashboard.order .row table .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;}
#dashboard.order .row table .shw b{color:#524e4e;}
#dashboard.wallet table tr .rmv2{display:none;}
#dashboard.wallet table tr td .shw{display:block;margin:20px 0 0 0;line-height:1.5;color:#888;font-size:14px;word-break:break-all;}
#dashboard.wallet table tr td .shw b{color:#524e4e;}
#dashboard.wallet .box.transactions table tr td .button{margin:20px auto 0 0;float:none;}
#dashboard.referrals .box.referral_form .col_1_3{width:calc(50% - 10px);margin-bottom:20px;}
#dashboard.referrals .box.referral_form .col_1_3:nth-child(2){margin-right:0;}
#dashboard.referrals .box.referral_form .col_2_3{width:100%;}
#dashboard.referrals ul.tabs.vertical{display:none;}
#dashboard.referrals .promo{display:none;}
#intro.referrals .progress .step_1{width:150px;}
#intro.referrals .progress .step_2{width:150px;}
#intro.referrals .progress .step_3{width:150px;}
#intro.referrals .progress .line{width:100px;margin:18px -50px 0 -50px;}
#dashboard .notify.blue{margin-top:0 !important;line-height:1.3;}
}
@media (max-width: 760px) {
#dashboard.tickets table tr .rmv{display:none;}
#dashboard.tickets table.box.table tr td{vertical-align:top;}
#dashboard.tickets table tr td .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;}
#dashboard.tickets table tr td .shw b{color:#524e4e;}
#dashboard.tickets table tr th.fn{border-radius:3px 0 0 0;padding-left:15px;}
#dashboard.tickets table tr td.fn{border-left:1px solid #dbdbdb;padding-left:15px;}
#dashboard.tickets table tr:last-child td.fn{border-radius:0 0 0 3px;}
#dashboard.ticket .col_1_2{float:none;width:100%;}
#dashboard.ticket .col_2_2 h2{margin-top:30px;}
#dashboard.ticket .col_1_2 .box .profile{padding:30px 20px;}
#dashboard.ticket .col_1_2 .box .message{padding:0 20px 20px 20px;}
#dashboard.workers .button_right{margin-top:0;font-size:16px;padding:14px 18px;float:none;width:100%;text-align:center;margin-bottom:20px;}
#dashboard.workers h1{margin-right:10px;font-size:18px;}
#dashboard.workers span.title_connector{font-size:16px;margin:0 10px 20px 10px;}
#dashboard.workers .select select{font-size:16px;}
#dashboard.pools #newpool .box .row{margin-bottom:0;}
#dashboard.pools #newpool .box .row .col_2_3{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_3_3{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_1_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_2_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_2_2 .col_1_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.pools #newpool .box .row .col_2_2 .col_2_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.orders h1{margin-right:0;font-size:18px;}
#dashboard.orders span.title_connector{font-size:16px;margin:0 10px 20px 10px;}
#dashboard.orders .select select{font-size:16px;}
#dashboard.orders .button_download .icon{margin:7px;}
#dashboard.wallet .button_download .icon{margin:7px;}
#dashboard.wallet .col_1_3{float:none;width:100%;clear:both;margin-right:0;margin-bottom:30px;}
#dashboard.wallet .col_2_3{float:none;width:100%;clear:both;margin-right:0;margin-bottom:30px;}
#dashboard.wallet .col_3_3{float:none;width:100%;clear:both;}
#dashboard.wallet .col_1_3 .box, #dashboard.wallet .col_2_3 .box, #dashboard.wallet .col_3_3 .box{height:auto;}
#dashboard.wallet #address .box small{padding:20px;}
#dashboard.wallet .col_2_3 .box{padding-bottom:20px;}
#dashboard.wallet #balance .box .data{font-size:30px;padding:15px 0 15px 63px;font-size:22px;padding-top:21px;}
#dashboard.wallet #balance .box .data sub{margin-top:4px;font-size:14px;}
#dashboard.wallet #balance .box .image{background:url("../images/web/sprite.svg") no-repeat scroll -83px -140px / 400px 400px;width:32px;height:42px;}
#dashboard.wallet #balance .box .button{margin-top:0;}
#dashboard.wallet .box.transactions{border:0;padding:0;background:transparent;box-shadow:none;}
#dashboard.wallet #transactions, #dashboard.wallet #deposits, #dashboard.wallet #withdrawals{display:block !important;background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);margin:0 0 30px 0;overflow:hidden;}
#dashboard.wallet .box.transactions #transactions, #dashboard.wallet .box.transactions #withdrawals, #dashboard.wallet .box.transactions #deposits{padding-bottom:0;}
#dashboard.wallet ul.tabs{display:none;}
#dashboard.wallet .title{display:block;font-weight:700;font-size:18px;margin:30px 0 0 0;}
#dashboard.referrals h2{font-size:20px;}
#dashboard.referrals h3{font-size:14px;}
#dashboard.referrals .tabs{display:none;}
#dashboard.referrals .box.promotions #signatures, #dashboard.referrals .box.promotions #banners{display:block;}
#dashboard.referrals .box.promotions #signatures label{width:100%;float:none;}
#dashboard.referrals .box.promotions #signatures textarea{width:100%;float:none;margin-left:0;margin-top:10px;}
}
@media (max-width: 600px) {
#dashboard.tickets .button_right{float:none;font-size:16px;padding:14px 18px 14px 18px;margin:20px 0 0 0;display:table;width:100%;text-align:center;}
#dashboard.tickets .button_right b{display:none;}
#dashboard.tickets p{margin:20px 0 30px 0;}
#dashboard.workers h1{display:table;width:100%;margin-bottom:10px;}
#dashboard.workers .select{display:table;width:100%;}
#dashboard.workers .select select{width:100%;}
#dashboard.workers span.title_connector{display:table;width:100%;margin:10px 0;}
#dashboard.workers .thank_you h1{text-align:center;}
#dashboard.workers .thank_you p{font-size:16px;}
#dashboard.pools .button_right{float:none;font-size:16px;padding:14px 18px 14px 18px;margin:20px 0 0 0;display:table;width:100%;text-align:center;}
#dashboard.pools .button_right b{display:none;}
#dashboard.orders .button_right{float:none;font-size:16px;padding:14px 18px 14px 18px;margin:20px 0 0 0;display:table;width:100%;text-align:center;}
#dashboard.orders .button_right b{display:none;}
#dashboard.orders h1, #dashboard.orders span.title_connector{margin-bottom:0;}
#dashboard.orders .select{display:table;width:100%;}
#dashboard.orders .select select{width:100%;}
#dashboard.orders .button_download{width:100%;float:none;background:#68b641;border:0;margin:20px 0 0 0;}
#dashboard.orders .button_download .icon{display:none;}
#dashboard.orders .button_download span{display:block;color:#fff;font-weight:700;padding:15px;font-size:16px;text-align:center;}
#dashboard.orders #neworder .box .row{margin-bottom:0;}
#dashboard.orders #neworder .box .row .col_1_2{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.orders #neworder .box .row .col_1_2 .col_1_3:last-child{margin-bottom:0;}
#dashboard.orders #neworder .box .row .col_1_2 .col_1_2:last-child{margin-bottom:0;}
#dashboard.orders #neworder .box .row .button_save{margin-top:0;}
#dashboard.order .box .row label{width:100%;}
#dashboard.order .box .row .text{width:100%;margin-left:0;}
#dashboard.order .box .row .percent{margin:10px 0 0 0;}
#dashboard.order .row table.details tr th:first-child{display:none;}
#dashboard.order .row table.details tr th:last-child{display:table;text-align:left;padding:15px;width:100%;}
#dashboard.order .row table.details tr td:first-child{display:table;text-align:left;padding:15px 15px 5px 15px;width:100%;}
#dashboard.order .row table.details tr td:last-child{display:table;text-align:left;padding:0 15px 15px 15px;width:100%;border-bottom:1px solid #dbdbdb;}
#dashboard.order .row table.details tr.inter td{border-top:0;border-bottom:1px solid #dbdbdb;text-align:left;font-weight:700;padding-top:15px;}
#dashboard.order .row table.details tr:last-child td:last-child{border-bottom:0;}
#dashboard.order .graph_rmv{display:none;}
#dashboard.wallet h1{float:none;}
#dashboard.wallet .button_download{width:100%;float:none;background:#68b641;border:0;margin:20px 0 30px 0;}
#dashboard.wallet .button_download .icon{display:none;}
#dashboard.wallet .button_download span{display:block;color:#fff;font-weight:700;padding:15px;font-size:16px;text-align:center;}
#dashboard.referrals .box.referral_form .col_1_3{width:100%;margin-right:0;float:none;margin-bottom:20px;}
#dashboard.referrals .box.referral_form .col_1_3:nth-child(2){margin-right:0;}
#dashboard.referrals .box.referral_form .col_2_3{width:100%;}
#dashboard.referrals .box.referral_form .input input{width:100%;float:none;}
#dashboard.referrals .box.referral_form .input .link{width:100%;float:none;text-align:right;margin:10px 0 0 0;}
#dashboard.referrals table tr .rmv{display:none;}
#dashboard.referrals table.box.table tr td{vertical-align:top;}
#dashboard.referrals table tr td .shw{display:block;margin:10px 0 0 0;line-height:1.5;color:#888;font-size:14px;}
#dashboard.referrals table tr td .shw b{color:#524e4e;}
#dashboard.referrals table tr th.fn{border-radius:3px 0 0 0;padding-left:15px;}
#dashboard.referrals table tr td.fn{border-left:1px solid #dbdbdb;padding-left:15px;}
#dashboard.referrals table tr:last-child td.fn{border-radius:0 0 0 3px;}
#dashboard.referrals table tr td.ln{border-bottom:1px solid #dbdbdb;padding-left:15px;border-right:1px solid #dbdbdb;}
#intro.referrals .bubble{width:100%;}
#intro.referrals .progress .step_1{width:100px;font-size:12px;}
#intro.referrals .progress .step_2{width:100px;font-size:12px;}
#intro.referrals .progress .step_3{width:100px;font-size:12px;}
#intro.referrals .progress .line{width:50px;margin:18px -25px 0 -25px;}
}
@media (max-width: 500px) {
#dashboard table tr th, #dashboard table tr td{font-size:14px;word-spacing:0px;}
#dashboard.transactions table tr th:first-child, #dashboard.transactions table tr td:first-child{width:auto;}
#dashboard .pages .prev, #dashboard .pages .next{display:none;}
#dashboard.referrals .pages .prev, #dashboard.referrals .pages .next{display:block;}
#dashboard.tickets #newticket .box .row .col_1_2:first-child{margin-bottom:20px;width:100%;float:none;}
#dashboard.tickets #newticket .box .row .col_1_2:last-child{width:100%;float:none;}
#dashboard.orders table.box.table tr td{display:table;width:100%;border-right:1px solid #dbdbdb;border-left:1px solid #dbdbdb;border-bottom:0;}
#dashboard.orders table.box.table tr td.rmv{display:none;}
#dashboard.orders table.box.table tr th.ln{display:none;}
#dashboard.orders table.box.table tr td.ln{border-bottom:1px solid #dbdbdb;padding-top:0;padding-left:15px;}
#dashboard.orders table.box.table tr td.ln .button{display:table;margin:0;}
#intro.referrals .progress{display:none;}
}
@media (max-width: 400px) {
}
/* MARKETPLACE */
.marketplace{position:relative;}
.marketplace .myOrders{font-size:14px;color:#9b9b9b;float:right;}
.marketplace .myOrders .checkOrders{border:1px solid #dbdbdb;height:23px;width:23px;border-radius:3px;float:left;margin:-5px 10px 0 0;display:table;cursor:pointer;}
.marketplace .myOrders .checkOrders.active{background:url("../images/web/tick_green.png") no-repeat center center;}
.marketplace .error{background:#ef5350;color:#fff;padding:20px;border-radius:4px;width:100%;display:table;margin:0;font-size:14px;font-weight:700;text-align:center;display:none;position:fixed;bottom:60px;width:400px;left:50%;margin-left:-200px;box-shadow:0px 0px 50px 30px #fff;opacity:0.95;}
.marketplace .error a:link, .marketplace .error a:visited, .marketplace .error a:active{color:#fff;}
.marketplace .error a:hover, .marketplace .error a:visited:hover{color:#fff;opacity:0.6;}
.marketplace .add{width:100%;overflow:visible;margin-bottom:20px;text-align:left;}
.marketplace .add .text{display:inline-block;margin:0 0 0 0;font-size:14px;}
.marketplace .add .button{display:inline-table;font-size:14px;border:1px solid #dbdbdb;padding:10px;border-radius:3px;margin-left:10px;cursor:pointer;position:relative;width:100px;text-align:center;}
.marketplace .add .button::selection{background:inherit;color:inherit;}
.marketplace .add .button::-moz-selection{background:inherit;color:inherit;}
.marketplace .add .button.selected{font-weight:700; z-index: 1; border-bottom: 0; background: white;}
.marketplace .add .button .divider{border-bottom:3px solid #fff;margin-bottom:0;position:absolute;bottom:0;left:1px;right:1px;z-index:100;display:none;}
.marketplace .add .button.selected .divider{display:block;}
.marketplace .add .eu{overflow:visible;}
.marketplace .add .usa{overflow:visible;}
.marketplace .add .neworder{background:#fff;border:1px solid #dbdbdb;border-radius:4px;box-shadow:2px 2px 3px rgba(0,0,0,0.05);margin:-3px 0 0 0;position:relative;text-align:left;padding:20px 20px 0 20px;display:none; z-index: 0; }
.marketplace .add .neworder .notify{background:#5a6077;color:#fff;padding:20px;border-radius:4px;width:100%;display:table;margin:0 0 20px 0;font-size:14px;font-weight:700;text-align:center;display:none;}
.marketplace .add .neworder .notify a:link, #content .notify a:visited, #content .notify a:active{color:#fff;}
.marketplace .add .neworder .notify a:hover, #content .notify a:visited:hover{color:#fff;opacity:0.6;}
.marketplace .add .neworder .notify.red{background:#ef5350;}
.marketplace .add .neworder .link{position:absolute;right:0;top:-24px;color:#128ede;text-decoration:underline;font-size:12px;}
.marketplace .add .neworder .link:hover{color:#fbc342}
.marketplace .add .row{width:100%;overflow:hidden;margin-bottom:20px;}
.marketplace .add .row .col_1_3{width:calc(33.33% - 13.33px);margin-right:20px;float:left;}
.marketplace .add .row .col_1_3:last-child{margin-right:0;}
.marketplace .add .row label{display:block;color:#959595;font-size:9px;font-weight:400;letter-spacing:2px;text-transform:uppercase;margin:0 0 5px 0;text-align:left;height:12px;}
.marketplace .add .row label span{float:left;margin:2px 5px 0 0;}
.marketplace .add .row label .info{float:left;display:table;width:14px;height:14px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-217px -333px;cursor:pointer;margin:0}
.marketplace .add .row input{border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:7px 8px;color:#524e4e;font-size:14px;font-weight:400;width:100%;}
.marketplace .add .row .select{display:table;width:100%;border:1px solid #dbdbdb;border-radius:3px;color:#524e4e;margin:0;padding:6px;}
.marketplace .add .row .select select{border:0;color:#524e4e;font-size:14px;font-weight:400;padding-right:10px;width:100%;background-color:#fff;}
.marketplace .add .row .select select option{background-color:#fff;}
.marketplace .add .row .icon{display:block;float:left;width:18px;height:18px;background:url("../images/web/sprite.svg") no-repeat;background-size:600px 600px;background-position:-193px -332px;margin-top:6px;}
.marketplace .add .row .time{display:inline-block;margin:7px 0 0 5px;text-align:left;}
.marketplace .add .row .col_1_2{width:calc(50% - 10px);margin-right:20px;float:left;overflow:hidden;}
.marketplace .add .row .col_1_2:last-child{margin-right:0;}
.marketplace .add .row .number{width:70px;float:left;}
.marketplace .add .row p{width:calc(100% - 85px);margin:12px 0 0 10px;float:left;font-size:12px;text-align:left;}
.marketplace .add .row .button_place{display:table;text-align:center;width:100%;margin:16px 0 0 0;padding:10px 15px 10px 15px;background:#68b641;color:#fff;font-weight:700;font-size:14px;text-decoration:none;border-radius:3px;cursor:pointer;position:relative;}
.marketplace .add .row .button_place:hover{opacity:0.8;}
.marketplace .add .row .button_place.disabled{cursor:default;background:#d5d5d5;}
.marketplace .add .row .button_place.disabled:hover{opacity:1.0;}
.marketplace .add .row sub{color:#888888;display:table;padding:5px 0 0 0;float:none;clear:both;}
.marketplace .add .row sub span.balanceEU, .marketplace .add .row sub span.balanceUSA{text-decoration:underline;cursor:pointer;}
.marketplace .add .row sub span.balanceEU:hover, .marketplace .add .row sub span.balanceUSA:hover{color:#fbc342;}
.marketplace .add .divider{border-bottom:1px solid #dbdbdb;margin-bottom:20px;}
.marketplace .add .agreement{font-size:12px;margin-bottom:20px;color:#999;}
.marketplace .add .agreement .check{border:1px solid #dbdbdb;height:23px;width:23px;border-radius:3px;float:left;margin:-6px 10px 0 0;display:table;cursor:pointer;}
.marketplace .add .agreement .check.active{background:url("../images/web/tick_green.png") no-repeat center center;}
.marketplace .add .agreement a{color:#128ede;}
.marketplace table.market tr{position:relative;}
.marketplace table.market tr td{position:relative;}
.marketplace table.market tr td .up{position:absolute;width:15px;height:12px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-350px -440px;top:2px;right:-5px;cursor:pointer;z-index:100;}
.marketplace table.market tr td .down{position:absolute;width:15px;height:12px;background:url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-350px -457px;bottom:2px;right:-5px;cursor:pointer;z-index:100;}
.marketplace table.market tr td .outbid{position:absolute;right:-4px;top:5px;width:13px;height:20px;background:#68b541 url("../images/web/sprite.svg") no-repeat;background-size:800px 800px;background-position:-368px -685px;display:none;cursor:pointer;border:0;border-radius:2px;padding:0;z-index:100;}
.marketplace table.market tr:hover td .outbid{display:block;}
.marketplace table.market tr.details{}
.marketplace table.market tr.details td{padding:20px 0;position:relative;}
.marketplace table.market tr.details .miniGraph{width:230px;height:80px;display:table;float:left;margin-left:20px;font-family:arial,helvetica,sans-serif;}
.marketplace table.market tr.details .miniStats{float:right;width:calc(100% - 300px);margin-right:20px;}
.marketplace table.market tr.details .miniStats .row{overflow:hidden;}
.marketplace table.market tr.details .miniStats .row .col_1_2{width:calc(50% - 2.5px);margin-right:5px;float:left;}
.marketplace table.market tr.details .miniStats .row .col_1_2:last-child{margin-right:0;}
.marketplace table.market tr.details .miniStats .row label{width:100%;display:table;margin-bottom:5px;font-size:14px;font-weight:700;font-family:arial,helvetica,sans-serif;}
.marketplace table.market tr.details .miniStats .row .text{width:100%;font-weight:normal;font-size:14px;margin-bottom:20px;font-family:arial,helvetica,sans-serif;}
.marketplace table.market tr.details .miniStats .row .button{border-radius:3px;float:left;margin-right:5px;width:calc(25% - 3.75px);height:36px;background:#fff;text-align:center;cursor:pointer;}
.marketplace table.market tr.details .miniStats .row .button:hover{opacity:0.8;}
.marketplace table.market tr.details .miniStats .row .button .icon{background:url("../images/web/sprite.svg") no-repeat;margin:9px auto 0 auto;background-size:800px 800px;display:block;}
.marketplace table.market tr.details .miniStats .row .button.refill .icon{background-position:-45px -683px;width:18px;height:18px;}
.marketplace table.market tr.details .miniStats .row .button.edit .icon{background-position:-124px -683px;width:20px;height:20px;}
.marketplace table.market tr.details .miniStats .row .button.edit.disabled{opacity:0.5;cursor:default;}
.marketplace table.market tr.details .miniStats .row .button.cancel .icon{background-position:-203px -684px;width:20px;height:20px;}
.marketplace table.market tr.details .miniStats .row .button.details{margin-right:0;}
.marketplace table.market tr.details .miniStats .row .button.details .icon{background-position:-280px -684px;width:20px;height:20px;}
.marketplace .wait{background:rgba(255,255,255,0.8);position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:1000;display:none;}
.marketplace .wait .loader {border: 7px solid #f3f3f3;border-top: 7px solid #fbc342;border-radius: 50%;width: 50px; height: 50px;animation: spin 2s linear infinite;position:fixed;top:40%;left:50%;margin-left:-25px;}
.waiter {display:none;}
.waiter .wait{background:rgba(255,255,255,0.8);position:absolute;left:0;right:0;top:0;bottom:0;width:100%;height:100%;z-index:1000;display:none;}
.waiter .wait .loader {border: 7px solid #f3f3f3;border-top: 7px solid #fbc342;border-radius: 50%;width: 50px; height: 50px;animation: spin 2s linear infinite;position:fixed;top:40%;left:50%;margin-left:-25px;}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }}
@media (max-width:1200px) {
.marketplace .add .row .col_1_3{width:calc(33.33% - 6.66px);margin-right:10px;float:left;}
.marketplace .add .row .col_1_3:last-child{margin-right:0;}
.marketplace .add .row .col_1_3 p{word-break:break-all;}
}
@media (max-width:1000px) {
.marketplace table.market tr.details .miniGraph{width:calc(50% - 35px);}
.marketplace table.market tr.details .miniStats{width:calc(50% - 35px);}
}
@media (max-width: 760px) {
.marketplace table.market tr.details .miniGraph{width:230px;}
.marketplace table.market tr.details .miniStats{width:calc(100% - 300px);}
.page.profile .myOrders{float:none;}
}
@media (max-width: 600px) {
.marketplace .add .text{display:table;width:100%;margin:0 0 10px 0;}