UNPKG

66.7 kBCSSView Raw
1/* Bulma Utilities */
2.is-unselectable {
3 -webkit-touch-callout: none;
4 -webkit-user-select: none;
5 -moz-user-select: none;
6 -ms-user-select: none;
7 user-select: none;
8}
9
10.level:not(:last-child), .block:not(:last-child), .title:not(:last-child),
11.subtitle:not(:last-child), .table:not(:last-child), .table-container:not(:last-child) {
12 margin-bottom: 1.5rem;
13}
14
15.delete {
16 -webkit-touch-callout: none;
17 -webkit-user-select: none;
18 -moz-user-select: none;
19 -ms-user-select: none;
20 user-select: none;
21 -moz-appearance: none;
22 -webkit-appearance: none;
23 background-color: rgba(10, 10, 10, 0.2);
24 border: none;
25 border-radius: 9999px;
26 cursor: pointer;
27 pointer-events: auto;
28 display: inline-block;
29 -ms-flex-positive: 0;
30 flex-grow: 0;
31 -ms-flex-negative: 0;
32 flex-shrink: 0;
33 font-size: 0;
34 height: 20px;
35 max-height: 20px;
36 max-width: 20px;
37 min-height: 20px;
38 min-width: 20px;
39 outline: none;
40 position: relative;
41 vertical-align: top;
42 width: 20px;
43}
44
45.delete::before, .delete::after {
46 background-color: white;
47 content: "";
48 display: block;
49 left: 50%;
50 position: absolute;
51 top: 50%;
52 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
53 -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
54 transform: translateX(-50%) translateY(-50%) rotate(45deg);
55 -webkit-transform-origin: center center;
56 -ms-transform-origin: center center;
57 transform-origin: center center;
58}
59
60.delete::before {
61 height: 2px;
62 width: 50%;
63}
64
65.delete::after {
66 height: 50%;
67 width: 2px;
68}
69
70.delete:hover, .delete:focus {
71 background-color: rgba(10, 10, 10, 0.3);
72}
73
74.delete:active {
75 background-color: rgba(10, 10, 10, 0.4);
76}
77
78.is-small.delete {
79 height: 16px;
80 max-height: 16px;
81 max-width: 16px;
82 min-height: 16px;
83 min-width: 16px;
84 width: 16px;
85}
86
87.is-medium.delete {
88 height: 24px;
89 max-height: 24px;
90 max-width: 24px;
91 min-height: 24px;
92 min-width: 24px;
93 width: 24px;
94}
95
96.is-large.delete {
97 height: 32px;
98 max-height: 32px;
99 max-width: 32px;
100 min-height: 32px;
101 min-width: 32px;
102 width: 32px;
103}
104
105.loader {
106 -webkit-animation: spinAround 500ms infinite linear;
107 animation: spinAround 500ms infinite linear;
108 border: 2px solid #dbdbdb;
109 border-radius: 9999px;
110 border-right-color: transparent;
111 border-top-color: transparent;
112 content: "";
113 display: block;
114 height: 1em;
115 position: relative;
116 width: 1em;
117}
118
119.is-overlay, .hero-video {
120 bottom: 0;
121 left: 0;
122 position: absolute;
123 right: 0;
124 top: 0;
125}
126
127/* Bulma Base */
128/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
129html,
130body,
131p,
132ol,
133ul,
134li,
135dl,
136dt,
137dd,
138blockquote,
139figure,
140fieldset,
141legend,
142textarea,
143pre,
144iframe,
145hr,
146h1,
147h2,
148h3,
149h4,
150h5,
151h6 {
152 margin: 0;
153 padding: 0;
154}
155
156h1,
157h2,
158h3,
159h4,
160h5,
161h6 {
162 font-size: 100%;
163 font-weight: normal;
164}
165
166ul {
167 list-style: none;
168}
169
170button,
171input,
172select,
173textarea {
174 margin: 0;
175}
176
177html {
178 box-sizing: border-box;
179}
180
181*, *::before, *::after {
182 box-sizing: inherit;
183}
184
185img,
186video {
187 height: auto;
188 max-width: 100%;
189}
190
191iframe {
192 border: 0;
193}
194
195table {
196 border-collapse: collapse;
197 border-spacing: 0;
198}
199
200td,
201th {
202 padding: 0;
203}
204
205td:not([align]),
206th:not([align]) {
207 text-align: inherit;
208}
209
210html {
211 background-color: white;
212 font-size: 16px;
213 -moz-osx-font-smoothing: grayscale;
214 -webkit-font-smoothing: antialiased;
215 min-width: 300px;
216 overflow-x: hidden;
217 overflow-y: scroll;
218 text-rendering: optimizeLegibility;
219 -webkit-text-size-adjust: 100%;
220 -moz-text-size-adjust: 100%;
221 -ms-text-size-adjust: 100%;
222 text-size-adjust: 100%;
223}
224
225article,
226aside,
227figure,
228footer,
229header,
230hgroup,
231section {
232 display: block;
233}
234
235body,
236button,
237input,
238optgroup,
239select,
240textarea {
241 font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
242}
243
244code,
245pre {
246 -moz-osx-font-smoothing: auto;
247 -webkit-font-smoothing: auto;
248 font-family: monospace;
249}
250
251body {
252 color: #4a4a4a;
253 font-size: 1em;
254 font-weight: 400;
255 line-height: 1.5;
256}
257
258a {
259 color: #5851ff;
260 cursor: pointer;
261 text-decoration: none;
262}
263
264a strong {
265 color: currentColor;
266}
267
268a:hover {
269 color: #363636;
270}
271
272code {
273 background-color: whitesmoke;
274 color: #da1039;
275 font-size: 0.875em;
276 font-weight: normal;
277 padding: 0.25em 0.5em 0.25em;
278}
279
280hr {
281 background-color: whitesmoke;
282 border: none;
283 display: block;
284 height: 2px;
285 margin: 1.5rem 0;
286}
287
288img {
289 height: auto;
290 max-width: 100%;
291}
292
293input[type="checkbox"],
294input[type="radio"] {
295 vertical-align: baseline;
296}
297
298small {
299 font-size: 0.875em;
300}
301
302span {
303 font-style: inherit;
304 font-weight: inherit;
305}
306
307strong {
308 color: #363636;
309 font-weight: 700;
310}
311
312fieldset {
313 border: none;
314}
315
316pre {
317 -webkit-overflow-scrolling: touch;
318 background-color: whitesmoke;
319 color: #4a4a4a;
320 font-size: 0.875em;
321 overflow-x: auto;
322 padding: 1.25rem 1.5rem;
323 white-space: pre;
324 word-wrap: normal;
325}
326
327pre code {
328 background-color: transparent;
329 color: currentColor;
330 font-size: 1em;
331 padding: 0;
332}
333
334table td,
335table th {
336 vertical-align: top;
337}
338
339table td:not([align]),
340table th:not([align]) {
341 text-align: inherit;
342}
343
344table th {
345 color: #363636;
346}
347
348@-webkit-keyframes spinAround {
349 from {
350 -webkit-transform: rotate(0deg);
351 transform: rotate(0deg);
352 }
353 to {
354 -webkit-transform: rotate(359deg);
355 transform: rotate(359deg);
356 }
357}
358
359@keyframes spinAround {
360 from {
361 -webkit-transform: rotate(0deg);
362 transform: rotate(0deg);
363 }
364 to {
365 -webkit-transform: rotate(359deg);
366 transform: rotate(359deg);
367 }
368}
369
370.has-text-white {
371 color: white !important;
372}
373
374a.has-text-white:hover, a.has-text-white:focus {
375 color: #e6e6e6 !important;
376}
377
378.has-background-white {
379 background-color: white !important;
380}
381
382.has-text-black {
383 color: #0a0a0a !important;
384}
385
386a.has-text-black:hover, a.has-text-black:focus {
387 color: black !important;
388}
389
390.has-background-black {
391 background-color: #0a0a0a !important;
392}
393
394.has-text-light {
395 color: whitesmoke !important;
396}
397
398a.has-text-light:hover, a.has-text-light:focus {
399 color: #dbdbdb !important;
400}
401
402.has-background-light {
403 background-color: whitesmoke !important;
404}
405
406.has-text-dark {
407 color: #363636 !important;
408}
409
410a.has-text-dark:hover, a.has-text-dark:focus {
411 color: #1c1c1c !important;
412}
413
414.has-background-dark {
415 background-color: #363636 !important;
416}
417
418.has-text-primary {
419 color: #5851ff !important;
420}
421
422a.has-text-primary:hover, a.has-text-primary:focus {
423 color: #271eff !important;
424}
425
426.has-background-primary {
427 background-color: #5851ff !important;
428}
429
430.has-text-primary-light {
431 color: #ebebff !important;
432}
433
434a.has-text-primary-light:hover, a.has-text-primary-light:focus {
435 color: #bab8ff !important;
436}
437
438.has-background-primary-light {
439 background-color: #ebebff !important;
440}
441
442.has-text-primary-dark {
443 color: #0a00f0 !important;
444}
445
446a.has-text-primary-dark:hover, a.has-text-primary-dark:focus {
447 color: #2d24ff !important;
448}
449
450.has-background-primary-dark {
451 background-color: #0a00f0 !important;
452}
453
454.has-text-link {
455 color: #5851ff !important;
456}
457
458a.has-text-link:hover, a.has-text-link:focus {
459 color: #271eff !important;
460}
461
462.has-background-link {
463 background-color: #5851ff !important;
464}
465
466.has-text-link-light {
467 color: #ebebff !important;
468}
469
470a.has-text-link-light:hover, a.has-text-link-light:focus {
471 color: #bab8ff !important;
472}
473
474.has-background-link-light {
475 background-color: #ebebff !important;
476}
477
478.has-text-link-dark {
479 color: #0a00f0 !important;
480}
481
482a.has-text-link-dark:hover, a.has-text-link-dark:focus {
483 color: #2d24ff !important;
484}
485
486.has-background-link-dark {
487 background-color: #0a00f0 !important;
488}
489
490.has-text-info {
491 color: #3e8ed0 !important;
492}
493
494a.has-text-info:hover, a.has-text-info:focus {
495 color: #2b74b1 !important;
496}
497
498.has-background-info {
499 background-color: #3e8ed0 !important;
500}
501
502.has-text-info-light {
503 color: #eff5fb !important;
504}
505
506a.has-text-info-light:hover, a.has-text-info-light:focus {
507 color: #c6ddf1 !important;
508}
509
510.has-background-info-light {
511 background-color: #eff5fb !important;
512}
513
514.has-text-info-dark {
515 color: #296fa8 !important;
516}
517
518a.has-text-info-dark:hover, a.has-text-info-dark:focus {
519 color: #368ace !important;
520}
521
522.has-background-info-dark {
523 background-color: #296fa8 !important;
524}
525
526.has-text-success {
527 color: #48c78e !important;
528}
529
530a.has-text-success:hover, a.has-text-success:focus {
531 color: #34a873 !important;
532}
533
534.has-background-success {
535 background-color: #48c78e !important;
536}
537
538.has-text-success-light {
539 color: #effaf5 !important;
540}
541
542a.has-text-success-light:hover, a.has-text-success-light:focus {
543 color: #c8eedd !important;
544}
545
546.has-background-success-light {
547 background-color: #effaf5 !important;
548}
549
550.has-text-success-dark {
551 color: #257953 !important;
552}
553
554a.has-text-success-dark:hover, a.has-text-success-dark:focus {
555 color: #31a06e !important;
556}
557
558.has-background-success-dark {
559 background-color: #257953 !important;
560}
561
562.has-text-warning {
563 color: #ffe08a !important;
564}
565
566a.has-text-warning:hover, a.has-text-warning:focus {
567 color: #ffd257 !important;
568}
569
570.has-background-warning {
571 background-color: #ffe08a !important;
572}
573
574.has-text-warning-light {
575 color: #fffaeb !important;
576}
577
578a.has-text-warning-light:hover, a.has-text-warning-light:focus {
579 color: #ffecb8 !important;
580}
581
582.has-background-warning-light {
583 background-color: #fffaeb !important;
584}
585
586.has-text-warning-dark {
587 color: #946c00 !important;
588}
589
590a.has-text-warning-dark:hover, a.has-text-warning-dark:focus {
591 color: #c79200 !important;
592}
593
594.has-background-warning-dark {
595 background-color: #946c00 !important;
596}
597
598.has-text-danger {
599 color: #f14668 !important;
600}
601
602a.has-text-danger:hover, a.has-text-danger:focus {
603 color: #ee1742 !important;
604}
605
606.has-background-danger {
607 background-color: #f14668 !important;
608}
609
610.has-text-danger-light {
611 color: #feecf0 !important;
612}
613
614a.has-text-danger-light:hover, a.has-text-danger-light:focus {
615 color: #fabdc9 !important;
616}
617
618.has-background-danger-light {
619 background-color: #feecf0 !important;
620}
621
622.has-text-danger-dark {
623 color: #cc0f35 !important;
624}
625
626a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
627 color: #ee2049 !important;
628}
629
630.has-background-danger-dark {
631 background-color: #cc0f35 !important;
632}
633
634.has-text-black-bis {
635 color: #121212 !important;
636}
637
638.has-background-black-bis {
639 background-color: #121212 !important;
640}
641
642.has-text-black-ter {
643 color: #242424 !important;
644}
645
646.has-background-black-ter {
647 background-color: #242424 !important;
648}
649
650.has-text-grey-darker {
651 color: #363636 !important;
652}
653
654.has-background-grey-darker {
655 background-color: #363636 !important;
656}
657
658.has-text-grey-dark {
659 color: #4a4a4a !important;
660}
661
662.has-background-grey-dark {
663 background-color: #4a4a4a !important;
664}
665
666.has-text-grey {
667 color: #7a7a7a !important;
668}
669
670.has-background-grey {
671 background-color: #7a7a7a !important;
672}
673
674.has-text-grey-light {
675 color: #b5b5b5 !important;
676}
677
678.has-background-grey-light {
679 background-color: #b5b5b5 !important;
680}
681
682.has-text-grey-lighter {
683 color: #dbdbdb !important;
684}
685
686.has-background-grey-lighter {
687 background-color: #dbdbdb !important;
688}
689
690.has-text-white-ter {
691 color: whitesmoke !important;
692}
693
694.has-background-white-ter {
695 background-color: whitesmoke !important;
696}
697
698.has-text-white-bis {
699 color: #fafafa !important;
700}
701
702.has-background-white-bis {
703 background-color: #fafafa !important;
704}
705
706.is-clearfix::after {
707 clear: both;
708 content: " ";
709 display: table;
710}
711
712.is-pulled-left {
713 float: left !important;
714}
715
716.is-pulled-right {
717 float: right !important;
718}
719
720.is-radiusless {
721 border-radius: 0 !important;
722}
723
724.is-shadowless {
725 box-shadow: none !important;
726}
727
728.is-clickable {
729 cursor: pointer !important;
730 pointer-events: all !important;
731}
732
733.is-clipped {
734 overflow: hidden !important;
735}
736
737.is-relative {
738 position: relative !important;
739}
740
741.is-marginless {
742 margin: 0 !important;
743}
744
745.is-paddingless {
746 padding: 0 !important;
747}
748
749.m-0 {
750 margin: 0 !important;
751}
752
753.mt-0 {
754 margin-top: 0 !important;
755}
756
757.mr-0 {
758 margin-right: 0 !important;
759}
760
761.mb-0 {
762 margin-bottom: 0 !important;
763}
764
765.ml-0 {
766 margin-left: 0 !important;
767}
768
769.mx-0 {
770 margin-left: 0 !important;
771 margin-right: 0 !important;
772}
773
774.my-0 {
775 margin-top: 0 !important;
776 margin-bottom: 0 !important;
777}
778
779.m-1 {
780 margin: 0.25rem !important;
781}
782
783.mt-1 {
784 margin-top: 0.25rem !important;
785}
786
787.mr-1 {
788 margin-right: 0.25rem !important;
789}
790
791.mb-1 {
792 margin-bottom: 0.25rem !important;
793}
794
795.ml-1 {
796 margin-left: 0.25rem !important;
797}
798
799.mx-1 {
800 margin-left: 0.25rem !important;
801 margin-right: 0.25rem !important;
802}
803
804.my-1 {
805 margin-top: 0.25rem !important;
806 margin-bottom: 0.25rem !important;
807}
808
809.m-2 {
810 margin: 0.5rem !important;
811}
812
813.mt-2 {
814 margin-top: 0.5rem !important;
815}
816
817.mr-2 {
818 margin-right: 0.5rem !important;
819}
820
821.mb-2 {
822 margin-bottom: 0.5rem !important;
823}
824
825.ml-2 {
826 margin-left: 0.5rem !important;
827}
828
829.mx-2 {
830 margin-left: 0.5rem !important;
831 margin-right: 0.5rem !important;
832}
833
834.my-2 {
835 margin-top: 0.5rem !important;
836 margin-bottom: 0.5rem !important;
837}
838
839.m-3 {
840 margin: 0.75rem !important;
841}
842
843.mt-3 {
844 margin-top: 0.75rem !important;
845}
846
847.mr-3 {
848 margin-right: 0.75rem !important;
849}
850
851.mb-3 {
852 margin-bottom: 0.75rem !important;
853}
854
855.ml-3 {
856 margin-left: 0.75rem !important;
857}
858
859.mx-3 {
860 margin-left: 0.75rem !important;
861 margin-right: 0.75rem !important;
862}
863
864.my-3 {
865 margin-top: 0.75rem !important;
866 margin-bottom: 0.75rem !important;
867}
868
869.m-4 {
870 margin: 1rem !important;
871}
872
873.mt-4 {
874 margin-top: 1rem !important;
875}
876
877.mr-4 {
878 margin-right: 1rem !important;
879}
880
881.mb-4 {
882 margin-bottom: 1rem !important;
883}
884
885.ml-4 {
886 margin-left: 1rem !important;
887}
888
889.mx-4 {
890 margin-left: 1rem !important;
891 margin-right: 1rem !important;
892}
893
894.my-4 {
895 margin-top: 1rem !important;
896 margin-bottom: 1rem !important;
897}
898
899.m-5 {
900 margin: 1.5rem !important;
901}
902
903.mt-5 {
904 margin-top: 1.5rem !important;
905}
906
907.mr-5 {
908 margin-right: 1.5rem !important;
909}
910
911.mb-5 {
912 margin-bottom: 1.5rem !important;
913}
914
915.ml-5 {
916 margin-left: 1.5rem !important;
917}
918
919.mx-5 {
920 margin-left: 1.5rem !important;
921 margin-right: 1.5rem !important;
922}
923
924.my-5 {
925 margin-top: 1.5rem !important;
926 margin-bottom: 1.5rem !important;
927}
928
929.m-6 {
930 margin: 3rem !important;
931}
932
933.mt-6 {
934 margin-top: 3rem !important;
935}
936
937.mr-6 {
938 margin-right: 3rem !important;
939}
940
941.mb-6 {
942 margin-bottom: 3rem !important;
943}
944
945.ml-6 {
946 margin-left: 3rem !important;
947}
948
949.mx-6 {
950 margin-left: 3rem !important;
951 margin-right: 3rem !important;
952}
953
954.my-6 {
955 margin-top: 3rem !important;
956 margin-bottom: 3rem !important;
957}
958
959.m-auto {
960 margin: auto !important;
961}
962
963.mt-auto {
964 margin-top: auto !important;
965}
966
967.mr-auto {
968 margin-right: auto !important;
969}
970
971.mb-auto {
972 margin-bottom: auto !important;
973}
974
975.ml-auto {
976 margin-left: auto !important;
977}
978
979.mx-auto {
980 margin-left: auto !important;
981 margin-right: auto !important;
982}
983
984.my-auto {
985 margin-top: auto !important;
986 margin-bottom: auto !important;
987}
988
989.p-0 {
990 padding: 0 !important;
991}
992
993.pt-0 {
994 padding-top: 0 !important;
995}
996
997.pr-0 {
998 padding-right: 0 !important;
999}
1000
1001.pb-0 {
1002 padding-bottom: 0 !important;
1003}
1004
1005.pl-0 {
1006 padding-left: 0 !important;
1007}
1008
1009.px-0 {
1010 padding-left: 0 !important;
1011 padding-right: 0 !important;
1012}
1013
1014.py-0 {
1015 padding-top: 0 !important;
1016 padding-bottom: 0 !important;
1017}
1018
1019.p-1 {
1020 padding: 0.25rem !important;
1021}
1022
1023.pt-1 {
1024 padding-top: 0.25rem !important;
1025}
1026
1027.pr-1 {
1028 padding-right: 0.25rem !important;
1029}
1030
1031.pb-1 {
1032 padding-bottom: 0.25rem !important;
1033}
1034
1035.pl-1 {
1036 padding-left: 0.25rem !important;
1037}
1038
1039.px-1 {
1040 padding-left: 0.25rem !important;
1041 padding-right: 0.25rem !important;
1042}
1043
1044.py-1 {
1045 padding-top: 0.25rem !important;
1046 padding-bottom: 0.25rem !important;
1047}
1048
1049.p-2 {
1050 padding: 0.5rem !important;
1051}
1052
1053.pt-2 {
1054 padding-top: 0.5rem !important;
1055}
1056
1057.pr-2 {
1058 padding-right: 0.5rem !important;
1059}
1060
1061.pb-2 {
1062 padding-bottom: 0.5rem !important;
1063}
1064
1065.pl-2 {
1066 padding-left: 0.5rem !important;
1067}
1068
1069.px-2 {
1070 padding-left: 0.5rem !important;
1071 padding-right: 0.5rem !important;
1072}
1073
1074.py-2 {
1075 padding-top: 0.5rem !important;
1076 padding-bottom: 0.5rem !important;
1077}
1078
1079.p-3 {
1080 padding: 0.75rem !important;
1081}
1082
1083.pt-3 {
1084 padding-top: 0.75rem !important;
1085}
1086
1087.pr-3 {
1088 padding-right: 0.75rem !important;
1089}
1090
1091.pb-3 {
1092 padding-bottom: 0.75rem !important;
1093}
1094
1095.pl-3 {
1096 padding-left: 0.75rem !important;
1097}
1098
1099.px-3 {
1100 padding-left: 0.75rem !important;
1101 padding-right: 0.75rem !important;
1102}
1103
1104.py-3 {
1105 padding-top: 0.75rem !important;
1106 padding-bottom: 0.75rem !important;
1107}
1108
1109.p-4 {
1110 padding: 1rem !important;
1111}
1112
1113.pt-4 {
1114 padding-top: 1rem !important;
1115}
1116
1117.pr-4 {
1118 padding-right: 1rem !important;
1119}
1120
1121.pb-4 {
1122 padding-bottom: 1rem !important;
1123}
1124
1125.pl-4 {
1126 padding-left: 1rem !important;
1127}
1128
1129.px-4 {
1130 padding-left: 1rem !important;
1131 padding-right: 1rem !important;
1132}
1133
1134.py-4 {
1135 padding-top: 1rem !important;
1136 padding-bottom: 1rem !important;
1137}
1138
1139.p-5 {
1140 padding: 1.5rem !important;
1141}
1142
1143.pt-5 {
1144 padding-top: 1.5rem !important;
1145}
1146
1147.pr-5 {
1148 padding-right: 1.5rem !important;
1149}
1150
1151.pb-5 {
1152 padding-bottom: 1.5rem !important;
1153}
1154
1155.pl-5 {
1156 padding-left: 1.5rem !important;
1157}
1158
1159.px-5 {
1160 padding-left: 1.5rem !important;
1161 padding-right: 1.5rem !important;
1162}
1163
1164.py-5 {
1165 padding-top: 1.5rem !important;
1166 padding-bottom: 1.5rem !important;
1167}
1168
1169.p-6 {
1170 padding: 3rem !important;
1171}
1172
1173.pt-6 {
1174 padding-top: 3rem !important;
1175}
1176
1177.pr-6 {
1178 padding-right: 3rem !important;
1179}
1180
1181.pb-6 {
1182 padding-bottom: 3rem !important;
1183}
1184
1185.pl-6 {
1186 padding-left: 3rem !important;
1187}
1188
1189.px-6 {
1190 padding-left: 3rem !important;
1191 padding-right: 3rem !important;
1192}
1193
1194.py-6 {
1195 padding-top: 3rem !important;
1196 padding-bottom: 3rem !important;
1197}
1198
1199.p-auto {
1200 padding: auto !important;
1201}
1202
1203.pt-auto {
1204 padding-top: auto !important;
1205}
1206
1207.pr-auto {
1208 padding-right: auto !important;
1209}
1210
1211.pb-auto {
1212 padding-bottom: auto !important;
1213}
1214
1215.pl-auto {
1216 padding-left: auto !important;
1217}
1218
1219.px-auto {
1220 padding-left: auto !important;
1221 padding-right: auto !important;
1222}
1223
1224.py-auto {
1225 padding-top: auto !important;
1226 padding-bottom: auto !important;
1227}
1228
1229.is-size-1 {
1230 font-size: 3rem !important;
1231}
1232
1233.is-size-2 {
1234 font-size: 2.5rem !important;
1235}
1236
1237.is-size-3 {
1238 font-size: 2rem !important;
1239}
1240
1241.is-size-4 {
1242 font-size: 1.5rem !important;
1243}
1244
1245.is-size-5 {
1246 font-size: 1.25rem !important;
1247}
1248
1249.is-size-6 {
1250 font-size: 1rem !important;
1251}
1252
1253.is-size-7 {
1254 font-size: 0.75rem !important;
1255}
1256
1257@media screen and (max-width: 768px) {
1258 .is-size-1-mobile {
1259 font-size: 3rem !important;
1260 }
1261 .is-size-2-mobile {
1262 font-size: 2.5rem !important;
1263 }
1264 .is-size-3-mobile {
1265 font-size: 2rem !important;
1266 }
1267 .is-size-4-mobile {
1268 font-size: 1.5rem !important;
1269 }
1270 .is-size-5-mobile {
1271 font-size: 1.25rem !important;
1272 }
1273 .is-size-6-mobile {
1274 font-size: 1rem !important;
1275 }
1276 .is-size-7-mobile {
1277 font-size: 0.75rem !important;
1278 }
1279}
1280
1281@media screen and (min-width: 769px), print {
1282 .is-size-1-tablet {
1283 font-size: 3rem !important;
1284 }
1285 .is-size-2-tablet {
1286 font-size: 2.5rem !important;
1287 }
1288 .is-size-3-tablet {
1289 font-size: 2rem !important;
1290 }
1291 .is-size-4-tablet {
1292 font-size: 1.5rem !important;
1293 }
1294 .is-size-5-tablet {
1295 font-size: 1.25rem !important;
1296 }
1297 .is-size-6-tablet {
1298 font-size: 1rem !important;
1299 }
1300 .is-size-7-tablet {
1301 font-size: 0.75rem !important;
1302 }
1303}
1304
1305@media screen and (max-width: 1023px) {
1306 .is-size-1-touch {
1307 font-size: 3rem !important;
1308 }
1309 .is-size-2-touch {
1310 font-size: 2.5rem !important;
1311 }
1312 .is-size-3-touch {
1313 font-size: 2rem !important;
1314 }
1315 .is-size-4-touch {
1316 font-size: 1.5rem !important;
1317 }
1318 .is-size-5-touch {
1319 font-size: 1.25rem !important;
1320 }
1321 .is-size-6-touch {
1322 font-size: 1rem !important;
1323 }
1324 .is-size-7-touch {
1325 font-size: 0.75rem !important;
1326 }
1327}
1328
1329@media screen and (min-width: 1024px) {
1330 .is-size-1-desktop {
1331 font-size: 3rem !important;
1332 }
1333 .is-size-2-desktop {
1334 font-size: 2.5rem !important;
1335 }
1336 .is-size-3-desktop {
1337 font-size: 2rem !important;
1338 }
1339 .is-size-4-desktop {
1340 font-size: 1.5rem !important;
1341 }
1342 .is-size-5-desktop {
1343 font-size: 1.25rem !important;
1344 }
1345 .is-size-6-desktop {
1346 font-size: 1rem !important;
1347 }
1348 .is-size-7-desktop {
1349 font-size: 0.75rem !important;
1350 }
1351}
1352
1353@media screen and (min-width: 1216px) {
1354 .is-size-1-widescreen {
1355 font-size: 3rem !important;
1356 }
1357 .is-size-2-widescreen {
1358 font-size: 2.5rem !important;
1359 }
1360 .is-size-3-widescreen {
1361 font-size: 2rem !important;
1362 }
1363 .is-size-4-widescreen {
1364 font-size: 1.5rem !important;
1365 }
1366 .is-size-5-widescreen {
1367 font-size: 1.25rem !important;
1368 }
1369 .is-size-6-widescreen {
1370 font-size: 1rem !important;
1371 }
1372 .is-size-7-widescreen {
1373 font-size: 0.75rem !important;
1374 }
1375}
1376
1377@media screen and (min-width: 1408px) {
1378 .is-size-1-fullhd {
1379 font-size: 3rem !important;
1380 }
1381 .is-size-2-fullhd {
1382 font-size: 2.5rem !important;
1383 }
1384 .is-size-3-fullhd {
1385 font-size: 2rem !important;
1386 }
1387 .is-size-4-fullhd {
1388 font-size: 1.5rem !important;
1389 }
1390 .is-size-5-fullhd {
1391 font-size: 1.25rem !important;
1392 }
1393 .is-size-6-fullhd {
1394 font-size: 1rem !important;
1395 }
1396 .is-size-7-fullhd {
1397 font-size: 0.75rem !important;
1398 }
1399}
1400
1401.has-text-centered {
1402 text-align: center !important;
1403}
1404
1405.has-text-justified {
1406 text-align: justify !important;
1407}
1408
1409.has-text-left {
1410 text-align: left !important;
1411}
1412
1413.has-text-right {
1414 text-align: right !important;
1415}
1416
1417@media screen and (max-width: 768px) {
1418 .has-text-centered-mobile {
1419 text-align: center !important;
1420 }
1421}
1422
1423@media screen and (min-width: 769px), print {
1424 .has-text-centered-tablet {
1425 text-align: center !important;
1426 }
1427}
1428
1429@media screen and (min-width: 769px) and (max-width: 1023px) {
1430 .has-text-centered-tablet-only {
1431 text-align: center !important;
1432 }
1433}
1434
1435@media screen and (max-width: 1023px) {
1436 .has-text-centered-touch {
1437 text-align: center !important;
1438 }
1439}
1440
1441@media screen and (min-width: 1024px) {
1442 .has-text-centered-desktop {
1443 text-align: center !important;
1444 }
1445}
1446
1447@media screen and (min-width: 1024px) and (max-width: 1215px) {
1448 .has-text-centered-desktop-only {
1449 text-align: center !important;
1450 }
1451}
1452
1453@media screen and (min-width: 1216px) {
1454 .has-text-centered-widescreen {
1455 text-align: center !important;
1456 }
1457}
1458
1459@media screen and (min-width: 1216px) and (max-width: 1407px) {
1460 .has-text-centered-widescreen-only {
1461 text-align: center !important;
1462 }
1463}
1464
1465@media screen and (min-width: 1408px) {
1466 .has-text-centered-fullhd {
1467 text-align: center !important;
1468 }
1469}
1470
1471@media screen and (max-width: 768px) {
1472 .has-text-justified-mobile {
1473 text-align: justify !important;
1474 }
1475}
1476
1477@media screen and (min-width: 769px), print {
1478 .has-text-justified-tablet {
1479 text-align: justify !important;
1480 }
1481}
1482
1483@media screen and (min-width: 769px) and (max-width: 1023px) {
1484 .has-text-justified-tablet-only {
1485 text-align: justify !important;
1486 }
1487}
1488
1489@media screen and (max-width: 1023px) {
1490 .has-text-justified-touch {
1491 text-align: justify !important;
1492 }
1493}
1494
1495@media screen and (min-width: 1024px) {
1496 .has-text-justified-desktop {
1497 text-align: justify !important;
1498 }
1499}
1500
1501@media screen and (min-width: 1024px) and (max-width: 1215px) {
1502 .has-text-justified-desktop-only {
1503 text-align: justify !important;
1504 }
1505}
1506
1507@media screen and (min-width: 1216px) {
1508 .has-text-justified-widescreen {
1509 text-align: justify !important;
1510 }
1511}
1512
1513@media screen and (min-width: 1216px) and (max-width: 1407px) {
1514 .has-text-justified-widescreen-only {
1515 text-align: justify !important;
1516 }
1517}
1518
1519@media screen and (min-width: 1408px) {
1520 .has-text-justified-fullhd {
1521 text-align: justify !important;
1522 }
1523}
1524
1525@media screen and (max-width: 768px) {
1526 .has-text-left-mobile {
1527 text-align: left !important;
1528 }
1529}
1530
1531@media screen and (min-width: 769px), print {
1532 .has-text-left-tablet {
1533 text-align: left !important;
1534 }
1535}
1536
1537@media screen and (min-width: 769px) and (max-width: 1023px) {
1538 .has-text-left-tablet-only {
1539 text-align: left !important;
1540 }
1541}
1542
1543@media screen and (max-width: 1023px) {
1544 .has-text-left-touch {
1545 text-align: left !important;
1546 }
1547}
1548
1549@media screen and (min-width: 1024px) {
1550 .has-text-left-desktop {
1551 text-align: left !important;
1552 }
1553}
1554
1555@media screen and (min-width: 1024px) and (max-width: 1215px) {
1556 .has-text-left-desktop-only {
1557 text-align: left !important;
1558 }
1559}
1560
1561@media screen and (min-width: 1216px) {
1562 .has-text-left-widescreen {
1563 text-align: left !important;
1564 }
1565}
1566
1567@media screen and (min-width: 1216px) and (max-width: 1407px) {
1568 .has-text-left-widescreen-only {
1569 text-align: left !important;
1570 }
1571}
1572
1573@media screen and (min-width: 1408px) {
1574 .has-text-left-fullhd {
1575 text-align: left !important;
1576 }
1577}
1578
1579@media screen and (max-width: 768px) {
1580 .has-text-right-mobile {
1581 text-align: right !important;
1582 }
1583}
1584
1585@media screen and (min-width: 769px), print {
1586 .has-text-right-tablet {
1587 text-align: right !important;
1588 }
1589}
1590
1591@media screen and (min-width: 769px) and (max-width: 1023px) {
1592 .has-text-right-tablet-only {
1593 text-align: right !important;
1594 }
1595}
1596
1597@media screen and (max-width: 1023px) {
1598 .has-text-right-touch {
1599 text-align: right !important;
1600 }
1601}
1602
1603@media screen and (min-width: 1024px) {
1604 .has-text-right-desktop {
1605 text-align: right !important;
1606 }
1607}
1608
1609@media screen and (min-width: 1024px) and (max-width: 1215px) {
1610 .has-text-right-desktop-only {
1611 text-align: right !important;
1612 }
1613}
1614
1615@media screen and (min-width: 1216px) {
1616 .has-text-right-widescreen {
1617 text-align: right !important;
1618 }
1619}
1620
1621@media screen and (min-width: 1216px) and (max-width: 1407px) {
1622 .has-text-right-widescreen-only {
1623 text-align: right !important;
1624 }
1625}
1626
1627@media screen and (min-width: 1408px) {
1628 .has-text-right-fullhd {
1629 text-align: right !important;
1630 }
1631}
1632
1633.is-capitalized {
1634 text-transform: capitalize !important;
1635}
1636
1637.is-lowercase {
1638 text-transform: lowercase !important;
1639}
1640
1641.is-uppercase {
1642 text-transform: uppercase !important;
1643}
1644
1645.is-italic {
1646 font-style: italic !important;
1647}
1648
1649.is-underlined {
1650 text-decoration: underline !important;
1651}
1652
1653.has-text-weight-light {
1654 font-weight: 300 !important;
1655}
1656
1657.has-text-weight-normal {
1658 font-weight: 400 !important;
1659}
1660
1661.has-text-weight-medium {
1662 font-weight: 500 !important;
1663}
1664
1665.has-text-weight-semibold {
1666 font-weight: 600 !important;
1667}
1668
1669.has-text-weight-bold {
1670 font-weight: 700 !important;
1671}
1672
1673.is-family-primary {
1674 font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
1675}
1676
1677.is-family-secondary {
1678 font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
1679}
1680
1681.is-family-sans-serif {
1682 font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
1683}
1684
1685.is-family-monospace {
1686 font-family: monospace !important;
1687}
1688
1689.is-family-code {
1690 font-family: monospace !important;
1691}
1692
1693.is-block {
1694 display: block !important;
1695}
1696
1697@media screen and (max-width: 768px) {
1698 .is-block-mobile {
1699 display: block !important;
1700 }
1701}
1702
1703@media screen and (min-width: 769px), print {
1704 .is-block-tablet {
1705 display: block !important;
1706 }
1707}
1708
1709@media screen and (min-width: 769px) and (max-width: 1023px) {
1710 .is-block-tablet-only {
1711 display: block !important;
1712 }
1713}
1714
1715@media screen and (max-width: 1023px) {
1716 .is-block-touch {
1717 display: block !important;
1718 }
1719}
1720
1721@media screen and (min-width: 1024px) {
1722 .is-block-desktop {
1723 display: block !important;
1724 }
1725}
1726
1727@media screen and (min-width: 1024px) and (max-width: 1215px) {
1728 .is-block-desktop-only {
1729 display: block !important;
1730 }
1731}
1732
1733@media screen and (min-width: 1216px) {
1734 .is-block-widescreen {
1735 display: block !important;
1736 }
1737}
1738
1739@media screen and (min-width: 1216px) and (max-width: 1407px) {
1740 .is-block-widescreen-only {
1741 display: block !important;
1742 }
1743}
1744
1745@media screen and (min-width: 1408px) {
1746 .is-block-fullhd {
1747 display: block !important;
1748 }
1749}
1750
1751.is-flex {
1752 display: -ms-flexbox !important;
1753 display: flex !important;
1754}
1755
1756@media screen and (max-width: 768px) {
1757 .is-flex-mobile {
1758 display: -ms-flexbox !important;
1759 display: flex !important;
1760 }
1761}
1762
1763@media screen and (min-width: 769px), print {
1764 .is-flex-tablet {
1765 display: -ms-flexbox !important;
1766 display: flex !important;
1767 }
1768}
1769
1770@media screen and (min-width: 769px) and (max-width: 1023px) {
1771 .is-flex-tablet-only {
1772 display: -ms-flexbox !important;
1773 display: flex !important;
1774 }
1775}
1776
1777@media screen and (max-width: 1023px) {
1778 .is-flex-touch {
1779 display: -ms-flexbox !important;
1780 display: flex !important;
1781 }
1782}
1783
1784@media screen and (min-width: 1024px) {
1785 .is-flex-desktop {
1786 display: -ms-flexbox !important;
1787 display: flex !important;
1788 }
1789}
1790
1791@media screen and (min-width: 1024px) and (max-width: 1215px) {
1792 .is-flex-desktop-only {
1793 display: -ms-flexbox !important;
1794 display: flex !important;
1795 }
1796}
1797
1798@media screen and (min-width: 1216px) {
1799 .is-flex-widescreen {
1800 display: -ms-flexbox !important;
1801 display: flex !important;
1802 }
1803}
1804
1805@media screen and (min-width: 1216px) and (max-width: 1407px) {
1806 .is-flex-widescreen-only {
1807 display: -ms-flexbox !important;
1808 display: flex !important;
1809 }
1810}
1811
1812@media screen and (min-width: 1408px) {
1813 .is-flex-fullhd {
1814 display: -ms-flexbox !important;
1815 display: flex !important;
1816 }
1817}
1818
1819.is-inline {
1820 display: inline !important;
1821}
1822
1823@media screen and (max-width: 768px) {
1824 .is-inline-mobile {
1825 display: inline !important;
1826 }
1827}
1828
1829@media screen and (min-width: 769px), print {
1830 .is-inline-tablet {
1831 display: inline !important;
1832 }
1833}
1834
1835@media screen and (min-width: 769px) and (max-width: 1023px) {
1836 .is-inline-tablet-only {
1837 display: inline !important;
1838 }
1839}
1840
1841@media screen and (max-width: 1023px) {
1842 .is-inline-touch {
1843 display: inline !important;
1844 }
1845}
1846
1847@media screen and (min-width: 1024px) {
1848 .is-inline-desktop {
1849 display: inline !important;
1850 }
1851}
1852
1853@media screen and (min-width: 1024px) and (max-width: 1215px) {
1854 .is-inline-desktop-only {
1855 display: inline !important;
1856 }
1857}
1858
1859@media screen and (min-width: 1216px) {
1860 .is-inline-widescreen {
1861 display: inline !important;
1862 }
1863}
1864
1865@media screen and (min-width: 1216px) and (max-width: 1407px) {
1866 .is-inline-widescreen-only {
1867 display: inline !important;
1868 }
1869}
1870
1871@media screen and (min-width: 1408px) {
1872 .is-inline-fullhd {
1873 display: inline !important;
1874 }
1875}
1876
1877.is-inline-block {
1878 display: inline-block !important;
1879}
1880
1881@media screen and (max-width: 768px) {
1882 .is-inline-block-mobile {
1883 display: inline-block !important;
1884 }
1885}
1886
1887@media screen and (min-width: 769px), print {
1888 .is-inline-block-tablet {
1889 display: inline-block !important;
1890 }
1891}
1892
1893@media screen and (min-width: 769px) and (max-width: 1023px) {
1894 .is-inline-block-tablet-only {
1895 display: inline-block !important;
1896 }
1897}
1898
1899@media screen and (max-width: 1023px) {
1900 .is-inline-block-touch {
1901 display: inline-block !important;
1902 }
1903}
1904
1905@media screen and (min-width: 1024px) {
1906 .is-inline-block-desktop {
1907 display: inline-block !important;
1908 }
1909}
1910
1911@media screen and (min-width: 1024px) and (max-width: 1215px) {
1912 .is-inline-block-desktop-only {
1913 display: inline-block !important;
1914 }
1915}
1916
1917@media screen and (min-width: 1216px) {
1918 .is-inline-block-widescreen {
1919 display: inline-block !important;
1920 }
1921}
1922
1923@media screen and (min-width: 1216px) and (max-width: 1407px) {
1924 .is-inline-block-widescreen-only {
1925 display: inline-block !important;
1926 }
1927}
1928
1929@media screen and (min-width: 1408px) {
1930 .is-inline-block-fullhd {
1931 display: inline-block !important;
1932 }
1933}
1934
1935.is-inline-flex {
1936 display: -ms-inline-flexbox !important;
1937 display: inline-flex !important;
1938}
1939
1940@media screen and (max-width: 768px) {
1941 .is-inline-flex-mobile {
1942 display: -ms-inline-flexbox !important;
1943 display: inline-flex !important;
1944 }
1945}
1946
1947@media screen and (min-width: 769px), print {
1948 .is-inline-flex-tablet {
1949 display: -ms-inline-flexbox !important;
1950 display: inline-flex !important;
1951 }
1952}
1953
1954@media screen and (min-width: 769px) and (max-width: 1023px) {
1955 .is-inline-flex-tablet-only {
1956 display: -ms-inline-flexbox !important;
1957 display: inline-flex !important;
1958 }
1959}
1960
1961@media screen and (max-width: 1023px) {
1962 .is-inline-flex-touch {
1963 display: -ms-inline-flexbox !important;
1964 display: inline-flex !important;
1965 }
1966}
1967
1968@media screen and (min-width: 1024px) {
1969 .is-inline-flex-desktop {
1970 display: -ms-inline-flexbox !important;
1971 display: inline-flex !important;
1972 }
1973}
1974
1975@media screen and (min-width: 1024px) and (max-width: 1215px) {
1976 .is-inline-flex-desktop-only {
1977 display: -ms-inline-flexbox !important;
1978 display: inline-flex !important;
1979 }
1980}
1981
1982@media screen and (min-width: 1216px) {
1983 .is-inline-flex-widescreen {
1984 display: -ms-inline-flexbox !important;
1985 display: inline-flex !important;
1986 }
1987}
1988
1989@media screen and (min-width: 1216px) and (max-width: 1407px) {
1990 .is-inline-flex-widescreen-only {
1991 display: -ms-inline-flexbox !important;
1992 display: inline-flex !important;
1993 }
1994}
1995
1996@media screen and (min-width: 1408px) {
1997 .is-inline-flex-fullhd {
1998 display: -ms-inline-flexbox !important;
1999 display: inline-flex !important;
2000 }
2001}
2002
2003.is-hidden {
2004 display: none !important;
2005}
2006
2007.is-sr-only {
2008 border: none !important;
2009 clip: rect(0, 0, 0, 0) !important;
2010 height: 0.01em !important;
2011 overflow: hidden !important;
2012 padding: 0 !important;
2013 position: absolute !important;
2014 white-space: nowrap !important;
2015 width: 0.01em !important;
2016}
2017
2018@media screen and (max-width: 768px) {
2019 .is-hidden-mobile {
2020 display: none !important;
2021 }
2022}
2023
2024@media screen and (min-width: 769px), print {
2025 .is-hidden-tablet {
2026 display: none !important;
2027 }
2028}
2029
2030@media screen and (min-width: 769px) and (max-width: 1023px) {
2031 .is-hidden-tablet-only {
2032 display: none !important;
2033 }
2034}
2035
2036@media screen and (max-width: 1023px) {
2037 .is-hidden-touch {
2038 display: none !important;
2039 }
2040}
2041
2042@media screen and (min-width: 1024px) {
2043 .is-hidden-desktop {
2044 display: none !important;
2045 }
2046}
2047
2048@media screen and (min-width: 1024px) and (max-width: 1215px) {
2049 .is-hidden-desktop-only {
2050 display: none !important;
2051 }
2052}
2053
2054@media screen and (min-width: 1216px) {
2055 .is-hidden-widescreen {
2056 display: none !important;
2057 }
2058}
2059
2060@media screen and (min-width: 1216px) and (max-width: 1407px) {
2061 .is-hidden-widescreen-only {
2062 display: none !important;
2063 }
2064}
2065
2066@media screen and (min-width: 1408px) {
2067 .is-hidden-fullhd {
2068 display: none !important;
2069 }
2070}
2071
2072.is-invisible {
2073 visibility: hidden !important;
2074}
2075
2076@media screen and (max-width: 768px) {
2077 .is-invisible-mobile {
2078 visibility: hidden !important;
2079 }
2080}
2081
2082@media screen and (min-width: 769px), print {
2083 .is-invisible-tablet {
2084 visibility: hidden !important;
2085 }
2086}
2087
2088@media screen and (min-width: 769px) and (max-width: 1023px) {
2089 .is-invisible-tablet-only {
2090 visibility: hidden !important;
2091 }
2092}
2093
2094@media screen and (max-width: 1023px) {
2095 .is-invisible-touch {
2096 visibility: hidden !important;
2097 }
2098}
2099
2100@media screen and (min-width: 1024px) {
2101 .is-invisible-desktop {
2102 visibility: hidden !important;
2103 }
2104}
2105
2106@media screen and (min-width: 1024px) and (max-width: 1215px) {
2107 .is-invisible-desktop-only {
2108 visibility: hidden !important;
2109 }
2110}
2111
2112@media screen and (min-width: 1216px) {
2113 .is-invisible-widescreen {
2114 visibility: hidden !important;
2115 }
2116}
2117
2118@media screen and (min-width: 1216px) and (max-width: 1407px) {
2119 .is-invisible-widescreen-only {
2120 visibility: hidden !important;
2121 }
2122}
2123
2124@media screen and (min-width: 1408px) {
2125 .is-invisible-fullhd {
2126 visibility: hidden !important;
2127 }
2128}
2129
2130.level {
2131 -ms-flex-align: center;
2132 align-items: center;
2133 -ms-flex-pack: justify;
2134 justify-content: space-between;
2135}
2136
2137.level code {
2138 border-radius: 4px;
2139}
2140
2141.level img {
2142 display: inline-block;
2143 vertical-align: top;
2144}
2145
2146.level.is-mobile {
2147 display: -ms-flexbox;
2148 display: flex;
2149}
2150
2151.level.is-mobile .level-left,
2152.level.is-mobile .level-right {
2153 display: -ms-flexbox;
2154 display: flex;
2155}
2156
2157.level.is-mobile .level-left + .level-right {
2158 margin-top: 0;
2159}
2160
2161.level.is-mobile .level-item:not(:last-child) {
2162 margin-bottom: 0;
2163 margin-right: 0.75rem;
2164}
2165
2166.level.is-mobile .level-item:not(.is-narrow) {
2167 -ms-flex-positive: 1;
2168 flex-grow: 1;
2169}
2170
2171@media screen and (min-width: 769px), print {
2172 .level {
2173 display: -ms-flexbox;
2174 display: flex;
2175 }
2176 .level > .level-item:not(.is-narrow) {
2177 -ms-flex-positive: 1;
2178 flex-grow: 1;
2179 }
2180}
2181
2182.level-item {
2183 -ms-flex-align: center;
2184 align-items: center;
2185 display: -ms-flexbox;
2186 display: flex;
2187 -ms-flex-preferred-size: auto;
2188 flex-basis: auto;
2189 -ms-flex-positive: 0;
2190 flex-grow: 0;
2191 -ms-flex-negative: 0;
2192 flex-shrink: 0;
2193 -ms-flex-pack: center;
2194 justify-content: center;
2195}
2196
2197.level-item .title,
2198.level-item .subtitle {
2199 margin-bottom: 0;
2200}
2201
2202@media screen and (max-width: 768px) {
2203 .level-item:not(:last-child) {
2204 margin-bottom: 0.75rem;
2205 }
2206}
2207
2208.level-left,
2209.level-right {
2210 -ms-flex-preferred-size: auto;
2211 flex-basis: auto;
2212 -ms-flex-positive: 0;
2213 flex-grow: 0;
2214 -ms-flex-negative: 0;
2215 flex-shrink: 0;
2216}
2217
2218.level-left .level-item.is-flexible,
2219.level-right .level-item.is-flexible {
2220 -ms-flex-positive: 1;
2221 flex-grow: 1;
2222}
2223
2224@media screen and (min-width: 769px), print {
2225 .level-left .level-item:not(:last-child),
2226 .level-right .level-item:not(:last-child) {
2227 margin-right: 0.75rem;
2228 }
2229}
2230
2231.level-left {
2232 -ms-flex-align: center;
2233 align-items: center;
2234 -ms-flex-pack: start;
2235 justify-content: flex-start;
2236}
2237
2238@media screen and (max-width: 768px) {
2239 .level-left + .level-right {
2240 margin-top: 1.5rem;
2241 }
2242}
2243
2244@media screen and (min-width: 769px), print {
2245 .level-left {
2246 display: -ms-flexbox;
2247 display: flex;
2248 }
2249}
2250
2251.level-right {
2252 -ms-flex-align: center;
2253 align-items: center;
2254 -ms-flex-pack: end;
2255 justify-content: flex-end;
2256}
2257
2258@media screen and (min-width: 769px), print {
2259 .level-right {
2260 display: -ms-flexbox;
2261 display: flex;
2262 }
2263}
2264
2265.media {
2266 -ms-flex-align: start;
2267 align-items: flex-start;
2268 display: -ms-flexbox;
2269 display: flex;
2270 text-align: inherit;
2271}
2272
2273.media .content:not(:last-child) {
2274 margin-bottom: 0.75rem;
2275}
2276
2277.media .media {
2278 border-top: 1px solid rgba(219, 219, 219, 0.5);
2279 display: -ms-flexbox;
2280 display: flex;
2281 padding-top: 0.75rem;
2282}
2283
2284.media .media .content:not(:last-child),
2285.media .media .control:not(:last-child) {
2286 margin-bottom: 0.5rem;
2287}
2288
2289.media .media .media {
2290 padding-top: 0.5rem;
2291}
2292
2293.media .media .media + .media {
2294 margin-top: 0.5rem;
2295}
2296
2297.media + .media {
2298 border-top: 1px solid rgba(219, 219, 219, 0.5);
2299 margin-top: 1rem;
2300 padding-top: 1rem;
2301}
2302
2303.media.is-large + .media {
2304 margin-top: 1.5rem;
2305 padding-top: 1.5rem;
2306}
2307
2308.media-left,
2309.media-right {
2310 -ms-flex-preferred-size: auto;
2311 flex-basis: auto;
2312 -ms-flex-positive: 0;
2313 flex-grow: 0;
2314 -ms-flex-negative: 0;
2315 flex-shrink: 0;
2316}
2317
2318.media-left {
2319 margin-right: 1rem;
2320}
2321
2322.media-right {
2323 margin-left: 1rem;
2324}
2325
2326.media-content {
2327 -ms-flex-preferred-size: auto;
2328 flex-basis: auto;
2329 -ms-flex-positive: 1;
2330 flex-grow: 1;
2331 -ms-flex-negative: 1;
2332 flex-shrink: 1;
2333 text-align: inherit;
2334}
2335
2336@media screen and (max-width: 768px) {
2337 .media-content {
2338 overflow-x: auto;
2339 }
2340}
2341
2342.tile {
2343 -ms-flex-align: stretch;
2344 align-items: stretch;
2345 display: block;
2346 -ms-flex-preferred-size: 0;
2347 flex-basis: 0;
2348 -ms-flex-positive: 1;
2349 flex-grow: 1;
2350 -ms-flex-negative: 1;
2351 flex-shrink: 1;
2352 min-height: -webkit-min-content;
2353 min-height: -moz-min-content;
2354 min-height: min-content;
2355}
2356
2357.tile.is-ancestor {
2358 margin-left: -0.75rem;
2359 margin-right: -0.75rem;
2360 margin-top: -0.75rem;
2361}
2362
2363.tile.is-ancestor:last-child {
2364 margin-bottom: -0.75rem;
2365}
2366
2367.tile.is-ancestor:not(:last-child) {
2368 margin-bottom: 0.75rem;
2369}
2370
2371.tile.is-child {
2372 margin: 0 !important;
2373}
2374
2375.tile.is-parent {
2376 padding: 0.75rem;
2377}
2378
2379.tile.is-vertical {
2380 -ms-flex-direction: column;
2381 flex-direction: column;
2382}
2383
2384.tile.is-vertical > .tile.is-child:not(:last-child) {
2385 margin-bottom: 1.5rem !important;
2386}
2387
2388@media screen and (min-width: 769px), print {
2389 .tile:not(.is-child) {
2390 display: -ms-flexbox;
2391 display: flex;
2392 }
2393 .tile.is-1 {
2394 -ms-flex: none;
2395 flex: none;
2396 width: 8.33333%;
2397 }
2398 .tile.is-2 {
2399 -ms-flex: none;
2400 flex: none;
2401 width: 16.66667%;
2402 }
2403 .tile.is-3 {
2404 -ms-flex: none;
2405 flex: none;
2406 width: 25%;
2407 }
2408 .tile.is-4 {
2409 -ms-flex: none;
2410 flex: none;
2411 width: 33.33333%;
2412 }
2413 .tile.is-5 {
2414 -ms-flex: none;
2415 flex: none;
2416 width: 41.66667%;
2417 }
2418 .tile.is-6 {
2419 -ms-flex: none;
2420 flex: none;
2421 width: 50%;
2422 }
2423 .tile.is-7 {
2424 -ms-flex: none;
2425 flex: none;
2426 width: 58.33333%;
2427 }
2428 .tile.is-8 {
2429 -ms-flex: none;
2430 flex: none;
2431 width: 66.66667%;
2432 }
2433 .tile.is-9 {
2434 -ms-flex: none;
2435 flex: none;
2436 width: 75%;
2437 }
2438 .tile.is-10 {
2439 -ms-flex: none;
2440 flex: none;
2441 width: 83.33333%;
2442 }
2443 .tile.is-11 {
2444 -ms-flex: none;
2445 flex: none;
2446 width: 91.66667%;
2447 }
2448 .tile.is-12 {
2449 -ms-flex: none;
2450 flex: none;
2451 width: 100%;
2452 }
2453}
2454
2455.hero {
2456 -ms-flex-align: stretch;
2457 align-items: stretch;
2458 display: -ms-flexbox;
2459 display: flex;
2460 -ms-flex-direction: column;
2461 flex-direction: column;
2462 -ms-flex-pack: justify;
2463 justify-content: space-between;
2464}
2465
2466.hero .navbar {
2467 background: none;
2468}
2469
2470.hero .tabs ul {
2471 border-bottom: none;
2472}
2473
2474.hero.is-white {
2475 background-color: white;
2476 color: #0a0a0a;
2477}
2478
2479.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2480.hero.is-white strong {
2481 color: inherit;
2482}
2483
2484.hero.is-white .title {
2485 color: #0a0a0a;
2486}
2487
2488.hero.is-white .subtitle {
2489 color: rgba(10, 10, 10, 0.9);
2490}
2491
2492.hero.is-white .subtitle a:not(.button),
2493.hero.is-white .subtitle strong {
2494 color: #0a0a0a;
2495}
2496
2497@media screen and (max-width: 1023px) {
2498 .hero.is-white .navbar-menu {
2499 background-color: white;
2500 }
2501}
2502
2503.hero.is-white .navbar-item,
2504.hero.is-white .navbar-link {
2505 color: rgba(10, 10, 10, 0.7);
2506}
2507
2508.hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
2509.hero.is-white .navbar-link:hover,
2510.hero.is-white .navbar-link.is-active {
2511 background-color: #f2f2f2;
2512 color: #0a0a0a;
2513}
2514
2515.hero.is-white .tabs a {
2516 color: #0a0a0a;
2517 opacity: 0.9;
2518}
2519
2520.hero.is-white .tabs a:hover {
2521 opacity: 1;
2522}
2523
2524.hero.is-white .tabs li.is-active a {
2525 color: white !important;
2526 opacity: 1;
2527}
2528
2529.hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
2530 color: #0a0a0a;
2531}
2532
2533.hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
2534 background-color: rgba(10, 10, 10, 0.1);
2535}
2536
2537.hero.is-white .tabs.is-boxed li.is-active a, .hero.is-white .tabs.is-boxed li.is-active a:hover, .hero.is-white .tabs.is-toggle li.is-active a, .hero.is-white .tabs.is-toggle li.is-active a:hover {
2538 background-color: #0a0a0a;
2539 border-color: #0a0a0a;
2540 color: white;
2541}
2542
2543.hero.is-white.is-bold {
2544 background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
2545}
2546
2547@media screen and (max-width: 768px) {
2548 .hero.is-white.is-bold .navbar-menu {
2549 background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
2550 }
2551}
2552
2553.hero.is-black {
2554 background-color: #0a0a0a;
2555 color: white;
2556}
2557
2558.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2559.hero.is-black strong {
2560 color: inherit;
2561}
2562
2563.hero.is-black .title {
2564 color: white;
2565}
2566
2567.hero.is-black .subtitle {
2568 color: rgba(255, 255, 255, 0.9);
2569}
2570
2571.hero.is-black .subtitle a:not(.button),
2572.hero.is-black .subtitle strong {
2573 color: white;
2574}
2575
2576@media screen and (max-width: 1023px) {
2577 .hero.is-black .navbar-menu {
2578 background-color: #0a0a0a;
2579 }
2580}
2581
2582.hero.is-black .navbar-item,
2583.hero.is-black .navbar-link {
2584 color: rgba(255, 255, 255, 0.7);
2585}
2586
2587.hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
2588.hero.is-black .navbar-link:hover,
2589.hero.is-black .navbar-link.is-active {
2590 background-color: black;
2591 color: white;
2592}
2593
2594.hero.is-black .tabs a {
2595 color: white;
2596 opacity: 0.9;
2597}
2598
2599.hero.is-black .tabs a:hover {
2600 opacity: 1;
2601}
2602
2603.hero.is-black .tabs li.is-active a {
2604 color: #0a0a0a !important;
2605 opacity: 1;
2606}
2607
2608.hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
2609 color: white;
2610}
2611
2612.hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
2613 background-color: rgba(10, 10, 10, 0.1);
2614}
2615
2616.hero.is-black .tabs.is-boxed li.is-active a, .hero.is-black .tabs.is-boxed li.is-active a:hover, .hero.is-black .tabs.is-toggle li.is-active a, .hero.is-black .tabs.is-toggle li.is-active a:hover {
2617 background-color: white;
2618 border-color: white;
2619 color: #0a0a0a;
2620}
2621
2622.hero.is-black.is-bold {
2623 background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
2624}
2625
2626@media screen and (max-width: 768px) {
2627 .hero.is-black.is-bold .navbar-menu {
2628 background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
2629 }
2630}
2631
2632.hero.is-light {
2633 background-color: whitesmoke;
2634 color: rgba(0, 0, 0, 0.7);
2635}
2636
2637.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2638.hero.is-light strong {
2639 color: inherit;
2640}
2641
2642.hero.is-light .title {
2643 color: rgba(0, 0, 0, 0.7);
2644}
2645
2646.hero.is-light .subtitle {
2647 color: rgba(0, 0, 0, 0.9);
2648}
2649
2650.hero.is-light .subtitle a:not(.button),
2651.hero.is-light .subtitle strong {
2652 color: rgba(0, 0, 0, 0.7);
2653}
2654
2655@media screen and (max-width: 1023px) {
2656 .hero.is-light .navbar-menu {
2657 background-color: whitesmoke;
2658 }
2659}
2660
2661.hero.is-light .navbar-item,
2662.hero.is-light .navbar-link {
2663 color: rgba(0, 0, 0, 0.7);
2664}
2665
2666.hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
2667.hero.is-light .navbar-link:hover,
2668.hero.is-light .navbar-link.is-active {
2669 background-color: #e8e8e8;
2670 color: rgba(0, 0, 0, 0.7);
2671}
2672
2673.hero.is-light .tabs a {
2674 color: rgba(0, 0, 0, 0.7);
2675 opacity: 0.9;
2676}
2677
2678.hero.is-light .tabs a:hover {
2679 opacity: 1;
2680}
2681
2682.hero.is-light .tabs li.is-active a {
2683 color: whitesmoke !important;
2684 opacity: 1;
2685}
2686
2687.hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
2688 color: rgba(0, 0, 0, 0.7);
2689}
2690
2691.hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
2692 background-color: rgba(10, 10, 10, 0.1);
2693}
2694
2695.hero.is-light .tabs.is-boxed li.is-active a, .hero.is-light .tabs.is-boxed li.is-active a:hover, .hero.is-light .tabs.is-toggle li.is-active a, .hero.is-light .tabs.is-toggle li.is-active a:hover {
2696 background-color: rgba(0, 0, 0, 0.7);
2697 border-color: rgba(0, 0, 0, 0.7);
2698 color: whitesmoke;
2699}
2700
2701.hero.is-light.is-bold {
2702 background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
2703}
2704
2705@media screen and (max-width: 768px) {
2706 .hero.is-light.is-bold .navbar-menu {
2707 background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
2708 }
2709}
2710
2711.hero.is-dark {
2712 background-color: #363636;
2713 color: #fff;
2714}
2715
2716.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2717.hero.is-dark strong {
2718 color: inherit;
2719}
2720
2721.hero.is-dark .title {
2722 color: #fff;
2723}
2724
2725.hero.is-dark .subtitle {
2726 color: rgba(255, 255, 255, 0.9);
2727}
2728
2729.hero.is-dark .subtitle a:not(.button),
2730.hero.is-dark .subtitle strong {
2731 color: #fff;
2732}
2733
2734@media screen and (max-width: 1023px) {
2735 .hero.is-dark .navbar-menu {
2736 background-color: #363636;
2737 }
2738}
2739
2740.hero.is-dark .navbar-item,
2741.hero.is-dark .navbar-link {
2742 color: rgba(255, 255, 255, 0.7);
2743}
2744
2745.hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
2746.hero.is-dark .navbar-link:hover,
2747.hero.is-dark .navbar-link.is-active {
2748 background-color: #292929;
2749 color: #fff;
2750}
2751
2752.hero.is-dark .tabs a {
2753 color: #fff;
2754 opacity: 0.9;
2755}
2756
2757.hero.is-dark .tabs a:hover {
2758 opacity: 1;
2759}
2760
2761.hero.is-dark .tabs li.is-active a {
2762 color: #363636 !important;
2763 opacity: 1;
2764}
2765
2766.hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
2767 color: #fff;
2768}
2769
2770.hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
2771 background-color: rgba(10, 10, 10, 0.1);
2772}
2773
2774.hero.is-dark .tabs.is-boxed li.is-active a, .hero.is-dark .tabs.is-boxed li.is-active a:hover, .hero.is-dark .tabs.is-toggle li.is-active a, .hero.is-dark .tabs.is-toggle li.is-active a:hover {
2775 background-color: #fff;
2776 border-color: #fff;
2777 color: #363636;
2778}
2779
2780.hero.is-dark.is-bold {
2781 background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
2782}
2783
2784@media screen and (max-width: 768px) {
2785 .hero.is-dark.is-bold .navbar-menu {
2786 background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
2787 }
2788}
2789
2790.hero.is-primary {
2791 background-color: #5851ff;
2792 color: #fff;
2793}
2794
2795.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2796.hero.is-primary strong {
2797 color: inherit;
2798}
2799
2800.hero.is-primary .title {
2801 color: #fff;
2802}
2803
2804.hero.is-primary .subtitle {
2805 color: rgba(255, 255, 255, 0.9);
2806}
2807
2808.hero.is-primary .subtitle a:not(.button),
2809.hero.is-primary .subtitle strong {
2810 color: #fff;
2811}
2812
2813@media screen and (max-width: 1023px) {
2814 .hero.is-primary .navbar-menu {
2815 background-color: #5851ff;
2816 }
2817}
2818
2819.hero.is-primary .navbar-item,
2820.hero.is-primary .navbar-link {
2821 color: rgba(255, 255, 255, 0.7);
2822}
2823
2824.hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
2825.hero.is-primary .navbar-link:hover,
2826.hero.is-primary .navbar-link.is-active {
2827 background-color: #4038ff;
2828 color: #fff;
2829}
2830
2831.hero.is-primary .tabs a {
2832 color: #fff;
2833 opacity: 0.9;
2834}
2835
2836.hero.is-primary .tabs a:hover {
2837 opacity: 1;
2838}
2839
2840.hero.is-primary .tabs li.is-active a {
2841 color: #5851ff !important;
2842 opacity: 1;
2843}
2844
2845.hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
2846 color: #fff;
2847}
2848
2849.hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
2850 background-color: rgba(10, 10, 10, 0.1);
2851}
2852
2853.hero.is-primary .tabs.is-boxed li.is-active a, .hero.is-primary .tabs.is-boxed li.is-active a:hover, .hero.is-primary .tabs.is-toggle li.is-active a, .hero.is-primary .tabs.is-toggle li.is-active a:hover {
2854 background-color: #fff;
2855 border-color: #fff;
2856 color: #5851ff;
2857}
2858
2859.hero.is-primary.is-bold {
2860 background-image: linear-gradient(141deg, #1e3aff 0%, #5851ff 71%, #896bff 100%);
2861}
2862
2863@media screen and (max-width: 768px) {
2864 .hero.is-primary.is-bold .navbar-menu {
2865 background-image: linear-gradient(141deg, #1e3aff 0%, #5851ff 71%, #896bff 100%);
2866 }
2867}
2868
2869.hero.is-link {
2870 background-color: #5851ff;
2871 color: #fff;
2872}
2873
2874.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2875.hero.is-link strong {
2876 color: inherit;
2877}
2878
2879.hero.is-link .title {
2880 color: #fff;
2881}
2882
2883.hero.is-link .subtitle {
2884 color: rgba(255, 255, 255, 0.9);
2885}
2886
2887.hero.is-link .subtitle a:not(.button),
2888.hero.is-link .subtitle strong {
2889 color: #fff;
2890}
2891
2892@media screen and (max-width: 1023px) {
2893 .hero.is-link .navbar-menu {
2894 background-color: #5851ff;
2895 }
2896}
2897
2898.hero.is-link .navbar-item,
2899.hero.is-link .navbar-link {
2900 color: rgba(255, 255, 255, 0.7);
2901}
2902
2903.hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
2904.hero.is-link .navbar-link:hover,
2905.hero.is-link .navbar-link.is-active {
2906 background-color: #4038ff;
2907 color: #fff;
2908}
2909
2910.hero.is-link .tabs a {
2911 color: #fff;
2912 opacity: 0.9;
2913}
2914
2915.hero.is-link .tabs a:hover {
2916 opacity: 1;
2917}
2918
2919.hero.is-link .tabs li.is-active a {
2920 color: #5851ff !important;
2921 opacity: 1;
2922}
2923
2924.hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
2925 color: #fff;
2926}
2927
2928.hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
2929 background-color: rgba(10, 10, 10, 0.1);
2930}
2931
2932.hero.is-link .tabs.is-boxed li.is-active a, .hero.is-link .tabs.is-boxed li.is-active a:hover, .hero.is-link .tabs.is-toggle li.is-active a, .hero.is-link .tabs.is-toggle li.is-active a:hover {
2933 background-color: #fff;
2934 border-color: #fff;
2935 color: #5851ff;
2936}
2937
2938.hero.is-link.is-bold {
2939 background-image: linear-gradient(141deg, #1e3aff 0%, #5851ff 71%, #896bff 100%);
2940}
2941
2942@media screen and (max-width: 768px) {
2943 .hero.is-link.is-bold .navbar-menu {
2944 background-image: linear-gradient(141deg, #1e3aff 0%, #5851ff 71%, #896bff 100%);
2945 }
2946}
2947
2948.hero.is-info {
2949 background-color: #3e8ed0;
2950 color: #fff;
2951}
2952
2953.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
2954.hero.is-info strong {
2955 color: inherit;
2956}
2957
2958.hero.is-info .title {
2959 color: #fff;
2960}
2961
2962.hero.is-info .subtitle {
2963 color: rgba(255, 255, 255, 0.9);
2964}
2965
2966.hero.is-info .subtitle a:not(.button),
2967.hero.is-info .subtitle strong {
2968 color: #fff;
2969}
2970
2971@media screen and (max-width: 1023px) {
2972 .hero.is-info .navbar-menu {
2973 background-color: #3e8ed0;
2974 }
2975}
2976
2977.hero.is-info .navbar-item,
2978.hero.is-info .navbar-link {
2979 color: rgba(255, 255, 255, 0.7);
2980}
2981
2982.hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
2983.hero.is-info .navbar-link:hover,
2984.hero.is-info .navbar-link.is-active {
2985 background-color: #3082c5;
2986 color: #fff;
2987}
2988
2989.hero.is-info .tabs a {
2990 color: #fff;
2991 opacity: 0.9;
2992}
2993
2994.hero.is-info .tabs a:hover {
2995 opacity: 1;
2996}
2997
2998.hero.is-info .tabs li.is-active a {
2999 color: #3e8ed0 !important;
3000 opacity: 1;
3001}
3002
3003.hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
3004 color: #fff;
3005}
3006
3007.hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
3008 background-color: rgba(10, 10, 10, 0.1);
3009}
3010
3011.hero.is-info .tabs.is-boxed li.is-active a, .hero.is-info .tabs.is-boxed li.is-active a:hover, .hero.is-info .tabs.is-toggle li.is-active a, .hero.is-info .tabs.is-toggle li.is-active a:hover {
3012 background-color: #fff;
3013 border-color: #fff;
3014 color: #3e8ed0;
3015}
3016
3017.hero.is-info.is-bold {
3018 background-image: linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%);
3019}
3020
3021@media screen and (max-width: 768px) {
3022 .hero.is-info.is-bold .navbar-menu {
3023 background-image: linear-gradient(141deg, #208fbc 0%, #3e8ed0 71%, #4d83db 100%);
3024 }
3025}
3026
3027.hero.is-success {
3028 background-color: #48c78e;
3029 color: #fff;
3030}
3031
3032.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
3033.hero.is-success strong {
3034 color: inherit;
3035}
3036
3037.hero.is-success .title {
3038 color: #fff;
3039}
3040
3041.hero.is-success .subtitle {
3042 color: rgba(255, 255, 255, 0.9);
3043}
3044
3045.hero.is-success .subtitle a:not(.button),
3046.hero.is-success .subtitle strong {
3047 color: #fff;
3048}
3049
3050@media screen and (max-width: 1023px) {
3051 .hero.is-success .navbar-menu {
3052 background-color: #48c78e;
3053 }
3054}
3055
3056.hero.is-success .navbar-item,
3057.hero.is-success .navbar-link {
3058 color: rgba(255, 255, 255, 0.7);
3059}
3060
3061.hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
3062.hero.is-success .navbar-link:hover,
3063.hero.is-success .navbar-link.is-active {
3064 background-color: #3abb81;
3065 color: #fff;
3066}
3067
3068.hero.is-success .tabs a {
3069 color: #fff;
3070 opacity: 0.9;
3071}
3072
3073.hero.is-success .tabs a:hover {
3074 opacity: 1;
3075}
3076
3077.hero.is-success .tabs li.is-active a {
3078 color: #48c78e !important;
3079 opacity: 1;
3080}
3081
3082.hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
3083 color: #fff;
3084}
3085
3086.hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
3087 background-color: rgba(10, 10, 10, 0.1);
3088}
3089
3090.hero.is-success .tabs.is-boxed li.is-active a, .hero.is-success .tabs.is-boxed li.is-active a:hover, .hero.is-success .tabs.is-toggle li.is-active a, .hero.is-success .tabs.is-toggle li.is-active a:hover {
3091 background-color: #fff;
3092 border-color: #fff;
3093 color: #48c78e;
3094}
3095
3096.hero.is-success.is-bold {
3097 background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
3098}
3099
3100@media screen and (max-width: 768px) {
3101 .hero.is-success.is-bold .navbar-menu {
3102 background-image: linear-gradient(141deg, #29b35e 0%, #48c78e 71%, #56d2af 100%);
3103 }
3104}
3105
3106.hero.is-warning {
3107 background-color: #ffe08a;
3108 color: rgba(0, 0, 0, 0.7);
3109}
3110
3111.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
3112.hero.is-warning strong {
3113 color: inherit;
3114}
3115
3116.hero.is-warning .title {
3117 color: rgba(0, 0, 0, 0.7);
3118}
3119
3120.hero.is-warning .subtitle {
3121 color: rgba(0, 0, 0, 0.9);
3122}
3123
3124.hero.is-warning .subtitle a:not(.button),
3125.hero.is-warning .subtitle strong {
3126 color: rgba(0, 0, 0, 0.7);
3127}
3128
3129@media screen and (max-width: 1023px) {
3130 .hero.is-warning .navbar-menu {
3131 background-color: #ffe08a;
3132 }
3133}
3134
3135.hero.is-warning .navbar-item,
3136.hero.is-warning .navbar-link {
3137 color: rgba(0, 0, 0, 0.7);
3138}
3139
3140.hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
3141.hero.is-warning .navbar-link:hover,
3142.hero.is-warning .navbar-link.is-active {
3143 background-color: #ffd970;
3144 color: rgba(0, 0, 0, 0.7);
3145}
3146
3147.hero.is-warning .tabs a {
3148 color: rgba(0, 0, 0, 0.7);
3149 opacity: 0.9;
3150}
3151
3152.hero.is-warning .tabs a:hover {
3153 opacity: 1;
3154}
3155
3156.hero.is-warning .tabs li.is-active a {
3157 color: #ffe08a !important;
3158 opacity: 1;
3159}
3160
3161.hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
3162 color: rgba(0, 0, 0, 0.7);
3163}
3164
3165.hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
3166 background-color: rgba(10, 10, 10, 0.1);
3167}
3168
3169.hero.is-warning .tabs.is-boxed li.is-active a, .hero.is-warning .tabs.is-boxed li.is-active a:hover, .hero.is-warning .tabs.is-toggle li.is-active a, .hero.is-warning .tabs.is-toggle li.is-active a:hover {
3170 background-color: rgba(0, 0, 0, 0.7);
3171 border-color: rgba(0, 0, 0, 0.7);
3172 color: #ffe08a;
3173}
3174
3175.hero.is-warning.is-bold {
3176 background-image: linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%);
3177}
3178
3179@media screen and (max-width: 768px) {
3180 .hero.is-warning.is-bold .navbar-menu {
3181 background-image: linear-gradient(141deg, #ffb657 0%, #ffe08a 71%, #fff6a3 100%);
3182 }
3183}
3184
3185.hero.is-danger {
3186 background-color: #f14668;
3187 color: #fff;
3188}
3189
3190.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
3191.hero.is-danger strong {
3192 color: inherit;
3193}
3194
3195.hero.is-danger .title {
3196 color: #fff;
3197}
3198
3199.hero.is-danger .subtitle {
3200 color: rgba(255, 255, 255, 0.9);
3201}
3202
3203.hero.is-danger .subtitle a:not(.button),
3204.hero.is-danger .subtitle strong {
3205 color: #fff;
3206}
3207
3208@media screen and (max-width: 1023px) {
3209 .hero.is-danger .navbar-menu {
3210 background-color: #f14668;
3211 }
3212}
3213
3214.hero.is-danger .navbar-item,
3215.hero.is-danger .navbar-link {
3216 color: rgba(255, 255, 255, 0.7);
3217}
3218
3219.hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
3220.hero.is-danger .navbar-link:hover,
3221.hero.is-danger .navbar-link.is-active {
3222 background-color: #ef2e55;
3223 color: #fff;
3224}
3225
3226.hero.is-danger .tabs a {
3227 color: #fff;
3228 opacity: 0.9;
3229}
3230
3231.hero.is-danger .tabs a:hover {
3232 opacity: 1;
3233}
3234
3235.hero.is-danger .tabs li.is-active a {
3236 color: #f14668 !important;
3237 opacity: 1;
3238}
3239
3240.hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
3241 color: #fff;
3242}
3243
3244.hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
3245 background-color: rgba(10, 10, 10, 0.1);
3246}
3247
3248.hero.is-danger .tabs.is-boxed li.is-active a, .hero.is-danger .tabs.is-boxed li.is-active a:hover, .hero.is-danger .tabs.is-toggle li.is-active a, .hero.is-danger .tabs.is-toggle li.is-active a:hover {
3249 background-color: #fff;
3250 border-color: #fff;
3251 color: #f14668;
3252}
3253
3254.hero.is-danger.is-bold {
3255 background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
3256}
3257
3258@media screen and (max-width: 768px) {
3259 .hero.is-danger.is-bold .navbar-menu {
3260 background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
3261 }
3262}
3263
3264.hero.is-small .hero-body {
3265 padding: 1.5rem;
3266}
3267
3268@media screen and (min-width: 769px), print {
3269 .hero.is-medium .hero-body {
3270 padding: 9rem 4.5rem;
3271 }
3272}
3273
3274@media screen and (min-width: 769px), print {
3275 .hero.is-large .hero-body {
3276 padding: 18rem 6rem;
3277 }
3278}
3279
3280.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body, .hero.is-fullheight-with-navbar .hero-body {
3281 -ms-flex-align: center;
3282 align-items: center;
3283 display: -ms-flexbox;
3284 display: flex;
3285}
3286
3287.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container, .hero.is-fullheight-with-navbar .hero-body > .container {
3288 -ms-flex-positive: 1;
3289 flex-grow: 1;
3290 -ms-flex-negative: 1;
3291 flex-shrink: 1;
3292}
3293
3294.hero.is-halfheight {
3295 min-height: 50vh;
3296}
3297
3298.hero.is-fullheight {
3299 min-height: 100vh;
3300}
3301
3302.hero-video {
3303 overflow: hidden;
3304}
3305
3306.hero-video video {
3307 left: 50%;
3308 min-height: 100%;
3309 min-width: 100%;
3310 position: absolute;
3311 top: 50%;
3312 -webkit-transform: translate3d(-50%, -50%, 0);
3313 transform: translate3d(-50%, -50%, 0);
3314}
3315
3316.hero-video.is-transparent {
3317 opacity: 0.3;
3318}
3319
3320@media screen and (max-width: 768px) {
3321 .hero-video {
3322 display: none;
3323 }
3324}
3325
3326.hero-buttons {
3327 margin-top: 1.5rem;
3328}
3329
3330@media screen and (max-width: 768px) {
3331 .hero-buttons .button {
3332 display: -ms-flexbox;
3333 display: flex;
3334 }
3335 .hero-buttons .button:not(:last-child) {
3336 margin-bottom: 0.75rem;
3337 }
3338}
3339
3340@media screen and (min-width: 769px), print {
3341 .hero-buttons {
3342 display: -ms-flexbox;
3343 display: flex;
3344 -ms-flex-pack: center;
3345 justify-content: center;
3346 }
3347 .hero-buttons .button:not(:last-child) {
3348 margin-right: 1.5rem;
3349 }
3350}
3351
3352.hero-head,
3353.hero-foot {
3354 -ms-flex-positive: 0;
3355 flex-grow: 0;
3356 -ms-flex-negative: 0;
3357 flex-shrink: 0;
3358}
3359
3360.hero-body {
3361 -ms-flex-positive: 1;
3362 flex-grow: 1;
3363 -ms-flex-negative: 0;
3364 flex-shrink: 0;
3365 padding: 3rem 1.5rem;
3366}
3367
3368@media screen and (min-width: 769px), print {
3369 .hero-body {
3370 padding: 3rem 3rem;
3371 }
3372}
3373
3374.heading {
3375 display: block;
3376 font-size: 11px;
3377 letter-spacing: 1px;
3378 margin-bottom: 5px;
3379 text-transform: uppercase;
3380}
3381
3382.number {
3383 -ms-flex-align: center;
3384 align-items: center;
3385 background-color: whitesmoke;
3386 border-radius: 9999px;
3387 display: -ms-inline-flexbox;
3388 display: inline-flex;
3389 font-size: 1.25rem;
3390 height: 2em;
3391 -ms-flex-pack: center;
3392 justify-content: center;
3393 margin-right: 1.5rem;
3394 min-width: 2.5em;
3395 padding: 0.25rem 0.5rem;
3396 text-align: center;
3397 vertical-align: top;
3398}
3399
3400.title,
3401.subtitle {
3402 word-break: break-word;
3403}
3404
3405.title em,
3406.title span,
3407.subtitle em,
3408.subtitle span {
3409 font-weight: inherit;
3410}
3411
3412.title sub,
3413.subtitle sub {
3414 font-size: 0.75em;
3415}
3416
3417.title sup,
3418.subtitle sup {
3419 font-size: 0.75em;
3420}
3421
3422.title .tag,
3423.subtitle .tag {
3424 vertical-align: middle;
3425}
3426
3427.title {
3428 color: #363636;
3429 font-size: 2rem;
3430 font-weight: 600;
3431 line-height: 1.125;
3432}
3433
3434.title strong {
3435 color: inherit;
3436 font-weight: inherit;
3437}
3438
3439.title:not(.is-spaced) + .subtitle {
3440 margin-top: -1.25rem;
3441}
3442
3443.title.is-1 {
3444 font-size: 3rem;
3445}
3446
3447.title.is-2 {
3448 font-size: 2.5rem;
3449}
3450
3451.title.is-3 {
3452 font-size: 2rem;
3453}
3454
3455.title.is-4 {
3456 font-size: 1.5rem;
3457}
3458
3459.title.is-5 {
3460 font-size: 1.25rem;
3461}
3462
3463.title.is-6 {
3464 font-size: 1rem;
3465}
3466
3467.title.is-7 {
3468 font-size: 0.75rem;
3469}
3470
3471.subtitle {
3472 color: #4a4a4a;
3473 font-size: 1.25rem;
3474 font-weight: 400;
3475 line-height: 1.25;
3476}
3477
3478.subtitle strong {
3479 color: #363636;
3480 font-weight: 600;
3481}
3482
3483.subtitle:not(.is-spaced) + .title {
3484 margin-top: -1.25rem;
3485}
3486
3487.subtitle.is-1 {
3488 font-size: 3rem;
3489}
3490
3491.subtitle.is-2 {
3492 font-size: 2.5rem;
3493}
3494
3495.subtitle.is-3 {
3496 font-size: 2rem;
3497}
3498
3499.subtitle.is-4 {
3500 font-size: 1.5rem;
3501}
3502
3503.subtitle.is-5 {
3504 font-size: 1.25rem;
3505}
3506
3507.subtitle.is-6 {
3508 font-size: 1rem;
3509}
3510
3511.subtitle.is-7 {
3512 font-size: 0.75rem;
3513}
3514
3515.table {
3516 background-color: white;
3517 color: #363636;
3518}
3519
3520.table td,
3521.table th {
3522 border: 1px solid #dbdbdb;
3523 border-width: 0 0 1px;
3524 padding: 0.5em 0.75em;
3525 vertical-align: top;
3526}
3527
3528.table td.is-white,
3529.table th.is-white {
3530 background-color: white;
3531 border-color: white;
3532 color: #0a0a0a;
3533}
3534
3535.table td.is-black,
3536.table th.is-black {
3537 background-color: #0a0a0a;
3538 border-color: #0a0a0a;
3539 color: white;
3540}
3541
3542.table td.is-light,
3543.table th.is-light {
3544 background-color: whitesmoke;
3545 border-color: whitesmoke;
3546 color: rgba(0, 0, 0, 0.7);
3547}
3548
3549.table td.is-dark,
3550.table th.is-dark {
3551 background-color: #363636;
3552 border-color: #363636;
3553 color: #fff;
3554}
3555
3556.table td.is-primary,
3557.table th.is-primary {
3558 background-color: #5851ff;
3559 border-color: #5851ff;
3560 color: #fff;
3561}
3562
3563.table td.is-link,
3564.table th.is-link {
3565 background-color: #5851ff;
3566 border-color: #5851ff;
3567 color: #fff;
3568}
3569
3570.table td.is-info,
3571.table th.is-info {
3572 background-color: #3e8ed0;
3573 border-color: #3e8ed0;
3574 color: #fff;
3575}
3576
3577.table td.is-success,
3578.table th.is-success {
3579 background-color: #48c78e;
3580 border-color: #48c78e;
3581 color: #fff;
3582}
3583
3584.table td.is-warning,
3585.table th.is-warning {
3586 background-color: #ffe08a;
3587 border-color: #ffe08a;
3588 color: rgba(0, 0, 0, 0.7);
3589}
3590
3591.table td.is-danger,
3592.table th.is-danger {
3593 background-color: #f14668;
3594 border-color: #f14668;
3595 color: #fff;
3596}
3597
3598.table td.is-narrow,
3599.table th.is-narrow {
3600 white-space: nowrap;
3601 width: 1%;
3602}
3603
3604.table td.is-selected,
3605.table th.is-selected {
3606 background-color: #5851ff;
3607 color: #fff;
3608}
3609
3610.table td.is-selected a,
3611.table td.is-selected strong,
3612.table th.is-selected a,
3613.table th.is-selected strong {
3614 color: currentColor;
3615}
3616
3617.table td.is-vcentered,
3618.table th.is-vcentered {
3619 vertical-align: middle;
3620}
3621
3622.table th {
3623 color: #363636;
3624}
3625
3626.table th:not([align]) {
3627 text-align: inherit;
3628}
3629
3630.table tr.is-selected {
3631 background-color: #5851ff;
3632 color: #fff;
3633}
3634
3635.table tr.is-selected a,
3636.table tr.is-selected strong {
3637 color: currentColor;
3638}
3639
3640.table tr.is-selected td,
3641.table tr.is-selected th {
3642 border-color: #fff;
3643 color: currentColor;
3644}
3645
3646.table thead {
3647 background-color: transparent;
3648}
3649
3650.table thead td,
3651.table thead th {
3652 border-width: 0 0 2px;
3653 color: #363636;
3654}
3655
3656.table tfoot {
3657 background-color: transparent;
3658}
3659
3660.table tfoot td,
3661.table tfoot th {
3662 border-width: 2px 0 0;
3663 color: #363636;
3664}
3665
3666.table tbody {
3667 background-color: transparent;
3668}
3669
3670.table tbody tr:last-child td,
3671.table tbody tr:last-child th {
3672 border-bottom-width: 0;
3673}
3674
3675.table.is-bordered td,
3676.table.is-bordered th {
3677 border-width: 1px;
3678}
3679
3680.table.is-bordered tr:last-child td,
3681.table.is-bordered tr:last-child th {
3682 border-bottom-width: 1px;
3683}
3684
3685.table.is-fullwidth {
3686 width: 100%;
3687}
3688
3689.table.is-hoverable tbody tr:not(.is-selected):hover {
3690 background-color: #fafafa;
3691}
3692
3693.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
3694 background-color: #fafafa;
3695}
3696
3697.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
3698 background-color: whitesmoke;
3699}
3700
3701.table.is-narrow td,
3702.table.is-narrow th {
3703 padding: 0.25em 0.5em;
3704}
3705
3706.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
3707 background-color: #fafafa;
3708}
3709
3710.table-container {
3711 -webkit-overflow-scrolling: touch;
3712 overflow: auto;
3713 overflow-y: hidden;
3714 max-width: 100%;
3715}
3716/*# sourceMappingURL=bulmil.css.map */
\No newline at end of file