gdritter repos frmft / 266766c
basic mft site scaffolding Getty Ritter 6 years ago
3 changed file(s) with 10743 addition(s) and 0 deletion(s). Collapse all Expand all
1 /*! bulma.io v0.6.1 | MIT License | github.com/jgthms/bulma */
2 @-webkit-keyframes spinAround {
3 from {
4 -webkit-transform: rotate(0deg);
5 transform: rotate(0deg);
6 }
7 to {
8 -webkit-transform: rotate(359deg);
9 transform: rotate(359deg);
10 }
11 }
12 @keyframes spinAround {
13 from {
14 -webkit-transform: rotate(0deg);
15 transform: rotate(0deg);
16 }
17 to {
18 -webkit-transform: rotate(359deg);
19 transform: rotate(359deg);
20 }
21 }
22
23 /*! minireset.css v0.0.2 | MIT License | github.com/jgthms/minireset.css */
24 html,
25 body,
26 p,
27 ol,
28 ul,
29 li,
30 dl,
31 dt,
32 dd,
33 blockquote,
34 figure,
35 fieldset,
36 legend,
37 textarea,
38 pre,
39 iframe,
40 hr,
41 h1,
42 h2,
43 h3,
44 h4,
45 h5,
46 h6 {
47 margin: 0;
48 padding: 0;
49 }
50
51 h1,
52 h2,
53 h3,
54 h4,
55 h5,
56 h6 {
57 font-size: 100%;
58 font-weight: normal;
59 }
60
61 ul {
62 list-style: none;
63 }
64
65 button,
66 input,
67 select,
68 textarea {
69 margin: 0;
70 }
71
72 html {
73 -webkit-box-sizing: border-box;
74 box-sizing: border-box;
75 }
76
77 * {
78 -webkit-box-sizing: inherit;
79 box-sizing: inherit;
80 }
81
82 *:before, *:after {
83 -webkit-box-sizing: inherit;
84 box-sizing: inherit;
85 }
86
87 img,
88 embed,
89 object,
90 audio,
91 video {
92 max-width: 100%;
93 }
94
95 iframe {
96 border: 0;
97 }
98
99 table {
100 border-collapse: collapse;
101 border-spacing: 0;
102 }
103
104 td,
105 th {
106 padding: 0;
107 text-align: left;
108 }
109
110 html {
111 background-color: white;
112 font-size: 16px;
113 -moz-osx-font-smoothing: grayscale;
114 -webkit-font-smoothing: antialiased;
115 min-width: 300px;
116 overflow-x: hidden;
117 overflow-y: scroll;
118 text-rendering: optimizeLegibility;
119 -webkit-text-size-adjust: 100%;
120 -moz-text-size-adjust: 100%;
121 -ms-text-size-adjust: 100%;
122 text-size-adjust: 100%;
123 }
124
125 article,
126 aside,
127 figure,
128 footer,
129 header,
130 hgroup,
131 section {
132 display: block;
133 }
134
135 body,
136 button,
137 input,
138 select,
139 textarea {
140 font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
141 }
142
143 code,
144 pre {
145 -moz-osx-font-smoothing: auto;
146 -webkit-font-smoothing: auto;
147 font-family: monospace;
148 }
149
150 body {
151 color: #4a4a4a;
152 font-size: 1rem;
153 font-weight: 400;
154 line-height: 1.5;
155 }
156
157 a {
158 color: #3273dc;
159 cursor: pointer;
160 text-decoration: none;
161 }
162
163 a strong {
164 color: currentColor;
165 }
166
167 a:hover {
168 color: #363636;
169 }
170
171 code {
172 background-color: whitesmoke;
173 color: #ff3860;
174 font-size: 0.875em;
175 font-weight: normal;
176 padding: 0.25em 0.5em 0.25em;
177 }
178
179 hr {
180 background-color: #dbdbdb;
181 border: none;
182 display: block;
183 height: 1px;
184 margin: 1.5rem 0;
185 }
186
187 img {
188 height: auto;
189 max-width: 100%;
190 }
191
192 input[type="checkbox"],
193 input[type="radio"] {
194 vertical-align: baseline;
195 }
196
197 small {
198 font-size: 0.875em;
199 }
200
201 span {
202 font-style: inherit;
203 font-weight: inherit;
204 }
205
206 strong {
207 color: #363636;
208 font-weight: 700;
209 }
210
211 pre {
212 -webkit-overflow-scrolling: touch;
213 background-color: whitesmoke;
214 color: #4a4a4a;
215 font-size: 0.875em;
216 overflow-x: auto;
217 padding: 1.25rem 1.5rem;
218 white-space: pre;
219 word-wrap: normal;
220 }
221
222 pre code {
223 background-color: transparent;
224 color: currentColor;
225 font-size: 1em;
226 padding: 0;
227 }
228
229 table td,
230 table th {
231 text-align: left;
232 vertical-align: top;
233 }
234
235 table th {
236 color: #363636;
237 }
238
239 .is-clearfix:after {
240 clear: both;
241 content: " ";
242 display: table;
243 }
244
245 .is-pulled-left {
246 float: left !important;
247 }
248
249 .is-pulled-right {
250 float: right !important;
251 }
252
253 .is-clipped {
254 overflow: hidden !important;
255 }
256
257 .is-overlay {
258 bottom: 0;
259 left: 0;
260 position: absolute;
261 right: 0;
262 top: 0;
263 }
264
265 .is-size-1 {
266 font-size: 3rem !important;
267 }
268
269 .is-size-2 {
270 font-size: 2.5rem !important;
271 }
272
273 .is-size-3 {
274 font-size: 2rem !important;
275 }
276
277 .is-size-4 {
278 font-size: 1.5rem !important;
279 }
280
281 .is-size-5 {
282 font-size: 1.25rem !important;
283 }
284
285 .is-size-6 {
286 font-size: 1rem !important;
287 }
288
289 .is-size-7 {
290 font-size: 0.75rem !important;
291 }
292
293 @media screen and (max-width: 768px) {
294 .is-size-1-mobile {
295 font-size: 3rem !important;
296 }
297 .is-size-2-mobile {
298 font-size: 2.5rem !important;
299 }
300 .is-size-3-mobile {
301 font-size: 2rem !important;
302 }
303 .is-size-4-mobile {
304 font-size: 1.5rem !important;
305 }
306 .is-size-5-mobile {
307 font-size: 1.25rem !important;
308 }
309 .is-size-6-mobile {
310 font-size: 1rem !important;
311 }
312 .is-size-7-mobile {
313 font-size: 0.75rem !important;
314 }
315 }
316
317 @media screen and (min-width: 769px), print {
318 .is-size-1-tablet {
319 font-size: 3rem !important;
320 }
321 .is-size-2-tablet {
322 font-size: 2.5rem !important;
323 }
324 .is-size-3-tablet {
325 font-size: 2rem !important;
326 }
327 .is-size-4-tablet {
328 font-size: 1.5rem !important;
329 }
330 .is-size-5-tablet {
331 font-size: 1.25rem !important;
332 }
333 .is-size-6-tablet {
334 font-size: 1rem !important;
335 }
336 .is-size-7-tablet {
337 font-size: 0.75rem !important;
338 }
339 }
340
341 @media screen and (max-width: 1023px) {
342 .is-size-1-touch {
343 font-size: 3rem !important;
344 }
345 .is-size-2-touch {
346 font-size: 2.5rem !important;
347 }
348 .is-size-3-touch {
349 font-size: 2rem !important;
350 }
351 .is-size-4-touch {
352 font-size: 1.5rem !important;
353 }
354 .is-size-5-touch {
355 font-size: 1.25rem !important;
356 }
357 .is-size-6-touch {
358 font-size: 1rem !important;
359 }
360 .is-size-7-touch {
361 font-size: 0.75rem !important;
362 }
363 }
364
365 @media screen and (min-width: 1024px) {
366 .is-size-1-desktop {
367 font-size: 3rem !important;
368 }
369 .is-size-2-desktop {
370 font-size: 2.5rem !important;
371 }
372 .is-size-3-desktop {
373 font-size: 2rem !important;
374 }
375 .is-size-4-desktop {
376 font-size: 1.5rem !important;
377 }
378 .is-size-5-desktop {
379 font-size: 1.25rem !important;
380 }
381 .is-size-6-desktop {
382 font-size: 1rem !important;
383 }
384 .is-size-7-desktop {
385 font-size: 0.75rem !important;
386 }
387 }
388
389 @media screen and (min-width: 1216px) {
390 .is-size-1-widescreen {
391 font-size: 3rem !important;
392 }
393 .is-size-2-widescreen {
394 font-size: 2.5rem !important;
395 }
396 .is-size-3-widescreen {
397 font-size: 2rem !important;
398 }
399 .is-size-4-widescreen {
400 font-size: 1.5rem !important;
401 }
402 .is-size-5-widescreen {
403 font-size: 1.25rem !important;
404 }
405 .is-size-6-widescreen {
406 font-size: 1rem !important;
407 }
408 .is-size-7-widescreen {
409 font-size: 0.75rem !important;
410 }
411 }
412
413 @media screen and (min-width: 1408px) {
414 .is-size-1-fullhd {
415 font-size: 3rem !important;
416 }
417 .is-size-2-fullhd {
418 font-size: 2.5rem !important;
419 }
420 .is-size-3-fullhd {
421 font-size: 2rem !important;
422 }
423 .is-size-4-fullhd {
424 font-size: 1.5rem !important;
425 }
426 .is-size-5-fullhd {
427 font-size: 1.25rem !important;
428 }
429 .is-size-6-fullhd {
430 font-size: 1rem !important;
431 }
432 .is-size-7-fullhd {
433 font-size: 0.75rem !important;
434 }
435 }
436
437 .has-text-centered {
438 text-align: center !important;
439 }
440
441 @media screen and (max-width: 768px) {
442 .has-text-centered-mobile {
443 text-align: center !important;
444 }
445 }
446
447 @media screen and (min-width: 769px), print {
448 .has-text-centered-tablet {
449 text-align: center !important;
450 }
451 }
452
453 @media screen and (min-width: 769px) and (max-width: 1023px) {
454 .has-text-centered-tablet-only {
455 text-align: center !important;
456 }
457 }
458
459 @media screen and (max-width: 1023px) {
460 .has-text-centered-touch {
461 text-align: center !important;
462 }
463 }
464
465 @media screen and (min-width: 1024px) {
466 .has-text-centered-desktop {
467 text-align: center !important;
468 }
469 }
470
471 @media screen and (min-width: 1024px) and (max-width: 1215px) {
472 .has-text-centered-desktop-only {
473 text-align: center !important;
474 }
475 }
476
477 @media screen and (min-width: 1216px) {
478 .has-text-centered-widescreen {
479 text-align: center !important;
480 }
481 }
482
483 @media screen and (min-width: 1216px) and (max-width: 1407px) {
484 .has-text-centered-widescreen-only {
485 text-align: center !important;
486 }
487 }
488
489 @media screen and (min-width: 1408px) {
490 .has-text-centered-fullhd {
491 text-align: center !important;
492 }
493 }
494
495 .has-text-justified {
496 text-align: justify !important;
497 }
498
499 @media screen and (max-width: 768px) {
500 .has-text-justified-mobile {
501 text-align: justify !important;
502 }
503 }
504
505 @media screen and (min-width: 769px), print {
506 .has-text-justified-tablet {
507 text-align: justify !important;
508 }
509 }
510
511 @media screen and (min-width: 769px) and (max-width: 1023px) {
512 .has-text-justified-tablet-only {
513 text-align: justify !important;
514 }
515 }
516
517 @media screen and (max-width: 1023px) {
518 .has-text-justified-touch {
519 text-align: justify !important;
520 }
521 }
522
523 @media screen and (min-width: 1024px) {
524 .has-text-justified-desktop {
525 text-align: justify !important;
526 }
527 }
528
529 @media screen and (min-width: 1024px) and (max-width: 1215px) {
530 .has-text-justified-desktop-only {
531 text-align: justify !important;
532 }
533 }
534
535 @media screen and (min-width: 1216px) {
536 .has-text-justified-widescreen {
537 text-align: justify !important;
538 }
539 }
540
541 @media screen and (min-width: 1216px) and (max-width: 1407px) {
542 .has-text-justified-widescreen-only {
543 text-align: justify !important;
544 }
545 }
546
547 @media screen and (min-width: 1408px) {
548 .has-text-justified-fullhd {
549 text-align: justify !important;
550 }
551 }
552
553 .has-text-left {
554 text-align: left !important;
555 }
556
557 @media screen and (max-width: 768px) {
558 .has-text-left-mobile {
559 text-align: left !important;
560 }
561 }
562
563 @media screen and (min-width: 769px), print {
564 .has-text-left-tablet {
565 text-align: left !important;
566 }
567 }
568
569 @media screen and (min-width: 769px) and (max-width: 1023px) {
570 .has-text-left-tablet-only {
571 text-align: left !important;
572 }
573 }
574
575 @media screen and (max-width: 1023px) {
576 .has-text-left-touch {
577 text-align: left !important;
578 }
579 }
580
581 @media screen and (min-width: 1024px) {
582 .has-text-left-desktop {
583 text-align: left !important;
584 }
585 }
586
587 @media screen and (min-width: 1024px) and (max-width: 1215px) {
588 .has-text-left-desktop-only {
589 text-align: left !important;
590 }
591 }
592
593 @media screen and (min-width: 1216px) {
594 .has-text-left-widescreen {
595 text-align: left !important;
596 }
597 }
598
599 @media screen and (min-width: 1216px) and (max-width: 1407px) {
600 .has-text-left-widescreen-only {
601 text-align: left !important;
602 }
603 }
604
605 @media screen and (min-width: 1408px) {
606 .has-text-left-fullhd {
607 text-align: left !important;
608 }
609 }
610
611 .has-text-right {
612 text-align: right !important;
613 }
614
615 @media screen and (max-width: 768px) {
616 .has-text-right-mobile {
617 text-align: right !important;
618 }
619 }
620
621 @media screen and (min-width: 769px), print {
622 .has-text-right-tablet {
623 text-align: right !important;
624 }
625 }
626
627 @media screen and (min-width: 769px) and (max-width: 1023px) {
628 .has-text-right-tablet-only {
629 text-align: right !important;
630 }
631 }
632
633 @media screen and (max-width: 1023px) {
634 .has-text-right-touch {
635 text-align: right !important;
636 }
637 }
638
639 @media screen and (min-width: 1024px) {
640 .has-text-right-desktop {
641 text-align: right !important;
642 }
643 }
644
645 @media screen and (min-width: 1024px) and (max-width: 1215px) {
646 .has-text-right-desktop-only {
647 text-align: right !important;
648 }
649 }
650
651 @media screen and (min-width: 1216px) {
652 .has-text-right-widescreen {
653 text-align: right !important;
654 }
655 }
656
657 @media screen and (min-width: 1216px) and (max-width: 1407px) {
658 .has-text-right-widescreen-only {
659 text-align: right !important;
660 }
661 }
662
663 @media screen and (min-width: 1408px) {
664 .has-text-right-fullhd {
665 text-align: right !important;
666 }
667 }
668
669 .is-capitalized {
670 text-transform: capitalize !important;
671 }
672
673 .is-lowercase {
674 text-transform: lowercase !important;
675 }
676
677 .is-uppercase {
678 text-transform: uppercase !important;
679 }
680
681 .has-text-white {
682 color: white !important;
683 }
684
685 a.has-text-white:hover, a.has-text-white:focus {
686 color: #e6e6e6 !important;
687 }
688
689 .has-text-black {
690 color: #0a0a0a !important;
691 }
692
693 a.has-text-black:hover, a.has-text-black:focus {
694 color: black !important;
695 }
696
697 .has-text-light {
698 color: whitesmoke !important;
699 }
700
701 a.has-text-light:hover, a.has-text-light:focus {
702 color: #dbdbdb !important;
703 }
704
705 .has-text-dark {
706 color: #363636 !important;
707 }
708
709 a.has-text-dark:hover, a.has-text-dark:focus {
710 color: #1c1c1c !important;
711 }
712
713 .has-text-primary {
714 color: #00d1b2 !important;
715 }
716
717 a.has-text-primary:hover, a.has-text-primary:focus {
718 color: #009e86 !important;
719 }
720
721 .has-text-link {
722 color: #3273dc !important;
723 }
724
725 a.has-text-link:hover, a.has-text-link:focus {
726 color: #205bbc !important;
727 }
728
729 .has-text-info {
730 color: #209cee !important;
731 }
732
733 a.has-text-info:hover, a.has-text-info:focus {
734 color: #0f81cc !important;
735 }
736
737 .has-text-success {
738 color: #23d160 !important;
739 }
740
741 a.has-text-success:hover, a.has-text-success:focus {
742 color: #1ca64c !important;
743 }
744
745 .has-text-warning {
746 color: #ffdd57 !important;
747 }
748
749 a.has-text-warning:hover, a.has-text-warning:focus {
750 color: #ffd324 !important;
751 }
752
753 .has-text-danger {
754 color: #ff3860 !important;
755 }
756
757 a.has-text-danger:hover, a.has-text-danger:focus {
758 color: #ff0537 !important;
759 }
760
761 .has-text-black-bis {
762 color: #121212 !important;
763 }
764
765 .has-text-black-ter {
766 color: #242424 !important;
767 }
768
769 .has-text-grey-darker {
770 color: #363636 !important;
771 }
772
773 .has-text-grey-dark {
774 color: #4a4a4a !important;
775 }
776
777 .has-text-grey {
778 color: #7a7a7a !important;
779 }
780
781 .has-text-grey-light {
782 color: #b5b5b5 !important;
783 }
784
785 .has-text-grey-lighter {
786 color: #dbdbdb !important;
787 }
788
789 .has-text-white-ter {
790 color: whitesmoke !important;
791 }
792
793 .has-text-white-bis {
794 color: #fafafa !important;
795 }
796
797 .has-text-weight-light {
798 font-weight: 300 !important;
799 }
800
801 .has-text-weight-normal {
802 font-weight: 400 !important;
803 }
804
805 .has-text-weight-semibold {
806 font-weight: 600 !important;
807 }
808
809 .has-text-weight-bold {
810 font-weight: 700 !important;
811 }
812
813 .is-block {
814 display: block !important;
815 }
816
817 @media screen and (max-width: 768px) {
818 .is-block-mobile {
819 display: block !important;
820 }
821 }
822
823 @media screen and (min-width: 769px), print {
824 .is-block-tablet {
825 display: block !important;
826 }
827 }
828
829 @media screen and (min-width: 769px) and (max-width: 1023px) {
830 .is-block-tablet-only {
831 display: block !important;
832 }
833 }
834
835 @media screen and (max-width: 1023px) {
836 .is-block-touch {
837 display: block !important;
838 }
839 }
840
841 @media screen and (min-width: 1024px) {
842 .is-block-desktop {
843 display: block !important;
844 }
845 }
846
847 @media screen and (min-width: 1024px) and (max-width: 1215px) {
848 .is-block-desktop-only {
849 display: block !important;
850 }
851 }
852
853 @media screen and (min-width: 1216px) {
854 .is-block-widescreen {
855 display: block !important;
856 }
857 }
858
859 @media screen and (min-width: 1216px) and (max-width: 1407px) {
860 .is-block-widescreen-only {
861 display: block !important;
862 }
863 }
864
865 @media screen and (min-width: 1408px) {
866 .is-block-fullhd {
867 display: block !important;
868 }
869 }
870
871 .is-flex {
872 display: -webkit-box !important;
873 display: -ms-flexbox !important;
874 display: flex !important;
875 }
876
877 @media screen and (max-width: 768px) {
878 .is-flex-mobile {
879 display: -webkit-box !important;
880 display: -ms-flexbox !important;
881 display: flex !important;
882 }
883 }
884
885 @media screen and (min-width: 769px), print {
886 .is-flex-tablet {
887 display: -webkit-box !important;
888 display: -ms-flexbox !important;
889 display: flex !important;
890 }
891 }
892
893 @media screen and (min-width: 769px) and (max-width: 1023px) {
894 .is-flex-tablet-only {
895 display: -webkit-box !important;
896 display: -ms-flexbox !important;
897 display: flex !important;
898 }
899 }
900
901 @media screen and (max-width: 1023px) {
902 .is-flex-touch {
903 display: -webkit-box !important;
904 display: -ms-flexbox !important;
905 display: flex !important;
906 }
907 }
908
909 @media screen and (min-width: 1024px) {
910 .is-flex-desktop {
911 display: -webkit-box !important;
912 display: -ms-flexbox !important;
913 display: flex !important;
914 }
915 }
916
917 @media screen and (min-width: 1024px) and (max-width: 1215px) {
918 .is-flex-desktop-only {
919 display: -webkit-box !important;
920 display: -ms-flexbox !important;
921 display: flex !important;
922 }
923 }
924
925 @media screen and (min-width: 1216px) {
926 .is-flex-widescreen {
927 display: -webkit-box !important;
928 display: -ms-flexbox !important;
929 display: flex !important;
930 }
931 }
932
933 @media screen and (min-width: 1216px) and (max-width: 1407px) {
934 .is-flex-widescreen-only {
935 display: -webkit-box !important;
936 display: -ms-flexbox !important;
937 display: flex !important;
938 }
939 }
940
941 @media screen and (min-width: 1408px) {
942 .is-flex-fullhd {
943 display: -webkit-box !important;
944 display: -ms-flexbox !important;
945 display: flex !important;
946 }
947 }
948
949 .is-inline {
950 display: inline !important;
951 }
952
953 @media screen and (max-width: 768px) {
954 .is-inline-mobile {
955 display: inline !important;
956 }
957 }
958
959 @media screen and (min-width: 769px), print {
960 .is-inline-tablet {
961 display: inline !important;
962 }
963 }
964
965 @media screen and (min-width: 769px) and (max-width: 1023px) {
966 .is-inline-tablet-only {
967 display: inline !important;
968 }
969 }
970
971 @media screen and (max-width: 1023px) {
972 .is-inline-touch {
973 display: inline !important;
974 }
975 }
976
977 @media screen and (min-width: 1024px) {
978 .is-inline-desktop {
979 display: inline !important;
980 }
981 }
982
983 @media screen and (min-width: 1024px) and (max-width: 1215px) {
984 .is-inline-desktop-only {
985 display: inline !important;
986 }
987 }
988
989 @media screen and (min-width: 1216px) {
990 .is-inline-widescreen {
991 display: inline !important;
992 }
993 }
994
995 @media screen and (min-width: 1216px) and (max-width: 1407px) {
996 .is-inline-widescreen-only {
997 display: inline !important;
998 }
999 }
1000
1001 @media screen and (min-width: 1408px) {
1002 .is-inline-fullhd {
1003 display: inline !important;
1004 }
1005 }
1006
1007 .is-inline-block {
1008 display: inline-block !important;
1009 }
1010
1011 @media screen and (max-width: 768px) {
1012 .is-inline-block-mobile {
1013 display: inline-block !important;
1014 }
1015 }
1016
1017 @media screen and (min-width: 769px), print {
1018 .is-inline-block-tablet {
1019 display: inline-block !important;
1020 }
1021 }
1022
1023 @media screen and (min-width: 769px) and (max-width: 1023px) {
1024 .is-inline-block-tablet-only {
1025 display: inline-block !important;
1026 }
1027 }
1028
1029 @media screen and (max-width: 1023px) {
1030 .is-inline-block-touch {
1031 display: inline-block !important;
1032 }
1033 }
1034
1035 @media screen and (min-width: 1024px) {
1036 .is-inline-block-desktop {
1037 display: inline-block !important;
1038 }
1039 }
1040
1041 @media screen and (min-width: 1024px) and (max-width: 1215px) {
1042 .is-inline-block-desktop-only {
1043 display: inline-block !important;
1044 }
1045 }
1046
1047 @media screen and (min-width: 1216px) {
1048 .is-inline-block-widescreen {
1049 display: inline-block !important;
1050 }
1051 }
1052
1053 @media screen and (min-width: 1216px) and (max-width: 1407px) {
1054 .is-inline-block-widescreen-only {
1055 display: inline-block !important;
1056 }
1057 }
1058
1059 @media screen and (min-width: 1408px) {
1060 .is-inline-block-fullhd {
1061 display: inline-block !important;
1062 }
1063 }
1064
1065 .is-inline-flex {
1066 display: -webkit-inline-box !important;
1067 display: -ms-inline-flexbox !important;
1068 display: inline-flex !important;
1069 }
1070
1071 @media screen and (max-width: 768px) {
1072 .is-inline-flex-mobile {
1073 display: -webkit-inline-box !important;
1074 display: -ms-inline-flexbox !important;
1075 display: inline-flex !important;
1076 }
1077 }
1078
1079 @media screen and (min-width: 769px), print {
1080 .is-inline-flex-tablet {
1081 display: -webkit-inline-box !important;
1082 display: -ms-inline-flexbox !important;
1083 display: inline-flex !important;
1084 }
1085 }
1086
1087 @media screen and (min-width: 769px) and (max-width: 1023px) {
1088 .is-inline-flex-tablet-only {
1089 display: -webkit-inline-box !important;
1090 display: -ms-inline-flexbox !important;
1091 display: inline-flex !important;
1092 }
1093 }
1094
1095 @media screen and (max-width: 1023px) {
1096 .is-inline-flex-touch {
1097 display: -webkit-inline-box !important;
1098 display: -ms-inline-flexbox !important;
1099 display: inline-flex !important;
1100 }
1101 }
1102
1103 @media screen and (min-width: 1024px) {
1104 .is-inline-flex-desktop {
1105 display: -webkit-inline-box !important;
1106 display: -ms-inline-flexbox !important;
1107 display: inline-flex !important;
1108 }
1109 }
1110
1111 @media screen and (min-width: 1024px) and (max-width: 1215px) {
1112 .is-inline-flex-desktop-only {
1113 display: -webkit-inline-box !important;
1114 display: -ms-inline-flexbox !important;
1115 display: inline-flex !important;
1116 }
1117 }
1118
1119 @media screen and (min-width: 1216px) {
1120 .is-inline-flex-widescreen {
1121 display: -webkit-inline-box !important;
1122 display: -ms-inline-flexbox !important;
1123 display: inline-flex !important;
1124 }
1125 }
1126
1127 @media screen and (min-width: 1216px) and (max-width: 1407px) {
1128 .is-inline-flex-widescreen-only {
1129 display: -webkit-inline-box !important;
1130 display: -ms-inline-flexbox !important;
1131 display: inline-flex !important;
1132 }
1133 }
1134
1135 @media screen and (min-width: 1408px) {
1136 .is-inline-flex-fullhd {
1137 display: -webkit-inline-box !important;
1138 display: -ms-inline-flexbox !important;
1139 display: inline-flex !important;
1140 }
1141 }
1142
1143 .is-hidden {
1144 display: none !important;
1145 }
1146
1147 @media screen and (max-width: 768px) {
1148 .is-hidden-mobile {
1149 display: none !important;
1150 }
1151 }
1152
1153 @media screen and (min-width: 769px), print {
1154 .is-hidden-tablet {
1155 display: none !important;
1156 }
1157 }
1158
1159 @media screen and (min-width: 769px) and (max-width: 1023px) {
1160 .is-hidden-tablet-only {
1161 display: none !important;
1162 }
1163 }
1164
1165 @media screen and (max-width: 1023px) {
1166 .is-hidden-touch {
1167 display: none !important;
1168 }
1169 }
1170
1171 @media screen and (min-width: 1024px) {
1172 .is-hidden-desktop {
1173 display: none !important;
1174 }
1175 }
1176
1177 @media screen and (min-width: 1024px) and (max-width: 1215px) {
1178 .is-hidden-desktop-only {
1179 display: none !important;
1180 }
1181 }
1182
1183 @media screen and (min-width: 1216px) {
1184 .is-hidden-widescreen {
1185 display: none !important;
1186 }
1187 }
1188
1189 @media screen and (min-width: 1216px) and (max-width: 1407px) {
1190 .is-hidden-widescreen-only {
1191 display: none !important;
1192 }
1193 }
1194
1195 @media screen and (min-width: 1408px) {
1196 .is-hidden-fullhd {
1197 display: none !important;
1198 }
1199 }
1200
1201 .is-invisible {
1202 visibility: hidden !important;
1203 }
1204
1205 @media screen and (max-width: 768px) {
1206 .is-invisible-mobile {
1207 visibility: hidden !important;
1208 }
1209 }
1210
1211 @media screen and (min-width: 769px), print {
1212 .is-invisible-tablet {
1213 visibility: hidden !important;
1214 }
1215 }
1216
1217 @media screen and (min-width: 769px) and (max-width: 1023px) {
1218 .is-invisible-tablet-only {
1219 visibility: hidden !important;
1220 }
1221 }
1222
1223 @media screen and (max-width: 1023px) {
1224 .is-invisible-touch {
1225 visibility: hidden !important;
1226 }
1227 }
1228
1229 @media screen and (min-width: 1024px) {
1230 .is-invisible-desktop {
1231 visibility: hidden !important;
1232 }
1233 }
1234
1235 @media screen and (min-width: 1024px) and (max-width: 1215px) {
1236 .is-invisible-desktop-only {
1237 visibility: hidden !important;
1238 }
1239 }
1240
1241 @media screen and (min-width: 1216px) {
1242 .is-invisible-widescreen {
1243 visibility: hidden !important;
1244 }
1245 }
1246
1247 @media screen and (min-width: 1216px) and (max-width: 1407px) {
1248 .is-invisible-widescreen-only {
1249 visibility: hidden !important;
1250 }
1251 }
1252
1253 @media screen and (min-width: 1408px) {
1254 .is-invisible-fullhd {
1255 visibility: hidden !important;
1256 }
1257 }
1258
1259 .is-marginless {
1260 margin: 0 !important;
1261 }
1262
1263 .is-paddingless {
1264 padding: 0 !important;
1265 }
1266
1267 .is-radiusless {
1268 border-radius: 0 !important;
1269 }
1270
1271 .is-shadowless {
1272 -webkit-box-shadow: none !important;
1273 box-shadow: none !important;
1274 }
1275
1276 .is-unselectable {
1277 -webkit-touch-callout: none;
1278 -webkit-user-select: none;
1279 -moz-user-select: none;
1280 -ms-user-select: none;
1281 user-select: none;
1282 }
1283
1284 .box {
1285 background-color: white;
1286 border-radius: 5px;
1287 -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
1288 box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
1289 color: #4a4a4a;
1290 display: block;
1291 padding: 1.25rem;
1292 }
1293
1294 .box:not(:last-child) {
1295 margin-bottom: 1.5rem;
1296 }
1297
1298 a.box:hover, a.box:focus {
1299 -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
1300 box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
1301 }
1302
1303 a.box:active {
1304 -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
1305 box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
1306 }
1307
1308 .button {
1309 -moz-appearance: none;
1310 -webkit-appearance: none;
1311 -webkit-box-align: center;
1312 -ms-flex-align: center;
1313 align-items: center;
1314 border: 1px solid transparent;
1315 border-radius: 3px;
1316 -webkit-box-shadow: none;
1317 box-shadow: none;
1318 display: -webkit-inline-box;
1319 display: -ms-inline-flexbox;
1320 display: inline-flex;
1321 font-size: 1rem;
1322 height: 2.25em;
1323 -webkit-box-pack: start;
1324 -ms-flex-pack: start;
1325 justify-content: flex-start;
1326 line-height: 1.5;
1327 padding-bottom: calc(0.375em - 1px);
1328 padding-left: calc(0.625em - 1px);
1329 padding-right: calc(0.625em - 1px);
1330 padding-top: calc(0.375em - 1px);
1331 position: relative;
1332 vertical-align: top;
1333 -webkit-touch-callout: none;
1334 -webkit-user-select: none;
1335 -moz-user-select: none;
1336 -ms-user-select: none;
1337 user-select: none;
1338 background-color: white;
1339 border-color: #dbdbdb;
1340 color: #363636;
1341 cursor: pointer;
1342 -webkit-box-pack: center;
1343 -ms-flex-pack: center;
1344 justify-content: center;
1345 padding-left: 0.75em;
1346 padding-right: 0.75em;
1347 text-align: center;
1348 white-space: nowrap;
1349 }
1350
1351 .button:focus, .button.is-focused, .button:active, .button.is-active {
1352 outline: none;
1353 }
1354
1355 .button[disabled] {
1356 cursor: not-allowed;
1357 }
1358
1359 .button strong {
1360 color: inherit;
1361 }
1362
1363 .button .icon, .button .icon.is-small, .button .icon.is-medium, .button .icon.is-large {
1364 height: 1.5em;
1365 width: 1.5em;
1366 }
1367
1368 .button .icon:first-child:not(:last-child) {
1369 margin-left: calc(-0.375em - 1px);
1370 margin-right: 0.1875em;
1371 }
1372
1373 .button .icon:last-child:not(:first-child) {
1374 margin-left: 0.1875em;
1375 margin-right: calc(-0.375em - 1px);
1376 }
1377
1378 .button .icon:first-child:last-child {
1379 margin-left: calc(-0.375em - 1px);
1380 margin-right: calc(-0.375em - 1px);
1381 }
1382
1383 .button:hover, .button.is-hovered {
1384 border-color: #b5b5b5;
1385 color: #363636;
1386 }
1387
1388 .button:focus, .button.is-focused {
1389 border-color: #3273dc;
1390 color: #363636;
1391 }
1392
1393 .button:focus:not(:active), .button.is-focused:not(:active) {
1394 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
1395 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
1396 }
1397
1398 .button:active, .button.is-active {
1399 border-color: #4a4a4a;
1400 color: #363636;
1401 }
1402
1403 .button.is-text {
1404 background-color: transparent;
1405 border-color: transparent;
1406 color: #4a4a4a;
1407 text-decoration: underline;
1408 }
1409
1410 .button.is-text:hover, .button.is-text.is-hovered, .button.is-text:focus, .button.is-text.is-focused {
1411 background-color: whitesmoke;
1412 color: #363636;
1413 }
1414
1415 .button.is-text:active, .button.is-text.is-active {
1416 background-color: #e8e8e8;
1417 color: #363636;
1418 }
1419
1420 .button.is-text[disabled] {
1421 background-color: transparent;
1422 border-color: transparent;
1423 -webkit-box-shadow: none;
1424 box-shadow: none;
1425 }
1426
1427 .button.is-white {
1428 background-color: white;
1429 border-color: transparent;
1430 color: #0a0a0a;
1431 }
1432
1433 .button.is-white:hover, .button.is-white.is-hovered {
1434 background-color: #f9f9f9;
1435 border-color: transparent;
1436 color: #0a0a0a;
1437 }
1438
1439 .button.is-white:focus, .button.is-white.is-focused {
1440 border-color: transparent;
1441 color: #0a0a0a;
1442 }
1443
1444 .button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
1445 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
1446 box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
1447 }
1448
1449 .button.is-white:active, .button.is-white.is-active {
1450 background-color: #f2f2f2;
1451 border-color: transparent;
1452 color: #0a0a0a;
1453 }
1454
1455 .button.is-white[disabled] {
1456 background-color: white;
1457 border-color: transparent;
1458 -webkit-box-shadow: none;
1459 box-shadow: none;
1460 }
1461
1462 .button.is-white.is-inverted {
1463 background-color: #0a0a0a;
1464 color: white;
1465 }
1466
1467 .button.is-white.is-inverted:hover {
1468 background-color: black;
1469 }
1470
1471 .button.is-white.is-inverted[disabled] {
1472 background-color: #0a0a0a;
1473 border-color: transparent;
1474 -webkit-box-shadow: none;
1475 box-shadow: none;
1476 color: white;
1477 }
1478
1479 .button.is-white.is-loading:after {
1480 border-color: transparent transparent #0a0a0a #0a0a0a !important;
1481 }
1482
1483 .button.is-white.is-outlined {
1484 background-color: transparent;
1485 border-color: white;
1486 color: white;
1487 }
1488
1489 .button.is-white.is-outlined:hover, .button.is-white.is-outlined:focus {
1490 background-color: white;
1491 border-color: white;
1492 color: #0a0a0a;
1493 }
1494
1495 .button.is-white.is-outlined.is-loading:after {
1496 border-color: transparent transparent white white !important;
1497 }
1498
1499 .button.is-white.is-outlined[disabled] {
1500 background-color: transparent;
1501 border-color: white;
1502 -webkit-box-shadow: none;
1503 box-shadow: none;
1504 color: white;
1505 }
1506
1507 .button.is-white.is-inverted.is-outlined {
1508 background-color: transparent;
1509 border-color: #0a0a0a;
1510 color: #0a0a0a;
1511 }
1512
1513 .button.is-white.is-inverted.is-outlined:hover, .button.is-white.is-inverted.is-outlined:focus {
1514 background-color: #0a0a0a;
1515 color: white;
1516 }
1517
1518 .button.is-white.is-inverted.is-outlined[disabled] {
1519 background-color: transparent;
1520 border-color: #0a0a0a;
1521 -webkit-box-shadow: none;
1522 box-shadow: none;
1523 color: #0a0a0a;
1524 }
1525
1526 .button.is-black {
1527 background-color: #0a0a0a;
1528 border-color: transparent;
1529 color: white;
1530 }
1531
1532 .button.is-black:hover, .button.is-black.is-hovered {
1533 background-color: #040404;
1534 border-color: transparent;
1535 color: white;
1536 }
1537
1538 .button.is-black:focus, .button.is-black.is-focused {
1539 border-color: transparent;
1540 color: white;
1541 }
1542
1543 .button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) {
1544 -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
1545 box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
1546 }
1547
1548 .button.is-black:active, .button.is-black.is-active {
1549 background-color: black;
1550 border-color: transparent;
1551 color: white;
1552 }
1553
1554 .button.is-black[disabled] {
1555 background-color: #0a0a0a;
1556 border-color: transparent;
1557 -webkit-box-shadow: none;
1558 box-shadow: none;
1559 }
1560
1561 .button.is-black.is-inverted {
1562 background-color: white;
1563 color: #0a0a0a;
1564 }
1565
1566 .button.is-black.is-inverted:hover {
1567 background-color: #f2f2f2;
1568 }
1569
1570 .button.is-black.is-inverted[disabled] {
1571 background-color: white;
1572 border-color: transparent;
1573 -webkit-box-shadow: none;
1574 box-shadow: none;
1575 color: #0a0a0a;
1576 }
1577
1578 .button.is-black.is-loading:after {
1579 border-color: transparent transparent white white !important;
1580 }
1581
1582 .button.is-black.is-outlined {
1583 background-color: transparent;
1584 border-color: #0a0a0a;
1585 color: #0a0a0a;
1586 }
1587
1588 .button.is-black.is-outlined:hover, .button.is-black.is-outlined:focus {
1589 background-color: #0a0a0a;
1590 border-color: #0a0a0a;
1591 color: white;
1592 }
1593
1594 .button.is-black.is-outlined.is-loading:after {
1595 border-color: transparent transparent #0a0a0a #0a0a0a !important;
1596 }
1597
1598 .button.is-black.is-outlined[disabled] {
1599 background-color: transparent;
1600 border-color: #0a0a0a;
1601 -webkit-box-shadow: none;
1602 box-shadow: none;
1603 color: #0a0a0a;
1604 }
1605
1606 .button.is-black.is-inverted.is-outlined {
1607 background-color: transparent;
1608 border-color: white;
1609 color: white;
1610 }
1611
1612 .button.is-black.is-inverted.is-outlined:hover, .button.is-black.is-inverted.is-outlined:focus {
1613 background-color: white;
1614 color: #0a0a0a;
1615 }
1616
1617 .button.is-black.is-inverted.is-outlined[disabled] {
1618 background-color: transparent;
1619 border-color: white;
1620 -webkit-box-shadow: none;
1621 box-shadow: none;
1622 color: white;
1623 }
1624
1625 .button.is-light {
1626 background-color: whitesmoke;
1627 border-color: transparent;
1628 color: #363636;
1629 }
1630
1631 .button.is-light:hover, .button.is-light.is-hovered {
1632 background-color: #eeeeee;
1633 border-color: transparent;
1634 color: #363636;
1635 }
1636
1637 .button.is-light:focus, .button.is-light.is-focused {
1638 border-color: transparent;
1639 color: #363636;
1640 }
1641
1642 .button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) {
1643 -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
1644 box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
1645 }
1646
1647 .button.is-light:active, .button.is-light.is-active {
1648 background-color: #e8e8e8;
1649 border-color: transparent;
1650 color: #363636;
1651 }
1652
1653 .button.is-light[disabled] {
1654 background-color: whitesmoke;
1655 border-color: transparent;
1656 -webkit-box-shadow: none;
1657 box-shadow: none;
1658 }
1659
1660 .button.is-light.is-inverted {
1661 background-color: #363636;
1662 color: whitesmoke;
1663 }
1664
1665 .button.is-light.is-inverted:hover {
1666 background-color: #292929;
1667 }
1668
1669 .button.is-light.is-inverted[disabled] {
1670 background-color: #363636;
1671 border-color: transparent;
1672 -webkit-box-shadow: none;
1673 box-shadow: none;
1674 color: whitesmoke;
1675 }
1676
1677 .button.is-light.is-loading:after {
1678 border-color: transparent transparent #363636 #363636 !important;
1679 }
1680
1681 .button.is-light.is-outlined {
1682 background-color: transparent;
1683 border-color: whitesmoke;
1684 color: whitesmoke;
1685 }
1686
1687 .button.is-light.is-outlined:hover, .button.is-light.is-outlined:focus {
1688 background-color: whitesmoke;
1689 border-color: whitesmoke;
1690 color: #363636;
1691 }
1692
1693 .button.is-light.is-outlined.is-loading:after {
1694 border-color: transparent transparent whitesmoke whitesmoke !important;
1695 }
1696
1697 .button.is-light.is-outlined[disabled] {
1698 background-color: transparent;
1699 border-color: whitesmoke;
1700 -webkit-box-shadow: none;
1701 box-shadow: none;
1702 color: whitesmoke;
1703 }
1704
1705 .button.is-light.is-inverted.is-outlined {
1706 background-color: transparent;
1707 border-color: #363636;
1708 color: #363636;
1709 }
1710
1711 .button.is-light.is-inverted.is-outlined:hover, .button.is-light.is-inverted.is-outlined:focus {
1712 background-color: #363636;
1713 color: whitesmoke;
1714 }
1715
1716 .button.is-light.is-inverted.is-outlined[disabled] {
1717 background-color: transparent;
1718 border-color: #363636;
1719 -webkit-box-shadow: none;
1720 box-shadow: none;
1721 color: #363636;
1722 }
1723
1724 .button.is-dark {
1725 background-color: #363636;
1726 border-color: transparent;
1727 color: whitesmoke;
1728 }
1729
1730 .button.is-dark:hover, .button.is-dark.is-hovered {
1731 background-color: #2f2f2f;
1732 border-color: transparent;
1733 color: whitesmoke;
1734 }
1735
1736 .button.is-dark:focus, .button.is-dark.is-focused {
1737 border-color: transparent;
1738 color: whitesmoke;
1739 }
1740
1741 .button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) {
1742 -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
1743 box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
1744 }
1745
1746 .button.is-dark:active, .button.is-dark.is-active {
1747 background-color: #292929;
1748 border-color: transparent;
1749 color: whitesmoke;
1750 }
1751
1752 .button.is-dark[disabled] {
1753 background-color: #363636;
1754 border-color: transparent;
1755 -webkit-box-shadow: none;
1756 box-shadow: none;
1757 }
1758
1759 .button.is-dark.is-inverted {
1760 background-color: whitesmoke;
1761 color: #363636;
1762 }
1763
1764 .button.is-dark.is-inverted:hover {
1765 background-color: #e8e8e8;
1766 }
1767
1768 .button.is-dark.is-inverted[disabled] {
1769 background-color: whitesmoke;
1770 border-color: transparent;
1771 -webkit-box-shadow: none;
1772 box-shadow: none;
1773 color: #363636;
1774 }
1775
1776 .button.is-dark.is-loading:after {
1777 border-color: transparent transparent whitesmoke whitesmoke !important;
1778 }
1779
1780 .button.is-dark.is-outlined {
1781 background-color: transparent;
1782 border-color: #363636;
1783 color: #363636;
1784 }
1785
1786 .button.is-dark.is-outlined:hover, .button.is-dark.is-outlined:focus {
1787 background-color: #363636;
1788 border-color: #363636;
1789 color: whitesmoke;
1790 }
1791
1792 .button.is-dark.is-outlined.is-loading:after {
1793 border-color: transparent transparent #363636 #363636 !important;
1794 }
1795
1796 .button.is-dark.is-outlined[disabled] {
1797 background-color: transparent;
1798 border-color: #363636;
1799 -webkit-box-shadow: none;
1800 box-shadow: none;
1801 color: #363636;
1802 }
1803
1804 .button.is-dark.is-inverted.is-outlined {
1805 background-color: transparent;
1806 border-color: whitesmoke;
1807 color: whitesmoke;
1808 }
1809
1810 .button.is-dark.is-inverted.is-outlined:hover, .button.is-dark.is-inverted.is-outlined:focus {
1811 background-color: whitesmoke;
1812 color: #363636;
1813 }
1814
1815 .button.is-dark.is-inverted.is-outlined[disabled] {
1816 background-color: transparent;
1817 border-color: whitesmoke;
1818 -webkit-box-shadow: none;
1819 box-shadow: none;
1820 color: whitesmoke;
1821 }
1822
1823 .button.is-primary {
1824 background-color: #00d1b2;
1825 border-color: transparent;
1826 color: #fff;
1827 }
1828
1829 .button.is-primary:hover, .button.is-primary.is-hovered {
1830 background-color: #00c4a7;
1831 border-color: transparent;
1832 color: #fff;
1833 }
1834
1835 .button.is-primary:focus, .button.is-primary.is-focused {
1836 border-color: transparent;
1837 color: #fff;
1838 }
1839
1840 .button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
1841 -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
1842 box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
1843 }
1844
1845 .button.is-primary:active, .button.is-primary.is-active {
1846 background-color: #00b89c;
1847 border-color: transparent;
1848 color: #fff;
1849 }
1850
1851 .button.is-primary[disabled] {
1852 background-color: #00d1b2;
1853 border-color: transparent;
1854 -webkit-box-shadow: none;
1855 box-shadow: none;
1856 }
1857
1858 .button.is-primary.is-inverted {
1859 background-color: #fff;
1860 color: #00d1b2;
1861 }
1862
1863 .button.is-primary.is-inverted:hover {
1864 background-color: #f2f2f2;
1865 }
1866
1867 .button.is-primary.is-inverted[disabled] {
1868 background-color: #fff;
1869 border-color: transparent;
1870 -webkit-box-shadow: none;
1871 box-shadow: none;
1872 color: #00d1b2;
1873 }
1874
1875 .button.is-primary.is-loading:after {
1876 border-color: transparent transparent #fff #fff !important;
1877 }
1878
1879 .button.is-primary.is-outlined {
1880 background-color: transparent;
1881 border-color: #00d1b2;
1882 color: #00d1b2;
1883 }
1884
1885 .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus {
1886 background-color: #00d1b2;
1887 border-color: #00d1b2;
1888 color: #fff;
1889 }
1890
1891 .button.is-primary.is-outlined.is-loading:after {
1892 border-color: transparent transparent #00d1b2 #00d1b2 !important;
1893 }
1894
1895 .button.is-primary.is-outlined[disabled] {
1896 background-color: transparent;
1897 border-color: #00d1b2;
1898 -webkit-box-shadow: none;
1899 box-shadow: none;
1900 color: #00d1b2;
1901 }
1902
1903 .button.is-primary.is-inverted.is-outlined {
1904 background-color: transparent;
1905 border-color: #fff;
1906 color: #fff;
1907 }
1908
1909 .button.is-primary.is-inverted.is-outlined:hover, .button.is-primary.is-inverted.is-outlined:focus {
1910 background-color: #fff;
1911 color: #00d1b2;
1912 }
1913
1914 .button.is-primary.is-inverted.is-outlined[disabled] {
1915 background-color: transparent;
1916 border-color: #fff;
1917 -webkit-box-shadow: none;
1918 box-shadow: none;
1919 color: #fff;
1920 }
1921
1922 .button.is-link {
1923 background-color: #3273dc;
1924 border-color: transparent;
1925 color: #fff;
1926 }
1927
1928 .button.is-link:hover, .button.is-link.is-hovered {
1929 background-color: #276cda;
1930 border-color: transparent;
1931 color: #fff;
1932 }
1933
1934 .button.is-link:focus, .button.is-link.is-focused {
1935 border-color: transparent;
1936 color: #fff;
1937 }
1938
1939 .button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) {
1940 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
1941 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
1942 }
1943
1944 .button.is-link:active, .button.is-link.is-active {
1945 background-color: #2366d1;
1946 border-color: transparent;
1947 color: #fff;
1948 }
1949
1950 .button.is-link[disabled] {
1951 background-color: #3273dc;
1952 border-color: transparent;
1953 -webkit-box-shadow: none;
1954 box-shadow: none;
1955 }
1956
1957 .button.is-link.is-inverted {
1958 background-color: #fff;
1959 color: #3273dc;
1960 }
1961
1962 .button.is-link.is-inverted:hover {
1963 background-color: #f2f2f2;
1964 }
1965
1966 .button.is-link.is-inverted[disabled] {
1967 background-color: #fff;
1968 border-color: transparent;
1969 -webkit-box-shadow: none;
1970 box-shadow: none;
1971 color: #3273dc;
1972 }
1973
1974 .button.is-link.is-loading:after {
1975 border-color: transparent transparent #fff #fff !important;
1976 }
1977
1978 .button.is-link.is-outlined {
1979 background-color: transparent;
1980 border-color: #3273dc;
1981 color: #3273dc;
1982 }
1983
1984 .button.is-link.is-outlined:hover, .button.is-link.is-outlined:focus {
1985 background-color: #3273dc;
1986 border-color: #3273dc;
1987 color: #fff;
1988 }
1989
1990 .button.is-link.is-outlined.is-loading:after {
1991 border-color: transparent transparent #3273dc #3273dc !important;
1992 }
1993
1994 .button.is-link.is-outlined[disabled] {
1995 background-color: transparent;
1996 border-color: #3273dc;
1997 -webkit-box-shadow: none;
1998 box-shadow: none;
1999 color: #3273dc;
2000 }
2001
2002 .button.is-link.is-inverted.is-outlined {
2003 background-color: transparent;
2004 border-color: #fff;
2005 color: #fff;
2006 }
2007
2008 .button.is-link.is-inverted.is-outlined:hover, .button.is-link.is-inverted.is-outlined:focus {
2009 background-color: #fff;
2010 color: #3273dc;
2011 }
2012
2013 .button.is-link.is-inverted.is-outlined[disabled] {
2014 background-color: transparent;
2015 border-color: #fff;
2016 -webkit-box-shadow: none;
2017 box-shadow: none;
2018 color: #fff;
2019 }
2020
2021 .button.is-info {
2022 background-color: #209cee;
2023 border-color: transparent;
2024 color: #fff;
2025 }
2026
2027 .button.is-info:hover, .button.is-info.is-hovered {
2028 background-color: #1496ed;
2029 border-color: transparent;
2030 color: #fff;
2031 }
2032
2033 .button.is-info:focus, .button.is-info.is-focused {
2034 border-color: transparent;
2035 color: #fff;
2036 }
2037
2038 .button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) {
2039 -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
2040 box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
2041 }
2042
2043 .button.is-info:active, .button.is-info.is-active {
2044 background-color: #118fe4;
2045 border-color: transparent;
2046 color: #fff;
2047 }
2048
2049 .button.is-info[disabled] {
2050 background-color: #209cee;
2051 border-color: transparent;
2052 -webkit-box-shadow: none;
2053 box-shadow: none;
2054 }
2055
2056 .button.is-info.is-inverted {
2057 background-color: #fff;
2058 color: #209cee;
2059 }
2060
2061 .button.is-info.is-inverted:hover {
2062 background-color: #f2f2f2;
2063 }
2064
2065 .button.is-info.is-inverted[disabled] {
2066 background-color: #fff;
2067 border-color: transparent;
2068 -webkit-box-shadow: none;
2069 box-shadow: none;
2070 color: #209cee;
2071 }
2072
2073 .button.is-info.is-loading:after {
2074 border-color: transparent transparent #fff #fff !important;
2075 }
2076
2077 .button.is-info.is-outlined {
2078 background-color: transparent;
2079 border-color: #209cee;
2080 color: #209cee;
2081 }
2082
2083 .button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus {
2084 background-color: #209cee;
2085 border-color: #209cee;
2086 color: #fff;
2087 }
2088
2089 .button.is-info.is-outlined.is-loading:after {
2090 border-color: transparent transparent #209cee #209cee !important;
2091 }
2092
2093 .button.is-info.is-outlined[disabled] {
2094 background-color: transparent;
2095 border-color: #209cee;
2096 -webkit-box-shadow: none;
2097 box-shadow: none;
2098 color: #209cee;
2099 }
2100
2101 .button.is-info.is-inverted.is-outlined {
2102 background-color: transparent;
2103 border-color: #fff;
2104 color: #fff;
2105 }
2106
2107 .button.is-info.is-inverted.is-outlined:hover, .button.is-info.is-inverted.is-outlined:focus {
2108 background-color: #fff;
2109 color: #209cee;
2110 }
2111
2112 .button.is-info.is-inverted.is-outlined[disabled] {
2113 background-color: transparent;
2114 border-color: #fff;
2115 -webkit-box-shadow: none;
2116 box-shadow: none;
2117 color: #fff;
2118 }
2119
2120 .button.is-success {
2121 background-color: #23d160;
2122 border-color: transparent;
2123 color: #fff;
2124 }
2125
2126 .button.is-success:hover, .button.is-success.is-hovered {
2127 background-color: #22c65b;
2128 border-color: transparent;
2129 color: #fff;
2130 }
2131
2132 .button.is-success:focus, .button.is-success.is-focused {
2133 border-color: transparent;
2134 color: #fff;
2135 }
2136
2137 .button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) {
2138 -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
2139 box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
2140 }
2141
2142 .button.is-success:active, .button.is-success.is-active {
2143 background-color: #20bc56;
2144 border-color: transparent;
2145 color: #fff;
2146 }
2147
2148 .button.is-success[disabled] {
2149 background-color: #23d160;
2150 border-color: transparent;
2151 -webkit-box-shadow: none;
2152 box-shadow: none;
2153 }
2154
2155 .button.is-success.is-inverted {
2156 background-color: #fff;
2157 color: #23d160;
2158 }
2159
2160 .button.is-success.is-inverted:hover {
2161 background-color: #f2f2f2;
2162 }
2163
2164 .button.is-success.is-inverted[disabled] {
2165 background-color: #fff;
2166 border-color: transparent;
2167 -webkit-box-shadow: none;
2168 box-shadow: none;
2169 color: #23d160;
2170 }
2171
2172 .button.is-success.is-loading:after {
2173 border-color: transparent transparent #fff #fff !important;
2174 }
2175
2176 .button.is-success.is-outlined {
2177 background-color: transparent;
2178 border-color: #23d160;
2179 color: #23d160;
2180 }
2181
2182 .button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus {
2183 background-color: #23d160;
2184 border-color: #23d160;
2185 color: #fff;
2186 }
2187
2188 .button.is-success.is-outlined.is-loading:after {
2189 border-color: transparent transparent #23d160 #23d160 !important;
2190 }
2191
2192 .button.is-success.is-outlined[disabled] {
2193 background-color: transparent;
2194 border-color: #23d160;
2195 -webkit-box-shadow: none;
2196 box-shadow: none;
2197 color: #23d160;
2198 }
2199
2200 .button.is-success.is-inverted.is-outlined {
2201 background-color: transparent;
2202 border-color: #fff;
2203 color: #fff;
2204 }
2205
2206 .button.is-success.is-inverted.is-outlined:hover, .button.is-success.is-inverted.is-outlined:focus {
2207 background-color: #fff;
2208 color: #23d160;
2209 }
2210
2211 .button.is-success.is-inverted.is-outlined[disabled] {
2212 background-color: transparent;
2213 border-color: #fff;
2214 -webkit-box-shadow: none;
2215 box-shadow: none;
2216 color: #fff;
2217 }
2218
2219 .button.is-warning {
2220 background-color: #ffdd57;
2221 border-color: transparent;
2222 color: rgba(0, 0, 0, 0.7);
2223 }
2224
2225 .button.is-warning:hover, .button.is-warning.is-hovered {
2226 background-color: #ffdb4a;
2227 border-color: transparent;
2228 color: rgba(0, 0, 0, 0.7);
2229 }
2230
2231 .button.is-warning:focus, .button.is-warning.is-focused {
2232 border-color: transparent;
2233 color: rgba(0, 0, 0, 0.7);
2234 }
2235
2236 .button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) {
2237 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
2238 box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
2239 }
2240
2241 .button.is-warning:active, .button.is-warning.is-active {
2242 background-color: #ffd83d;
2243 border-color: transparent;
2244 color: rgba(0, 0, 0, 0.7);
2245 }
2246
2247 .button.is-warning[disabled] {
2248 background-color: #ffdd57;
2249 border-color: transparent;
2250 -webkit-box-shadow: none;
2251 box-shadow: none;
2252 }
2253
2254 .button.is-warning.is-inverted {
2255 background-color: rgba(0, 0, 0, 0.7);
2256 color: #ffdd57;
2257 }
2258
2259 .button.is-warning.is-inverted:hover {
2260 background-color: rgba(0, 0, 0, 0.7);
2261 }
2262
2263 .button.is-warning.is-inverted[disabled] {
2264 background-color: rgba(0, 0, 0, 0.7);
2265 border-color: transparent;
2266 -webkit-box-shadow: none;
2267 box-shadow: none;
2268 color: #ffdd57;
2269 }
2270
2271 .button.is-warning.is-loading:after {
2272 border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
2273 }
2274
2275 .button.is-warning.is-outlined {
2276 background-color: transparent;
2277 border-color: #ffdd57;
2278 color: #ffdd57;
2279 }
2280
2281 .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
2282 background-color: #ffdd57;
2283 border-color: #ffdd57;
2284 color: rgba(0, 0, 0, 0.7);
2285 }
2286
2287 .button.is-warning.is-outlined.is-loading:after {
2288 border-color: transparent transparent #ffdd57 #ffdd57 !important;
2289 }
2290
2291 .button.is-warning.is-outlined[disabled] {
2292 background-color: transparent;
2293 border-color: #ffdd57;
2294 -webkit-box-shadow: none;
2295 box-shadow: none;
2296 color: #ffdd57;
2297 }
2298
2299 .button.is-warning.is-inverted.is-outlined {
2300 background-color: transparent;
2301 border-color: rgba(0, 0, 0, 0.7);
2302 color: rgba(0, 0, 0, 0.7);
2303 }
2304
2305 .button.is-warning.is-inverted.is-outlined:hover, .button.is-warning.is-inverted.is-outlined:focus {
2306 background-color: rgba(0, 0, 0, 0.7);
2307 color: #ffdd57;
2308 }
2309
2310 .button.is-warning.is-inverted.is-outlined[disabled] {
2311 background-color: transparent;
2312 border-color: rgba(0, 0, 0, 0.7);
2313 -webkit-box-shadow: none;
2314 box-shadow: none;
2315 color: rgba(0, 0, 0, 0.7);
2316 }
2317
2318 .button.is-danger {
2319 background-color: #ff3860;
2320 border-color: transparent;
2321 color: #fff;
2322 }
2323
2324 .button.is-danger:hover, .button.is-danger.is-hovered {
2325 background-color: #ff2b56;
2326 border-color: transparent;
2327 color: #fff;
2328 }
2329
2330 .button.is-danger:focus, .button.is-danger.is-focused {
2331 border-color: transparent;
2332 color: #fff;
2333 }
2334
2335 .button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) {
2336 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
2337 box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
2338 }
2339
2340 .button.is-danger:active, .button.is-danger.is-active {
2341 background-color: #ff1f4b;
2342 border-color: transparent;
2343 color: #fff;
2344 }
2345
2346 .button.is-danger[disabled] {
2347 background-color: #ff3860;
2348 border-color: transparent;
2349 -webkit-box-shadow: none;
2350 box-shadow: none;
2351 }
2352
2353 .button.is-danger.is-inverted {
2354 background-color: #fff;
2355 color: #ff3860;
2356 }
2357
2358 .button.is-danger.is-inverted:hover {
2359 background-color: #f2f2f2;
2360 }
2361
2362 .button.is-danger.is-inverted[disabled] {
2363 background-color: #fff;
2364 border-color: transparent;
2365 -webkit-box-shadow: none;
2366 box-shadow: none;
2367 color: #ff3860;
2368 }
2369
2370 .button.is-danger.is-loading:after {
2371 border-color: transparent transparent #fff #fff !important;
2372 }
2373
2374 .button.is-danger.is-outlined {
2375 background-color: transparent;
2376 border-color: #ff3860;
2377 color: #ff3860;
2378 }
2379
2380 .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus {
2381 background-color: #ff3860;
2382 border-color: #ff3860;
2383 color: #fff;
2384 }
2385
2386 .button.is-danger.is-outlined.is-loading:after {
2387 border-color: transparent transparent #ff3860 #ff3860 !important;
2388 }
2389
2390 .button.is-danger.is-outlined[disabled] {
2391 background-color: transparent;
2392 border-color: #ff3860;
2393 -webkit-box-shadow: none;
2394 box-shadow: none;
2395 color: #ff3860;
2396 }
2397
2398 .button.is-danger.is-inverted.is-outlined {
2399 background-color: transparent;
2400 border-color: #fff;
2401 color: #fff;
2402 }
2403
2404 .button.is-danger.is-inverted.is-outlined:hover, .button.is-danger.is-inverted.is-outlined:focus {
2405 background-color: #fff;
2406 color: #ff3860;
2407 }
2408
2409 .button.is-danger.is-inverted.is-outlined[disabled] {
2410 background-color: transparent;
2411 border-color: #fff;
2412 -webkit-box-shadow: none;
2413 box-shadow: none;
2414 color: #fff;
2415 }
2416
2417 .button.is-small {
2418 border-radius: 2px;
2419 font-size: 0.75rem;
2420 }
2421
2422 .button.is-medium {
2423 font-size: 1.25rem;
2424 }
2425
2426 .button.is-large {
2427 font-size: 1.5rem;
2428 }
2429
2430 .button[disabled] {
2431 background-color: white;
2432 border-color: #dbdbdb;
2433 -webkit-box-shadow: none;
2434 box-shadow: none;
2435 opacity: 0.5;
2436 }
2437
2438 .button.is-fullwidth {
2439 display: -webkit-box;
2440 display: -ms-flexbox;
2441 display: flex;
2442 width: 100%;
2443 }
2444
2445 .button.is-loading {
2446 color: transparent !important;
2447 pointer-events: none;
2448 }
2449
2450 .button.is-loading:after {
2451 -webkit-animation: spinAround 500ms infinite linear;
2452 animation: spinAround 500ms infinite linear;
2453 border: 2px solid #dbdbdb;
2454 border-radius: 290486px;
2455 border-right-color: transparent;
2456 border-top-color: transparent;
2457 content: "";
2458 display: block;
2459 height: 1em;
2460 position: relative;
2461 width: 1em;
2462 position: absolute;
2463 left: calc(50% - (1em / 2));
2464 top: calc(50% - (1em / 2));
2465 position: absolute !important;
2466 }
2467
2468 .button.is-static {
2469 background-color: whitesmoke;
2470 border-color: #dbdbdb;
2471 color: #7a7a7a;
2472 -webkit-box-shadow: none;
2473 box-shadow: none;
2474 pointer-events: none;
2475 }
2476
2477 .buttons {
2478 -webkit-box-align: center;
2479 -ms-flex-align: center;
2480 align-items: center;
2481 display: -webkit-box;
2482 display: -ms-flexbox;
2483 display: flex;
2484 -ms-flex-wrap: wrap;
2485 flex-wrap: wrap;
2486 -webkit-box-pack: start;
2487 -ms-flex-pack: start;
2488 justify-content: flex-start;
2489 }
2490
2491 .buttons .button {
2492 margin-bottom: 0.5rem;
2493 }
2494
2495 .buttons .button:not(:last-child) {
2496 margin-right: 0.5rem;
2497 }
2498
2499 .buttons:last-child {
2500 margin-bottom: -0.5rem;
2501 }
2502
2503 .buttons:not(:last-child) {
2504 margin-bottom: 1rem;
2505 }
2506
2507 .buttons.has-addons .button:not(:first-child) {
2508 border-bottom-left-radius: 0;
2509 border-top-left-radius: 0;
2510 }
2511
2512 .buttons.has-addons .button:not(:last-child) {
2513 border-bottom-right-radius: 0;
2514 border-top-right-radius: 0;
2515 margin-right: -1px;
2516 }
2517
2518 .buttons.has-addons .button:last-child {
2519 margin-right: 0;
2520 }
2521
2522 .buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
2523 z-index: 2;
2524 }
2525
2526 .buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
2527 z-index: 3;
2528 }
2529
2530 .buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
2531 z-index: 4;
2532 }
2533
2534 .buttons.is-centered {
2535 -webkit-box-pack: center;
2536 -ms-flex-pack: center;
2537 justify-content: center;
2538 }
2539
2540 .buttons.is-right {
2541 -webkit-box-pack: end;
2542 -ms-flex-pack: end;
2543 justify-content: flex-end;
2544 }
2545
2546 .container {
2547 margin: 0 auto;
2548 position: relative;
2549 }
2550
2551 @media screen and (min-width: 1024px) {
2552 .container {
2553 max-width: 960px;
2554 width: 960px;
2555 }
2556 .container.is-fluid {
2557 margin-left: 32px;
2558 margin-right: 32px;
2559 max-width: none;
2560 width: auto;
2561 }
2562 }
2563
2564 @media screen and (max-width: 1215px) {
2565 .container.is-widescreen {
2566 max-width: 1152px;
2567 width: auto;
2568 }
2569 }
2570
2571 @media screen and (max-width: 1407px) {
2572 .container.is-fullhd {
2573 max-width: 1344px;
2574 width: auto;
2575 }
2576 }
2577
2578 @media screen and (min-width: 1216px) {
2579 .container {
2580 max-width: 1152px;
2581 width: 1152px;
2582 }
2583 }
2584
2585 @media screen and (min-width: 1408px) {
2586 .container {
2587 max-width: 1344px;
2588 width: 1344px;
2589 }
2590 }
2591
2592 .content:not(:last-child) {
2593 margin-bottom: 1.5rem;
2594 }
2595
2596 .content li + li {
2597 margin-top: 0.25em;
2598 }
2599
2600 .content p:not(:last-child),
2601 .content dl:not(:last-child),
2602 .content ol:not(:last-child),
2603 .content ul:not(:last-child),
2604 .content blockquote:not(:last-child),
2605 .content pre:not(:last-child),
2606 .content table:not(:last-child) {
2607 margin-bottom: 1em;
2608 }
2609
2610 .content h1,
2611 .content h2,
2612 .content h3,
2613 .content h4,
2614 .content h5,
2615 .content h6 {
2616 color: #363636;
2617 font-weight: 400;
2618 line-height: 1.125;
2619 }
2620
2621 .content h1 {
2622 font-size: 2em;
2623 margin-bottom: 0.5em;
2624 }
2625
2626 .content h1:not(:first-child) {
2627 margin-top: 1em;
2628 }
2629
2630 .content h2 {
2631 font-size: 1.75em;
2632 margin-bottom: 0.5714em;
2633 }
2634
2635 .content h2:not(:first-child) {
2636 margin-top: 1.1428em;
2637 }
2638
2639 .content h3 {
2640 font-size: 1.5em;
2641 margin-bottom: 0.6666em;
2642 }
2643
2644 .content h3:not(:first-child) {
2645 margin-top: 1.3333em;
2646 }
2647
2648 .content h4 {
2649 font-size: 1.25em;
2650 margin-bottom: 0.8em;
2651 }
2652
2653 .content h5 {
2654 font-size: 1.125em;
2655 margin-bottom: 0.8888em;
2656 }
2657
2658 .content h6 {
2659 font-size: 1em;
2660 margin-bottom: 1em;
2661 }
2662
2663 .content blockquote {
2664 background-color: whitesmoke;
2665 border-left: 5px solid #dbdbdb;
2666 padding: 1.25em 1.5em;
2667 }
2668
2669 .content ol {
2670 list-style: decimal outside;
2671 margin-left: 2em;
2672 margin-top: 1em;
2673 }
2674
2675 .content ul {
2676 list-style: disc outside;
2677 margin-left: 2em;
2678 margin-top: 1em;
2679 }
2680
2681 .content ul ul {
2682 list-style-type: circle;
2683 margin-top: 0.5em;
2684 }
2685
2686 .content ul ul ul {
2687 list-style-type: square;
2688 }
2689
2690 .content dd {
2691 margin-left: 2em;
2692 }
2693
2694 .content figure {
2695 margin-left: 2em;
2696 margin-right: 2em;
2697 text-align: center;
2698 }
2699
2700 .content figure:not(:first-child) {
2701 margin-top: 2em;
2702 }
2703
2704 .content figure:not(:last-child) {
2705 margin-bottom: 2em;
2706 }
2707
2708 .content figure img {
2709 display: inline-block;
2710 }
2711
2712 .content figure figcaption {
2713 font-style: italic;
2714 }
2715
2716 .content pre {
2717 -webkit-overflow-scrolling: touch;
2718 overflow-x: auto;
2719 padding: 1.25em 1.5em;
2720 white-space: pre;
2721 word-wrap: normal;
2722 }
2723
2724 .content sup,
2725 .content sub {
2726 font-size: 75%;
2727 }
2728
2729 .content table {
2730 width: 100%;
2731 }
2732
2733 .content table td,
2734 .content table th {
2735 border: 1px solid #dbdbdb;
2736 border-width: 0 0 1px;
2737 padding: 0.5em 0.75em;
2738 vertical-align: top;
2739 }
2740
2741 .content table th {
2742 color: #363636;
2743 text-align: left;
2744 }
2745
2746 .content table tr:hover {
2747 background-color: whitesmoke;
2748 }
2749
2750 .content table thead td,
2751 .content table thead th {
2752 border-width: 0 0 2px;
2753 color: #363636;
2754 }
2755
2756 .content table tfoot td,
2757 .content table tfoot th {
2758 border-width: 2px 0 0;
2759 color: #363636;
2760 }
2761
2762 .content table tbody tr:last-child td,
2763 .content table tbody tr:last-child th {
2764 border-bottom-width: 0;
2765 }
2766
2767 .content.is-small {
2768 font-size: 0.75rem;
2769 }
2770
2771 .content.is-medium {
2772 font-size: 1.25rem;
2773 }
2774
2775 .content.is-large {
2776 font-size: 1.5rem;
2777 }
2778
2779 .input,
2780 .textarea {
2781 -moz-appearance: none;
2782 -webkit-appearance: none;
2783 -webkit-box-align: center;
2784 -ms-flex-align: center;
2785 align-items: center;
2786 border: 1px solid transparent;
2787 border-radius: 3px;
2788 -webkit-box-shadow: none;
2789 box-shadow: none;
2790 display: -webkit-inline-box;
2791 display: -ms-inline-flexbox;
2792 display: inline-flex;
2793 font-size: 1rem;
2794 height: 2.25em;
2795 -webkit-box-pack: start;
2796 -ms-flex-pack: start;
2797 justify-content: flex-start;
2798 line-height: 1.5;
2799 padding-bottom: calc(0.375em - 1px);
2800 padding-left: calc(0.625em - 1px);
2801 padding-right: calc(0.625em - 1px);
2802 padding-top: calc(0.375em - 1px);
2803 position: relative;
2804 vertical-align: top;
2805 background-color: white;
2806 border-color: #dbdbdb;
2807 color: #363636;
2808 -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
2809 box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
2810 max-width: 100%;
2811 width: 100%;
2812 }
2813
2814 .input:focus, .input.is-focused, .input:active, .input.is-active,
2815 .textarea:focus,
2816 .textarea.is-focused,
2817 .textarea:active,
2818 .textarea.is-active {
2819 outline: none;
2820 }
2821
2822 .input[disabled],
2823 .textarea[disabled] {
2824 cursor: not-allowed;
2825 }
2826
2827 .input::-moz-placeholder,
2828 .textarea::-moz-placeholder {
2829 color: rgba(54, 54, 54, 0.3);
2830 }
2831
2832 .input::-webkit-input-placeholder,
2833 .textarea::-webkit-input-placeholder {
2834 color: rgba(54, 54, 54, 0.3);
2835 }
2836
2837 .input:-moz-placeholder,
2838 .textarea:-moz-placeholder {
2839 color: rgba(54, 54, 54, 0.3);
2840 }
2841
2842 .input:-ms-input-placeholder,
2843 .textarea:-ms-input-placeholder {
2844 color: rgba(54, 54, 54, 0.3);
2845 }
2846
2847 .input:hover, .input.is-hovered,
2848 .textarea:hover,
2849 .textarea.is-hovered {
2850 border-color: #b5b5b5;
2851 }
2852
2853 .input:focus, .input.is-focused, .input:active, .input.is-active,
2854 .textarea:focus,
2855 .textarea.is-focused,
2856 .textarea:active,
2857 .textarea.is-active {
2858 border-color: #3273dc;
2859 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
2860 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
2861 }
2862
2863 .input[disabled],
2864 .textarea[disabled] {
2865 background-color: whitesmoke;
2866 border-color: whitesmoke;
2867 -webkit-box-shadow: none;
2868 box-shadow: none;
2869 color: #7a7a7a;
2870 }
2871
2872 .input[disabled]::-moz-placeholder,
2873 .textarea[disabled]::-moz-placeholder {
2874 color: rgba(122, 122, 122, 0.3);
2875 }
2876
2877 .input[disabled]::-webkit-input-placeholder,
2878 .textarea[disabled]::-webkit-input-placeholder {
2879 color: rgba(122, 122, 122, 0.3);
2880 }
2881
2882 .input[disabled]:-moz-placeholder,
2883 .textarea[disabled]:-moz-placeholder {
2884 color: rgba(122, 122, 122, 0.3);
2885 }
2886
2887 .input[disabled]:-ms-input-placeholder,
2888 .textarea[disabled]:-ms-input-placeholder {
2889 color: rgba(122, 122, 122, 0.3);
2890 }
2891
2892 .input[type="search"],
2893 .textarea[type="search"] {
2894 border-radius: 290486px;
2895 }
2896
2897 .input[readonly],
2898 .textarea[readonly] {
2899 -webkit-box-shadow: none;
2900 box-shadow: none;
2901 }
2902
2903 .input.is-white,
2904 .textarea.is-white {
2905 border-color: white;
2906 }
2907
2908 .input.is-white:focus, .input.is-white.is-focused, .input.is-white:active, .input.is-white.is-active,
2909 .textarea.is-white:focus,
2910 .textarea.is-white.is-focused,
2911 .textarea.is-white:active,
2912 .textarea.is-white.is-active {
2913 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
2914 box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
2915 }
2916
2917 .input.is-black,
2918 .textarea.is-black {
2919 border-color: #0a0a0a;
2920 }
2921
2922 .input.is-black:focus, .input.is-black.is-focused, .input.is-black:active, .input.is-black.is-active,
2923 .textarea.is-black:focus,
2924 .textarea.is-black.is-focused,
2925 .textarea.is-black:active,
2926 .textarea.is-black.is-active {
2927 -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
2928 box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
2929 }
2930
2931 .input.is-light,
2932 .textarea.is-light {
2933 border-color: whitesmoke;
2934 }
2935
2936 .input.is-light:focus, .input.is-light.is-focused, .input.is-light:active, .input.is-light.is-active,
2937 .textarea.is-light:focus,
2938 .textarea.is-light.is-focused,
2939 .textarea.is-light:active,
2940 .textarea.is-light.is-active {
2941 -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
2942 box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
2943 }
2944
2945 .input.is-dark,
2946 .textarea.is-dark {
2947 border-color: #363636;
2948 }
2949
2950 .input.is-dark:focus, .input.is-dark.is-focused, .input.is-dark:active, .input.is-dark.is-active,
2951 .textarea.is-dark:focus,
2952 .textarea.is-dark.is-focused,
2953 .textarea.is-dark:active,
2954 .textarea.is-dark.is-active {
2955 -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
2956 box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
2957 }
2958
2959 .input.is-primary,
2960 .textarea.is-primary {
2961 border-color: #00d1b2;
2962 }
2963
2964 .input.is-primary:focus, .input.is-primary.is-focused, .input.is-primary:active, .input.is-primary.is-active,
2965 .textarea.is-primary:focus,
2966 .textarea.is-primary.is-focused,
2967 .textarea.is-primary:active,
2968 .textarea.is-primary.is-active {
2969 -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
2970 box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
2971 }
2972
2973 .input.is-link,
2974 .textarea.is-link {
2975 border-color: #3273dc;
2976 }
2977
2978 .input.is-link:focus, .input.is-link.is-focused, .input.is-link:active, .input.is-link.is-active,
2979 .textarea.is-link:focus,
2980 .textarea.is-link.is-focused,
2981 .textarea.is-link:active,
2982 .textarea.is-link.is-active {
2983 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
2984 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
2985 }
2986
2987 .input.is-info,
2988 .textarea.is-info {
2989 border-color: #209cee;
2990 }
2991
2992 .input.is-info:focus, .input.is-info.is-focused, .input.is-info:active, .input.is-info.is-active,
2993 .textarea.is-info:focus,
2994 .textarea.is-info.is-focused,
2995 .textarea.is-info:active,
2996 .textarea.is-info.is-active {
2997 -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
2998 box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
2999 }
3000
3001 .input.is-success,
3002 .textarea.is-success {
3003 border-color: #23d160;
3004 }
3005
3006 .input.is-success:focus, .input.is-success.is-focused, .input.is-success:active, .input.is-success.is-active,
3007 .textarea.is-success:focus,
3008 .textarea.is-success.is-focused,
3009 .textarea.is-success:active,
3010 .textarea.is-success.is-active {
3011 -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
3012 box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
3013 }
3014
3015 .input.is-warning,
3016 .textarea.is-warning {
3017 border-color: #ffdd57;
3018 }
3019
3020 .input.is-warning:focus, .input.is-warning.is-focused, .input.is-warning:active, .input.is-warning.is-active,
3021 .textarea.is-warning:focus,
3022 .textarea.is-warning.is-focused,
3023 .textarea.is-warning:active,
3024 .textarea.is-warning.is-active {
3025 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
3026 box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
3027 }
3028
3029 .input.is-danger,
3030 .textarea.is-danger {
3031 border-color: #ff3860;
3032 }
3033
3034 .input.is-danger:focus, .input.is-danger.is-focused, .input.is-danger:active, .input.is-danger.is-active,
3035 .textarea.is-danger:focus,
3036 .textarea.is-danger.is-focused,
3037 .textarea.is-danger:active,
3038 .textarea.is-danger.is-active {
3039 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
3040 box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
3041 }
3042
3043 .input.is-small,
3044 .textarea.is-small {
3045 border-radius: 2px;
3046 font-size: 0.75rem;
3047 }
3048
3049 .input.is-medium,
3050 .textarea.is-medium {
3051 font-size: 1.25rem;
3052 }
3053
3054 .input.is-large,
3055 .textarea.is-large {
3056 font-size: 1.5rem;
3057 }
3058
3059 .input.is-fullwidth,
3060 .textarea.is-fullwidth {
3061 display: block;
3062 width: 100%;
3063 }
3064
3065 .input.is-inline,
3066 .textarea.is-inline {
3067 display: inline;
3068 width: auto;
3069 }
3070
3071 .input.is-static {
3072 background-color: transparent;
3073 border-color: transparent;
3074 -webkit-box-shadow: none;
3075 box-shadow: none;
3076 padding-left: 0;
3077 padding-right: 0;
3078 }
3079
3080 .textarea {
3081 display: block;
3082 max-width: 100%;
3083 min-width: 100%;
3084 padding: 0.625em;
3085 resize: vertical;
3086 }
3087
3088 .textarea:not([rows]) {
3089 max-height: 600px;
3090 min-height: 120px;
3091 }
3092
3093 .textarea[rows] {
3094 height: unset;
3095 }
3096
3097 .textarea.has-fixed-size {
3098 resize: none;
3099 }
3100
3101 .checkbox,
3102 .radio {
3103 cursor: pointer;
3104 display: inline-block;
3105 line-height: 1.25;
3106 position: relative;
3107 }
3108
3109 .checkbox input,
3110 .radio input {
3111 cursor: pointer;
3112 }
3113
3114 .checkbox:hover,
3115 .radio:hover {
3116 color: #363636;
3117 }
3118
3119 .checkbox[disabled],
3120 .radio[disabled] {
3121 color: #7a7a7a;
3122 cursor: not-allowed;
3123 }
3124
3125 .radio + .radio {
3126 margin-left: 0.5em;
3127 }
3128
3129 .select {
3130 display: inline-block;
3131 max-width: 100%;
3132 position: relative;
3133 vertical-align: top;
3134 }
3135
3136 .select:not(.is-multiple) {
3137 height: 2.25em;
3138 }
3139
3140 .select:not(.is-multiple)::after {
3141 border: 1px solid #3273dc;
3142 border-right: 0;
3143 border-top: 0;
3144 content: " ";
3145 display: block;
3146 height: 0.5em;
3147 pointer-events: none;
3148 position: absolute;
3149 -webkit-transform: rotate(-45deg);
3150 transform: rotate(-45deg);
3151 -webkit-transform-origin: center;
3152 transform-origin: center;
3153 width: 0.5em;
3154 margin-top: -0.375em;
3155 right: 1.125em;
3156 top: 50%;
3157 z-index: 4;
3158 }
3159
3160 .select select {
3161 -moz-appearance: none;
3162 -webkit-appearance: none;
3163 -webkit-box-align: center;
3164 -ms-flex-align: center;
3165 align-items: center;
3166 border: 1px solid transparent;
3167 border-radius: 3px;
3168 -webkit-box-shadow: none;
3169 box-shadow: none;
3170 display: -webkit-inline-box;
3171 display: -ms-inline-flexbox;
3172 display: inline-flex;
3173 font-size: 1rem;
3174 height: 2.25em;
3175 -webkit-box-pack: start;
3176 -ms-flex-pack: start;
3177 justify-content: flex-start;
3178 line-height: 1.5;
3179 padding-bottom: calc(0.375em - 1px);
3180 padding-left: calc(0.625em - 1px);
3181 padding-right: calc(0.625em - 1px);
3182 padding-top: calc(0.375em - 1px);
3183 position: relative;
3184 vertical-align: top;
3185 background-color: white;
3186 border-color: #dbdbdb;
3187 color: #363636;
3188 cursor: pointer;
3189 display: block;
3190 font-size: 1em;
3191 max-width: 100%;
3192 outline: none;
3193 }
3194
3195 .select select:focus, .select select.is-focused, .select select:active, .select select.is-active {
3196 outline: none;
3197 }
3198
3199 .select select[disabled] {
3200 cursor: not-allowed;
3201 }
3202
3203 .select select::-moz-placeholder {
3204 color: rgba(54, 54, 54, 0.3);
3205 }
3206
3207 .select select::-webkit-input-placeholder {
3208 color: rgba(54, 54, 54, 0.3);
3209 }
3210
3211 .select select:-moz-placeholder {
3212 color: rgba(54, 54, 54, 0.3);
3213 }
3214
3215 .select select:-ms-input-placeholder {
3216 color: rgba(54, 54, 54, 0.3);
3217 }
3218
3219 .select select:hover, .select select.is-hovered {
3220 border-color: #b5b5b5;
3221 }
3222
3223 .select select:focus, .select select.is-focused, .select select:active, .select select.is-active {
3224 border-color: #3273dc;
3225 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
3226 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
3227 }
3228
3229 .select select[disabled] {
3230 background-color: whitesmoke;
3231 border-color: whitesmoke;
3232 -webkit-box-shadow: none;
3233 box-shadow: none;
3234 color: #7a7a7a;
3235 }
3236
3237 .select select[disabled]::-moz-placeholder {
3238 color: rgba(122, 122, 122, 0.3);
3239 }
3240
3241 .select select[disabled]::-webkit-input-placeholder {
3242 color: rgba(122, 122, 122, 0.3);
3243 }
3244
3245 .select select[disabled]:-moz-placeholder {
3246 color: rgba(122, 122, 122, 0.3);
3247 }
3248
3249 .select select[disabled]:-ms-input-placeholder {
3250 color: rgba(122, 122, 122, 0.3);
3251 }
3252
3253 .select select::-ms-expand {
3254 display: none;
3255 }
3256
3257 .select select[disabled]:hover {
3258 border-color: whitesmoke;
3259 }
3260
3261 .select select:not([multiple]) {
3262 padding-right: 2.5em;
3263 }
3264
3265 .select select[multiple] {
3266 height: unset;
3267 padding: 0;
3268 }
3269
3270 .select select[multiple] option {
3271 padding: 0.5em 1em;
3272 }
3273
3274 .select:hover::after {
3275 border-color: #363636;
3276 }
3277
3278 .select.is-white select {
3279 border-color: white;
3280 }
3281
3282 .select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
3283 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
3284 box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
3285 }
3286
3287 .select.is-black select {
3288 border-color: #0a0a0a;
3289 }
3290
3291 .select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
3292 -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
3293 box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
3294 }
3295
3296 .select.is-light select {
3297 border-color: whitesmoke;
3298 }
3299
3300 .select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
3301 -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
3302 box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
3303 }
3304
3305 .select.is-dark select {
3306 border-color: #363636;
3307 }
3308
3309 .select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
3310 -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
3311 box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
3312 }
3313
3314 .select.is-primary select {
3315 border-color: #00d1b2;
3316 }
3317
3318 .select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
3319 -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
3320 box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
3321 }
3322
3323 .select.is-link select {
3324 border-color: #3273dc;
3325 }
3326
3327 .select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
3328 -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
3329 box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
3330 }
3331
3332 .select.is-info select {
3333 border-color: #209cee;
3334 }
3335
3336 .select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
3337 -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
3338 box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
3339 }
3340
3341 .select.is-success select {
3342 border-color: #23d160;
3343 }
3344
3345 .select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
3346 -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
3347 box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
3348 }
3349
3350 .select.is-warning select {
3351 border-color: #ffdd57;
3352 }
3353
3354 .select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
3355 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
3356 box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
3357 }
3358
3359 .select.is-danger select {
3360 border-color: #ff3860;
3361 }
3362
3363 .select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
3364 -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
3365 box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
3366 }
3367
3368 .select.is-small {
3369 border-radius: 2px;
3370 font-size: 0.75rem;
3371 }
3372
3373 .select.is-medium {
3374 font-size: 1.25rem;
3375 }
3376
3377 .select.is-large {
3378 font-size: 1.5rem;
3379 }
3380
3381 .select.is-disabled::after {
3382 border-color: #7a7a7a;
3383 }
3384
3385 .select.is-fullwidth {
3386 width: 100%;
3387 }
3388
3389 .select.is-fullwidth select {
3390 width: 100%;
3391 }
3392
3393 .select.is-loading::after {
3394 -webkit-animation: spinAround 500ms infinite linear;
3395 animation: spinAround 500ms infinite linear;
3396 border: 2px solid #dbdbdb;
3397 border-radius: 290486px;
3398 border-right-color: transparent;
3399 border-top-color: transparent;
3400 content: "";
3401 display: block;
3402 height: 1em;
3403 position: relative;
3404 width: 1em;
3405 margin-top: 0;
3406 position: absolute;
3407 right: 0.625em;
3408 top: 0.625em;
3409 -webkit-transform: none;
3410 transform: none;
3411 }
3412
3413 .select.is-loading.is-small:after {
3414 font-size: 0.75rem;
3415 }
3416
3417 .select.is-loading.is-medium:after {
3418 font-size: 1.25rem;
3419 }
3420
3421 .select.is-loading.is-large:after {
3422 font-size: 1.5rem;
3423 }
3424
3425 .file {
3426 -webkit-touch-callout: none;
3427 -webkit-user-select: none;
3428 -moz-user-select: none;
3429 -ms-user-select: none;
3430 user-select: none;
3431 -webkit-box-align: stretch;
3432 -ms-flex-align: stretch;
3433 align-items: stretch;
3434 display: -webkit-box;
3435 display: -ms-flexbox;
3436 display: flex;
3437 -webkit-box-pack: start;
3438 -ms-flex-pack: start;
3439 justify-content: flex-start;
3440 position: relative;
3441 }
3442
3443 .file.is-white .file-cta {
3444 background-color: white;
3445 border-color: transparent;
3446 color: #0a0a0a;
3447 }
3448
3449 .file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
3450 background-color: #f9f9f9;
3451 border-color: transparent;
3452 color: #0a0a0a;
3453 }
3454
3455 .file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
3456 border-color: transparent;
3457 -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
3458 box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
3459 color: #0a0a0a;
3460 }
3461
3462 .file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
3463 background-color: #f2f2f2;
3464 border-color: transparent;
3465 color: #0a0a0a;
3466 }
3467
3468 .file.is-black .file-cta {
3469 background-color: #0a0a0a;
3470 border-color: transparent;
3471 color: white;
3472 }
3473
3474 .file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
3475 background-color: #040404;
3476 border-color: transparent;
3477 color: white;
3478 }
3479
3480 .file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
3481 border-color: transparent;
3482 -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
3483 box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
3484 color: white;
3485 }
3486
3487 .file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
3488 background-color: black;
3489 border-color: transparent;
3490 color: white;
3491 }
3492
3493 .file.is-light .file-cta {
3494 background-color: whitesmoke;
3495 border-color: transparent;
3496 color: #363636;
3497 }
3498
3499 .file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
3500 background-color: #eeeeee;
3501 border-color: transparent;
3502 color: #363636;
3503 }
3504
3505 .file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
3506 border-color: transparent;
3507 -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
3508 box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
3509 color: #363636;
3510 }
3511
3512 .file.is-light:active .file-cta, .file.is-light.is-active .file-cta {
3513 background-color: #e8e8e8;
3514 border-color: transparent;
3515 color: #363636;
3516 }
3517
3518 .file.is-dark .file-cta {
3519 background-color: #363636;
3520 border-color: transparent;
3521 color: whitesmoke;
3522 }
3523
3524 .file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
3525 background-color: #2f2f2f;
3526 border-color: transparent;
3527 color: whitesmoke;
3528 }
3529
3530 .file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
3531 border-color: transparent;
3532 -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
3533 box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
3534 color: whitesmoke;
3535 }
3536
3537 .file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
3538 background-color: #292929;
3539 border-color: transparent;
3540 color: whitesmoke;
3541 }
3542
3543 .file.is-primary .file-cta {
3544 background-color: #00d1b2;
3545 border-color: transparent;
3546 color: #fff;
3547 }
3548
3549 .file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
3550 background-color: #00c4a7;
3551 border-color: transparent;
3552 color: #fff;
3553 }
3554
3555 .file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
3556 border-color: transparent;
3557 -webkit-box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
3558 box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
3559 color: #fff;
3560 }
3561
3562 .file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
3563 background-color: #00b89c;
3564 border-color: transparent;
3565 color: #fff;
3566 }
3567
3568 .file.is-link .file-cta {
3569 background-color: #3273dc;
3570 border-color: transparent;
3571 color: #fff;
3572 }
3573
3574 .file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
3575 background-color: #276cda;
3576 border-color: transparent;
3577 color: #fff;
3578 }
3579
3580 .file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
3581 border-color: transparent;
3582 -webkit-box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
3583 box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
3584 color: #fff;
3585 }
3586
3587 .file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
3588 background-color: #2366d1;
3589 border-color: transparent;
3590 color: #fff;
3591 }
3592
3593 .file.is-info .file-cta {
3594 background-color: #209cee;
3595 border-color: transparent;
3596 color: #fff;
3597 }
3598
3599 .file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta {
3600 background-color: #1496ed;
3601 border-color: transparent;
3602 color: #fff;
3603 }
3604
3605 .file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
3606 border-color: transparent;
3607 -webkit-box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
3608 box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
3609 color: #fff;
3610 }
3611
3612 .file.is-info:active .file-cta, .file.is-info.is-active .file-cta {
3613 background-color: #118fe4;
3614 border-color: transparent;
3615 color: #fff;
3616 }
3617
3618 .file.is-success .file-cta {
3619 background-color: #23d160;
3620 border-color: transparent;
3621 color: #fff;
3622 }
3623
3624 .file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
3625 background-color: #22c65b;
3626 border-color: transparent;
3627 color: #fff;
3628 }
3629
3630 .file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
3631 border-color: transparent;
3632 -webkit-box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
3633 box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
3634 color: #fff;
3635 }
3636
3637 .file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
3638 background-color: #20bc56;
3639 border-color: transparent;
3640 color: #fff;
3641 }
3642
3643 .file.is-warning .file-cta {
3644 background-color: #ffdd57;
3645 border-color: transparent;
3646 color: rgba(0, 0, 0, 0.7);
3647 }
3648
3649 .file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta {
3650 background-color: #ffdb4a;
3651 border-color: transparent;
3652 color: rgba(0, 0, 0, 0.7);
3653 }
3654
3655 .file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
3656 border-color: transparent;
3657 -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
3658 box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
3659 color: rgba(0, 0, 0, 0.7);
3660 }
3661
3662 .file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta {
3663 background-color: #ffd83d;
3664 border-color: transparent;
3665 color: rgba(0, 0, 0, 0.7);
3666 }
3667
3668 .file.is-danger .file-cta {
3669 background-color: #ff3860;
3670 border-color: transparent;
3671 color: #fff;
3672 }
3673
3674 .file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta {
3675 background-color: #ff2b56;
3676 border-color: transparent;
3677 color: #fff;
3678 }
3679
3680 .file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
3681 border-color: transparent;
3682 -webkit-box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
3683 box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
3684 color: #fff;
3685 }
3686
3687 .file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta {
3688 background-color: #ff1f4b;
3689 border-color: transparent;
3690 color: #fff;
3691 }
3692
3693 .file.is-small {
3694 font-size: 0.75rem;
3695 }
3696
3697 .file.is-medium {
3698 font-size: 1.25rem;
3699 }
3700
3701 .file.is-medium .file-icon .fa {
3702 font-size: 21px;
3703 }
3704
3705 .file.is-large {
3706 font-size: 1.5rem;
3707 }
3708
3709 .file.is-large .file-icon .fa {
3710 font-size: 28px;
3711 }
3712
3713 .file.has-name .file-cta {
3714 border-bottom-right-radius: 0;
3715 border-top-right-radius: 0;
3716 }
3717
3718 .file.has-name .file-name {
3719 border-bottom-left-radius: 0;
3720 border-top-left-radius: 0;
3721 }
3722
3723 .file.has-name.is-empty .file-cta {
3724 border-radius: 3px;
3725 }
3726
3727 .file.has-name.is-empty .file-name {
3728 display: none;
3729 }
3730
3731 .file.is-centered {
3732 -webkit-box-pack: center;
3733 -ms-flex-pack: center;
3734 justify-content: center;
3735 }
3736
3737 .file.is-right {
3738 -webkit-box-pack: end;
3739 -ms-flex-pack: end;
3740 justify-content: flex-end;
3741 }
3742
3743 .file.is-boxed .file-label {
3744 -webkit-box-orient: vertical;
3745 -webkit-box-direction: normal;
3746 -ms-flex-direction: column;
3747 flex-direction: column;
3748 }
3749
3750 .file.is-boxed .file-cta {
3751 -webkit-box-orient: vertical;
3752 -webkit-box-direction: normal;
3753 -ms-flex-direction: column;
3754 flex-direction: column;
3755 height: auto;
3756 padding: 1em 3em;
3757 }
3758
3759 .file.is-boxed .file-name {
3760 border-width: 0 1px 1px;
3761 }
3762
3763 .file.is-boxed .file-icon {
3764 height: 1.5em;
3765 width: 1.5em;
3766 }
3767
3768 .file.is-boxed .file-icon .fa {
3769 font-size: 21px;
3770 }
3771
3772 .file.is-boxed.is-small .file-icon .fa {
3773 font-size: 14px;
3774 }
3775
3776 .file.is-boxed.is-medium .file-icon .fa {
3777 font-size: 28px;
3778 }
3779
3780 .file.is-boxed.is-large .file-icon .fa {
3781 font-size: 35px;
3782 }
3783
3784 .file.is-boxed.has-name .file-cta {
3785 border-radius: 3px 3px 0 0;
3786 }
3787
3788 .file.is-boxed.has-name .file-name {
3789 border-radius: 0 0 3px 3px;
3790 border-width: 0 1px 1px;
3791 }
3792
3793 .file.is-right .file-cta {
3794 border-radius: 0 3px 3px 0;
3795 }
3796
3797 .file.is-right .file-name {
3798 border-radius: 3px 0 0 3px;
3799 border-width: 1px 0 1px 1px;
3800 -webkit-box-ordinal-group: 0;
3801 -ms-flex-order: -1;
3802 order: -1;
3803 }
3804
3805 .file.is-fullwidth .file-label {
3806 width: 100%;
3807 }
3808
3809 .file.is-fullwidth .file-name {
3810 -webkit-box-flex: 1;
3811 -ms-flex-positive: 1;
3812 flex-grow: 1;
3813 max-width: none;
3814 }
3815
3816 .file-label {
3817 -webkit-box-align: stretch;
3818 -ms-flex-align: stretch;
3819 align-items: stretch;
3820 display: -webkit-box;
3821 display: -ms-flexbox;
3822 display: flex;
3823 cursor: pointer;
3824 -webkit-box-pack: start;
3825 -ms-flex-pack: start;
3826 justify-content: flex-start;
3827 overflow: hidden;
3828 position: relative;
3829 }
3830
3831 .file-label:hover .file-cta {
3832 background-color: #eeeeee;
3833 color: #363636;
3834 }
3835
3836 .file-label:hover .file-name {
3837 border-color: #d5d5d5;
3838 }
3839
3840 .file-label:active .file-cta {
3841 background-color: #e8e8e8;
3842 color: #363636;
3843 }
3844
3845 .file-label:active .file-name {
3846 border-color: #cfcfcf;
3847 }
3848
3849 .file-input {
3850 height: 0.01em;
3851 left: 0;
3852 outline: none;
3853 position: absolute;
3854 top: 0;
3855 width: 0.01em;
3856 }
3857
3858 .file-cta,
3859 .file-name {
3860 -moz-appearance: none;
3861 -webkit-appearance: none;
3862 -webkit-box-align: center;
3863 -ms-flex-align: center;
3864 align-items: center;
3865 border: 1px solid transparent;
3866 border-radius: 3px;
3867 -webkit-box-shadow: none;
3868 box-shadow: none;
3869 display: -webkit-inline-box;
3870 display: -ms-inline-flexbox;
3871 display: inline-flex;
3872 font-size: 1rem;
3873 height: 2.25em;
3874 -webkit-box-pack: start;
3875 -ms-flex-pack: start;
3876 justify-content: flex-start;
3877 line-height: 1.5;
3878 padding-bottom: calc(0.375em - 1px);
3879 padding-left: calc(0.625em - 1px);
3880 padding-right: calc(0.625em - 1px);
3881 padding-top: calc(0.375em - 1px);
3882 position: relative;
3883 vertical-align: top;
3884 border-color: #dbdbdb;
3885 border-radius: 3px;
3886 font-size: 1em;
3887 padding-left: 1em;
3888 padding-right: 1em;
3889 white-space: nowrap;
3890 }
3891
3892 .file-cta:focus, .file-cta.is-focused, .file-cta:active, .file-cta.is-active,
3893 .file-name:focus,
3894 .file-name.is-focused,
3895 .file-name:active,
3896 .file-name.is-active {
3897 outline: none;
3898 }
3899
3900 .file-cta[disabled],
3901 .file-name[disabled] {
3902 cursor: not-allowed;
3903 }
3904
3905 .file-cta {
3906 background-color: whitesmoke;
3907 color: #4a4a4a;
3908 }
3909
3910 .file-name {
3911 border-color: #dbdbdb;
3912 border-style: solid;
3913 border-width: 1px 1px 1px 0;
3914 display: block;
3915 max-width: 16em;
3916 overflow: hidden;
3917 text-align: left;
3918 text-overflow: ellipsis;
3919 }
3920
3921 .file-icon {
3922 -webkit-box-align: center;
3923 -ms-flex-align: center;
3924 align-items: center;
3925 display: -webkit-box;
3926 display: -ms-flexbox;
3927 display: flex;
3928 height: 1em;
3929 -webkit-box-pack: center;
3930 -ms-flex-pack: center;
3931 justify-content: center;
3932 margin-right: 0.5em;
3933 width: 1em;
3934 }
3935
3936 .file-icon .fa {
3937 font-size: 14px;
3938 }
3939
3940 .label {
3941 color: #363636;
3942 display: block;
3943 font-size: 1rem;
3944 font-weight: 700;
3945 }
3946
3947 .label:not(:last-child) {
3948 margin-bottom: 0.5em;
3949 }
3950
3951 .label.is-small {
3952 font-size: 0.75rem;
3953 }
3954
3955 .label.is-medium {
3956 font-size: 1.25rem;
3957 }
3958
3959 .label.is-large {
3960 font-size: 1.5rem;
3961 }
3962
3963 .help {
3964 display: block;
3965 font-size: 0.75rem;
3966 margin-top: 0.25rem;
3967 }
3968
3969 .help.is-white {
3970 color: white;
3971 }
3972
3973 .help.is-black {
3974 color: #0a0a0a;
3975 }
3976
3977 .help.is-light {
3978 color: whitesmoke;
3979 }
3980
3981 .help.is-dark {
3982 color: #363636;
3983 }
3984
3985 .help.is-primary {
3986 color: #00d1b2;
3987 }
3988
3989 .help.is-link {
3990 color: #3273dc;
3991 }
3992
3993 .help.is-info {
3994 color: #209cee;
3995 }
3996
3997 .help.is-success {
3998 color: #23d160;
3999 }
4000
4001 .help.is-warning {
4002 color: #ffdd57;
4003 }
4004
4005 .help.is-danger {
4006 color: #ff3860;
4007 }
4008
4009 .field:not(:last-child) {
4010 margin-bottom: 0.75rem;
4011 }
4012
4013 .field.has-addons {
4014 display: -webkit-box;
4015 display: -ms-flexbox;
4016 display: flex;
4017 -webkit-box-pack: start;
4018 -ms-flex-pack: start;
4019 justify-content: flex-start;
4020 }
4021
4022 .field.has-addons .control:not(:last-child) {
4023 margin-right: -1px;
4024 }
4025
4026 .field.has-addons .control:first-child .button,
4027 .field.has-addons .control:first-child .input,
4028 .field.has-addons .control:first-child .select select {
4029 border-bottom-left-radius: 3px;
4030 border-top-left-radius: 3px;
4031 }
4032
4033 .field.has-addons .control:last-child .button,
4034 .field.has-addons .control:last-child .input,
4035 .field.has-addons .control:last-child .select select {
4036 border-bottom-right-radius: 3px;
4037 border-top-right-radius: 3px;
4038 }
4039
4040 .field.has-addons .control .button,
4041 .field.has-addons .control .input,
4042 .field.has-addons .control .select select {
4043 border-radius: 0;
4044 }
4045
4046 .field.has-addons .control .button:hover, .field.has-addons .control .button.is-hovered,
4047 .field.has-addons .control .input:hover,
4048 .field.has-addons .control .input.is-hovered,
4049 .field.has-addons .control .select select:hover,
4050 .field.has-addons .control .select select.is-hovered {
4051 z-index: 2;
4052 }
4053
4054 .field.has-addons .control .button:focus, .field.has-addons .control .button.is-focused, .field.has-addons .control .button:active, .field.has-addons .control .button.is-active,
4055 .field.has-addons .control .input:focus,
4056 .field.has-addons .control .input.is-focused,
4057 .field.has-addons .control .input:active,
4058 .field.has-addons .control .input.is-active,
4059 .field.has-addons .control .select select:focus,
4060 .field.has-addons .control .select select.is-focused,
4061 .field.has-addons .control .select select:active,
4062 .field.has-addons .control .select select.is-active {
4063 z-index: 3;
4064 }
4065
4066 .field.has-addons .control .button:focus:hover, .field.has-addons .control .button.is-focused:hover, .field.has-addons .control .button:active:hover, .field.has-addons .control .button.is-active:hover,
4067 .field.has-addons .control .input:focus:hover,
4068 .field.has-addons .control .input.is-focused:hover,
4069 .field.has-addons .control .input:active:hover,
4070 .field.has-addons .control .input.is-active:hover,
4071 .field.has-addons .control .select select:focus:hover,
4072 .field.has-addons .control .select select.is-focused:hover,
4073 .field.has-addons .control .select select:active:hover,
4074 .field.has-addons .control .select select.is-active:hover {
4075 z-index: 4;
4076 }
4077
4078 .field.has-addons .control.is-expanded {
4079 -webkit-box-flex: 1;
4080 -ms-flex-positive: 1;
4081 flex-grow: 1;
4082 }
4083
4084 .field.has-addons.has-addons-centered {
4085 -webkit-box-pack: center;
4086 -ms-flex-pack: center;
4087 justify-content: center;
4088 }
4089
4090 .field.has-addons.has-addons-right {
4091 -webkit-box-pack: end;
4092 -ms-flex-pack: end;
4093 justify-content: flex-end;
4094 }
4095
4096 .field.has-addons.has-addons-fullwidth .control {
4097 -webkit-box-flex: 1;
4098 -ms-flex-positive: 1;
4099 flex-grow: 1;
4100 -ms-flex-negative: 0;
4101 flex-shrink: 0;
4102 }
4103
4104 .field.is-grouped {
4105 display: -webkit-box;
4106 display: -ms-flexbox;
4107 display: flex;
4108 -webkit-box-pack: start;
4109 -ms-flex-pack: start;
4110 justify-content: flex-start;
4111 }
4112
4113 .field.is-grouped > .control {
4114 -ms-flex-negative: 0;
4115 flex-shrink: 0;
4116 }
4117
4118 .field.is-grouped > .control:not(:last-child) {
4119 margin-bottom: 0;
4120 margin-right: 0.75rem;
4121 }
4122
4123 .field.is-grouped > .control.is-expanded {
4124 -webkit-box-flex: 1;
4125 -ms-flex-positive: 1;
4126 flex-grow: 1;
4127 -ms-flex-negative: 1;
4128 flex-shrink: 1;
4129 }
4130
4131 .field.is-grouped.is-grouped-centered {
4132 -webkit-box-pack: center;
4133 -ms-flex-pack: center;
4134 justify-content: center;
4135 }
4136
4137 .field.is-grouped.is-grouped-right {
4138 -webkit-box-pack: end;
4139 -ms-flex-pack: end;
4140 justify-content: flex-end;
4141 }
4142
4143 .field.is-grouped.is-grouped-multiline {
4144 -ms-flex-wrap: wrap;
4145 flex-wrap: wrap;
4146 }
4147
4148 .field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
4149 margin-bottom: 0.75rem;
4150 }
4151
4152 .field.is-grouped.is-grouped-multiline:last-child {
4153 margin-bottom: -0.75rem;
4154 }
4155
4156 .field.is-grouped.is-grouped-multiline:not(:last-child) {
4157 margin-bottom: 0;
4158 }
4159
4160 @media screen and (min-width: 769px), print {
4161 .field.is-horizontal {
4162 display: -webkit-box;
4163 display: -ms-flexbox;
4164 display: flex;
4165 }
4166 }
4167
4168 .field-label .label {
4169 font-size: inherit;
4170 }
4171
4172 @media screen and (max-width: 768px) {
4173 .field-label {
4174 margin-bottom: 0.5rem;
4175 }
4176 }
4177
4178 @media screen and (min-width: 769px), print {
4179 .field-label {
4180 -ms-flex-preferred-size: 0;
4181 flex-basis: 0;
4182 -webkit-box-flex: 1;
4183 -ms-flex-positive: 1;
4184 flex-grow: 1;
4185 -ms-flex-negative: 0;
4186 flex-shrink: 0;
4187 margin-right: 1.5rem;
4188 text-align: right;
4189 }
4190 .field-label.is-small {
4191 font-size: 0.75rem;
4192 padding-top: 0.375em;
4193 }
4194 .field-label.is-normal {
4195 padding-top: 0.375em;
4196 }
4197 .field-label.is-medium {
4198 font-size: 1.25rem;
4199 padding-top: 0.375em;
4200 }
4201 .field-label.is-large {
4202 font-size: 1.5rem;
4203 padding-top: 0.375em;
4204 }
4205 }
4206
4207 .field-body .field .field {
4208 margin-bottom: 0;
4209 }
4210
4211 @media screen and (min-width: 769px), print {
4212 .field-body {
4213 display: -webkit-box;
4214 display: -ms-flexbox;
4215 display: flex;
4216 -ms-flex-preferred-size: 0;
4217 flex-basis: 0;
4218 -webkit-box-flex: 5;
4219 -ms-flex-positive: 5;
4220 flex-grow: 5;
4221 -ms-flex-negative: 1;
4222 flex-shrink: 1;
4223 }
4224 .field-body .field {
4225 margin-bottom: 0;
4226 }
4227 .field-body > .field {
4228 -ms-flex-negative: 1;
4229 flex-shrink: 1;
4230 }
4231 .field-body > .field:not(.is-narrow) {
4232 -webkit-box-flex: 1;
4233 -ms-flex-positive: 1;
4234 flex-grow: 1;
4235 }
4236 .field-body > .field:not(:last-child) {
4237 margin-right: 0.75rem;
4238 }
4239 }
4240
4241 .control {
4242 font-size: 1rem;
4243 position: relative;
4244 text-align: left;
4245 }
4246
4247 .control.has-icon .icon {
4248 color: #dbdbdb;
4249 height: 2.25em;
4250 pointer-events: none;
4251 position: absolute;
4252 top: 0;
4253 width: 2.25em;
4254 z-index: 4;
4255 }
4256
4257 .control.has-icon .input:focus + .icon {
4258 color: #7a7a7a;
4259 }
4260
4261 .control.has-icon .input.is-small + .icon {
4262 font-size: 0.75rem;
4263 }
4264
4265 .control.has-icon .input.is-medium + .icon {
4266 font-size: 1.25rem;
4267 }
4268
4269 .control.has-icon .input.is-large + .icon {
4270 font-size: 1.5rem;
4271 }
4272
4273 .control.has-icon:not(.has-icon-right) .icon {
4274 left: 0;
4275 }
4276
4277 .control.has-icon:not(.has-icon-right) .input {
4278 padding-left: 2.25em;
4279 }
4280
4281 .control.has-icon.has-icon-right .icon {
4282 right: 0;
4283 }
4284
4285 .control.has-icon.has-icon-right .input {
4286 padding-right: 2.25em;
4287 }
4288
4289 .control.has-icons-left .input:focus ~ .icon,
4290 .control.has-icons-left .select:focus ~ .icon, .control.has-icons-right .input:focus ~ .icon,
4291 .control.has-icons-right .select:focus ~ .icon {
4292 color: #7a7a7a;
4293 }
4294
4295 .control.has-icons-left .input.is-small ~ .icon,
4296 .control.has-icons-left .select.is-small ~ .icon, .control.has-icons-right .input.is-small ~ .icon,
4297 .control.has-icons-right .select.is-small ~ .icon {
4298 font-size: 0.75rem;
4299 }
4300
4301 .control.has-icons-left .input.is-medium ~ .icon,
4302 .control.has-icons-left .select.is-medium ~ .icon, .control.has-icons-right .input.is-medium ~ .icon,
4303 .control.has-icons-right .select.is-medium ~ .icon {
4304 font-size: 1.25rem;
4305 }
4306
4307 .control.has-icons-left .input.is-large ~ .icon,
4308 .control.has-icons-left .select.is-large ~ .icon, .control.has-icons-right .input.is-large ~ .icon,
4309 .control.has-icons-right .select.is-large ~ .icon {
4310 font-size: 1.5rem;
4311 }
4312
4313 .control.has-icons-left .icon, .control.has-icons-right .icon {
4314 color: #dbdbdb;
4315 height: 2.25em;
4316 pointer-events: none;
4317 position: absolute;
4318 top: 0;
4319 width: 2.25em;
4320 z-index: 4;
4321 }
4322
4323 .control.has-icons-left .input,
4324 .control.has-icons-left .select select {
4325 padding-left: 2.25em;
4326 }
4327
4328 .control.has-icons-left .icon.is-left {
4329 left: 0;
4330 }
4331
4332 .control.has-icons-right .input,
4333 .control.has-icons-right .select select {
4334 padding-right: 2.25em;
4335 }
4336
4337 .control.has-icons-right .icon.is-right {
4338 right: 0;
4339 }
4340
4341 .control.is-loading::after {
4342 -webkit-animation: spinAround 500ms infinite linear;
4343 animation: spinAround 500ms infinite linear;
4344 border: 2px solid #dbdbdb;
4345 border-radius: 290486px;
4346 border-right-color: transparent;
4347 border-top-color: transparent;
4348 content: "";
4349 display: block;
4350 height: 1em;
4351 position: relative;
4352 width: 1em;
4353 position: absolute !important;
4354 right: 0.625em;
4355 top: 0.625em;
4356 }
4357
4358 .control.is-loading.is-small:after {
4359 font-size: 0.75rem;
4360 }
4361
4362 .control.is-loading.is-medium:after {
4363 font-size: 1.25rem;
4364 }
4365
4366 .control.is-loading.is-large:after {
4367 font-size: 1.5rem;
4368 }
4369
4370 .icon {
4371 -webkit-box-align: center;
4372 -ms-flex-align: center;
4373 align-items: center;
4374 display: -webkit-inline-box;
4375 display: -ms-inline-flexbox;
4376 display: inline-flex;
4377 -webkit-box-pack: center;
4378 -ms-flex-pack: center;
4379 justify-content: center;
4380 height: 1.5rem;
4381 width: 1.5rem;
4382 }
4383
4384 .icon.is-small {
4385 height: 1rem;
4386 width: 1rem;
4387 }
4388
4389 .icon.is-medium {
4390 height: 2rem;
4391 width: 2rem;
4392 }
4393
4394 .icon.is-large {
4395 height: 3rem;
4396 width: 3rem;
4397 }
4398
4399 .image {
4400 display: block;
4401 position: relative;
4402 }
4403
4404 .image img {
4405 display: block;
4406 height: auto;
4407 width: 100%;
4408 }
4409
4410 .image.is-square img, .image.is-1by1 img, .image.is-4by3 img, .image.is-3by2 img, .image.is-16by9 img, .image.is-2by1 img {
4411 bottom: 0;
4412 left: 0;
4413 position: absolute;
4414 right: 0;
4415 top: 0;
4416 height: 100%;
4417 width: 100%;
4418 }
4419
4420 .image.is-square, .image.is-1by1 {
4421 padding-top: 100%;
4422 }
4423
4424 .image.is-4by3 {
4425 padding-top: 75%;
4426 }
4427
4428 .image.is-3by2 {
4429 padding-top: 66.6666%;
4430 }
4431
4432 .image.is-16by9 {
4433 padding-top: 56.25%;
4434 }
4435
4436 .image.is-2by1 {
4437 padding-top: 50%;
4438 }
4439
4440 .image.is-16x16 {
4441 height: 16px;
4442 width: 16px;
4443 }
4444
4445 .image.is-24x24 {
4446 height: 24px;
4447 width: 24px;
4448 }
4449
4450 .image.is-32x32 {
4451 height: 32px;
4452 width: 32px;
4453 }
4454
4455 .image.is-48x48 {
4456 height: 48px;
4457 width: 48px;
4458 }
4459
4460 .image.is-64x64 {
4461 height: 64px;
4462 width: 64px;
4463 }
4464
4465 .image.is-96x96 {
4466 height: 96px;
4467 width: 96px;
4468 }
4469
4470 .image.is-128x128 {
4471 height: 128px;
4472 width: 128px;
4473 }
4474
4475 .notification {
4476 background-color: whitesmoke;
4477 border-radius: 3px;
4478 padding: 1.25rem 2.5rem 1.25rem 1.5rem;
4479 position: relative;
4480 }
4481
4482 .notification:not(:last-child) {
4483 margin-bottom: 1.5rem;
4484 }
4485
4486 .notification a:not(.button) {
4487 color: currentColor;
4488 text-decoration: underline;
4489 }
4490
4491 .notification strong {
4492 color: currentColor;
4493 }
4494
4495 .notification code,
4496 .notification pre {
4497 background: white;
4498 }
4499
4500 .notification pre code {
4501 background: transparent;
4502 }
4503
4504 .notification > .delete {
4505 position: absolute;
4506 right: 0.5em;
4507 top: 0.5em;
4508 }
4509
4510 .notification .title,
4511 .notification .subtitle,
4512 .notification .content {
4513 color: currentColor;
4514 }
4515
4516 .notification.is-white {
4517 background-color: white;
4518 color: #0a0a0a;
4519 }
4520
4521 .notification.is-black {
4522 background-color: #0a0a0a;
4523 color: white;
4524 }
4525
4526 .notification.is-light {
4527 background-color: whitesmoke;
4528 color: #363636;
4529 }
4530
4531 .notification.is-dark {
4532 background-color: #363636;
4533 color: whitesmoke;
4534 }
4535
4536 .notification.is-primary {
4537 background-color: #00d1b2;
4538 color: #fff;
4539 }
4540
4541 .notification.is-link {
4542 background-color: #3273dc;
4543 color: #fff;
4544 }
4545
4546 .notification.is-info {
4547 background-color: #209cee;
4548 color: #fff;
4549 }
4550
4551 .notification.is-success {
4552 background-color: #23d160;
4553 color: #fff;
4554 }
4555
4556 .notification.is-warning {
4557 background-color: #ffdd57;
4558 color: rgba(0, 0, 0, 0.7);
4559 }
4560
4561 .notification.is-danger {
4562 background-color: #ff3860;
4563 color: #fff;
4564 }
4565
4566 .progress {
4567 -moz-appearance: none;
4568 -webkit-appearance: none;
4569 border: none;
4570 border-radius: 290486px;
4571 display: block;
4572 height: 1rem;
4573 overflow: hidden;
4574 padding: 0;
4575 width: 100%;
4576 }
4577
4578 .progress:not(:last-child) {
4579 margin-bottom: 1.5rem;
4580 }
4581
4582 .progress::-webkit-progress-bar {
4583 background-color: #dbdbdb;
4584 }
4585
4586 .progress::-webkit-progress-value {
4587 background-color: #4a4a4a;
4588 }
4589
4590 .progress::-moz-progress-bar {
4591 background-color: #4a4a4a;
4592 }
4593
4594 .progress::-ms-fill {
4595 background-color: #4a4a4a;
4596 border: none;
4597 }
4598
4599 .progress.is-white::-webkit-progress-value {
4600 background-color: white;
4601 }
4602
4603 .progress.is-white::-moz-progress-bar {
4604 background-color: white;
4605 }
4606
4607 .progress.is-white::-ms-fill {
4608 background-color: white;
4609 }
4610
4611 .progress.is-black::-webkit-progress-value {
4612 background-color: #0a0a0a;
4613 }
4614
4615 .progress.is-black::-moz-progress-bar {
4616 background-color: #0a0a0a;
4617 }
4618
4619 .progress.is-black::-ms-fill {
4620 background-color: #0a0a0a;
4621 }
4622
4623 .progress.is-light::-webkit-progress-value {
4624 background-color: whitesmoke;
4625 }
4626
4627 .progress.is-light::-moz-progress-bar {
4628 background-color: whitesmoke;
4629 }
4630
4631 .progress.is-light::-ms-fill {
4632 background-color: whitesmoke;
4633 }
4634
4635 .progress.is-dark::-webkit-progress-value {
4636 background-color: #363636;
4637 }
4638
4639 .progress.is-dark::-moz-progress-bar {
4640 background-color: #363636;
4641 }
4642
4643 .progress.is-dark::-ms-fill {
4644 background-color: #363636;
4645 }
4646
4647 .progress.is-primary::-webkit-progress-value {
4648 background-color: #00d1b2;
4649 }
4650
4651 .progress.is-primary::-moz-progress-bar {
4652 background-color: #00d1b2;
4653 }
4654
4655 .progress.is-primary::-ms-fill {
4656 background-color: #00d1b2;
4657 }
4658
4659 .progress.is-link::-webkit-progress-value {
4660 background-color: #3273dc;
4661 }
4662
4663 .progress.is-link::-moz-progress-bar {
4664 background-color: #3273dc;
4665 }
4666
4667 .progress.is-link::-ms-fill {
4668 background-color: #3273dc;
4669 }
4670
4671 .progress.is-info::-webkit-progress-value {
4672 background-color: #209cee;
4673 }
4674
4675 .progress.is-info::-moz-progress-bar {
4676 background-color: #209cee;
4677 }
4678
4679 .progress.is-info::-ms-fill {
4680 background-color: #209cee;
4681 }
4682
4683 .progress.is-success::-webkit-progress-value {
4684 background-color: #23d160;
4685 }
4686
4687 .progress.is-success::-moz-progress-bar {
4688 background-color: #23d160;
4689 }
4690
4691 .progress.is-success::-ms-fill {
4692 background-color: #23d160;
4693 }
4694
4695 .progress.is-warning::-webkit-progress-value {
4696 background-color: #ffdd57;
4697 }
4698
4699 .progress.is-warning::-moz-progress-bar {
4700 background-color: #ffdd57;
4701 }
4702
4703 .progress.is-warning::-ms-fill {
4704 background-color: #ffdd57;
4705 }
4706
4707 .progress.is-danger::-webkit-progress-value {
4708 background-color: #ff3860;
4709 }
4710
4711 .progress.is-danger::-moz-progress-bar {
4712 background-color: #ff3860;
4713 }
4714
4715 .progress.is-danger::-ms-fill {
4716 background-color: #ff3860;
4717 }
4718
4719 .progress.is-small {
4720 height: 0.75rem;
4721 }
4722
4723 .progress.is-medium {
4724 height: 1.25rem;
4725 }
4726
4727 .progress.is-large {
4728 height: 1.5rem;
4729 }
4730
4731 .table {
4732 background-color: white;
4733 color: #363636;
4734 margin-bottom: 1.5rem;
4735 }
4736
4737 .table td,
4738 .table th {
4739 border: 1px solid #dbdbdb;
4740 border-width: 0 0 1px;
4741 padding: 0.5em 0.75em;
4742 vertical-align: top;
4743 }
4744
4745 .table td.is-white,
4746 .table th.is-white {
4747 background-color: white;
4748 border-color: white;
4749 color: #0a0a0a;
4750 }
4751
4752 .table td.is-black,
4753 .table th.is-black {
4754 background-color: #0a0a0a;
4755 border-color: #0a0a0a;
4756 color: white;
4757 }
4758
4759 .table td.is-light,
4760 .table th.is-light {
4761 background-color: whitesmoke;
4762 border-color: whitesmoke;
4763 color: #363636;
4764 }
4765
4766 .table td.is-dark,
4767 .table th.is-dark {
4768 background-color: #363636;
4769 border-color: #363636;
4770 color: whitesmoke;
4771 }
4772
4773 .table td.is-primary,
4774 .table th.is-primary {
4775 background-color: #00d1b2;
4776 border-color: #00d1b2;
4777 color: #fff;
4778 }
4779
4780 .table td.is-link,
4781 .table th.is-link {
4782 background-color: #3273dc;
4783 border-color: #3273dc;
4784 color: #fff;
4785 }
4786
4787 .table td.is-info,
4788 .table th.is-info {
4789 background-color: #209cee;
4790 border-color: #209cee;
4791 color: #fff;
4792 }
4793
4794 .table td.is-success,
4795 .table th.is-success {
4796 background-color: #23d160;
4797 border-color: #23d160;
4798 color: #fff;
4799 }
4800
4801 .table td.is-warning,
4802 .table th.is-warning {
4803 background-color: #ffdd57;
4804 border-color: #ffdd57;
4805 color: rgba(0, 0, 0, 0.7);
4806 }
4807
4808 .table td.is-danger,
4809 .table th.is-danger {
4810 background-color: #ff3860;
4811 border-color: #ff3860;
4812 color: #fff;
4813 }
4814
4815 .table td.is-narrow,
4816 .table th.is-narrow {
4817 white-space: nowrap;
4818 width: 1%;
4819 }
4820
4821 .table td.is-selected,
4822 .table th.is-selected {
4823 background-color: #00d1b2;
4824 color: #fff;
4825 }
4826
4827 .table td.is-selected a,
4828 .table td.is-selected strong,
4829 .table th.is-selected a,
4830 .table th.is-selected strong {
4831 color: currentColor;
4832 }
4833
4834 .table th {
4835 color: #363636;
4836 text-align: left;
4837 }
4838
4839 .table tr.is-selected {
4840 background-color: #00d1b2;
4841 color: #fff;
4842 }
4843
4844 .table tr.is-selected a,
4845 .table tr.is-selected strong {
4846 color: currentColor;
4847 }
4848
4849 .table tr.is-selected td,
4850 .table tr.is-selected th {
4851 border-color: #fff;
4852 color: currentColor;
4853 }
4854
4855 .table thead td,
4856 .table thead th {
4857 border-width: 0 0 2px;
4858 color: #363636;
4859 }
4860
4861 .table tfoot td,
4862 .table tfoot th {
4863 border-width: 2px 0 0;
4864 color: #363636;
4865 }
4866
4867 .table tbody tr:last-child td,
4868 .table tbody tr:last-child th {
4869 border-bottom-width: 0;
4870 }
4871
4872 .table.is-bordered td,
4873 .table.is-bordered th {
4874 border-width: 1px;
4875 }
4876
4877 .table.is-bordered tr:last-child td,
4878 .table.is-bordered tr:last-child th {
4879 border-bottom-width: 1px;
4880 }
4881
4882 .table.is-fullwidth {
4883 width: 100%;
4884 }
4885
4886 .table.is-hoverable tbody tr:not(.is-selected):hover {
4887 background-color: #fafafa;
4888 }
4889
4890 .table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
4891 background-color: whitesmoke;
4892 }
4893
4894 .table.is-narrow td,
4895 .table.is-narrow th {
4896 padding: 0.25em 0.5em;
4897 }
4898
4899 .table.is-striped tbody tr:not(.is-selected):nth-child(even) {
4900 background-color: #fafafa;
4901 }
4902
4903 .tags {
4904 -webkit-box-align: center;
4905 -ms-flex-align: center;
4906 align-items: center;
4907 display: -webkit-box;
4908 display: -ms-flexbox;
4909 display: flex;
4910 -ms-flex-wrap: wrap;
4911 flex-wrap: wrap;
4912 -webkit-box-pack: start;
4913 -ms-flex-pack: start;
4914 justify-content: flex-start;
4915 }
4916
4917 .tags .tag {
4918 margin-bottom: 0.5rem;
4919 }
4920
4921 .tags .tag:not(:last-child) {
4922 margin-right: 0.5rem;
4923 }
4924
4925 .tags:last-child {
4926 margin-bottom: -0.5rem;
4927 }
4928
4929 .tags:not(:last-child) {
4930 margin-bottom: 1rem;
4931 }
4932
4933 .tags.has-addons .tag {
4934 margin-right: 0;
4935 }
4936
4937 .tags.has-addons .tag:not(:first-child) {
4938 border-bottom-left-radius: 0;
4939 border-top-left-radius: 0;
4940 }
4941
4942 .tags.has-addons .tag:not(:last-child) {
4943 border-bottom-right-radius: 0;
4944 border-top-right-radius: 0;
4945 }
4946
4947 .tags.is-centered {
4948 -webkit-box-pack: center;
4949 -ms-flex-pack: center;
4950 justify-content: center;
4951 }
4952
4953 .tags.is-centered .tag {
4954 margin-right: 0.25rem;
4955 margin-left: 0.25rem;
4956 }
4957
4958 .tags.is-right {
4959 -webkit-box-pack: end;
4960 -ms-flex-pack: end;
4961 justify-content: flex-end;
4962 }
4963
4964 .tags.is-right .tag:not(:first-child) {
4965 margin-left: 0.5rem;
4966 }
4967
4968 .tags.is-right .tag:not(:last-child) {
4969 margin-right: 0;
4970 }
4971
4972 .tag:not(body) {
4973 -webkit-box-align: center;
4974 -ms-flex-align: center;
4975 align-items: center;
4976 background-color: whitesmoke;
4977 border-radius: 3px;
4978 color: #4a4a4a;
4979 display: -webkit-inline-box;
4980 display: -ms-inline-flexbox;
4981 display: inline-flex;
4982 font-size: 0.75rem;
4983 height: 2em;
4984 -webkit-box-pack: center;
4985 -ms-flex-pack: center;
4986 justify-content: center;
4987 line-height: 1.5;
4988 padding-left: 0.75em;
4989 padding-right: 0.75em;
4990 white-space: nowrap;
4991 }
4992
4993 .tag:not(body) .delete {
4994 margin-left: 0.25em;
4995 margin-right: -0.375em;
4996 }
4997
4998 .tag:not(body).is-white {
4999 background-color: white;
5000 color: #0a0a0a;
5001 }
5002
5003 .tag:not(body).is-black {
5004 background-color: #0a0a0a;
5005 color: white;
5006 }
5007
5008 .tag:not(body).is-light {
5009 background-color: whitesmoke;
5010 color: #363636;
5011 }
5012
5013 .tag:not(body).is-dark {
5014 background-color: #363636;
5015 color: whitesmoke;
5016 }
5017
5018 .tag:not(body).is-primary {
5019 background-color: #00d1b2;
5020 color: #fff;
5021 }
5022
5023 .tag:not(body).is-link {
5024 background-color: #3273dc;
5025 color: #fff;
5026 }
5027
5028 .tag:not(body).is-info {
5029 background-color: #209cee;
5030 color: #fff;
5031 }
5032
5033 .tag:not(body).is-success {
5034 background-color: #23d160;
5035 color: #fff;
5036 }
5037
5038 .tag:not(body).is-warning {
5039 background-color: #ffdd57;
5040 color: rgba(0, 0, 0, 0.7);
5041 }
5042
5043 .tag:not(body).is-danger {
5044 background-color: #ff3860;
5045 color: #fff;
5046 }
5047
5048 .tag:not(body).is-medium {
5049 font-size: 1rem;
5050 }
5051
5052 .tag:not(body).is-large {
5053 font-size: 1.25rem;
5054 }
5055
5056 .tag:not(body) .icon:first-child:not(:last-child) {
5057 margin-left: -0.375em;
5058 margin-right: 0.1875em;
5059 }
5060
5061 .tag:not(body) .icon:last-child:not(:first-child) {
5062 margin-left: 0.1875em;
5063 margin-right: -0.375em;
5064 }
5065
5066 .tag:not(body) .icon:first-child:last-child {
5067 margin-left: -0.375em;
5068 margin-right: -0.375em;
5069 }
5070
5071 .tag:not(body).is-delete {
5072 margin-left: 1px;
5073 padding: 0;
5074 position: relative;
5075 width: 2em;
5076 }
5077
5078 .tag:not(body).is-delete:before, .tag:not(body).is-delete:after {
5079 background-color: currentColor;
5080 content: "";
5081 display: block;
5082 left: 50%;
5083 position: absolute;
5084 top: 50%;
5085 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5086 transform: translateX(-50%) translateY(-50%) rotate(45deg);
5087 -webkit-transform-origin: center center;
5088 transform-origin: center center;
5089 }
5090
5091 .tag:not(body).is-delete:before {
5092 height: 1px;
5093 width: 50%;
5094 }
5095
5096 .tag:not(body).is-delete:after {
5097 height: 50%;
5098 width: 1px;
5099 }
5100
5101 .tag:not(body).is-delete:hover, .tag:not(body).is-delete:focus {
5102 background-color: #e8e8e8;
5103 }
5104
5105 .tag:not(body).is-delete:active {
5106 background-color: #dbdbdb;
5107 }
5108
5109 .tag:not(body).is-rounded {
5110 border-radius: 290486px;
5111 }
5112
5113 a.tag:hover {
5114 text-decoration: underline;
5115 }
5116
5117 .title,
5118 .subtitle {
5119 word-break: break-word;
5120 }
5121
5122 .title:not(:last-child),
5123 .subtitle:not(:last-child) {
5124 margin-bottom: 1.5rem;
5125 }
5126
5127 .title em,
5128 .title span,
5129 .subtitle em,
5130 .subtitle span {
5131 font-weight: inherit;
5132 }
5133
5134 .title .tag,
5135 .subtitle .tag {
5136 vertical-align: middle;
5137 }
5138
5139 .title {
5140 color: #363636;
5141 font-size: 2rem;
5142 font-weight: 600;
5143 line-height: 1.125;
5144 }
5145
5146 .title strong {
5147 color: inherit;
5148 font-weight: inherit;
5149 }
5150
5151 .title + .highlight {
5152 margin-top: -0.75rem;
5153 }
5154
5155 .title:not(.is-spaced) + .subtitle {
5156 margin-top: -1.5rem;
5157 }
5158
5159 .title.is-1 {
5160 font-size: 3rem;
5161 }
5162
5163 .title.is-2 {
5164 font-size: 2.5rem;
5165 }
5166
5167 .title.is-3 {
5168 font-size: 2rem;
5169 }
5170
5171 .title.is-4 {
5172 font-size: 1.5rem;
5173 }
5174
5175 .title.is-5 {
5176 font-size: 1.25rem;
5177 }
5178
5179 .title.is-6 {
5180 font-size: 1rem;
5181 }
5182
5183 .title.is-7 {
5184 font-size: 0.75rem;
5185 }
5186
5187 .subtitle {
5188 color: #4a4a4a;
5189 font-size: 1.25rem;
5190 font-weight: 400;
5191 line-height: 1.25;
5192 }
5193
5194 .subtitle strong {
5195 color: #363636;
5196 font-weight: 600;
5197 }
5198
5199 .subtitle:not(.is-spaced) + .title {
5200 margin-top: -1.5rem;
5201 }
5202
5203 .subtitle.is-1 {
5204 font-size: 3rem;
5205 }
5206
5207 .subtitle.is-2 {
5208 font-size: 2.5rem;
5209 }
5210
5211 .subtitle.is-3 {
5212 font-size: 2rem;
5213 }
5214
5215 .subtitle.is-4 {
5216 font-size: 1.5rem;
5217 }
5218
5219 .subtitle.is-5 {
5220 font-size: 1.25rem;
5221 }
5222
5223 .subtitle.is-6 {
5224 font-size: 1rem;
5225 }
5226
5227 .subtitle.is-7 {
5228 font-size: 0.75rem;
5229 }
5230
5231 .block:not(:last-child) {
5232 margin-bottom: 1.5rem;
5233 }
5234
5235 .delete {
5236 -webkit-touch-callout: none;
5237 -webkit-user-select: none;
5238 -moz-user-select: none;
5239 -ms-user-select: none;
5240 user-select: none;
5241 -moz-appearance: none;
5242 -webkit-appearance: none;
5243 background-color: rgba(10, 10, 10, 0.2);
5244 border: none;
5245 border-radius: 290486px;
5246 cursor: pointer;
5247 display: inline-block;
5248 -webkit-box-flex: 0;
5249 -ms-flex-positive: 0;
5250 flex-grow: 0;
5251 -ms-flex-negative: 0;
5252 flex-shrink: 0;
5253 font-size: 0;
5254 height: 20px;
5255 max-height: 20px;
5256 max-width: 20px;
5257 min-height: 20px;
5258 min-width: 20px;
5259 outline: none;
5260 position: relative;
5261 vertical-align: top;
5262 width: 20px;
5263 }
5264
5265 .delete:before, .delete:after {
5266 background-color: white;
5267 content: "";
5268 display: block;
5269 left: 50%;
5270 position: absolute;
5271 top: 50%;
5272 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
5273 transform: translateX(-50%) translateY(-50%) rotate(45deg);
5274 -webkit-transform-origin: center center;
5275 transform-origin: center center;
5276 }
5277
5278 .delete:before {
5279 height: 2px;
5280 width: 50%;
5281 }
5282
5283 .delete:after {
5284 height: 50%;
5285 width: 2px;
5286 }
5287
5288 .delete:hover, .delete:focus {
5289 background-color: rgba(10, 10, 10, 0.3);
5290 }
5291
5292 .delete:active {
5293 background-color: rgba(10, 10, 10, 0.4);
5294 }
5295
5296 .delete.is-small {
5297 height: 16px;
5298 max-height: 16px;
5299 max-width: 16px;
5300 min-height: 16px;
5301 min-width: 16px;
5302 width: 16px;
5303 }
5304
5305 .delete.is-medium {
5306 height: 24px;
5307 max-height: 24px;
5308 max-width: 24px;
5309 min-height: 24px;
5310 min-width: 24px;
5311 width: 24px;
5312 }
5313
5314 .delete.is-large {
5315 height: 32px;
5316 max-height: 32px;
5317 max-width: 32px;
5318 min-height: 32px;
5319 min-width: 32px;
5320 width: 32px;
5321 }
5322
5323 .heading {
5324 display: block;
5325 font-size: 11px;
5326 letter-spacing: 1px;
5327 margin-bottom: 5px;
5328 text-transform: uppercase;
5329 }
5330
5331 .highlight {
5332 font-weight: 400;
5333 max-width: 100%;
5334 overflow: hidden;
5335 padding: 0;
5336 }
5337
5338 .highlight:not(:last-child) {
5339 margin-bottom: 1.5rem;
5340 }
5341
5342 .highlight pre {
5343 overflow: auto;
5344 max-width: 100%;
5345 }
5346
5347 .loader {
5348 -webkit-animation: spinAround 500ms infinite linear;
5349 animation: spinAround 500ms infinite linear;
5350 border: 2px solid #dbdbdb;
5351 border-radius: 290486px;
5352 border-right-color: transparent;
5353 border-top-color: transparent;
5354 content: "";
5355 display: block;
5356 height: 1em;
5357 position: relative;
5358 width: 1em;
5359 }
5360
5361 .number {
5362 -webkit-box-align: center;
5363 -ms-flex-align: center;
5364 align-items: center;
5365 background-color: whitesmoke;
5366 border-radius: 290486px;
5367 display: -webkit-inline-box;
5368 display: -ms-inline-flexbox;
5369 display: inline-flex;
5370 font-size: 1.25rem;
5371 height: 2em;
5372 -webkit-box-pack: center;
5373 -ms-flex-pack: center;
5374 justify-content: center;
5375 margin-right: 1.5rem;
5376 min-width: 2.5em;
5377 padding: 0.25rem 0.5rem;
5378 text-align: center;
5379 vertical-align: top;
5380 }
5381
5382 .breadcrumb {
5383 -webkit-touch-callout: none;
5384 -webkit-user-select: none;
5385 -moz-user-select: none;
5386 -ms-user-select: none;
5387 user-select: none;
5388 -webkit-box-align: stretch;
5389 -ms-flex-align: stretch;
5390 align-items: stretch;
5391 display: -webkit-box;
5392 display: -ms-flexbox;
5393 display: flex;
5394 font-size: 1rem;
5395 overflow: hidden;
5396 overflow-x: auto;
5397 white-space: nowrap;
5398 }
5399
5400 .breadcrumb:not(:last-child) {
5401 margin-bottom: 1.5rem;
5402 }
5403
5404 .breadcrumb a {
5405 -webkit-box-align: center;
5406 -ms-flex-align: center;
5407 align-items: center;
5408 color: #3273dc;
5409 display: -webkit-box;
5410 display: -ms-flexbox;
5411 display: flex;
5412 -webkit-box-pack: center;
5413 -ms-flex-pack: center;
5414 justify-content: center;
5415 padding: 0.5em 0.75em;
5416 }
5417
5418 .breadcrumb a:hover {
5419 color: #363636;
5420 }
5421
5422 .breadcrumb li {
5423 -webkit-box-align: center;
5424 -ms-flex-align: center;
5425 align-items: center;
5426 display: -webkit-box;
5427 display: -ms-flexbox;
5428 display: flex;
5429 }
5430
5431 .breadcrumb li:first-child a {
5432 padding-left: 0;
5433 }
5434
5435 .breadcrumb li.is-active a {
5436 color: #363636;
5437 cursor: default;
5438 pointer-events: none;
5439 }
5440
5441 .breadcrumb li + li::before {
5442 color: #4a4a4a;
5443 content: "\0002f";
5444 }
5445
5446 .breadcrumb ul, .breadcrumb ol {
5447 -webkit-box-align: center;
5448 -ms-flex-align: center;
5449 align-items: center;
5450 display: -webkit-box;
5451 display: -ms-flexbox;
5452 display: flex;
5453 -webkit-box-flex: 1;
5454 -ms-flex-positive: 1;
5455 flex-grow: 1;
5456 -ms-flex-negative: 0;
5457 flex-shrink: 0;
5458 -webkit-box-pack: start;
5459 -ms-flex-pack: start;
5460 justify-content: flex-start;
5461 }
5462
5463 .breadcrumb .icon:first-child {
5464 margin-right: 0.5em;
5465 }
5466
5467 .breadcrumb .icon:last-child {
5468 margin-left: 0.5em;
5469 }
5470
5471 .breadcrumb.is-centered ol, .breadcrumb.is-centered ul {
5472 -webkit-box-pack: center;
5473 -ms-flex-pack: center;
5474 justify-content: center;
5475 }
5476
5477 .breadcrumb.is-right ol, .breadcrumb.is-right ul {
5478 -webkit-box-pack: end;
5479 -ms-flex-pack: end;
5480 justify-content: flex-end;
5481 }
5482
5483 .breadcrumb.is-small {
5484 font-size: 0.75rem;
5485 }
5486
5487 .breadcrumb.is-medium {
5488 font-size: 1.25rem;
5489 }
5490
5491 .breadcrumb.is-large {
5492 font-size: 1.5rem;
5493 }
5494
5495 .breadcrumb.has-arrow-separator li + li::before {
5496 content: "\02192";
5497 }
5498
5499 .breadcrumb.has-bullet-separator li + li::before {
5500 content: "\02022";
5501 }
5502
5503 .breadcrumb.has-dot-separator li + li::before {
5504 content: "\000b7";
5505 }
5506
5507 .breadcrumb.has-succeeds-separator li + li::before {
5508 content: "\0227B";
5509 }
5510
5511 .card {
5512 background-color: white;
5513 -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
5514 box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
5515 color: #4a4a4a;
5516 max-width: 100%;
5517 position: relative;
5518 }
5519
5520 .card-header {
5521 -webkit-box-align: stretch;
5522 -ms-flex-align: stretch;
5523 align-items: stretch;
5524 -webkit-box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
5525 box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
5526 display: -webkit-box;
5527 display: -ms-flexbox;
5528 display: flex;
5529 }
5530
5531 .card-header-title {
5532 -webkit-box-align: center;
5533 -ms-flex-align: center;
5534 align-items: center;
5535 color: #363636;
5536 display: -webkit-box;
5537 display: -ms-flexbox;
5538 display: flex;
5539 -webkit-box-flex: 1;
5540 -ms-flex-positive: 1;
5541 flex-grow: 1;
5542 font-weight: 700;
5543 padding: 0.75rem;
5544 }
5545
5546 .card-header-title.is-centered {
5547 -webkit-box-pack: center;
5548 -ms-flex-pack: center;
5549 justify-content: center;
5550 }
5551
5552 .card-header-icon {
5553 -webkit-box-align: center;
5554 -ms-flex-align: center;
5555 align-items: center;
5556 cursor: pointer;
5557 display: -webkit-box;
5558 display: -ms-flexbox;
5559 display: flex;
5560 -webkit-box-pack: center;
5561 -ms-flex-pack: center;
5562 justify-content: center;
5563 padding: 0.75rem;
5564 }
5565
5566 .card-image {
5567 display: block;
5568 position: relative;
5569 }
5570
5571 .card-content {
5572 padding: 1.5rem;
5573 }
5574
5575 .card-footer {
5576 border-top: 1px solid #dbdbdb;
5577 -webkit-box-align: stretch;
5578 -ms-flex-align: stretch;
5579 align-items: stretch;
5580 display: -webkit-box;
5581 display: -ms-flexbox;
5582 display: flex;
5583 }
5584
5585 .card-footer-item {
5586 -webkit-box-align: center;
5587 -ms-flex-align: center;
5588 align-items: center;
5589 display: -webkit-box;
5590 display: -ms-flexbox;
5591 display: flex;
5592 -ms-flex-preferred-size: 0;
5593 flex-basis: 0;
5594 -webkit-box-flex: 1;
5595 -ms-flex-positive: 1;
5596 flex-grow: 1;
5597 -ms-flex-negative: 0;
5598 flex-shrink: 0;
5599 -webkit-box-pack: center;
5600 -ms-flex-pack: center;
5601 justify-content: center;
5602 padding: 0.75rem;
5603 }
5604
5605 .card-footer-item:not(:last-child) {
5606 border-right: 1px solid #dbdbdb;
5607 }
5608
5609 .card .media:not(:last-child) {
5610 margin-bottom: 0.75rem;
5611 }
5612
5613 .dropdown {
5614 display: -webkit-inline-box;
5615 display: -ms-inline-flexbox;
5616 display: inline-flex;
5617 position: relative;
5618 vertical-align: top;
5619 }
5620
5621 .dropdown.is-active .dropdown-menu, .dropdown.is-hoverable:hover .dropdown-menu {
5622 display: block;
5623 }
5624
5625 .dropdown.is-right .dropdown-menu {
5626 left: auto;
5627 right: 0;
5628 }
5629
5630 .dropdown.is-up .dropdown-menu {
5631 bottom: 100%;
5632 padding-bottom: 4px;
5633 padding-top: unset;
5634 top: auto;
5635 }
5636
5637 .dropdown-menu {
5638 display: none;
5639 left: 0;
5640 min-width: 12rem;
5641 padding-top: 4px;
5642 position: absolute;
5643 top: 100%;
5644 z-index: 20;
5645 }
5646
5647 .dropdown-content {
5648 background-color: white;
5649 border-radius: 3px;
5650 -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
5651 box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
5652 padding-bottom: 0.5rem;
5653 padding-top: 0.5rem;
5654 }
5655
5656 .dropdown-item {
5657 color: #4a4a4a;
5658 display: block;
5659 font-size: 0.875rem;
5660 line-height: 1.5;
5661 padding: 0.375rem 1rem;
5662 position: relative;
5663 }
5664
5665 a.dropdown-item {
5666 padding-right: 3rem;
5667 white-space: nowrap;
5668 }
5669
5670 a.dropdown-item:hover {
5671 background-color: whitesmoke;
5672 color: #0a0a0a;
5673 }
5674
5675 a.dropdown-item.is-active {
5676 background-color: #3273dc;
5677 color: #fff;
5678 }
5679
5680 .dropdown-divider {
5681 background-color: #dbdbdb;
5682 border: none;
5683 display: block;
5684 height: 1px;
5685 margin: 0.5rem 0;
5686 }
5687
5688 .level {
5689 -webkit-box-align: center;
5690 -ms-flex-align: center;
5691 align-items: center;
5692 -webkit-box-pack: justify;
5693 -ms-flex-pack: justify;
5694 justify-content: space-between;
5695 }
5696
5697 .level:not(:last-child) {
5698 margin-bottom: 1.5rem;
5699 }
5700
5701 .level code {
5702 border-radius: 3px;
5703 }
5704
5705 .level img {
5706 display: inline-block;
5707 vertical-align: top;
5708 }
5709
5710 .level.is-mobile {
5711 display: -webkit-box;
5712 display: -ms-flexbox;
5713 display: flex;
5714 }
5715
5716 .level.is-mobile .level-left,
5717 .level.is-mobile .level-right {
5718 display: -webkit-box;
5719 display: -ms-flexbox;
5720 display: flex;
5721 }
5722
5723 .level.is-mobile .level-left + .level-right {
5724 margin-top: 0;
5725 }
5726
5727 .level.is-mobile .level-item {
5728 margin-right: 0.75rem;
5729 }
5730
5731 .level.is-mobile .level-item:not(:last-child) {
5732 margin-bottom: 0;
5733 }
5734
5735 .level.is-mobile .level-item:not(.is-narrow) {
5736 -webkit-box-flex: 1;
5737 -ms-flex-positive: 1;
5738 flex-grow: 1;
5739 }
5740
5741 @media screen and (min-width: 769px), print {
5742 .level {
5743 display: -webkit-box;
5744 display: -ms-flexbox;
5745 display: flex;
5746 }
5747 .level > .level-item:not(.is-narrow) {
5748 -webkit-box-flex: 1;
5749 -ms-flex-positive: 1;
5750 flex-grow: 1;
5751 }
5752 }
5753
5754 .level-item {
5755 -webkit-box-align: center;
5756 -ms-flex-align: center;
5757 align-items: center;
5758 display: -webkit-box;
5759 display: -ms-flexbox;
5760 display: flex;
5761 -ms-flex-preferred-size: auto;
5762 flex-basis: auto;
5763 -webkit-box-flex: 0;
5764 -ms-flex-positive: 0;
5765 flex-grow: 0;
5766 -ms-flex-negative: 0;
5767 flex-shrink: 0;
5768 -webkit-box-pack: center;
5769 -ms-flex-pack: center;
5770 justify-content: center;
5771 }
5772
5773 .level-item .title,
5774 .level-item .subtitle {
5775 margin-bottom: 0;
5776 }
5777
5778 @media screen and (max-width: 768px) {
5779 .level-item:not(:last-child) {
5780 margin-bottom: 0.75rem;
5781 }
5782 }
5783
5784 .level-left,
5785 .level-right {
5786 -ms-flex-preferred-size: auto;
5787 flex-basis: auto;
5788 -webkit-box-flex: 0;
5789 -ms-flex-positive: 0;
5790 flex-grow: 0;
5791 -ms-flex-negative: 0;
5792 flex-shrink: 0;
5793 }
5794
5795 .level-left .level-item.is-flexible,
5796 .level-right .level-item.is-flexible {
5797 -webkit-box-flex: 1;
5798 -ms-flex-positive: 1;
5799 flex-grow: 1;
5800 }
5801
5802 @media screen and (min-width: 769px), print {
5803 .level-left .level-item:not(:last-child),
5804 .level-right .level-item:not(:last-child) {
5805 margin-right: 0.75rem;
5806 }
5807 }
5808
5809 .level-left {
5810 -webkit-box-align: center;
5811 -ms-flex-align: center;
5812 align-items: center;
5813 -webkit-box-pack: start;
5814 -ms-flex-pack: start;
5815 justify-content: flex-start;
5816 }
5817
5818 @media screen and (max-width: 768px) {
5819 .level-left + .level-right {
5820 margin-top: 1.5rem;
5821 }
5822 }
5823
5824 @media screen and (min-width: 769px), print {
5825 .level-left {
5826 display: -webkit-box;
5827 display: -ms-flexbox;
5828 display: flex;
5829 }
5830 }
5831
5832 .level-right {
5833 -webkit-box-align: center;
5834 -ms-flex-align: center;
5835 align-items: center;
5836 -webkit-box-pack: end;
5837 -ms-flex-pack: end;
5838 justify-content: flex-end;
5839 }
5840
5841 @media screen and (min-width: 769px), print {
5842 .level-right {
5843 display: -webkit-box;
5844 display: -ms-flexbox;
5845 display: flex;
5846 }
5847 }
5848
5849 .media {
5850 -webkit-box-align: start;
5851 -ms-flex-align: start;
5852 align-items: flex-start;
5853 display: -webkit-box;
5854 display: -ms-flexbox;
5855 display: flex;
5856 text-align: left;
5857 }
5858
5859 .media .content:not(:last-child) {
5860 margin-bottom: 0.75rem;
5861 }
5862
5863 .media .media {
5864 border-top: 1px solid rgba(219, 219, 219, 0.5);
5865 display: -webkit-box;
5866 display: -ms-flexbox;
5867 display: flex;
5868 padding-top: 0.75rem;
5869 }
5870
5871 .media .media .content:not(:last-child),
5872 .media .media .control:not(:last-child) {
5873 margin-bottom: 0.5rem;
5874 }
5875
5876 .media .media .media {
5877 padding-top: 0.5rem;
5878 }
5879
5880 .media .media .media + .media {
5881 margin-top: 0.5rem;
5882 }
5883
5884 .media + .media {
5885 border-top: 1px solid rgba(219, 219, 219, 0.5);
5886 margin-top: 1rem;
5887 padding-top: 1rem;
5888 }
5889
5890 .media.is-large + .media {
5891 margin-top: 1.5rem;
5892 padding-top: 1.5rem;
5893 }
5894
5895 .media-left,
5896 .media-right {
5897 -ms-flex-preferred-size: auto;
5898 flex-basis: auto;
5899 -webkit-box-flex: 0;
5900 -ms-flex-positive: 0;
5901 flex-grow: 0;
5902 -ms-flex-negative: 0;
5903 flex-shrink: 0;
5904 }
5905
5906 .media-left {
5907 margin-right: 1rem;
5908 }
5909
5910 .media-right {
5911 margin-left: 1rem;
5912 }
5913
5914 .media-content {
5915 -ms-flex-preferred-size: auto;
5916 flex-basis: auto;
5917 -webkit-box-flex: 1;
5918 -ms-flex-positive: 1;
5919 flex-grow: 1;
5920 -ms-flex-negative: 1;
5921 flex-shrink: 1;
5922 text-align: left;
5923 }
5924
5925 .menu {
5926 font-size: 1rem;
5927 }
5928
5929 .menu.is-small {
5930 font-size: 0.75rem;
5931 }
5932
5933 .menu.is-medium {
5934 font-size: 1.25rem;
5935 }
5936
5937 .menu.is-large {
5938 font-size: 1.5rem;
5939 }
5940
5941 .menu-list {
5942 line-height: 1.25;
5943 }
5944
5945 .menu-list a {
5946 border-radius: 2px;
5947 color: #4a4a4a;
5948 display: block;
5949 padding: 0.5em 0.75em;
5950 }
5951
5952 .menu-list a:hover {
5953 background-color: whitesmoke;
5954 color: #363636;
5955 }
5956
5957 .menu-list a.is-active {
5958 background-color: #3273dc;
5959 color: #fff;
5960 }
5961
5962 .menu-list li ul {
5963 border-left: 1px solid #dbdbdb;
5964 margin: 0.75em;
5965 padding-left: 0.75em;
5966 }
5967
5968 .menu-label {
5969 color: #7a7a7a;
5970 font-size: 0.75em;
5971 letter-spacing: 0.1em;
5972 text-transform: uppercase;
5973 }
5974
5975 .menu-label:not(:first-child) {
5976 margin-top: 1em;
5977 }
5978
5979 .menu-label:not(:last-child) {
5980 margin-bottom: 1em;
5981 }
5982
5983 .message {
5984 background-color: whitesmoke;
5985 border-radius: 3px;
5986 font-size: 1rem;
5987 }
5988
5989 .message:not(:last-child) {
5990 margin-bottom: 1.5rem;
5991 }
5992
5993 .message strong {
5994 color: currentColor;
5995 }
5996
5997 .message a:not(.button):not(.tag) {
5998 color: currentColor;
5999 text-decoration: underline;
6000 }
6001
6002 .message.is-small {
6003 font-size: 0.75rem;
6004 }
6005
6006 .message.is-medium {
6007 font-size: 1.25rem;
6008 }
6009
6010 .message.is-large {
6011 font-size: 1.5rem;
6012 }
6013
6014 .message.is-white {
6015 background-color: white;
6016 }
6017
6018 .message.is-white .message-header {
6019 background-color: white;
6020 color: #0a0a0a;
6021 }
6022
6023 .message.is-white .message-body {
6024 border-color: white;
6025 color: #4d4d4d;
6026 }
6027
6028 .message.is-black {
6029 background-color: #fafafa;
6030 }
6031
6032 .message.is-black .message-header {
6033 background-color: #0a0a0a;
6034 color: white;
6035 }
6036
6037 .message.is-black .message-body {
6038 border-color: #0a0a0a;
6039 color: #090909;
6040 }
6041
6042 .message.is-light {
6043 background-color: #fafafa;
6044 }
6045
6046 .message.is-light .message-header {
6047 background-color: whitesmoke;
6048 color: #363636;
6049 }
6050
6051 .message.is-light .message-body {
6052 border-color: whitesmoke;
6053 color: #505050;
6054 }
6055
6056 .message.is-dark {
6057 background-color: #fafafa;
6058 }
6059
6060 .message.is-dark .message-header {
6061 background-color: #363636;
6062 color: whitesmoke;
6063 }
6064
6065 .message.is-dark .message-body {
6066 border-color: #363636;
6067 color: #2a2a2a;
6068 }
6069
6070 .message.is-primary {
6071 background-color: #f5fffd;
6072 }
6073
6074 .message.is-primary .message-header {
6075 background-color: #00d1b2;
6076 color: #fff;
6077 }
6078
6079 .message.is-primary .message-body {
6080 border-color: #00d1b2;
6081 color: #021310;
6082 }
6083
6084 .message.is-link {
6085 background-color: #f6f9fe;
6086 }
6087
6088 .message.is-link .message-header {
6089 background-color: #3273dc;
6090 color: #fff;
6091 }
6092
6093 .message.is-link .message-body {
6094 border-color: #3273dc;
6095 color: #22509a;
6096 }
6097
6098 .message.is-info {
6099 background-color: #f6fbfe;
6100 }
6101
6102 .message.is-info .message-header {
6103 background-color: #209cee;
6104 color: #fff;
6105 }
6106
6107 .message.is-info .message-body {
6108 border-color: #209cee;
6109 color: #12537e;
6110 }
6111
6112 .message.is-success {
6113 background-color: #f6fef9;
6114 }
6115
6116 .message.is-success .message-header {
6117 background-color: #23d160;
6118 color: #fff;
6119 }
6120
6121 .message.is-success .message-body {
6122 border-color: #23d160;
6123 color: #0e301a;
6124 }
6125
6126 .message.is-warning {
6127 background-color: #fffdf5;
6128 }
6129
6130 .message.is-warning .message-header {
6131 background-color: #ffdd57;
6132 color: rgba(0, 0, 0, 0.7);
6133 }
6134
6135 .message.is-warning .message-body {
6136 border-color: #ffdd57;
6137 color: #3b3108;
6138 }
6139
6140 .message.is-danger {
6141 background-color: #fff5f7;
6142 }
6143
6144 .message.is-danger .message-header {
6145 background-color: #ff3860;
6146 color: #fff;
6147 }
6148
6149 .message.is-danger .message-body {
6150 border-color: #ff3860;
6151 color: #cd0930;
6152 }
6153
6154 .message-header {
6155 -webkit-box-align: center;
6156 -ms-flex-align: center;
6157 align-items: center;
6158 background-color: #4a4a4a;
6159 border-radius: 3px 3px 0 0;
6160 color: #fff;
6161 display: -webkit-box;
6162 display: -ms-flexbox;
6163 display: flex;
6164 -webkit-box-pack: justify;
6165 -ms-flex-pack: justify;
6166 justify-content: space-between;
6167 line-height: 1.25;
6168 padding: 0.5em 0.75em;
6169 position: relative;
6170 }
6171
6172 .message-header .delete {
6173 -webkit-box-flex: 0;
6174 -ms-flex-positive: 0;
6175 flex-grow: 0;
6176 -ms-flex-negative: 0;
6177 flex-shrink: 0;
6178 margin-left: 0.75em;
6179 }
6180
6181 .message-header + .message-body {
6182 border-top-left-radius: 0;
6183 border-top-right-radius: 0;
6184 border-top: none;
6185 }
6186
6187 .message-body {
6188 border: 1px solid #dbdbdb;
6189 border-radius: 3px;
6190 color: #4a4a4a;
6191 padding: 1em 1.25em;
6192 }
6193
6194 .message-body code,
6195 .message-body pre {
6196 background-color: white;
6197 }
6198
6199 .message-body pre code {
6200 background-color: transparent;
6201 }
6202
6203 .modal {
6204 bottom: 0;
6205 left: 0;
6206 position: absolute;
6207 right: 0;
6208 top: 0;
6209 -webkit-box-align: center;
6210 -ms-flex-align: center;
6211 align-items: center;
6212 display: none;
6213 -webkit-box-pack: center;
6214 -ms-flex-pack: center;
6215 justify-content: center;
6216 overflow: hidden;
6217 position: fixed;
6218 z-index: 20;
6219 }
6220
6221 .modal.is-active {
6222 display: -webkit-box;
6223 display: -ms-flexbox;
6224 display: flex;
6225 }
6226
6227 .modal-background {
6228 bottom: 0;
6229 left: 0;
6230 position: absolute;
6231 right: 0;
6232 top: 0;
6233 background-color: rgba(10, 10, 10, 0.86);
6234 }
6235
6236 .modal-content,
6237 .modal-card {
6238 margin: 0 20px;
6239 max-height: calc(100vh - 160px);
6240 overflow: auto;
6241 position: relative;
6242 width: 100%;
6243 }
6244
6245 @media screen and (min-width: 769px), print {
6246 .modal-content,
6247 .modal-card {
6248 margin: 0 auto;
6249 max-height: calc(100vh - 40px);
6250 width: 640px;
6251 }
6252 }
6253
6254 .modal-close {
6255 -webkit-touch-callout: none;
6256 -webkit-user-select: none;
6257 -moz-user-select: none;
6258 -ms-user-select: none;
6259 user-select: none;
6260 -moz-appearance: none;
6261 -webkit-appearance: none;
6262 background-color: rgba(10, 10, 10, 0.2);
6263 border: none;
6264 border-radius: 290486px;
6265 cursor: pointer;
6266 display: inline-block;
6267 -webkit-box-flex: 0;
6268 -ms-flex-positive: 0;
6269 flex-grow: 0;
6270 -ms-flex-negative: 0;
6271 flex-shrink: 0;
6272 font-size: 0;
6273 height: 20px;
6274 max-height: 20px;
6275 max-width: 20px;
6276 min-height: 20px;
6277 min-width: 20px;
6278 outline: none;
6279 position: relative;
6280 vertical-align: top;
6281 width: 20px;
6282 background: none;
6283 height: 40px;
6284 position: fixed;
6285 right: 20px;
6286 top: 20px;
6287 width: 40px;
6288 }
6289
6290 .modal-close:before, .modal-close:after {
6291 background-color: white;
6292 content: "";
6293 display: block;
6294 left: 50%;
6295 position: absolute;
6296 top: 50%;
6297 -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
6298 transform: translateX(-50%) translateY(-50%) rotate(45deg);
6299 -webkit-transform-origin: center center;
6300 transform-origin: center center;
6301 }
6302
6303 .modal-close:before {
6304 height: 2px;
6305 width: 50%;
6306 }
6307
6308 .modal-close:after {
6309 height: 50%;
6310 width: 2px;
6311 }
6312
6313 .modal-close:hover, .modal-close:focus {
6314 background-color: rgba(10, 10, 10, 0.3);
6315 }
6316
6317 .modal-close:active {
6318 background-color: rgba(10, 10, 10, 0.4);
6319 }
6320
6321 .modal-close.is-small {
6322 height: 16px;
6323 max-height: 16px;
6324 max-width: 16px;
6325 min-height: 16px;
6326 min-width: 16px;
6327 width: 16px;
6328 }
6329
6330 .modal-close.is-medium {
6331 height: 24px;
6332 max-height: 24px;
6333 max-width: 24px;
6334 min-height: 24px;
6335 min-width: 24px;
6336 width: 24px;
6337 }
6338
6339 .modal-close.is-large {
6340 height: 32px;
6341 max-height: 32px;
6342 max-width: 32px;
6343 min-height: 32px;
6344 min-width: 32px;
6345 width: 32px;
6346 }
6347
6348 .modal-card {
6349 display: -webkit-box;
6350 display: -ms-flexbox;
6351 display: flex;
6352 -webkit-box-orient: vertical;
6353 -webkit-box-direction: normal;
6354 -ms-flex-direction: column;
6355 flex-direction: column;
6356 max-height: calc(100vh - 40px);
6357 overflow: hidden;
6358 }
6359
6360 .modal-card-head,
6361 .modal-card-foot {
6362 -webkit-box-align: center;
6363 -ms-flex-align: center;
6364 align-items: center;
6365 background-color: whitesmoke;
6366 display: -webkit-box;
6367 display: -ms-flexbox;
6368 display: flex;
6369 -ms-flex-negative: 0;
6370 flex-shrink: 0;
6371 -webkit-box-pack: start;
6372 -ms-flex-pack: start;
6373 justify-content: flex-start;
6374 padding: 20px;
6375 position: relative;
6376 }
6377
6378 .modal-card-head {
6379 border-bottom: 1px solid #dbdbdb;
6380 border-top-left-radius: 5px;
6381 border-top-right-radius: 5px;
6382 }
6383
6384 .modal-card-title {
6385 color: #363636;
6386 -webkit-box-flex: 1;
6387 -ms-flex-positive: 1;
6388 flex-grow: 1;
6389 -ms-flex-negative: 0;
6390 flex-shrink: 0;
6391 font-size: 1.5rem;
6392 line-height: 1;
6393 }
6394
6395 .modal-card-foot {
6396 border-bottom-left-radius: 5px;
6397 border-bottom-right-radius: 5px;
6398 border-top: 1px solid #dbdbdb;
6399 }
6400
6401 .modal-card-foot .button:not(:last-child) {
6402 margin-right: 10px;
6403 }
6404
6405 .modal-card-body {
6406 -webkit-overflow-scrolling: touch;
6407 background-color: white;
6408 -webkit-box-flex: 1;
6409 -ms-flex-positive: 1;
6410 flex-grow: 1;
6411 -ms-flex-negative: 1;
6412 flex-shrink: 1;
6413 overflow: auto;
6414 padding: 20px;
6415 }
6416
6417 .navbar {
6418 background-color: white;
6419 min-height: 3.25rem;
6420 position: relative;
6421 }
6422
6423 .navbar.is-white {
6424 background-color: white;
6425 color: #0a0a0a;
6426 }
6427
6428 .navbar.is-white .navbar-brand > .navbar-item,
6429 .navbar.is-white .navbar-brand .navbar-link {
6430 color: #0a0a0a;
6431 }
6432
6433 .navbar.is-white .navbar-brand > a.navbar-item:hover, .navbar.is-white .navbar-brand > a.navbar-item.is-active,
6434 .navbar.is-white .navbar-brand .navbar-link:hover,
6435 .navbar.is-white .navbar-brand .navbar-link.is-active {
6436 background-color: #f2f2f2;
6437 color: #0a0a0a;
6438 }
6439
6440 .navbar.is-white .navbar-brand .navbar-link::after {
6441 border-color: #0a0a0a;
6442 }
6443
6444 @media screen and (min-width: 1024px) {
6445 .navbar.is-white .navbar-start > .navbar-item,
6446 .navbar.is-white .navbar-start .navbar-link,
6447 .navbar.is-white .navbar-end > .navbar-item,
6448 .navbar.is-white .navbar-end .navbar-link {
6449 color: #0a0a0a;
6450 }
6451 .navbar.is-white .navbar-start > a.navbar-item:hover, .navbar.is-white .navbar-start > a.navbar-item.is-active,
6452 .navbar.is-white .navbar-start .navbar-link:hover,
6453 .navbar.is-white .navbar-start .navbar-link.is-active,
6454 .navbar.is-white .navbar-end > a.navbar-item:hover,
6455 .navbar.is-white .navbar-end > a.navbar-item.is-active,
6456 .navbar.is-white .navbar-end .navbar-link:hover,
6457 .navbar.is-white .navbar-end .navbar-link.is-active {
6458 background-color: #f2f2f2;
6459 color: #0a0a0a;
6460 }
6461 .navbar.is-white .navbar-start .navbar-link::after,
6462 .navbar.is-white .navbar-end .navbar-link::after {
6463 border-color: #0a0a0a;
6464 }
6465 .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
6466 .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
6467 background-color: #f2f2f2;
6468 color: #0a0a0a;
6469 }
6470 .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
6471 background-color: white;
6472 color: #0a0a0a;
6473 }
6474 }
6475
6476 .navbar.is-black {
6477 background-color: #0a0a0a;
6478 color: white;
6479 }
6480
6481 .navbar.is-black .navbar-brand > .navbar-item,
6482 .navbar.is-black .navbar-brand .navbar-link {
6483 color: white;
6484 }
6485
6486 .navbar.is-black .navbar-brand > a.navbar-item:hover, .navbar.is-black .navbar-brand > a.navbar-item.is-active,
6487 .navbar.is-black .navbar-brand .navbar-link:hover,
6488 .navbar.is-black .navbar-brand .navbar-link.is-active {
6489 background-color: black;
6490 color: white;
6491 }
6492
6493 .navbar.is-black .navbar-brand .navbar-link::after {
6494 border-color: white;
6495 }
6496
6497 @media screen and (min-width: 1024px) {
6498 .navbar.is-black .navbar-start > .navbar-item,
6499 .navbar.is-black .navbar-start .navbar-link,
6500 .navbar.is-black .navbar-end > .navbar-item,
6501 .navbar.is-black .navbar-end .navbar-link {
6502 color: white;
6503 }
6504 .navbar.is-black .navbar-start > a.navbar-item:hover, .navbar.is-black .navbar-start > a.navbar-item.is-active,
6505 .navbar.is-black .navbar-start .navbar-link:hover,
6506 .navbar.is-black .navbar-start .navbar-link.is-active,
6507 .navbar.is-black .navbar-end > a.navbar-item:hover,
6508 .navbar.is-black .navbar-end > a.navbar-item.is-active,
6509 .navbar.is-black .navbar-end .navbar-link:hover,
6510 .navbar.is-black .navbar-end .navbar-link.is-active {
6511 background-color: black;
6512 color: white;
6513 }
6514 .navbar.is-black .navbar-start .navbar-link::after,
6515 .navbar.is-black .navbar-end .navbar-link::after {
6516 border-color: white;
6517 }
6518 .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
6519 .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
6520 background-color: black;
6521 color: white;
6522 }
6523 .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
6524 background-color: #0a0a0a;
6525 color: white;
6526 }
6527 }
6528
6529 .navbar.is-light {
6530 background-color: whitesmoke;
6531 color: #363636;
6532 }
6533
6534 .navbar.is-light .navbar-brand > .navbar-item,
6535 .navbar.is-light .navbar-brand .navbar-link {
6536 color: #363636;
6537 }
6538
6539 .navbar.is-light .navbar-brand > a.navbar-item:hover, .navbar.is-light .navbar-brand > a.navbar-item.is-active,
6540 .navbar.is-light .navbar-brand .navbar-link:hover,
6541 .navbar.is-light .navbar-brand .navbar-link.is-active {
6542 background-color: #e8e8e8;
6543 color: #363636;
6544 }
6545
6546 .navbar.is-light .navbar-brand .navbar-link::after {
6547 border-color: #363636;
6548 }
6549
6550 @media screen and (min-width: 1024px) {
6551 .navbar.is-light .navbar-start > .navbar-item,
6552 .navbar.is-light .navbar-start .navbar-link,
6553 .navbar.is-light .navbar-end > .navbar-item,
6554 .navbar.is-light .navbar-end .navbar-link {
6555 color: #363636;
6556 }
6557 .navbar.is-light .navbar-start > a.navbar-item:hover, .navbar.is-light .navbar-start > a.navbar-item.is-active,
6558 .navbar.is-light .navbar-start .navbar-link:hover,
6559 .navbar.is-light .navbar-start .navbar-link.is-active,
6560 .navbar.is-light .navbar-end > a.navbar-item:hover,
6561 .navbar.is-light .navbar-end > a.navbar-item.is-active,
6562 .navbar.is-light .navbar-end .navbar-link:hover,
6563 .navbar.is-light .navbar-end .navbar-link.is-active {
6564 background-color: #e8e8e8;
6565 color: #363636;
6566 }
6567 .navbar.is-light .navbar-start .navbar-link::after,
6568 .navbar.is-light .navbar-end .navbar-link::after {
6569 border-color: #363636;
6570 }
6571 .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
6572 .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
6573 background-color: #e8e8e8;
6574 color: #363636;
6575 }
6576 .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
6577 background-color: whitesmoke;
6578 color: #363636;
6579 }
6580 }
6581
6582 .navbar.is-dark {
6583 background-color: #363636;
6584 color: whitesmoke;
6585 }
6586
6587 .navbar.is-dark .navbar-brand > .navbar-item,
6588 .navbar.is-dark .navbar-brand .navbar-link {
6589 color: whitesmoke;
6590 }
6591
6592 .navbar.is-dark .navbar-brand > a.navbar-item:hover, .navbar.is-dark .navbar-brand > a.navbar-item.is-active,
6593 .navbar.is-dark .navbar-brand .navbar-link:hover,
6594 .navbar.is-dark .navbar-brand .navbar-link.is-active {
6595 background-color: #292929;
6596 color: whitesmoke;
6597 }
6598
6599 .navbar.is-dark .navbar-brand .navbar-link::after {
6600 border-color: whitesmoke;
6601 }
6602
6603 @media screen and (min-width: 1024px) {
6604 .navbar.is-dark .navbar-start > .navbar-item,
6605 .navbar.is-dark .navbar-start .navbar-link,
6606 .navbar.is-dark .navbar-end > .navbar-item,
6607 .navbar.is-dark .navbar-end .navbar-link {
6608 color: whitesmoke;
6609 }
6610 .navbar.is-dark .navbar-start > a.navbar-item:hover, .navbar.is-dark .navbar-start > a.navbar-item.is-active,
6611 .navbar.is-dark .navbar-start .navbar-link:hover,
6612 .navbar.is-dark .navbar-start .navbar-link.is-active,
6613 .navbar.is-dark .navbar-end > a.navbar-item:hover,
6614 .navbar.is-dark .navbar-end > a.navbar-item.is-active,
6615 .navbar.is-dark .navbar-end .navbar-link:hover,
6616 .navbar.is-dark .navbar-end .navbar-link.is-active {
6617 background-color: #292929;
6618 color: whitesmoke;
6619 }
6620 .navbar.is-dark .navbar-start .navbar-link::after,
6621 .navbar.is-dark .navbar-end .navbar-link::after {
6622 border-color: whitesmoke;
6623 }
6624 .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
6625 .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
6626 background-color: #292929;
6627 color: whitesmoke;
6628 }
6629 .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
6630 background-color: #363636;
6631 color: whitesmoke;
6632 }
6633 }
6634
6635 .navbar.is-primary {
6636 background-color: #00d1b2;
6637 color: #fff;
6638 }
6639
6640 .navbar.is-primary .navbar-brand > .navbar-item,
6641 .navbar.is-primary .navbar-brand .navbar-link {
6642 color: #fff;
6643 }
6644
6645 .navbar.is-primary .navbar-brand > a.navbar-item:hover, .navbar.is-primary .navbar-brand > a.navbar-item.is-active,
6646 .navbar.is-primary .navbar-brand .navbar-link:hover,
6647 .navbar.is-primary .navbar-brand .navbar-link.is-active {
6648 background-color: #00b89c;
6649 color: #fff;
6650 }
6651
6652 .navbar.is-primary .navbar-brand .navbar-link::after {
6653 border-color: #fff;
6654 }
6655
6656 @media screen and (min-width: 1024px) {
6657 .navbar.is-primary .navbar-start > .navbar-item,
6658 .navbar.is-primary .navbar-start .navbar-link,
6659 .navbar.is-primary .navbar-end > .navbar-item,
6660 .navbar.is-primary .navbar-end .navbar-link {
6661 color: #fff;
6662 }
6663 .navbar.is-primary .navbar-start > a.navbar-item:hover, .navbar.is-primary .navbar-start > a.navbar-item.is-active,
6664 .navbar.is-primary .navbar-start .navbar-link:hover,
6665 .navbar.is-primary .navbar-start .navbar-link.is-active,
6666 .navbar.is-primary .navbar-end > a.navbar-item:hover,
6667 .navbar.is-primary .navbar-end > a.navbar-item.is-active,
6668 .navbar.is-primary .navbar-end .navbar-link:hover,
6669 .navbar.is-primary .navbar-end .navbar-link.is-active {
6670 background-color: #00b89c;
6671 color: #fff;
6672 }
6673 .navbar.is-primary .navbar-start .navbar-link::after,
6674 .navbar.is-primary .navbar-end .navbar-link::after {
6675 border-color: #fff;
6676 }
6677 .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
6678 .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
6679 background-color: #00b89c;
6680 color: #fff;
6681 }
6682 .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
6683 background-color: #00d1b2;
6684 color: #fff;
6685 }
6686 }
6687
6688 .navbar.is-link {
6689 background-color: #3273dc;
6690 color: #fff;
6691 }
6692
6693 .navbar.is-link .navbar-brand > .navbar-item,
6694 .navbar.is-link .navbar-brand .navbar-link {
6695 color: #fff;
6696 }
6697
6698 .navbar.is-link .navbar-brand > a.navbar-item:hover, .navbar.is-link .navbar-brand > a.navbar-item.is-active,
6699 .navbar.is-link .navbar-brand .navbar-link:hover,
6700 .navbar.is-link .navbar-brand .navbar-link.is-active {
6701 background-color: #2366d1;
6702 color: #fff;
6703 }
6704
6705 .navbar.is-link .navbar-brand .navbar-link::after {
6706 border-color: #fff;
6707 }
6708
6709 @media screen and (min-width: 1024px) {
6710 .navbar.is-link .navbar-start > .navbar-item,
6711 .navbar.is-link .navbar-start .navbar-link,
6712 .navbar.is-link .navbar-end > .navbar-item,
6713 .navbar.is-link .navbar-end .navbar-link {
6714 color: #fff;
6715 }
6716 .navbar.is-link .navbar-start > a.navbar-item:hover, .navbar.is-link .navbar-start > a.navbar-item.is-active,
6717 .navbar.is-link .navbar-start .navbar-link:hover,
6718 .navbar.is-link .navbar-start .navbar-link.is-active,
6719 .navbar.is-link .navbar-end > a.navbar-item:hover,
6720 .navbar.is-link .navbar-end > a.navbar-item.is-active,
6721 .navbar.is-link .navbar-end .navbar-link:hover,
6722 .navbar.is-link .navbar-end .navbar-link.is-active {
6723 background-color: #2366d1;
6724 color: #fff;
6725 }
6726 .navbar.is-link .navbar-start .navbar-link::after,
6727 .navbar.is-link .navbar-end .navbar-link::after {
6728 border-color: #fff;
6729 }
6730 .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
6731 .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
6732 background-color: #2366d1;
6733 color: #fff;
6734 }
6735 .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
6736 background-color: #3273dc;
6737 color: #fff;
6738 }
6739 }
6740
6741 .navbar.is-info {
6742 background-color: #209cee;
6743 color: #fff;
6744 }
6745
6746 .navbar.is-info .navbar-brand > .navbar-item,
6747 .navbar.is-info .navbar-brand .navbar-link {
6748 color: #fff;
6749 }
6750
6751 .navbar.is-info .navbar-brand > a.navbar-item:hover, .navbar.is-info .navbar-brand > a.navbar-item.is-active,
6752 .navbar.is-info .navbar-brand .navbar-link:hover,
6753 .navbar.is-info .navbar-brand .navbar-link.is-active {
6754 background-color: #118fe4;
6755 color: #fff;
6756 }
6757
6758 .navbar.is-info .navbar-brand .navbar-link::after {
6759 border-color: #fff;
6760 }
6761
6762 @media screen and (min-width: 1024px) {
6763 .navbar.is-info .navbar-start > .navbar-item,
6764 .navbar.is-info .navbar-start .navbar-link,
6765 .navbar.is-info .navbar-end > .navbar-item,
6766 .navbar.is-info .navbar-end .navbar-link {
6767 color: #fff;
6768 }
6769 .navbar.is-info .navbar-start > a.navbar-item:hover, .navbar.is-info .navbar-start > a.navbar-item.is-active,
6770 .navbar.is-info .navbar-start .navbar-link:hover,
6771 .navbar.is-info .navbar-start .navbar-link.is-active,
6772 .navbar.is-info .navbar-end > a.navbar-item:hover,
6773 .navbar.is-info .navbar-end > a.navbar-item.is-active,
6774 .navbar.is-info .navbar-end .navbar-link:hover,
6775 .navbar.is-info .navbar-end .navbar-link.is-active {
6776 background-color: #118fe4;
6777 color: #fff;
6778 }
6779 .navbar.is-info .navbar-start .navbar-link::after,
6780 .navbar.is-info .navbar-end .navbar-link::after {
6781 border-color: #fff;
6782 }
6783 .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
6784 .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
6785 background-color: #118fe4;
6786 color: #fff;
6787 }
6788 .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
6789 background-color: #209cee;
6790 color: #fff;
6791 }
6792 }
6793
6794 .navbar.is-success {
6795 background-color: #23d160;
6796 color: #fff;
6797 }
6798
6799 .navbar.is-success .navbar-brand > .navbar-item,
6800 .navbar.is-success .navbar-brand .navbar-link {
6801 color: #fff;
6802 }
6803
6804 .navbar.is-success .navbar-brand > a.navbar-item:hover, .navbar.is-success .navbar-brand > a.navbar-item.is-active,
6805 .navbar.is-success .navbar-brand .navbar-link:hover,
6806 .navbar.is-success .navbar-brand .navbar-link.is-active {
6807 background-color: #20bc56;
6808 color: #fff;
6809 }
6810
6811 .navbar.is-success .navbar-brand .navbar-link::after {
6812 border-color: #fff;
6813 }
6814
6815 @media screen and (min-width: 1024px) {
6816 .navbar.is-success .navbar-start > .navbar-item,
6817 .navbar.is-success .navbar-start .navbar-link,
6818 .navbar.is-success .navbar-end > .navbar-item,
6819 .navbar.is-success .navbar-end .navbar-link {
6820 color: #fff;
6821 }
6822 .navbar.is-success .navbar-start > a.navbar-item:hover, .navbar.is-success .navbar-start > a.navbar-item.is-active,
6823 .navbar.is-success .navbar-start .navbar-link:hover,
6824 .navbar.is-success .navbar-start .navbar-link.is-active,
6825 .navbar.is-success .navbar-end > a.navbar-item:hover,
6826 .navbar.is-success .navbar-end > a.navbar-item.is-active,
6827 .navbar.is-success .navbar-end .navbar-link:hover,
6828 .navbar.is-success .navbar-end .navbar-link.is-active {
6829 background-color: #20bc56;
6830 color: #fff;
6831 }
6832 .navbar.is-success .navbar-start .navbar-link::after,
6833 .navbar.is-success .navbar-end .navbar-link::after {
6834 border-color: #fff;
6835 }
6836 .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
6837 .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
6838 background-color: #20bc56;
6839 color: #fff;
6840 }
6841 .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
6842 background-color: #23d160;
6843 color: #fff;
6844 }
6845 }
6846
6847 .navbar.is-warning {
6848 background-color: #ffdd57;
6849 color: rgba(0, 0, 0, 0.7);
6850 }
6851
6852 .navbar.is-warning .navbar-brand > .navbar-item,
6853 .navbar.is-warning .navbar-brand .navbar-link {
6854 color: rgba(0, 0, 0, 0.7);
6855 }
6856
6857 .navbar.is-warning .navbar-brand > a.navbar-item:hover, .navbar.is-warning .navbar-brand > a.navbar-item.is-active,
6858 .navbar.is-warning .navbar-brand .navbar-link:hover,
6859 .navbar.is-warning .navbar-brand .navbar-link.is-active {
6860 background-color: #ffd83d;
6861 color: rgba(0, 0, 0, 0.7);
6862 }
6863
6864 .navbar.is-warning .navbar-brand .navbar-link::after {
6865 border-color: rgba(0, 0, 0, 0.7);
6866 }
6867
6868 @media screen and (min-width: 1024px) {
6869 .navbar.is-warning .navbar-start > .navbar-item,
6870 .navbar.is-warning .navbar-start .navbar-link,
6871 .navbar.is-warning .navbar-end > .navbar-item,
6872 .navbar.is-warning .navbar-end .navbar-link {
6873 color: rgba(0, 0, 0, 0.7);
6874 }
6875 .navbar.is-warning .navbar-start > a.navbar-item:hover, .navbar.is-warning .navbar-start > a.navbar-item.is-active,
6876 .navbar.is-warning .navbar-start .navbar-link:hover,
6877 .navbar.is-warning .navbar-start .navbar-link.is-active,
6878 .navbar.is-warning .navbar-end > a.navbar-item:hover,
6879 .navbar.is-warning .navbar-end > a.navbar-item.is-active,
6880 .navbar.is-warning .navbar-end .navbar-link:hover,
6881 .navbar.is-warning .navbar-end .navbar-link.is-active {
6882 background-color: #ffd83d;
6883 color: rgba(0, 0, 0, 0.7);
6884 }
6885 .navbar.is-warning .navbar-start .navbar-link::after,
6886 .navbar.is-warning .navbar-end .navbar-link::after {
6887 border-color: rgba(0, 0, 0, 0.7);
6888 }
6889 .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
6890 .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
6891 background-color: #ffd83d;
6892 color: rgba(0, 0, 0, 0.7);
6893 }
6894 .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
6895 background-color: #ffdd57;
6896 color: rgba(0, 0, 0, 0.7);
6897 }
6898 }
6899
6900 .navbar.is-danger {
6901 background-color: #ff3860;
6902 color: #fff;
6903 }
6904
6905 .navbar.is-danger .navbar-brand > .navbar-item,
6906 .navbar.is-danger .navbar-brand .navbar-link {
6907 color: #fff;
6908 }
6909
6910 .navbar.is-danger .navbar-brand > a.navbar-item:hover, .navbar.is-danger .navbar-brand > a.navbar-item.is-active,
6911 .navbar.is-danger .navbar-brand .navbar-link:hover,
6912 .navbar.is-danger .navbar-brand .navbar-link.is-active {
6913 background-color: #ff1f4b;
6914 color: #fff;
6915 }
6916
6917 .navbar.is-danger .navbar-brand .navbar-link::after {
6918 border-color: #fff;
6919 }
6920
6921 @media screen and (min-width: 1024px) {
6922 .navbar.is-danger .navbar-start > .navbar-item,
6923 .navbar.is-danger .navbar-start .navbar-link,
6924 .navbar.is-danger .navbar-end > .navbar-item,
6925 .navbar.is-danger .navbar-end .navbar-link {
6926 color: #fff;
6927 }
6928 .navbar.is-danger .navbar-start > a.navbar-item:hover, .navbar.is-danger .navbar-start > a.navbar-item.is-active,
6929 .navbar.is-danger .navbar-start .navbar-link:hover,
6930 .navbar.is-danger .navbar-start .navbar-link.is-active,
6931 .navbar.is-danger .navbar-end > a.navbar-item:hover,
6932 .navbar.is-danger .navbar-end > a.navbar-item.is-active,
6933 .navbar.is-danger .navbar-end .navbar-link:hover,
6934 .navbar.is-danger .navbar-end .navbar-link.is-active {
6935 background-color: #ff1f4b;
6936 color: #fff;
6937 }
6938 .navbar.is-danger .navbar-start .navbar-link::after,
6939 .navbar.is-danger .navbar-end .navbar-link::after {
6940 border-color: #fff;
6941 }
6942 .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
6943 .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
6944 background-color: #ff1f4b;
6945 color: #fff;
6946 }
6947 .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
6948 background-color: #ff3860;
6949 color: #fff;
6950 }
6951 }
6952
6953 .navbar > .container {
6954 -webkit-box-align: stretch;
6955 -ms-flex-align: stretch;
6956 align-items: stretch;
6957 display: -webkit-box;
6958 display: -ms-flexbox;
6959 display: flex;
6960 min-height: 3.25rem;
6961 width: 100%;
6962 }
6963
6964 .navbar.has-shadow {
6965 -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
6966 box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
6967 }
6968
6969 .navbar.is-fixed-bottom, .navbar.is-fixed-top {
6970 left: 0;
6971 position: fixed;
6972 right: 0;
6973 z-index: 30;
6974 }
6975
6976 .navbar.is-fixed-bottom {
6977 bottom: 0;
6978 }
6979
6980 .navbar.is-fixed-bottom.has-shadow {
6981 -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
6982 box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
6983 }
6984
6985 .navbar.is-fixed-top {
6986 top: 0;
6987 }
6988
6989 html.has-navbar-fixed-top {
6990 padding-top: 3.25rem;
6991 }
6992
6993 html.has-navbar-fixed-bottom {
6994 padding-bottom: 3.25rem;
6995 }
6996
6997 .navbar-brand,
6998 .navbar-tabs {
6999 -webkit-box-align: stretch;
7000 -ms-flex-align: stretch;
7001 align-items: stretch;
7002 display: -webkit-box;
7003 display: -ms-flexbox;
7004 display: flex;
7005 -ms-flex-negative: 0;
7006 flex-shrink: 0;
7007 min-height: 3.25rem;
7008 }
7009
7010 .navbar-tabs {
7011 -webkit-overflow-scrolling: touch;
7012 max-width: 100vw;
7013 overflow-x: auto;
7014 overflow-y: hidden;
7015 }
7016
7017 .navbar-burger {
7018 cursor: pointer;
7019 display: block;
7020 height: 3.25rem;
7021 position: relative;
7022 width: 3.25rem;
7023 margin-left: auto;
7024 }
7025
7026 .navbar-burger span {
7027 background-color: currentColor;
7028 display: block;
7029 height: 1px;
7030 left: calc(50% - 8px);
7031 position: absolute;
7032 -webkit-transform-origin: center;
7033 transform-origin: center;
7034 -webkit-transition-duration: 86ms;
7035 transition-duration: 86ms;
7036 -webkit-transition-property: background-color, opacity, -webkit-transform;
7037 transition-property: background-color, opacity, -webkit-transform;
7038 transition-property: background-color, opacity, transform;
7039 transition-property: background-color, opacity, transform, -webkit-transform;
7040 -webkit-transition-timing-function: ease-out;
7041 transition-timing-function: ease-out;
7042 width: 16px;
7043 }
7044
7045 .navbar-burger span:nth-child(1) {
7046 top: calc(50% - 6px);
7047 }
7048
7049 .navbar-burger span:nth-child(2) {
7050 top: calc(50% - 1px);
7051 }
7052
7053 .navbar-burger span:nth-child(3) {
7054 top: calc(50% + 4px);
7055 }
7056
7057 .navbar-burger:hover {
7058 background-color: rgba(0, 0, 0, 0.05);
7059 }
7060
7061 .navbar-burger.is-active span:nth-child(1) {
7062 -webkit-transform: translateY(5px) rotate(45deg);
7063 transform: translateY(5px) rotate(45deg);
7064 }
7065
7066 .navbar-burger.is-active span:nth-child(2) {
7067 opacity: 0;
7068 }
7069
7070 .navbar-burger.is-active span:nth-child(3) {
7071 -webkit-transform: translateY(-5px) rotate(-45deg);
7072 transform: translateY(-5px) rotate(-45deg);
7073 }
7074
7075 .navbar-menu {
7076 display: none;
7077 }
7078
7079 .navbar-item,
7080 .navbar-link {
7081 color: #4a4a4a;
7082 display: block;
7083 line-height: 1.5;
7084 padding: 0.5rem 1rem;
7085 position: relative;
7086 }
7087
7088 a.navbar-item:hover, a.navbar-item.is-active,
7089 a.navbar-link:hover,
7090 a.navbar-link.is-active {
7091 background-color: whitesmoke;
7092 color: #3273dc;
7093 }
7094
7095 .navbar-item {
7096 -webkit-box-flex: 0;
7097 -ms-flex-positive: 0;
7098 flex-grow: 0;
7099 -ms-flex-negative: 0;
7100 flex-shrink: 0;
7101 }
7102
7103 .navbar-item img {
7104 max-height: 1.75rem;
7105 }
7106
7107 .navbar-item.has-dropdown {
7108 padding: 0;
7109 }
7110
7111 .navbar-item.is-expanded {
7112 -webkit-box-flex: 1;
7113 -ms-flex-positive: 1;
7114 flex-grow: 1;
7115 -ms-flex-negative: 1;
7116 flex-shrink: 1;
7117 }
7118
7119 .navbar-item.is-tab {
7120 border-bottom: 1px solid transparent;
7121 min-height: 3.25rem;
7122 padding-bottom: calc(0.5rem - 1px);
7123 }
7124
7125 .navbar-item.is-tab:hover {
7126 background-color: transparent;
7127 border-bottom-color: #3273dc;
7128 }
7129
7130 .navbar-item.is-tab.is-active {
7131 background-color: transparent;
7132 border-bottom-color: #3273dc;
7133 border-bottom-style: solid;
7134 border-bottom-width: 3px;
7135 color: #3273dc;
7136 padding-bottom: calc(0.5rem - 3px);
7137 }
7138
7139 .navbar-content {
7140 -webkit-box-flex: 1;
7141 -ms-flex-positive: 1;
7142 flex-grow: 1;
7143 -ms-flex-negative: 1;
7144 flex-shrink: 1;
7145 }
7146
7147 .navbar-link {
7148 padding-right: 2.5em;
7149 }
7150
7151 .navbar-dropdown {
7152 font-size: 0.875rem;
7153 padding-bottom: 0.5rem;
7154 padding-top: 0.5rem;
7155 }
7156
7157 .navbar-dropdown .navbar-item {
7158 padding-left: 1.5rem;
7159 padding-right: 1.5rem;
7160 }
7161
7162 .navbar-divider {
7163 background-color: #dbdbdb;
7164 border: none;
7165 display: none;
7166 height: 1px;
7167 margin: 0.5rem 0;
7168 }
7169
7170 @media screen and (max-width: 1023px) {
7171 .navbar > .container {
7172 display: block;
7173 }
7174 .navbar-brand .navbar-item,
7175 .navbar-tabs .navbar-item {
7176 -webkit-box-align: center;
7177 -ms-flex-align: center;
7178 align-items: center;
7179 display: -webkit-box;
7180 display: -ms-flexbox;
7181 display: flex;
7182 }
7183 .navbar-menu {
7184 background-color: white;
7185 -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
7186 box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
7187 padding: 0.5rem 0;
7188 }
7189 .navbar-menu.is-active {
7190 display: block;
7191 }
7192 .navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
7193 left: 0;
7194 position: fixed;
7195 right: 0;
7196 z-index: 30;
7197 }
7198 .navbar.is-fixed-bottom-touch {
7199 bottom: 0;
7200 }
7201 .navbar.is-fixed-bottom-touch.has-shadow {
7202 -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
7203 box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
7204 }
7205 .navbar.is-fixed-top-touch {
7206 top: 0;
7207 }
7208 .navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
7209 -webkit-overflow-scrolling: touch;
7210 max-height: calc(100vh - 3.25rem);
7211 overflow: auto;
7212 }
7213 html.has-navbar-fixed-top-touch {
7214 padding-top: 3.25rem;
7215 }
7216 html.has-navbar-fixed-bottom-touch {
7217 padding-bottom: 3.25rem;
7218 }
7219 }
7220
7221 @media screen and (min-width: 1024px) {
7222 .navbar,
7223 .navbar-menu,
7224 .navbar-start,
7225 .navbar-end {
7226 -webkit-box-align: stretch;
7227 -ms-flex-align: stretch;
7228 align-items: stretch;
7229 display: -webkit-box;
7230 display: -ms-flexbox;
7231 display: flex;
7232 }
7233 .navbar {
7234 min-height: 3.25rem;
7235 }
7236 .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
7237 .navbar.is-transparent a.navbar-link:hover,
7238 .navbar.is-transparent a.navbar-link.is-active {
7239 background-color: transparent !important;
7240 }
7241 .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
7242 background-color: transparent !important;
7243 }
7244 .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
7245 background-color: whitesmoke;
7246 color: #0a0a0a;
7247 }
7248 .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
7249 background-color: whitesmoke;
7250 color: #3273dc;
7251 }
7252 .navbar-burger {
7253 display: none;
7254 }
7255 .navbar-item,
7256 .navbar-link {
7257 -webkit-box-align: center;
7258 -ms-flex-align: center;
7259 align-items: center;
7260 display: -webkit-box;
7261 display: -ms-flexbox;
7262 display: flex;
7263 }
7264 .navbar-item.has-dropdown {
7265 -webkit-box-align: stretch;
7266 -ms-flex-align: stretch;
7267 align-items: stretch;
7268 }
7269 .navbar-item.has-dropdown-up .navbar-link::after {
7270 -webkit-transform: rotate(135deg) translate(0.25em, -0.25em);
7271 transform: rotate(135deg) translate(0.25em, -0.25em);
7272 }
7273 .navbar-item.has-dropdown-up .navbar-dropdown {
7274 border-bottom: 1px solid #dbdbdb;
7275 border-radius: 5px 5px 0 0;
7276 border-top: none;
7277 bottom: 100%;
7278 -webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
7279 box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
7280 top: auto;
7281 }
7282 .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
7283 display: block;
7284 }
7285 .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
7286 opacity: 1;
7287 pointer-events: auto;
7288 -webkit-transform: translateY(0);
7289 transform: translateY(0);
7290 }
7291 .navbar-link::after {
7292 border: 1px solid #3273dc;
7293 border-right: 0;
7294 border-top: 0;
7295 content: " ";
7296 display: block;
7297 height: 0.5em;
7298 pointer-events: none;
7299 position: absolute;
7300 -webkit-transform: rotate(-45deg);
7301 transform: rotate(-45deg);
7302 -webkit-transform-origin: center;
7303 transform-origin: center;
7304 width: 0.5em;
7305 margin-top: -0.375em;
7306 right: 1.125em;
7307 top: 50%;
7308 }
7309 .navbar-menu {
7310 -webkit-box-flex: 1;
7311 -ms-flex-positive: 1;
7312 flex-grow: 1;
7313 -ms-flex-negative: 0;
7314 flex-shrink: 0;
7315 }
7316 .navbar-start {
7317 -webkit-box-pack: start;
7318 -ms-flex-pack: start;
7319 justify-content: flex-start;
7320 margin-right: auto;
7321 }
7322 .navbar-end {
7323 -webkit-box-pack: end;
7324 -ms-flex-pack: end;
7325 justify-content: flex-end;
7326 margin-left: auto;
7327 }
7328 .navbar-dropdown {
7329 background-color: white;
7330 border-bottom-left-radius: 5px;
7331 border-bottom-right-radius: 5px;
7332 border-top: 1px solid #dbdbdb;
7333 -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
7334 box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
7335 display: none;
7336 font-size: 0.875rem;
7337 left: 0;
7338 min-width: 100%;
7339 position: absolute;
7340 top: 100%;
7341 z-index: 20;
7342 }
7343 .navbar-dropdown .navbar-item {
7344 padding: 0.375rem 1rem;
7345 white-space: nowrap;
7346 }
7347 .navbar-dropdown a.navbar-item {
7348 padding-right: 3rem;
7349 }
7350 .navbar-dropdown a.navbar-item:hover {
7351 background-color: whitesmoke;
7352 color: #0a0a0a;
7353 }
7354 .navbar-dropdown a.navbar-item.is-active {
7355 background-color: whitesmoke;
7356 color: #3273dc;
7357 }
7358 .navbar-dropdown.is-boxed {
7359 border-radius: 5px;
7360 border-top: none;
7361 -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
7362 box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
7363 display: block;
7364 opacity: 0;
7365 pointer-events: none;
7366 top: calc(100% + (-4px));
7367 -webkit-transform: translateY(-5px);
7368 transform: translateY(-5px);
7369 -webkit-transition-duration: 86ms;
7370 transition-duration: 86ms;
7371 -webkit-transition-property: opacity, -webkit-transform;
7372 transition-property: opacity, -webkit-transform;
7373 transition-property: opacity, transform;
7374 transition-property: opacity, transform, -webkit-transform;
7375 }
7376 .navbar-dropdown.is-right {
7377 left: auto;
7378 right: 0;
7379 }
7380 .navbar-divider {
7381 display: block;
7382 }
7383 .navbar > .container .navbar-brand,
7384 .container > .navbar .navbar-brand {
7385 margin-left: -1rem;
7386 }
7387 .navbar > .container .navbar-menu,
7388 .container > .navbar .navbar-menu {
7389 margin-right: -1rem;
7390 }
7391 .navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
7392 left: 0;
7393 position: fixed;
7394 right: 0;
7395 z-index: 30;
7396 }
7397 .navbar.is-fixed-bottom-desktop {
7398 bottom: 0;
7399 }
7400 .navbar.is-fixed-bottom-desktop.has-shadow {
7401 -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
7402 box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
7403 }
7404 .navbar.is-fixed-top-desktop {
7405 top: 0;
7406 }
7407 html.has-navbar-fixed-top-desktop {
7408 padding-top: 3.25rem;
7409 }
7410 html.has-navbar-fixed-bottom-desktop {
7411 padding-bottom: 3.25rem;
7412 }
7413 a.navbar-item.is-active,
7414 a.navbar-link.is-active {
7415 color: #0a0a0a;
7416 }
7417 a.navbar-item.is-active:not(:hover),
7418 a.navbar-link.is-active:not(:hover) {
7419 background-color: transparent;
7420 }
7421 .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
7422 background-color: whitesmoke;
7423 }
7424 }
7425
7426 .pagination {
7427 font-size: 1rem;
7428 margin: -0.25rem;
7429 }
7430
7431 .pagination.is-small {
7432 font-size: 0.75rem;
7433 }
7434
7435 .pagination.is-medium {
7436 font-size: 1.25rem;
7437 }
7438
7439 .pagination.is-large {
7440 font-size: 1.5rem;
7441 }
7442
7443 .pagination,
7444 .pagination-list {
7445 -webkit-box-align: center;
7446 -ms-flex-align: center;
7447 align-items: center;
7448 display: -webkit-box;
7449 display: -ms-flexbox;
7450 display: flex;
7451 -webkit-box-pack: center;
7452 -ms-flex-pack: center;
7453 justify-content: center;
7454 text-align: center;
7455 }
7456
7457 .pagination-previous,
7458 .pagination-next,
7459 .pagination-link,
7460 .pagination-ellipsis {
7461 -moz-appearance: none;
7462 -webkit-appearance: none;
7463 -webkit-box-align: center;
7464 -ms-flex-align: center;
7465 align-items: center;
7466 border: 1px solid transparent;
7467 border-radius: 3px;
7468 -webkit-box-shadow: none;
7469 box-shadow: none;
7470 display: -webkit-inline-box;
7471 display: -ms-inline-flexbox;
7472 display: inline-flex;
7473 font-size: 1rem;
7474 height: 2.25em;
7475 -webkit-box-pack: start;
7476 -ms-flex-pack: start;
7477 justify-content: flex-start;
7478 line-height: 1.5;
7479 padding-bottom: calc(0.375em - 1px);
7480 padding-left: calc(0.625em - 1px);
7481 padding-right: calc(0.625em - 1px);
7482 padding-top: calc(0.375em - 1px);
7483 position: relative;
7484 vertical-align: top;
7485 -webkit-touch-callout: none;
7486 -webkit-user-select: none;
7487 -moz-user-select: none;
7488 -ms-user-select: none;
7489 user-select: none;
7490 font-size: 1em;
7491 padding-left: 0.5em;
7492 padding-right: 0.5em;
7493 -webkit-box-pack: center;
7494 -ms-flex-pack: center;
7495 justify-content: center;
7496 margin: 0.25rem;
7497 text-align: center;
7498 }
7499
7500 .pagination-previous:focus, .pagination-previous.is-focused, .pagination-previous:active, .pagination-previous.is-active,
7501 .pagination-next:focus,
7502 .pagination-next.is-focused,
7503 .pagination-next:active,
7504 .pagination-next.is-active,
7505 .pagination-link:focus,
7506 .pagination-link.is-focused,
7507 .pagination-link:active,
7508 .pagination-link.is-active,
7509 .pagination-ellipsis:focus,
7510 .pagination-ellipsis.is-focused,
7511 .pagination-ellipsis:active,
7512 .pagination-ellipsis.is-active {
7513 outline: none;
7514 }
7515
7516 .pagination-previous[disabled],
7517 .pagination-next[disabled],
7518 .pagination-link[disabled],
7519 .pagination-ellipsis[disabled] {
7520 cursor: not-allowed;
7521 }
7522
7523 .pagination-previous,
7524 .pagination-next,
7525 .pagination-link {
7526 border-color: #dbdbdb;
7527 min-width: 2.25em;
7528 }
7529
7530 .pagination-previous:hover,
7531 .pagination-next:hover,
7532 .pagination-link:hover {
7533 border-color: #b5b5b5;
7534 color: #363636;
7535 }
7536
7537 .pagination-previous:focus,
7538 .pagination-next:focus,
7539 .pagination-link:focus {
7540 border-color: #3273dc;
7541 }
7542
7543 .pagination-previous:active,
7544 .pagination-next:active,
7545 .pagination-link:active {
7546 -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
7547 box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
7548 }
7549
7550 .pagination-previous[disabled],
7551 .pagination-next[disabled],
7552 .pagination-link[disabled] {
7553 background-color: #dbdbdb;
7554 border-color: #dbdbdb;
7555 -webkit-box-shadow: none;
7556 box-shadow: none;
7557 color: #7a7a7a;
7558 opacity: 0.5;
7559 }
7560
7561 .pagination-previous,
7562 .pagination-next {
7563 padding-left: 0.75em;
7564 padding-right: 0.75em;
7565 white-space: nowrap;
7566 }
7567
7568 .pagination-link.is-current {
7569 background-color: #3273dc;
7570 border-color: #3273dc;
7571 color: #fff;
7572 }
7573
7574 .pagination-ellipsis {
7575 color: #b5b5b5;
7576 pointer-events: none;
7577 }
7578
7579 .pagination-list {
7580 -ms-flex-wrap: wrap;
7581 flex-wrap: wrap;
7582 }
7583
7584 @media screen and (max-width: 768px) {
7585 .pagination {
7586 -ms-flex-wrap: wrap;
7587 flex-wrap: wrap;
7588 }
7589 .pagination-previous,
7590 .pagination-next {
7591 -webkit-box-flex: 1;
7592 -ms-flex-positive: 1;
7593 flex-grow: 1;
7594 -ms-flex-negative: 1;
7595 flex-shrink: 1;
7596 }
7597 .pagination-list li {
7598 -webkit-box-flex: 1;
7599 -ms-flex-positive: 1;
7600 flex-grow: 1;
7601 -ms-flex-negative: 1;
7602 flex-shrink: 1;
7603 }
7604 }
7605
7606 @media screen and (min-width: 769px), print {
7607 .pagination-list {
7608 -webkit-box-flex: 1;
7609 -ms-flex-positive: 1;
7610 flex-grow: 1;
7611 -ms-flex-negative: 1;
7612 flex-shrink: 1;
7613 -webkit-box-pack: start;
7614 -ms-flex-pack: start;
7615 justify-content: flex-start;
7616 -webkit-box-ordinal-group: 2;
7617 -ms-flex-order: 1;
7618 order: 1;
7619 }
7620 .pagination-previous {
7621 -webkit-box-ordinal-group: 3;
7622 -ms-flex-order: 2;
7623 order: 2;
7624 }
7625 .pagination-next {
7626 -webkit-box-ordinal-group: 4;
7627 -ms-flex-order: 3;
7628 order: 3;
7629 }
7630 .pagination {
7631 -webkit-box-pack: justify;
7632 -ms-flex-pack: justify;
7633 justify-content: space-between;
7634 }
7635 .pagination.is-centered .pagination-previous {
7636 -webkit-box-ordinal-group: 2;
7637 -ms-flex-order: 1;
7638 order: 1;
7639 }
7640 .pagination.is-centered .pagination-list {
7641 -webkit-box-pack: center;
7642 -ms-flex-pack: center;
7643 justify-content: center;
7644 -webkit-box-ordinal-group: 3;
7645 -ms-flex-order: 2;
7646 order: 2;
7647 }
7648 .pagination.is-centered .pagination-next {
7649 -webkit-box-ordinal-group: 4;
7650 -ms-flex-order: 3;
7651 order: 3;
7652 }
7653 .pagination.is-right .pagination-previous {
7654 -webkit-box-ordinal-group: 2;
7655 -ms-flex-order: 1;
7656 order: 1;
7657 }
7658 .pagination.is-right .pagination-next {
7659 -webkit-box-ordinal-group: 3;
7660 -ms-flex-order: 2;
7661 order: 2;
7662 }
7663 .pagination.is-right .pagination-list {
7664 -webkit-box-pack: end;
7665 -ms-flex-pack: end;
7666 justify-content: flex-end;
7667 -webkit-box-ordinal-group: 4;
7668 -ms-flex-order: 3;
7669 order: 3;
7670 }
7671 }
7672
7673 .panel {
7674 font-size: 1rem;
7675 }
7676
7677 .panel:not(:last-child) {
7678 margin-bottom: 1.5rem;
7679 }
7680
7681 .panel-heading,
7682 .panel-tabs,
7683 .panel-block {
7684 border-bottom: 1px solid #dbdbdb;
7685 border-left: 1px solid #dbdbdb;
7686 border-right: 1px solid #dbdbdb;
7687 }
7688
7689 .panel-heading:first-child,
7690 .panel-tabs:first-child,
7691 .panel-block:first-child {
7692 border-top: 1px solid #dbdbdb;
7693 }
7694
7695 .panel-heading {
7696 background-color: whitesmoke;
7697 border-radius: 3px 3px 0 0;
7698 color: #363636;
7699 font-size: 1.25em;
7700 font-weight: 300;
7701 line-height: 1.25;
7702 padding: 0.5em 0.75em;
7703 }
7704
7705 .panel-tabs {
7706 -webkit-box-align: end;
7707 -ms-flex-align: end;
7708 align-items: flex-end;
7709 display: -webkit-box;
7710 display: -ms-flexbox;
7711 display: flex;
7712 font-size: 0.875em;
7713 -webkit-box-pack: center;
7714 -ms-flex-pack: center;
7715 justify-content: center;
7716 }
7717
7718 .panel-tabs a {
7719 border-bottom: 1px solid #dbdbdb;
7720 margin-bottom: -1px;
7721 padding: 0.5em;
7722 }
7723
7724 .panel-tabs a.is-active {
7725 border-bottom-color: #4a4a4a;
7726 color: #363636;
7727 }
7728
7729 .panel-list a {
7730 color: #4a4a4a;
7731 }
7732
7733 .panel-list a:hover {
7734 color: #3273dc;
7735 }
7736
7737 .panel-block {
7738 -webkit-box-align: center;
7739 -ms-flex-align: center;
7740 align-items: center;
7741 color: #363636;
7742 display: -webkit-box;
7743 display: -ms-flexbox;
7744 display: flex;
7745 -webkit-box-pack: start;
7746 -ms-flex-pack: start;
7747 justify-content: flex-start;
7748 padding: 0.5em 0.75em;
7749 }
7750
7751 .panel-block input[type="checkbox"] {
7752 margin-right: 0.75em;
7753 }
7754
7755 .panel-block > .control {
7756 -webkit-box-flex: 1;
7757 -ms-flex-positive: 1;
7758 flex-grow: 1;
7759 -ms-flex-negative: 1;
7760 flex-shrink: 1;
7761 width: 100%;
7762 }
7763
7764 .panel-block.is-wrapped {
7765 -ms-flex-wrap: wrap;
7766 flex-wrap: wrap;
7767 }
7768
7769 .panel-block.is-active {
7770 border-left-color: #3273dc;
7771 color: #363636;
7772 }
7773
7774 .panel-block.is-active .panel-icon {
7775 color: #3273dc;
7776 }
7777
7778 a.panel-block,
7779 label.panel-block {
7780 cursor: pointer;
7781 }
7782
7783 a.panel-block:hover,
7784 label.panel-block:hover {
7785 background-color: whitesmoke;
7786 }
7787
7788 .panel-icon {
7789 display: inline-block;
7790 font-size: 14px;
7791 height: 1em;
7792 line-height: 1em;
7793 text-align: center;
7794 vertical-align: top;
7795 width: 1em;
7796 color: #7a7a7a;
7797 margin-right: 0.75em;
7798 }
7799
7800 .panel-icon .fa {
7801 font-size: inherit;
7802 line-height: inherit;
7803 }
7804
7805 .tabs {
7806 -webkit-overflow-scrolling: touch;
7807 -webkit-touch-callout: none;
7808 -webkit-user-select: none;
7809 -moz-user-select: none;
7810 -ms-user-select: none;
7811 user-select: none;
7812 -webkit-box-align: stretch;
7813 -ms-flex-align: stretch;
7814 align-items: stretch;
7815 display: -webkit-box;
7816 display: -ms-flexbox;
7817 display: flex;
7818 font-size: 1rem;
7819 -webkit-box-pack: justify;
7820 -ms-flex-pack: justify;
7821 justify-content: space-between;
7822 overflow: hidden;
7823 overflow-x: auto;
7824 white-space: nowrap;
7825 }
7826
7827 .tabs:not(:last-child) {
7828 margin-bottom: 1.5rem;
7829 }
7830
7831 .tabs a {
7832 -webkit-box-align: center;
7833 -ms-flex-align: center;
7834 align-items: center;
7835 border-bottom-color: #dbdbdb;
7836 border-bottom-style: solid;
7837 border-bottom-width: 1px;
7838 color: #4a4a4a;
7839 display: -webkit-box;
7840 display: -ms-flexbox;
7841 display: flex;
7842 -webkit-box-pack: center;
7843 -ms-flex-pack: center;
7844 justify-content: center;
7845 margin-bottom: -1px;
7846 padding: 0.5em 1em;
7847 vertical-align: top;
7848 }
7849
7850 .tabs a:hover {
7851 border-bottom-color: #363636;
7852 color: #363636;
7853 }
7854
7855 .tabs li {
7856 display: block;
7857 }
7858
7859 .tabs li.is-active a {
7860 border-bottom-color: #3273dc;
7861 color: #3273dc;
7862 }
7863
7864 .tabs ul {
7865 -webkit-box-align: center;
7866 -ms-flex-align: center;
7867 align-items: center;
7868 border-bottom-color: #dbdbdb;
7869 border-bottom-style: solid;
7870 border-bottom-width: 1px;
7871 display: -webkit-box;
7872 display: -ms-flexbox;
7873 display: flex;
7874 -webkit-box-flex: 1;
7875 -ms-flex-positive: 1;
7876 flex-grow: 1;
7877 -ms-flex-negative: 0;
7878 flex-shrink: 0;
7879 -webkit-box-pack: start;
7880 -ms-flex-pack: start;
7881 justify-content: flex-start;
7882 }
7883
7884 .tabs ul.is-left {
7885 padding-right: 0.75em;
7886 }
7887
7888 .tabs ul.is-center {
7889 -webkit-box-flex: 0;
7890 -ms-flex: none;
7891 flex: none;
7892 -webkit-box-pack: center;
7893 -ms-flex-pack: center;
7894 justify-content: center;
7895 padding-left: 0.75em;
7896 padding-right: 0.75em;
7897 }
7898
7899 .tabs ul.is-right {
7900 -webkit-box-pack: end;
7901 -ms-flex-pack: end;
7902 justify-content: flex-end;
7903 padding-left: 0.75em;
7904 }
7905
7906 .tabs .icon:first-child {
7907 margin-right: 0.5em;
7908 }
7909
7910 .tabs .icon:last-child {
7911 margin-left: 0.5em;
7912 }
7913
7914 .tabs.is-centered ul {
7915 -webkit-box-pack: center;
7916 -ms-flex-pack: center;
7917 justify-content: center;
7918 }
7919
7920 .tabs.is-right ul {
7921 -webkit-box-pack: end;
7922 -ms-flex-pack: end;
7923 justify-content: flex-end;
7924 }
7925
7926 .tabs.is-boxed a {
7927 border: 1px solid transparent;
7928 border-radius: 3px 3px 0 0;
7929 }
7930
7931 .tabs.is-boxed a:hover {
7932 background-color: whitesmoke;
7933 border-bottom-color: #dbdbdb;
7934 }
7935
7936 .tabs.is-boxed li.is-active a {
7937 background-color: white;
7938 border-color: #dbdbdb;
7939 border-bottom-color: transparent !important;
7940 }
7941
7942 .tabs.is-fullwidth li {
7943 -webkit-box-flex: 1;
7944 -ms-flex-positive: 1;
7945 flex-grow: 1;
7946 -ms-flex-negative: 0;
7947 flex-shrink: 0;
7948 }
7949
7950 .tabs.is-toggle a {
7951 border-color: #dbdbdb;
7952 border-style: solid;
7953 border-width: 1px;
7954 margin-bottom: 0;
7955 position: relative;
7956 }
7957
7958 .tabs.is-toggle a:hover {
7959 background-color: whitesmoke;
7960 border-color: #b5b5b5;
7961 z-index: 2;
7962 }
7963
7964 .tabs.is-toggle li + li {
7965 margin-left: -1px;
7966 }
7967
7968 .tabs.is-toggle li:first-child a {
7969 border-radius: 3px 0 0 3px;
7970 }
7971
7972 .tabs.is-toggle li:last-child a {
7973 border-radius: 0 3px 3px 0;
7974 }
7975
7976 .tabs.is-toggle li.is-active a {
7977 background-color: #3273dc;
7978 border-color: #3273dc;
7979 color: #fff;
7980 z-index: 1;
7981 }
7982
7983 .tabs.is-toggle ul {
7984 border-bottom: none;
7985 }
7986
7987 .tabs.is-small {
7988 font-size: 0.75rem;
7989 }
7990
7991 .tabs.is-medium {
7992 font-size: 1.25rem;
7993 }
7994
7995 .tabs.is-large {
7996 font-size: 1.5rem;
7997 }
7998
7999 .column {
8000 display: block;
8001 -ms-flex-preferred-size: 0;
8002 flex-basis: 0;
8003 -webkit-box-flex: 1;
8004 -ms-flex-positive: 1;
8005 flex-grow: 1;
8006 -ms-flex-negative: 1;
8007 flex-shrink: 1;
8008 padding: 0.75rem;
8009 }
8010
8011 .columns.is-mobile > .column.is-narrow {
8012 -webkit-box-flex: 0;
8013 -ms-flex: none;
8014 flex: none;
8015 }
8016
8017 .columns.is-mobile > .column.is-full {
8018 -webkit-box-flex: 0;
8019 -ms-flex: none;
8020 flex: none;
8021 width: 100%;
8022 }
8023
8024 .columns.is-mobile > .column.is-three-quarters {
8025 -webkit-box-flex: 0;
8026 -ms-flex: none;
8027 flex: none;
8028 width: 75%;
8029 }
8030
8031 .columns.is-mobile > .column.is-two-thirds {
8032 -webkit-box-flex: 0;
8033 -ms-flex: none;
8034 flex: none;
8035 width: 66.6666%;
8036 }
8037
8038 .columns.is-mobile > .column.is-half {
8039 -webkit-box-flex: 0;
8040 -ms-flex: none;
8041 flex: none;
8042 width: 50%;
8043 }
8044
8045 .columns.is-mobile > .column.is-one-third {
8046 -webkit-box-flex: 0;
8047 -ms-flex: none;
8048 flex: none;
8049 width: 33.3333%;
8050 }
8051
8052 .columns.is-mobile > .column.is-one-quarter {
8053 -webkit-box-flex: 0;
8054 -ms-flex: none;
8055 flex: none;
8056 width: 25%;
8057 }
8058
8059 .columns.is-mobile > .column.is-one-fifth {
8060 -webkit-box-flex: 0;
8061 -ms-flex: none;
8062 flex: none;
8063 width: 20%;
8064 }
8065
8066 .columns.is-mobile > .column.is-two-fifths {
8067 -webkit-box-flex: 0;
8068 -ms-flex: none;
8069 flex: none;
8070 width: 40%;
8071 }
8072
8073 .columns.is-mobile > .column.is-three-fifths {
8074 -webkit-box-flex: 0;
8075 -ms-flex: none;
8076 flex: none;
8077 width: 60%;
8078 }
8079
8080 .columns.is-mobile > .column.is-four-fifths {
8081 -webkit-box-flex: 0;
8082 -ms-flex: none;
8083 flex: none;
8084 width: 80%;
8085 }
8086
8087 .columns.is-mobile > .column.is-offset-three-quarters {
8088 margin-left: 75%;
8089 }
8090
8091 .columns.is-mobile > .column.is-offset-two-thirds {
8092 margin-left: 66.6666%;
8093 }
8094
8095 .columns.is-mobile > .column.is-offset-half {
8096 margin-left: 50%;
8097 }
8098
8099 .columns.is-mobile > .column.is-offset-one-third {
8100 margin-left: 33.3333%;
8101 }
8102
8103 .columns.is-mobile > .column.is-offset-one-quarter {
8104 margin-left: 25%;
8105 }
8106
8107 .columns.is-mobile > .column.is-offset-one-fifth {
8108 margin-left: 20%;
8109 }
8110
8111 .columns.is-mobile > .column.is-offset-two-fifths {
8112 margin-left: 40%;
8113 }
8114
8115 .columns.is-mobile > .column.is-offset-three-fifths {
8116 margin-left: 60%;
8117 }
8118
8119 .columns.is-mobile > .column.is-offset-four-fifths {
8120 margin-left: 80%;
8121 }
8122
8123 .columns.is-mobile > .column.is-1 {
8124 -webkit-box-flex: 0;
8125 -ms-flex: none;
8126 flex: none;
8127 width: 8.33333%;
8128 }
8129
8130 .columns.is-mobile > .column.is-offset-1 {
8131 margin-left: 8.33333%;
8132 }
8133
8134 .columns.is-mobile > .column.is-2 {
8135 -webkit-box-flex: 0;
8136 -ms-flex: none;
8137 flex: none;
8138 width: 16.66667%;
8139 }
8140
8141 .columns.is-mobile > .column.is-offset-2 {
8142 margin-left: 16.66667%;
8143 }
8144
8145 .columns.is-mobile > .column.is-3 {
8146 -webkit-box-flex: 0;
8147 -ms-flex: none;
8148 flex: none;
8149 width: 25%;
8150 }
8151
8152 .columns.is-mobile > .column.is-offset-3 {
8153 margin-left: 25%;
8154 }
8155
8156 .columns.is-mobile > .column.is-4 {
8157 -webkit-box-flex: 0;
8158 -ms-flex: none;
8159 flex: none;
8160 width: 33.33333%;
8161 }
8162
8163 .columns.is-mobile > .column.is-offset-4 {
8164 margin-left: 33.33333%;
8165 }
8166
8167 .columns.is-mobile > .column.is-5 {
8168 -webkit-box-flex: 0;
8169 -ms-flex: none;
8170 flex: none;
8171 width: 41.66667%;
8172 }
8173
8174 .columns.is-mobile > .column.is-offset-5 {
8175 margin-left: 41.66667%;
8176 }
8177
8178 .columns.is-mobile > .column.is-6 {
8179 -webkit-box-flex: 0;
8180 -ms-flex: none;
8181 flex: none;
8182 width: 50%;
8183 }
8184
8185 .columns.is-mobile > .column.is-offset-6 {
8186 margin-left: 50%;
8187 }
8188
8189 .columns.is-mobile > .column.is-7 {
8190 -webkit-box-flex: 0;
8191 -ms-flex: none;
8192 flex: none;
8193 width: 58.33333%;
8194 }
8195
8196 .columns.is-mobile > .column.is-offset-7 {
8197 margin-left: 58.33333%;
8198 }
8199
8200 .columns.is-mobile > .column.is-8 {
8201 -webkit-box-flex: 0;
8202 -ms-flex: none;
8203 flex: none;
8204 width: 66.66667%;
8205 }
8206
8207 .columns.is-mobile > .column.is-offset-8 {
8208 margin-left: 66.66667%;
8209 }
8210
8211 .columns.is-mobile > .column.is-9 {
8212 -webkit-box-flex: 0;
8213 -ms-flex: none;
8214 flex: none;
8215 width: 75%;
8216 }
8217
8218 .columns.is-mobile > .column.is-offset-9 {
8219 margin-left: 75%;
8220 }
8221
8222 .columns.is-mobile > .column.is-10 {
8223 -webkit-box-flex: 0;
8224 -ms-flex: none;
8225 flex: none;
8226 width: 83.33333%;
8227 }
8228
8229 .columns.is-mobile > .column.is-offset-10 {
8230 margin-left: 83.33333%;
8231 }
8232
8233 .columns.is-mobile > .column.is-11 {
8234 -webkit-box-flex: 0;
8235 -ms-flex: none;
8236 flex: none;
8237 width: 91.66667%;
8238 }
8239
8240 .columns.is-mobile > .column.is-offset-11 {
8241 margin-left: 91.66667%;
8242 }
8243
8244 .columns.is-mobile > .column.is-12 {
8245 -webkit-box-flex: 0;
8246 -ms-flex: none;
8247 flex: none;
8248 width: 100%;
8249 }
8250
8251 .columns.is-mobile > .column.is-offset-12 {
8252 margin-left: 100%;
8253 }
8254
8255 @media screen and (max-width: 768px) {
8256 .column.is-narrow-mobile {
8257 -webkit-box-flex: 0;
8258 -ms-flex: none;
8259 flex: none;
8260 }
8261 .column.is-full-mobile {
8262 -webkit-box-flex: 0;
8263 -ms-flex: none;
8264 flex: none;
8265 width: 100%;
8266 }
8267 .column.is-three-quarters-mobile {
8268 -webkit-box-flex: 0;
8269 -ms-flex: none;
8270 flex: none;
8271 width: 75%;
8272 }
8273 .column.is-two-thirds-mobile {
8274 -webkit-box-flex: 0;
8275 -ms-flex: none;
8276 flex: none;
8277 width: 66.6666%;
8278 }
8279 .column.is-half-mobile {
8280 -webkit-box-flex: 0;
8281 -ms-flex: none;
8282 flex: none;
8283 width: 50%;
8284 }
8285 .column.is-one-third-mobile {
8286 -webkit-box-flex: 0;
8287 -ms-flex: none;
8288 flex: none;
8289 width: 33.3333%;
8290 }
8291 .column.is-one-quarter-mobile {
8292 -webkit-box-flex: 0;
8293 -ms-flex: none;
8294 flex: none;
8295 width: 25%;
8296 }
8297 .column.is-one-fifth-mobile {
8298 -webkit-box-flex: 0;
8299 -ms-flex: none;
8300 flex: none;
8301 width: 20%;
8302 }
8303 .column.is-two-fifths-mobile {
8304 -webkit-box-flex: 0;
8305 -ms-flex: none;
8306 flex: none;
8307 width: 40%;
8308 }
8309 .column.is-three-fifths-mobile {
8310 -webkit-box-flex: 0;
8311 -ms-flex: none;
8312 flex: none;
8313 width: 60%;
8314 }
8315 .column.is-four-fifths-mobile {
8316 -webkit-box-flex: 0;
8317 -ms-flex: none;
8318 flex: none;
8319 width: 80%;
8320 }
8321 .column.is-offset-three-quarters-mobile {
8322 margin-left: 75%;
8323 }
8324 .column.is-offset-two-thirds-mobile {
8325 margin-left: 66.6666%;
8326 }
8327 .column.is-offset-half-mobile {
8328 margin-left: 50%;
8329 }
8330 .column.is-offset-one-third-mobile {
8331 margin-left: 33.3333%;
8332 }
8333 .column.is-offset-one-quarter-mobile {
8334 margin-left: 25%;
8335 }
8336 .column.is-offset-one-fifth-mobile {
8337 margin-left: 20%;
8338 }
8339 .column.is-offset-two-fifths-mobile {
8340 margin-left: 40%;
8341 }
8342 .column.is-offset-three-fifths-mobile {
8343 margin-left: 60%;
8344 }
8345 .column.is-offset-four-fifths-mobile {
8346 margin-left: 80%;
8347 }
8348 .column.is-1-mobile {
8349 -webkit-box-flex: 0;
8350 -ms-flex: none;
8351 flex: none;
8352 width: 8.33333%;
8353 }
8354 .column.is-offset-1-mobile {
8355 margin-left: 8.33333%;
8356 }
8357 .column.is-2-mobile {
8358 -webkit-box-flex: 0;
8359 -ms-flex: none;
8360 flex: none;
8361 width: 16.66667%;
8362 }
8363 .column.is-offset-2-mobile {
8364 margin-left: 16.66667%;
8365 }
8366 .column.is-3-mobile {
8367 -webkit-box-flex: 0;
8368 -ms-flex: none;
8369 flex: none;
8370 width: 25%;
8371 }
8372 .column.is-offset-3-mobile {
8373 margin-left: 25%;
8374 }
8375 .column.is-4-mobile {
8376 -webkit-box-flex: 0;
8377 -ms-flex: none;
8378 flex: none;
8379 width: 33.33333%;
8380 }
8381 .column.is-offset-4-mobile {
8382 margin-left: 33.33333%;
8383 }
8384 .column.is-5-mobile {
8385 -webkit-box-flex: 0;
8386 -ms-flex: none;
8387 flex: none;
8388 width: 41.66667%;
8389 }
8390 .column.is-offset-5-mobile {
8391 margin-left: 41.66667%;
8392 }
8393 .column.is-6-mobile {
8394 -webkit-box-flex: 0;
8395 -ms-flex: none;
8396 flex: none;
8397 width: 50%;
8398 }
8399 .column.is-offset-6-mobile {
8400 margin-left: 50%;
8401 }
8402 .column.is-7-mobile {
8403 -webkit-box-flex: 0;
8404 -ms-flex: none;
8405 flex: none;
8406 width: 58.33333%;
8407 }
8408 .column.is-offset-7-mobile {
8409 margin-left: 58.33333%;
8410 }
8411 .column.is-8-mobile {
8412 -webkit-box-flex: 0;
8413 -ms-flex: none;
8414 flex: none;
8415 width: 66.66667%;
8416 }
8417 .column.is-offset-8-mobile {
8418 margin-left: 66.66667%;
8419 }
8420 .column.is-9-mobile {
8421 -webkit-box-flex: 0;
8422 -ms-flex: none;
8423 flex: none;
8424 width: 75%;
8425 }
8426 .column.is-offset-9-mobile {
8427 margin-left: 75%;
8428 }
8429 .column.is-10-mobile {
8430 -webkit-box-flex: 0;
8431 -ms-flex: none;
8432 flex: none;
8433 width: 83.33333%;
8434 }
8435 .column.is-offset-10-mobile {
8436 margin-left: 83.33333%;
8437 }
8438 .column.is-11-mobile {
8439 -webkit-box-flex: 0;
8440 -ms-flex: none;
8441 flex: none;
8442 width: 91.66667%;
8443 }
8444 .column.is-offset-11-mobile {
8445 margin-left: 91.66667%;
8446 }
8447 .column.is-12-mobile {
8448 -webkit-box-flex: 0;
8449 -ms-flex: none;
8450 flex: none;
8451 width: 100%;
8452 }
8453 .column.is-offset-12-mobile {
8454 margin-left: 100%;
8455 }
8456 }
8457
8458 @media screen and (min-width: 769px), print {
8459 .column.is-narrow, .column.is-narrow-tablet {
8460 -webkit-box-flex: 0;
8461 -ms-flex: none;
8462 flex: none;
8463 }
8464 .column.is-full, .column.is-full-tablet {
8465 -webkit-box-flex: 0;
8466 -ms-flex: none;
8467 flex: none;
8468 width: 100%;
8469 }
8470 .column.is-three-quarters, .column.is-three-quarters-tablet {
8471 -webkit-box-flex: 0;
8472 -ms-flex: none;
8473 flex: none;
8474 width: 75%;
8475 }
8476 .column.is-two-thirds, .column.is-two-thirds-tablet {
8477 -webkit-box-flex: 0;
8478 -ms-flex: none;
8479 flex: none;
8480 width: 66.6666%;
8481 }
8482 .column.is-half, .column.is-half-tablet {
8483 -webkit-box-flex: 0;
8484 -ms-flex: none;
8485 flex: none;
8486 width: 50%;
8487 }
8488 .column.is-one-third, .column.is-one-third-tablet {
8489 -webkit-box-flex: 0;
8490 -ms-flex: none;
8491 flex: none;
8492 width: 33.3333%;
8493 }
8494 .column.is-one-quarter, .column.is-one-quarter-tablet {
8495 -webkit-box-flex: 0;
8496 -ms-flex: none;
8497 flex: none;
8498 width: 25%;
8499 }
8500 .column.is-one-fifth, .column.is-one-fifth-tablet {
8501 -webkit-box-flex: 0;
8502 -ms-flex: none;
8503 flex: none;
8504 width: 20%;
8505 }
8506 .column.is-two-fifths, .column.is-two-fifths-tablet {
8507 -webkit-box-flex: 0;
8508 -ms-flex: none;
8509 flex: none;
8510 width: 40%;
8511 }
8512 .column.is-three-fifths, .column.is-three-fifths-tablet {
8513 -webkit-box-flex: 0;
8514 -ms-flex: none;
8515 flex: none;
8516 width: 60%;
8517 }
8518 .column.is-four-fifths, .column.is-four-fifths-tablet {
8519 -webkit-box-flex: 0;
8520 -ms-flex: none;
8521 flex: none;
8522 width: 80%;
8523 }
8524 .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
8525 margin-left: 75%;
8526 }
8527 .column.is-offset-two-thirds, .column.is-offset-two-thirds-tablet {
8528 margin-left: 66.6666%;
8529 }
8530 .column.is-offset-half, .column.is-offset-half-tablet {
8531 margin-left: 50%;
8532 }
8533 .column.is-offset-one-third, .column.is-offset-one-third-tablet {
8534 margin-left: 33.3333%;
8535 }
8536 .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
8537 margin-left: 25%;
8538 }
8539 .column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
8540 margin-left: 20%;
8541 }
8542 .column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
8543 margin-left: 40%;
8544 }
8545 .column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
8546 margin-left: 60%;
8547 }
8548 .column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
8549 margin-left: 80%;
8550 }
8551 .column.is-1, .column.is-1-tablet {
8552 -webkit-box-flex: 0;
8553 -ms-flex: none;
8554 flex: none;
8555 width: 8.33333%;
8556 }
8557 .column.is-offset-1, .column.is-offset-1-tablet {
8558 margin-left: 8.33333%;
8559 }
8560 .column.is-2, .column.is-2-tablet {
8561 -webkit-box-flex: 0;
8562 -ms-flex: none;
8563 flex: none;
8564 width: 16.66667%;
8565 }
8566 .column.is-offset-2, .column.is-offset-2-tablet {
8567 margin-left: 16.66667%;
8568 }
8569 .column.is-3, .column.is-3-tablet {
8570 -webkit-box-flex: 0;
8571 -ms-flex: none;
8572 flex: none;
8573 width: 25%;
8574 }
8575 .column.is-offset-3, .column.is-offset-3-tablet {
8576 margin-left: 25%;
8577 }
8578 .column.is-4, .column.is-4-tablet {
8579 -webkit-box-flex: 0;
8580 -ms-flex: none;
8581 flex: none;
8582 width: 33.33333%;
8583 }
8584 .column.is-offset-4, .column.is-offset-4-tablet {
8585 margin-left: 33.33333%;
8586 }
8587 .column.is-5, .column.is-5-tablet {
8588 -webkit-box-flex: 0;
8589 -ms-flex: none;
8590 flex: none;
8591 width: 41.66667%;
8592 }
8593 .column.is-offset-5, .column.is-offset-5-tablet {
8594 margin-left: 41.66667%;
8595 }
8596 .column.is-6, .column.is-6-tablet {
8597 -webkit-box-flex: 0;
8598 -ms-flex: none;
8599 flex: none;
8600 width: 50%;
8601 }
8602 .column.is-offset-6, .column.is-offset-6-tablet {
8603 margin-left: 50%;
8604 }
8605 .column.is-7, .column.is-7-tablet {
8606 -webkit-box-flex: 0;
8607 -ms-flex: none;
8608 flex: none;
8609 width: 58.33333%;
8610 }
8611 .column.is-offset-7, .column.is-offset-7-tablet {
8612 margin-left: 58.33333%;
8613 }
8614 .column.is-8, .column.is-8-tablet {
8615 -webkit-box-flex: 0;
8616 -ms-flex: none;
8617 flex: none;
8618 width: 66.66667%;
8619 }
8620 .column.is-offset-8, .column.is-offset-8-tablet {
8621 margin-left: 66.66667%;
8622 }
8623 .column.is-9, .column.is-9-tablet {
8624 -webkit-box-flex: 0;
8625 -ms-flex: none;
8626 flex: none;
8627 width: 75%;
8628 }
8629 .column.is-offset-9, .column.is-offset-9-tablet {
8630 margin-left: 75%;
8631 }
8632 .column.is-10, .column.is-10-tablet {
8633 -webkit-box-flex: 0;
8634 -ms-flex: none;
8635 flex: none;
8636 width: 83.33333%;
8637 }
8638 .column.is-offset-10, .column.is-offset-10-tablet {
8639 margin-left: 83.33333%;
8640 }
8641 .column.is-11, .column.is-11-tablet {
8642 -webkit-box-flex: 0;
8643 -ms-flex: none;
8644 flex: none;
8645 width: 91.66667%;
8646 }
8647 .column.is-offset-11, .column.is-offset-11-tablet {
8648 margin-left: 91.66667%;
8649 }
8650 .column.is-12, .column.is-12-tablet {
8651 -webkit-box-flex: 0;
8652 -ms-flex: none;
8653 flex: none;
8654 width: 100%;
8655 }
8656 .column.is-offset-12, .column.is-offset-12-tablet {
8657 margin-left: 100%;
8658 }
8659 }
8660
8661 @media screen and (max-width: 1023px) {
8662 .column.is-narrow-touch {
8663 -webkit-box-flex: 0;
8664 -ms-flex: none;
8665 flex: none;
8666 }
8667 .column.is-full-touch {
8668 -webkit-box-flex: 0;
8669 -ms-flex: none;
8670 flex: none;
8671 width: 100%;
8672 }
8673 .column.is-three-quarters-touch {
8674 -webkit-box-flex: 0;
8675 -ms-flex: none;
8676 flex: none;
8677 width: 75%;
8678 }
8679 .column.is-two-thirds-touch {
8680 -webkit-box-flex: 0;
8681 -ms-flex: none;
8682 flex: none;
8683 width: 66.6666%;
8684 }
8685 .column.is-half-touch {
8686 -webkit-box-flex: 0;
8687 -ms-flex: none;
8688 flex: none;
8689 width: 50%;
8690 }
8691 .column.is-one-third-touch {
8692 -webkit-box-flex: 0;
8693 -ms-flex: none;
8694 flex: none;
8695 width: 33.3333%;
8696 }
8697 .column.is-one-quarter-touch {
8698 -webkit-box-flex: 0;
8699 -ms-flex: none;
8700 flex: none;
8701 width: 25%;
8702 }
8703 .column.is-one-fifth-touch {
8704 -webkit-box-flex: 0;
8705 -ms-flex: none;
8706 flex: none;
8707 width: 20%;
8708 }
8709 .column.is-two-fifths-touch {
8710 -webkit-box-flex: 0;
8711 -ms-flex: none;
8712 flex: none;
8713 width: 40%;
8714 }
8715 .column.is-three-fifths-touch {
8716 -webkit-box-flex: 0;
8717 -ms-flex: none;
8718 flex: none;
8719 width: 60%;
8720 }
8721 .column.is-four-fifths-touch {
8722 -webkit-box-flex: 0;
8723 -ms-flex: none;
8724 flex: none;
8725 width: 80%;
8726 }
8727 .column.is-offset-three-quarters-touch {
8728 margin-left: 75%;
8729 }
8730 .column.is-offset-two-thirds-touch {
8731 margin-left: 66.6666%;
8732 }
8733 .column.is-offset-half-touch {
8734 margin-left: 50%;
8735 }
8736 .column.is-offset-one-third-touch {
8737 margin-left: 33.3333%;
8738 }
8739 .column.is-offset-one-quarter-touch {
8740 margin-left: 25%;
8741 }
8742 .column.is-offset-one-fifth-touch {
8743 margin-left: 20%;
8744 }
8745 .column.is-offset-two-fifths-touch {
8746 margin-left: 40%;
8747 }
8748 .column.is-offset-three-fifths-touch {
8749 margin-left: 60%;
8750 }
8751 .column.is-offset-four-fifths-touch {
8752 margin-left: 80%;
8753 }
8754 .column.is-1-touch {
8755 -webkit-box-flex: 0;
8756 -ms-flex: none;
8757 flex: none;
8758 width: 8.33333%;
8759 }
8760 .column.is-offset-1-touch {
8761 margin-left: 8.33333%;
8762 }
8763 .column.is-2-touch {
8764 -webkit-box-flex: 0;
8765 -ms-flex: none;
8766 flex: none;
8767 width: 16.66667%;
8768 }
8769 .column.is-offset-2-touch {
8770 margin-left: 16.66667%;
8771 }
8772 .column.is-3-touch {
8773 -webkit-box-flex: 0;
8774 -ms-flex: none;
8775 flex: none;
8776 width: 25%;
8777 }
8778 .column.is-offset-3-touch {
8779 margin-left: 25%;
8780 }
8781 .column.is-4-touch {
8782 -webkit-box-flex: 0;
8783 -ms-flex: none;
8784 flex: none;
8785 width: 33.33333%;
8786 }
8787 .column.is-offset-4-touch {
8788 margin-left: 33.33333%;
8789 }
8790 .column.is-5-touch {
8791 -webkit-box-flex: 0;
8792 -ms-flex: none;
8793 flex: none;
8794 width: 41.66667%;
8795 }
8796 .column.is-offset-5-touch {
8797 margin-left: 41.66667%;
8798 }
8799 .column.is-6-touch {
8800 -webkit-box-flex: 0;
8801 -ms-flex: none;
8802 flex: none;
8803 width: 50%;
8804 }
8805 .column.is-offset-6-touch {
8806 margin-left: 50%;
8807 }
8808 .column.is-7-touch {
8809 -webkit-box-flex: 0;
8810 -ms-flex: none;
8811 flex: none;
8812 width: 58.33333%;
8813 }
8814 .column.is-offset-7-touch {
8815 margin-left: 58.33333%;
8816 }
8817 .column.is-8-touch {
8818 -webkit-box-flex: 0;
8819 -ms-flex: none;
8820 flex: none;
8821 width: 66.66667%;
8822 }
8823 .column.is-offset-8-touch {
8824 margin-left: 66.66667%;
8825 }
8826 .column.is-9-touch {
8827 -webkit-box-flex: 0;
8828 -ms-flex: none;
8829 flex: none;
8830 width: 75%;
8831 }
8832 .column.is-offset-9-touch {
8833 margin-left: 75%;
8834 }
8835 .column.is-10-touch {
8836 -webkit-box-flex: 0;
8837 -ms-flex: none;
8838 flex: none;
8839 width: 83.33333%;
8840 }
8841 .column.is-offset-10-touch {
8842 margin-left: 83.33333%;
8843 }
8844 .column.is-11-touch {
8845 -webkit-box-flex: 0;
8846 -ms-flex: none;
8847 flex: none;
8848 width: 91.66667%;
8849 }
8850 .column.is-offset-11-touch {
8851 margin-left: 91.66667%;
8852 }
8853 .column.is-12-touch {
8854 -webkit-box-flex: 0;
8855 -ms-flex: none;
8856 flex: none;
8857 width: 100%;
8858 }
8859 .column.is-offset-12-touch {
8860 margin-left: 100%;
8861 }
8862 }
8863
8864 @media screen and (min-width: 1024px) {
8865 .column.is-narrow-desktop {
8866 -webkit-box-flex: 0;
8867 -ms-flex: none;
8868 flex: none;
8869 }
8870 .column.is-full-desktop {
8871 -webkit-box-flex: 0;
8872 -ms-flex: none;
8873 flex: none;
8874 width: 100%;
8875 }
8876 .column.is-three-quarters-desktop {
8877 -webkit-box-flex: 0;
8878 -ms-flex: none;
8879 flex: none;
8880 width: 75%;
8881 }
8882 .column.is-two-thirds-desktop {
8883 -webkit-box-flex: 0;
8884 -ms-flex: none;
8885 flex: none;
8886 width: 66.6666%;
8887 }
8888 .column.is-half-desktop {
8889 -webkit-box-flex: 0;
8890 -ms-flex: none;
8891 flex: none;
8892 width: 50%;
8893 }
8894 .column.is-one-third-desktop {
8895 -webkit-box-flex: 0;
8896 -ms-flex: none;
8897 flex: none;
8898 width: 33.3333%;
8899 }
8900 .column.is-one-quarter-desktop {
8901 -webkit-box-flex: 0;
8902 -ms-flex: none;
8903 flex: none;
8904 width: 25%;
8905 }
8906 .column.is-one-fifth-desktop {
8907 -webkit-box-flex: 0;
8908 -ms-flex: none;
8909 flex: none;
8910 width: 20%;
8911 }
8912 .column.is-two-fifths-desktop {
8913 -webkit-box-flex: 0;
8914 -ms-flex: none;
8915 flex: none;
8916 width: 40%;
8917 }
8918 .column.is-three-fifths-desktop {
8919 -webkit-box-flex: 0;
8920 -ms-flex: none;
8921 flex: none;
8922 width: 60%;
8923 }
8924 .column.is-four-fifths-desktop {
8925 -webkit-box-flex: 0;
8926 -ms-flex: none;
8927 flex: none;
8928 width: 80%;
8929 }
8930 .column.is-offset-three-quarters-desktop {
8931 margin-left: 75%;
8932 }
8933 .column.is-offset-two-thirds-desktop {
8934 margin-left: 66.6666%;
8935 }
8936 .column.is-offset-half-desktop {
8937 margin-left: 50%;
8938 }
8939 .column.is-offset-one-third-desktop {
8940 margin-left: 33.3333%;
8941 }
8942 .column.is-offset-one-quarter-desktop {
8943 margin-left: 25%;
8944 }
8945 .column.is-offset-one-fifth-desktop {
8946 margin-left: 20%;
8947 }
8948 .column.is-offset-two-fifths-desktop {
8949 margin-left: 40%;
8950 }
8951 .column.is-offset-three-fifths-desktop {
8952 margin-left: 60%;
8953 }
8954 .column.is-offset-four-fifths-desktop {
8955 margin-left: 80%;
8956 }
8957 .column.is-1-desktop {
8958 -webkit-box-flex: 0;
8959 -ms-flex: none;
8960 flex: none;
8961 width: 8.33333%;
8962 }
8963 .column.is-offset-1-desktop {
8964 margin-left: 8.33333%;
8965 }
8966 .column.is-2-desktop {
8967 -webkit-box-flex: 0;
8968 -ms-flex: none;
8969 flex: none;
8970 width: 16.66667%;
8971 }
8972 .column.is-offset-2-desktop {
8973 margin-left: 16.66667%;
8974 }
8975 .column.is-3-desktop {
8976 -webkit-box-flex: 0;
8977 -ms-flex: none;
8978 flex: none;
8979 width: 25%;
8980 }
8981 .column.is-offset-3-desktop {
8982 margin-left: 25%;
8983 }
8984 .column.is-4-desktop {
8985 -webkit-box-flex: 0;
8986 -ms-flex: none;
8987 flex: none;
8988 width: 33.33333%;
8989 }
8990 .column.is-offset-4-desktop {
8991 margin-left: 33.33333%;
8992 }
8993 .column.is-5-desktop {
8994 -webkit-box-flex: 0;
8995 -ms-flex: none;
8996 flex: none;
8997 width: 41.66667%;
8998 }
8999 .column.is-offset-5-desktop {
9000 margin-left: 41.66667%;
9001 }
9002 .column.is-6-desktop {
9003 -webkit-box-flex: 0;
9004 -ms-flex: none;
9005 flex: none;
9006 width: 50%;
9007 }
9008 .column.is-offset-6-desktop {
9009 margin-left: 50%;
9010 }
9011 .column.is-7-desktop {
9012 -webkit-box-flex: 0;
9013 -ms-flex: none;
9014 flex: none;
9015 width: 58.33333%;
9016 }
9017 .column.is-offset-7-desktop {
9018 margin-left: 58.33333%;
9019 }
9020 .column.is-8-desktop {
9021 -webkit-box-flex: 0;
9022 -ms-flex: none;
9023 flex: none;
9024 width: 66.66667%;
9025 }
9026 .column.is-offset-8-desktop {
9027 margin-left: 66.66667%;
9028 }
9029 .column.is-9-desktop {
9030 -webkit-box-flex: 0;
9031 -ms-flex: none;
9032 flex: none;
9033 width: 75%;
9034 }
9035 .column.is-offset-9-desktop {
9036 margin-left: 75%;
9037 }
9038 .column.is-10-desktop {
9039 -webkit-box-flex: 0;
9040 -ms-flex: none;
9041 flex: none;
9042 width: 83.33333%;
9043 }
9044 .column.is-offset-10-desktop {
9045 margin-left: 83.33333%;
9046 }
9047 .column.is-11-desktop {
9048 -webkit-box-flex: 0;
9049 -ms-flex: none;
9050 flex: none;
9051 width: 91.66667%;
9052 }
9053 .column.is-offset-11-desktop {
9054 margin-left: 91.66667%;
9055 }
9056 .column.is-12-desktop {
9057 -webkit-box-flex: 0;
9058 -ms-flex: none;
9059 flex: none;
9060 width: 100%;
9061 }
9062 .column.is-offset-12-desktop {
9063 margin-left: 100%;
9064 }
9065 }
9066
9067 @media screen and (min-width: 1216px) {
9068 .column.is-narrow-widescreen {
9069 -webkit-box-flex: 0;
9070 -ms-flex: none;
9071 flex: none;
9072 }
9073 .column.is-full-widescreen {
9074 -webkit-box-flex: 0;
9075 -ms-flex: none;
9076 flex: none;
9077 width: 100%;
9078 }
9079 .column.is-three-quarters-widescreen {
9080 -webkit-box-flex: 0;
9081 -ms-flex: none;
9082 flex: none;
9083 width: 75%;
9084 }
9085 .column.is-two-thirds-widescreen {
9086 -webkit-box-flex: 0;
9087 -ms-flex: none;
9088 flex: none;
9089 width: 66.6666%;
9090 }
9091 .column.is-half-widescreen {
9092 -webkit-box-flex: 0;
9093 -ms-flex: none;
9094 flex: none;
9095 width: 50%;
9096 }
9097 .column.is-one-third-widescreen {
9098 -webkit-box-flex: 0;
9099 -ms-flex: none;
9100 flex: none;
9101 width: 33.3333%;
9102 }
9103 .column.is-one-quarter-widescreen {
9104 -webkit-box-flex: 0;
9105 -ms-flex: none;
9106 flex: none;
9107 width: 25%;
9108 }
9109 .column.is-one-fifth-widescreen {
9110 -webkit-box-flex: 0;
9111 -ms-flex: none;
9112 flex: none;
9113 width: 20%;
9114 }
9115 .column.is-two-fifths-widescreen {
9116 -webkit-box-flex: 0;
9117 -ms-flex: none;
9118 flex: none;
9119 width: 40%;
9120 }
9121 .column.is-three-fifths-widescreen {
9122 -webkit-box-flex: 0;
9123 -ms-flex: none;
9124 flex: none;
9125 width: 60%;
9126 }
9127 .column.is-four-fifths-widescreen {
9128 -webkit-box-flex: 0;
9129 -ms-flex: none;
9130 flex: none;
9131 width: 80%;
9132 }
9133 .column.is-offset-three-quarters-widescreen {
9134 margin-left: 75%;
9135 }
9136 .column.is-offset-two-thirds-widescreen {
9137 margin-left: 66.6666%;
9138 }
9139 .column.is-offset-half-widescreen {
9140 margin-left: 50%;
9141 }
9142 .column.is-offset-one-third-widescreen {
9143 margin-left: 33.3333%;
9144 }
9145 .column.is-offset-one-quarter-widescreen {
9146 margin-left: 25%;
9147 }
9148 .column.is-offset-one-fifth-widescreen {
9149 margin-left: 20%;
9150 }
9151 .column.is-offset-two-fifths-widescreen {
9152 margin-left: 40%;
9153 }
9154 .column.is-offset-three-fifths-widescreen {
9155 margin-left: 60%;
9156 }
9157 .column.is-offset-four-fifths-widescreen {
9158 margin-left: 80%;
9159 }
9160 .column.is-1-widescreen {
9161 -webkit-box-flex: 0;
9162 -ms-flex: none;
9163 flex: none;
9164 width: 8.33333%;
9165 }
9166 .column.is-offset-1-widescreen {
9167 margin-left: 8.33333%;
9168 }
9169 .column.is-2-widescreen {
9170 -webkit-box-flex: 0;
9171 -ms-flex: none;
9172 flex: none;
9173 width: 16.66667%;
9174 }
9175 .column.is-offset-2-widescreen {
9176 margin-left: 16.66667%;
9177 }
9178 .column.is-3-widescreen {
9179 -webkit-box-flex: 0;
9180 -ms-flex: none;
9181 flex: none;
9182 width: 25%;
9183 }
9184 .column.is-offset-3-widescreen {
9185 margin-left: 25%;
9186 }
9187 .column.is-4-widescreen {
9188 -webkit-box-flex: 0;
9189 -ms-flex: none;
9190 flex: none;
9191 width: 33.33333%;
9192 }
9193 .column.is-offset-4-widescreen {
9194 margin-left: 33.33333%;
9195 }
9196 .column.is-5-widescreen {
9197 -webkit-box-flex: 0;
9198 -ms-flex: none;
9199 flex: none;
9200 width: 41.66667%;
9201 }
9202 .column.is-offset-5-widescreen {
9203 margin-left: 41.66667%;
9204 }
9205 .column.is-6-widescreen {
9206 -webkit-box-flex: 0;
9207 -ms-flex: none;
9208 flex: none;
9209 width: 50%;
9210 }
9211 .column.is-offset-6-widescreen {
9212 margin-left: 50%;
9213 }
9214 .column.is-7-widescreen {
9215 -webkit-box-flex: 0;
9216 -ms-flex: none;
9217 flex: none;
9218 width: 58.33333%;
9219 }
9220 .column.is-offset-7-widescreen {
9221 margin-left: 58.33333%;
9222 }
9223 .column.is-8-widescreen {
9224 -webkit-box-flex: 0;
9225 -ms-flex: none;
9226 flex: none;
9227 width: 66.66667%;
9228 }
9229 .column.is-offset-8-widescreen {
9230 margin-left: 66.66667%;
9231 }
9232 .column.is-9-widescreen {
9233 -webkit-box-flex: 0;
9234 -ms-flex: none;
9235 flex: none;
9236 width: 75%;
9237 }
9238 .column.is-offset-9-widescreen {
9239 margin-left: 75%;
9240 }
9241 .column.is-10-widescreen {
9242 -webkit-box-flex: 0;
9243 -ms-flex: none;
9244 flex: none;
9245 width: 83.33333%;
9246 }
9247 .column.is-offset-10-widescreen {
9248 margin-left: 83.33333%;
9249 }
9250 .column.is-11-widescreen {
9251 -webkit-box-flex: 0;
9252 -ms-flex: none;
9253 flex: none;
9254 width: 91.66667%;
9255 }
9256 .column.is-offset-11-widescreen {
9257 margin-left: 91.66667%;
9258 }
9259 .column.is-12-widescreen {
9260 -webkit-box-flex: 0;
9261 -ms-flex: none;
9262 flex: none;
9263 width: 100%;
9264 }
9265 .column.is-offset-12-widescreen {
9266 margin-left: 100%;
9267 }
9268 }
9269
9270 @media screen and (min-width: 1408px) {
9271 .column.is-narrow-fullhd {
9272 -webkit-box-flex: 0;
9273 -ms-flex: none;
9274 flex: none;
9275 }
9276 .column.is-full-fullhd {
9277 -webkit-box-flex: 0;
9278 -ms-flex: none;
9279 flex: none;
9280 width: 100%;
9281 }
9282 .column.is-three-quarters-fullhd {
9283 -webkit-box-flex: 0;
9284 -ms-flex: none;
9285 flex: none;
9286 width: 75%;
9287 }
9288 .column.is-two-thirds-fullhd {
9289 -webkit-box-flex: 0;
9290 -ms-flex: none;
9291 flex: none;
9292 width: 66.6666%;
9293 }
9294 .column.is-half-fullhd {
9295 -webkit-box-flex: 0;
9296 -ms-flex: none;
9297 flex: none;
9298 width: 50%;
9299 }
9300 .column.is-one-third-fullhd {
9301 -webkit-box-flex: 0;
9302 -ms-flex: none;
9303 flex: none;
9304 width: 33.3333%;
9305 }
9306 .column.is-one-quarter-fullhd {
9307 -webkit-box-flex: 0;
9308 -ms-flex: none;
9309 flex: none;
9310 width: 25%;
9311 }
9312 .column.is-one-fifth-fullhd {
9313 -webkit-box-flex: 0;
9314 -ms-flex: none;
9315 flex: none;
9316 width: 20%;
9317 }
9318 .column.is-two-fifths-fullhd {
9319 -webkit-box-flex: 0;
9320 -ms-flex: none;
9321 flex: none;
9322 width: 40%;
9323 }
9324 .column.is-three-fifths-fullhd {
9325 -webkit-box-flex: 0;
9326 -ms-flex: none;
9327 flex: none;
9328 width: 60%;
9329 }
9330 .column.is-four-fifths-fullhd {
9331 -webkit-box-flex: 0;
9332 -ms-flex: none;
9333 flex: none;
9334 width: 80%;
9335 }
9336 .column.is-offset-three-quarters-fullhd {
9337 margin-left: 75%;
9338 }
9339 .column.is-offset-two-thirds-fullhd {
9340 margin-left: 66.6666%;
9341 }
9342 .column.is-offset-half-fullhd {
9343 margin-left: 50%;
9344 }
9345 .column.is-offset-one-third-fullhd {
9346 margin-left: 33.3333%;
9347 }
9348 .column.is-offset-one-quarter-fullhd {
9349 margin-left: 25%;
9350 }
9351 .column.is-offset-one-fifth-fullhd {
9352 margin-left: 20%;
9353 }
9354 .column.is-offset-two-fifths-fullhd {
9355 margin-left: 40%;
9356 }
9357 .column.is-offset-three-fifths-fullhd {
9358 margin-left: 60%;
9359 }
9360 .column.is-offset-four-fifths-fullhd {
9361 margin-left: 80%;
9362 }
9363 .column.is-1-fullhd {
9364 -webkit-box-flex: 0;
9365 -ms-flex: none;
9366 flex: none;
9367 width: 8.33333%;
9368 }
9369 .column.is-offset-1-fullhd {
9370 margin-left: 8.33333%;
9371 }
9372 .column.is-2-fullhd {
9373 -webkit-box-flex: 0;
9374 -ms-flex: none;
9375 flex: none;
9376 width: 16.66667%;
9377 }
9378 .column.is-offset-2-fullhd {
9379 margin-left: 16.66667%;
9380 }
9381 .column.is-3-fullhd {
9382 -webkit-box-flex: 0;
9383 -ms-flex: none;
9384 flex: none;
9385 width: 25%;
9386 }
9387 .column.is-offset-3-fullhd {
9388 margin-left: 25%;
9389 }
9390 .column.is-4-fullhd {
9391 -webkit-box-flex: 0;
9392 -ms-flex: none;
9393 flex: none;
9394 width: 33.33333%;
9395 }
9396 .column.is-offset-4-fullhd {
9397 margin-left: 33.33333%;
9398 }
9399 .column.is-5-fullhd {
9400 -webkit-box-flex: 0;
9401 -ms-flex: none;
9402 flex: none;
9403 width: 41.66667%;
9404 }
9405 .column.is-offset-5-fullhd {
9406 margin-left: 41.66667%;
9407 }
9408 .column.is-6-fullhd {
9409 -webkit-box-flex: 0;
9410 -ms-flex: none;
9411 flex: none;
9412 width: 50%;
9413 }
9414 .column.is-offset-6-fullhd {
9415 margin-left: 50%;
9416 }
9417 .column.is-7-fullhd {
9418 -webkit-box-flex: 0;
9419 -ms-flex: none;
9420 flex: none;
9421 width: 58.33333%;
9422 }
9423 .column.is-offset-7-fullhd {
9424 margin-left: 58.33333%;
9425 }
9426 .column.is-8-fullhd {
9427 -webkit-box-flex: 0;
9428 -ms-flex: none;
9429 flex: none;
9430 width: 66.66667%;
9431 }
9432 .column.is-offset-8-fullhd {
9433 margin-left: 66.66667%;
9434 }
9435 .column.is-9-fullhd {
9436 -webkit-box-flex: 0;
9437 -ms-flex: none;
9438 flex: none;
9439 width: 75%;
9440 }
9441 .column.is-offset-9-fullhd {
9442 margin-left: 75%;
9443 }
9444 .column.is-10-fullhd {
9445 -webkit-box-flex: 0;
9446 -ms-flex: none;
9447 flex: none;
9448 width: 83.33333%;
9449 }
9450 .column.is-offset-10-fullhd {
9451 margin-left: 83.33333%;
9452 }
9453 .column.is-11-fullhd {
9454 -webkit-box-flex: 0;
9455 -ms-flex: none;
9456 flex: none;
9457 width: 91.66667%;
9458 }
9459 .column.is-offset-11-fullhd {
9460 margin-left: 91.66667%;
9461 }
9462 .column.is-12-fullhd {
9463 -webkit-box-flex: 0;
9464 -ms-flex: none;
9465 flex: none;
9466 width: 100%;
9467 }
9468 .column.is-offset-12-fullhd {
9469 margin-left: 100%;
9470 }
9471 }
9472
9473 .columns {
9474 margin-left: -0.75rem;
9475 margin-right: -0.75rem;
9476 margin-top: -0.75rem;
9477 }
9478
9479 .columns:last-child {
9480 margin-bottom: -0.75rem;
9481 }
9482
9483 .columns:not(:last-child) {
9484 margin-bottom: calc(1.5rem - 0.75rem);
9485 }
9486
9487 .columns.is-centered {
9488 -webkit-box-pack: center;
9489 -ms-flex-pack: center;
9490 justify-content: center;
9491 }
9492
9493 .columns.is-gapless {
9494 margin-left: 0;
9495 margin-right: 0;
9496 margin-top: 0;
9497 }
9498
9499 .columns.is-gapless > .column {
9500 margin: 0;
9501 padding: 0 !important;
9502 }
9503
9504 .columns.is-gapless:not(:last-child) {
9505 margin-bottom: 1.5rem;
9506 }
9507
9508 .columns.is-gapless:last-child {
9509 margin-bottom: 0;
9510 }
9511
9512 .columns.is-mobile {
9513 display: -webkit-box;
9514 display: -ms-flexbox;
9515 display: flex;
9516 }
9517
9518 .columns.is-multiline {
9519 -ms-flex-wrap: wrap;
9520 flex-wrap: wrap;
9521 }
9522
9523 .columns.is-vcentered {
9524 -webkit-box-align: center;
9525 -ms-flex-align: center;
9526 align-items: center;
9527 }
9528
9529 @media screen and (min-width: 769px), print {
9530 .columns:not(.is-desktop) {
9531 display: -webkit-box;
9532 display: -ms-flexbox;
9533 display: flex;
9534 }
9535 }
9536
9537 @media screen and (min-width: 1024px) {
9538 .columns.is-desktop {
9539 display: -webkit-box;
9540 display: -ms-flexbox;
9541 display: flex;
9542 }
9543 }
9544
9545 .columns.is-variable {
9546 --columnGap: 0.75rem;
9547 margin-left: calc(-1 * var(--columnGap));
9548 margin-right: calc(-1 * var(--columnGap));
9549 }
9550
9551 .columns.is-variable .column {
9552 padding-left: var(--columnGap);
9553 padding-right: var(--columnGap);
9554 }
9555
9556 .columns.is-variable.is-0 {
9557 --columnGap: 0rem;
9558 }
9559
9560 .columns.is-variable.is-1 {
9561 --columnGap: 0.25rem;
9562 }
9563
9564 .columns.is-variable.is-2 {
9565 --columnGap: 0.5rem;
9566 }
9567
9568 .columns.is-variable.is-3 {
9569 --columnGap: 0.75rem;
9570 }
9571
9572 .columns.is-variable.is-4 {
9573 --columnGap: 1rem;
9574 }
9575
9576 .columns.is-variable.is-5 {
9577 --columnGap: 1.25rem;
9578 }
9579
9580 .columns.is-variable.is-6 {
9581 --columnGap: 1.5rem;
9582 }
9583
9584 .columns.is-variable.is-7 {
9585 --columnGap: 1.75rem;
9586 }
9587
9588 .columns.is-variable.is-8 {
9589 --columnGap: 2rem;
9590 }
9591
9592 .tile {
9593 -webkit-box-align: stretch;
9594 -ms-flex-align: stretch;
9595 align-items: stretch;
9596 display: block;
9597 -ms-flex-preferred-size: 0;
9598 flex-basis: 0;
9599 -webkit-box-flex: 1;
9600 -ms-flex-positive: 1;
9601 flex-grow: 1;
9602 -ms-flex-negative: 1;
9603 flex-shrink: 1;
9604 min-height: -webkit-min-content;
9605 min-height: -moz-min-content;
9606 min-height: min-content;
9607 }
9608
9609 .tile.is-ancestor {
9610 margin-left: -0.75rem;
9611 margin-right: -0.75rem;
9612 margin-top: -0.75rem;
9613 }
9614
9615 .tile.is-ancestor:last-child {
9616 margin-bottom: -0.75rem;
9617 }
9618
9619 .tile.is-ancestor:not(:last-child) {
9620 margin-bottom: 0.75rem;
9621 }
9622
9623 .tile.is-child {
9624 margin: 0 !important;
9625 }
9626
9627 .tile.is-parent {
9628 padding: 0.75rem;
9629 }
9630
9631 .tile.is-vertical {
9632 -webkit-box-orient: vertical;
9633 -webkit-box-direction: normal;
9634 -ms-flex-direction: column;
9635 flex-direction: column;
9636 }
9637
9638 .tile.is-vertical > .tile.is-child:not(:last-child) {
9639 margin-bottom: 1.5rem !important;
9640 }
9641
9642 @media screen and (min-width: 769px), print {
9643 .tile:not(.is-child) {
9644 display: -webkit-box;
9645 display: -ms-flexbox;
9646 display: flex;
9647 }
9648 .tile.is-1 {
9649 -webkit-box-flex: 0;
9650 -ms-flex: none;
9651 flex: none;
9652 width: 8.33333%;
9653 }
9654 .tile.is-2 {
9655 -webkit-box-flex: 0;
9656 -ms-flex: none;
9657 flex: none;
9658 width: 16.66667%;
9659 }
9660 .tile.is-3 {
9661 -webkit-box-flex: 0;
9662 -ms-flex: none;
9663 flex: none;
9664 width: 25%;
9665 }
9666 .tile.is-4 {
9667 -webkit-box-flex: 0;
9668 -ms-flex: none;
9669 flex: none;
9670 width: 33.33333%;
9671 }
9672 .tile.is-5 {
9673 -webkit-box-flex: 0;
9674 -ms-flex: none;
9675 flex: none;
9676 width: 41.66667%;
9677 }
9678 .tile.is-6 {
9679 -webkit-box-flex: 0;
9680 -ms-flex: none;
9681 flex: none;
9682 width: 50%;
9683 }
9684 .tile.is-7 {
9685 -webkit-box-flex: 0;
9686 -ms-flex: none;
9687 flex: none;
9688 width: 58.33333%;
9689 }
9690 .tile.is-8 {
9691 -webkit-box-flex: 0;
9692 -ms-flex: none;
9693 flex: none;
9694 width: 66.66667%;
9695 }
9696 .tile.is-9 {
9697 -webkit-box-flex: 0;
9698 -ms-flex: none;
9699 flex: none;
9700 width: 75%;
9701 }
9702 .tile.is-10 {
9703 -webkit-box-flex: 0;
9704 -ms-flex: none;
9705 flex: none;
9706 width: 83.33333%;
9707 }
9708 .tile.is-11 {
9709 -webkit-box-flex: 0;
9710 -ms-flex: none;
9711 flex: none;
9712 width: 91.66667%;
9713 }
9714 .tile.is-12 {
9715 -webkit-box-flex: 0;
9716 -ms-flex: none;
9717 flex: none;
9718 width: 100%;
9719 }
9720 }
9721
9722 .hero {
9723 -webkit-box-align: stretch;
9724 -ms-flex-align: stretch;
9725 align-items: stretch;
9726 display: -webkit-box;
9727 display: -ms-flexbox;
9728 display: flex;
9729 -webkit-box-orient: vertical;
9730 -webkit-box-direction: normal;
9731 -ms-flex-direction: column;
9732 flex-direction: column;
9733 -webkit-box-pack: justify;
9734 -ms-flex-pack: justify;
9735 justify-content: space-between;
9736 }
9737
9738 .hero .navbar {
9739 background: none;
9740 }
9741
9742 .hero .tabs ul {
9743 border-bottom: none;
9744 }
9745
9746 .hero.is-white {
9747 background-color: white;
9748 color: #0a0a0a;
9749 }
9750
9751 .hero.is-white a:not(.button),
9752 .hero.is-white strong {
9753 color: inherit;
9754 }
9755
9756 .hero.is-white .title {
9757 color: #0a0a0a;
9758 }
9759
9760 .hero.is-white .subtitle {
9761 color: rgba(10, 10, 10, 0.9);
9762 }
9763
9764 .hero.is-white .subtitle a:not(.button),
9765 .hero.is-white .subtitle strong {
9766 color: #0a0a0a;
9767 }
9768
9769 @media screen and (max-width: 1023px) {
9770 .hero.is-white .navbar-menu {
9771 background-color: white;
9772 }
9773 }
9774
9775 .hero.is-white .navbar-item,
9776 .hero.is-white .navbar-link {
9777 color: rgba(10, 10, 10, 0.7);
9778 }
9779
9780 .hero.is-white a.navbar-item:hover, .hero.is-white a.navbar-item.is-active,
9781 .hero.is-white .navbar-link:hover,
9782 .hero.is-white .navbar-link.is-active {
9783 background-color: #f2f2f2;
9784 color: #0a0a0a;
9785 }
9786
9787 .hero.is-white .tabs a {
9788 color: #0a0a0a;
9789 opacity: 0.9;
9790 }
9791
9792 .hero.is-white .tabs a:hover {
9793 opacity: 1;
9794 }
9795
9796 .hero.is-white .tabs li.is-active a {
9797 opacity: 1;
9798 }
9799
9800 .hero.is-white .tabs.is-boxed a, .hero.is-white .tabs.is-toggle a {
9801 color: #0a0a0a;
9802 }
9803
9804 .hero.is-white .tabs.is-boxed a:hover, .hero.is-white .tabs.is-toggle a:hover {
9805 background-color: rgba(10, 10, 10, 0.1);
9806 }
9807
9808 .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 {
9809 background-color: #0a0a0a;
9810 border-color: #0a0a0a;
9811 color: white;
9812 }
9813
9814 .hero.is-white.is-bold {
9815 background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
9816 }
9817
9818 @media screen and (max-width: 768px) {
9819 .hero.is-white.is-bold .navbar-menu {
9820 background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
9821 }
9822 }
9823
9824 .hero.is-black {
9825 background-color: #0a0a0a;
9826 color: white;
9827 }
9828
9829 .hero.is-black a:not(.button),
9830 .hero.is-black strong {
9831 color: inherit;
9832 }
9833
9834 .hero.is-black .title {
9835 color: white;
9836 }
9837
9838 .hero.is-black .subtitle {
9839 color: rgba(255, 255, 255, 0.9);
9840 }
9841
9842 .hero.is-black .subtitle a:not(.button),
9843 .hero.is-black .subtitle strong {
9844 color: white;
9845 }
9846
9847 @media screen and (max-width: 1023px) {
9848 .hero.is-black .navbar-menu {
9849 background-color: #0a0a0a;
9850 }
9851 }
9852
9853 .hero.is-black .navbar-item,
9854 .hero.is-black .navbar-link {
9855 color: rgba(255, 255, 255, 0.7);
9856 }
9857
9858 .hero.is-black a.navbar-item:hover, .hero.is-black a.navbar-item.is-active,
9859 .hero.is-black .navbar-link:hover,
9860 .hero.is-black .navbar-link.is-active {
9861 background-color: black;
9862 color: white;
9863 }
9864
9865 .hero.is-black .tabs a {
9866 color: white;
9867 opacity: 0.9;
9868 }
9869
9870 .hero.is-black .tabs a:hover {
9871 opacity: 1;
9872 }
9873
9874 .hero.is-black .tabs li.is-active a {
9875 opacity: 1;
9876 }
9877
9878 .hero.is-black .tabs.is-boxed a, .hero.is-black .tabs.is-toggle a {
9879 color: white;
9880 }
9881
9882 .hero.is-black .tabs.is-boxed a:hover, .hero.is-black .tabs.is-toggle a:hover {
9883 background-color: rgba(10, 10, 10, 0.1);
9884 }
9885
9886 .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 {
9887 background-color: white;
9888 border-color: white;
9889 color: #0a0a0a;
9890 }
9891
9892 .hero.is-black.is-bold {
9893 background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
9894 }
9895
9896 @media screen and (max-width: 768px) {
9897 .hero.is-black.is-bold .navbar-menu {
9898 background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
9899 }
9900 }
9901
9902 .hero.is-light {
9903 background-color: whitesmoke;
9904 color: #363636;
9905 }
9906
9907 .hero.is-light a:not(.button),
9908 .hero.is-light strong {
9909 color: inherit;
9910 }
9911
9912 .hero.is-light .title {
9913 color: #363636;
9914 }
9915
9916 .hero.is-light .subtitle {
9917 color: rgba(54, 54, 54, 0.9);
9918 }
9919
9920 .hero.is-light .subtitle a:not(.button),
9921 .hero.is-light .subtitle strong {
9922 color: #363636;
9923 }
9924
9925 @media screen and (max-width: 1023px) {
9926 .hero.is-light .navbar-menu {
9927 background-color: whitesmoke;
9928 }
9929 }
9930
9931 .hero.is-light .navbar-item,
9932 .hero.is-light .navbar-link {
9933 color: rgba(54, 54, 54, 0.7);
9934 }
9935
9936 .hero.is-light a.navbar-item:hover, .hero.is-light a.navbar-item.is-active,
9937 .hero.is-light .navbar-link:hover,
9938 .hero.is-light .navbar-link.is-active {
9939 background-color: #e8e8e8;
9940 color: #363636;
9941 }
9942
9943 .hero.is-light .tabs a {
9944 color: #363636;
9945 opacity: 0.9;
9946 }
9947
9948 .hero.is-light .tabs a:hover {
9949 opacity: 1;
9950 }
9951
9952 .hero.is-light .tabs li.is-active a {
9953 opacity: 1;
9954 }
9955
9956 .hero.is-light .tabs.is-boxed a, .hero.is-light .tabs.is-toggle a {
9957 color: #363636;
9958 }
9959
9960 .hero.is-light .tabs.is-boxed a:hover, .hero.is-light .tabs.is-toggle a:hover {
9961 background-color: rgba(10, 10, 10, 0.1);
9962 }
9963
9964 .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 {
9965 background-color: #363636;
9966 border-color: #363636;
9967 color: whitesmoke;
9968 }
9969
9970 .hero.is-light.is-bold {
9971 background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
9972 }
9973
9974 @media screen and (max-width: 768px) {
9975 .hero.is-light.is-bold .navbar-menu {
9976 background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
9977 }
9978 }
9979
9980 .hero.is-dark {
9981 background-color: #363636;
9982 color: whitesmoke;
9983 }
9984
9985 .hero.is-dark a:not(.button),
9986 .hero.is-dark strong {
9987 color: inherit;
9988 }
9989
9990 .hero.is-dark .title {
9991 color: whitesmoke;
9992 }
9993
9994 .hero.is-dark .subtitle {
9995 color: rgba(245, 245, 245, 0.9);
9996 }
9997
9998 .hero.is-dark .subtitle a:not(.button),
9999 .hero.is-dark .subtitle strong {
10000 color: whitesmoke;
10001 }
10002
10003 @media screen and (max-width: 1023px) {
10004 .hero.is-dark .navbar-menu {
10005 background-color: #363636;
10006 }
10007 }
10008
10009 .hero.is-dark .navbar-item,
10010 .hero.is-dark .navbar-link {
10011 color: rgba(245, 245, 245, 0.7);
10012 }
10013
10014 .hero.is-dark a.navbar-item:hover, .hero.is-dark a.navbar-item.is-active,
10015 .hero.is-dark .navbar-link:hover,
10016 .hero.is-dark .navbar-link.is-active {
10017 background-color: #292929;
10018 color: whitesmoke;
10019 }
10020
10021 .hero.is-dark .tabs a {
10022 color: whitesmoke;
10023 opacity: 0.9;
10024 }
10025
10026 .hero.is-dark .tabs a:hover {
10027 opacity: 1;
10028 }
10029
10030 .hero.is-dark .tabs li.is-active a {
10031 opacity: 1;
10032 }
10033
10034 .hero.is-dark .tabs.is-boxed a, .hero.is-dark .tabs.is-toggle a {
10035 color: whitesmoke;
10036 }
10037
10038 .hero.is-dark .tabs.is-boxed a:hover, .hero.is-dark .tabs.is-toggle a:hover {
10039 background-color: rgba(10, 10, 10, 0.1);
10040 }
10041
10042 .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 {
10043 background-color: whitesmoke;
10044 border-color: whitesmoke;
10045 color: #363636;
10046 }
10047
10048 .hero.is-dark.is-bold {
10049 background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
10050 }
10051
10052 @media screen and (max-width: 768px) {
10053 .hero.is-dark.is-bold .navbar-menu {
10054 background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
10055 }
10056 }
10057
10058 .hero.is-primary {
10059 background-color: #00d1b2;
10060 color: #fff;
10061 }
10062
10063 .hero.is-primary a:not(.button),
10064 .hero.is-primary strong {
10065 color: inherit;
10066 }
10067
10068 .hero.is-primary .title {
10069 color: #fff;
10070 }
10071
10072 .hero.is-primary .subtitle {
10073 color: rgba(255, 255, 255, 0.9);
10074 }
10075
10076 .hero.is-primary .subtitle a:not(.button),
10077 .hero.is-primary .subtitle strong {
10078 color: #fff;
10079 }
10080
10081 @media screen and (max-width: 1023px) {
10082 .hero.is-primary .navbar-menu {
10083 background-color: #00d1b2;
10084 }
10085 }
10086
10087 .hero.is-primary .navbar-item,
10088 .hero.is-primary .navbar-link {
10089 color: rgba(255, 255, 255, 0.7);
10090 }
10091
10092 .hero.is-primary a.navbar-item:hover, .hero.is-primary a.navbar-item.is-active,
10093 .hero.is-primary .navbar-link:hover,
10094 .hero.is-primary .navbar-link.is-active {
10095 background-color: #00b89c;
10096 color: #fff;
10097 }
10098
10099 .hero.is-primary .tabs a {
10100 color: #fff;
10101 opacity: 0.9;
10102 }
10103
10104 .hero.is-primary .tabs a:hover {
10105 opacity: 1;
10106 }
10107
10108 .hero.is-primary .tabs li.is-active a {
10109 opacity: 1;
10110 }
10111
10112 .hero.is-primary .tabs.is-boxed a, .hero.is-primary .tabs.is-toggle a {
10113 color: #fff;
10114 }
10115
10116 .hero.is-primary .tabs.is-boxed a:hover, .hero.is-primary .tabs.is-toggle a:hover {
10117 background-color: rgba(10, 10, 10, 0.1);
10118 }
10119
10120 .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 {
10121 background-color: #fff;
10122 border-color: #fff;
10123 color: #00d1b2;
10124 }
10125
10126 .hero.is-primary.is-bold {
10127 background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
10128 }
10129
10130 @media screen and (max-width: 768px) {
10131 .hero.is-primary.is-bold .navbar-menu {
10132 background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
10133 }
10134 }
10135
10136 .hero.is-link {
10137 background-color: #3273dc;
10138 color: #fff;
10139 }
10140
10141 .hero.is-link a:not(.button),
10142 .hero.is-link strong {
10143 color: inherit;
10144 }
10145
10146 .hero.is-link .title {
10147 color: #fff;
10148 }
10149
10150 .hero.is-link .subtitle {
10151 color: rgba(255, 255, 255, 0.9);
10152 }
10153
10154 .hero.is-link .subtitle a:not(.button),
10155 .hero.is-link .subtitle strong {
10156 color: #fff;
10157 }
10158
10159 @media screen and (max-width: 1023px) {
10160 .hero.is-link .navbar-menu {
10161 background-color: #3273dc;
10162 }
10163 }
10164
10165 .hero.is-link .navbar-item,
10166 .hero.is-link .navbar-link {
10167 color: rgba(255, 255, 255, 0.7);
10168 }
10169
10170 .hero.is-link a.navbar-item:hover, .hero.is-link a.navbar-item.is-active,
10171 .hero.is-link .navbar-link:hover,
10172 .hero.is-link .navbar-link.is-active {
10173 background-color: #2366d1;
10174 color: #fff;
10175 }
10176
10177 .hero.is-link .tabs a {
10178 color: #fff;
10179 opacity: 0.9;
10180 }
10181
10182 .hero.is-link .tabs a:hover {
10183 opacity: 1;
10184 }
10185
10186 .hero.is-link .tabs li.is-active a {
10187 opacity: 1;
10188 }
10189
10190 .hero.is-link .tabs.is-boxed a, .hero.is-link .tabs.is-toggle a {
10191 color: #fff;
10192 }
10193
10194 .hero.is-link .tabs.is-boxed a:hover, .hero.is-link .tabs.is-toggle a:hover {
10195 background-color: rgba(10, 10, 10, 0.1);
10196 }
10197
10198 .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 {
10199 background-color: #fff;
10200 border-color: #fff;
10201 color: #3273dc;
10202 }
10203
10204 .hero.is-link.is-bold {
10205 background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
10206 }
10207
10208 @media screen and (max-width: 768px) {
10209 .hero.is-link.is-bold .navbar-menu {
10210 background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
10211 }
10212 }
10213
10214 .hero.is-info {
10215 background-color: #209cee;
10216 color: #fff;
10217 }
10218
10219 .hero.is-info a:not(.button),
10220 .hero.is-info strong {
10221 color: inherit;
10222 }
10223
10224 .hero.is-info .title {
10225 color: #fff;
10226 }
10227
10228 .hero.is-info .subtitle {
10229 color: rgba(255, 255, 255, 0.9);
10230 }
10231
10232 .hero.is-info .subtitle a:not(.button),
10233 .hero.is-info .subtitle strong {
10234 color: #fff;
10235 }
10236
10237 @media screen and (max-width: 1023px) {
10238 .hero.is-info .navbar-menu {
10239 background-color: #209cee;
10240 }
10241 }
10242
10243 .hero.is-info .navbar-item,
10244 .hero.is-info .navbar-link {
10245 color: rgba(255, 255, 255, 0.7);
10246 }
10247
10248 .hero.is-info a.navbar-item:hover, .hero.is-info a.navbar-item.is-active,
10249 .hero.is-info .navbar-link:hover,
10250 .hero.is-info .navbar-link.is-active {
10251 background-color: #118fe4;
10252 color: #fff;
10253 }
10254
10255 .hero.is-info .tabs a {
10256 color: #fff;
10257 opacity: 0.9;
10258 }
10259
10260 .hero.is-info .tabs a:hover {
10261 opacity: 1;
10262 }
10263
10264 .hero.is-info .tabs li.is-active a {
10265 opacity: 1;
10266 }
10267
10268 .hero.is-info .tabs.is-boxed a, .hero.is-info .tabs.is-toggle a {
10269 color: #fff;
10270 }
10271
10272 .hero.is-info .tabs.is-boxed a:hover, .hero.is-info .tabs.is-toggle a:hover {
10273 background-color: rgba(10, 10, 10, 0.1);
10274 }
10275
10276 .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 {
10277 background-color: #fff;
10278 border-color: #fff;
10279 color: #209cee;
10280 }
10281
10282 .hero.is-info.is-bold {
10283 background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
10284 }
10285
10286 @media screen and (max-width: 768px) {
10287 .hero.is-info.is-bold .navbar-menu {
10288 background-image: linear-gradient(141deg, #04a6d7 0%, #209cee 71%, #3287f5 100%);
10289 }
10290 }
10291
10292 .hero.is-success {
10293 background-color: #23d160;
10294 color: #fff;
10295 }
10296
10297 .hero.is-success a:not(.button),
10298 .hero.is-success strong {
10299 color: inherit;
10300 }
10301
10302 .hero.is-success .title {
10303 color: #fff;
10304 }
10305
10306 .hero.is-success .subtitle {
10307 color: rgba(255, 255, 255, 0.9);
10308 }
10309
10310 .hero.is-success .subtitle a:not(.button),
10311 .hero.is-success .subtitle strong {
10312 color: #fff;
10313 }
10314
10315 @media screen and (max-width: 1023px) {
10316 .hero.is-success .navbar-menu {
10317 background-color: #23d160;
10318 }
10319 }
10320
10321 .hero.is-success .navbar-item,
10322 .hero.is-success .navbar-link {
10323 color: rgba(255, 255, 255, 0.7);
10324 }
10325
10326 .hero.is-success a.navbar-item:hover, .hero.is-success a.navbar-item.is-active,
10327 .hero.is-success .navbar-link:hover,
10328 .hero.is-success .navbar-link.is-active {
10329 background-color: #20bc56;
10330 color: #fff;
10331 }
10332
10333 .hero.is-success .tabs a {
10334 color: #fff;
10335 opacity: 0.9;
10336 }
10337
10338 .hero.is-success .tabs a:hover {
10339 opacity: 1;
10340 }
10341
10342 .hero.is-success .tabs li.is-active a {
10343 opacity: 1;
10344 }
10345
10346 .hero.is-success .tabs.is-boxed a, .hero.is-success .tabs.is-toggle a {
10347 color: #fff;
10348 }
10349
10350 .hero.is-success .tabs.is-boxed a:hover, .hero.is-success .tabs.is-toggle a:hover {
10351 background-color: rgba(10, 10, 10, 0.1);
10352 }
10353
10354 .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 {
10355 background-color: #fff;
10356 border-color: #fff;
10357 color: #23d160;
10358 }
10359
10360 .hero.is-success.is-bold {
10361 background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
10362 }
10363
10364 @media screen and (max-width: 768px) {
10365 .hero.is-success.is-bold .navbar-menu {
10366 background-image: linear-gradient(141deg, #12af2f 0%, #23d160 71%, #2ce28a 100%);
10367 }
10368 }
10369
10370 .hero.is-warning {
10371 background-color: #ffdd57;
10372 color: rgba(0, 0, 0, 0.7);
10373 }
10374
10375 .hero.is-warning a:not(.button),
10376 .hero.is-warning strong {
10377 color: inherit;
10378 }
10379
10380 .hero.is-warning .title {
10381 color: rgba(0, 0, 0, 0.7);
10382 }
10383
10384 .hero.is-warning .subtitle {
10385 color: rgba(0, 0, 0, 0.9);
10386 }
10387
10388 .hero.is-warning .subtitle a:not(.button),
10389 .hero.is-warning .subtitle strong {
10390 color: rgba(0, 0, 0, 0.7);
10391 }
10392
10393 @media screen and (max-width: 1023px) {
10394 .hero.is-warning .navbar-menu {
10395 background-color: #ffdd57;
10396 }
10397 }
10398
10399 .hero.is-warning .navbar-item,
10400 .hero.is-warning .navbar-link {
10401 color: rgba(0, 0, 0, 0.7);
10402 }
10403
10404 .hero.is-warning a.navbar-item:hover, .hero.is-warning a.navbar-item.is-active,
10405 .hero.is-warning .navbar-link:hover,
10406 .hero.is-warning .navbar-link.is-active {
10407 background-color: #ffd83d;
10408 color: rgba(0, 0, 0, 0.7);
10409 }
10410
10411 .hero.is-warning .tabs a {
10412 color: rgba(0, 0, 0, 0.7);
10413 opacity: 0.9;
10414 }
10415
10416 .hero.is-warning .tabs a:hover {
10417 opacity: 1;
10418 }
10419
10420 .hero.is-warning .tabs li.is-active a {
10421 opacity: 1;
10422 }
10423
10424 .hero.is-warning .tabs.is-boxed a, .hero.is-warning .tabs.is-toggle a {
10425 color: rgba(0, 0, 0, 0.7);
10426 }
10427
10428 .hero.is-warning .tabs.is-boxed a:hover, .hero.is-warning .tabs.is-toggle a:hover {
10429 background-color: rgba(10, 10, 10, 0.1);
10430 }
10431
10432 .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 {
10433 background-color: rgba(0, 0, 0, 0.7);
10434 border-color: rgba(0, 0, 0, 0.7);
10435 color: #ffdd57;
10436 }
10437
10438 .hero.is-warning.is-bold {
10439 background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
10440 }
10441
10442 @media screen and (max-width: 768px) {
10443 .hero.is-warning.is-bold .navbar-menu {
10444 background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
10445 }
10446 }
10447
10448 .hero.is-danger {
10449 background-color: #ff3860;
10450 color: #fff;
10451 }
10452
10453 .hero.is-danger a:not(.button),
10454 .hero.is-danger strong {
10455 color: inherit;
10456 }
10457
10458 .hero.is-danger .title {
10459 color: #fff;
10460 }
10461
10462 .hero.is-danger .subtitle {
10463 color: rgba(255, 255, 255, 0.9);
10464 }
10465
10466 .hero.is-danger .subtitle a:not(.button),
10467 .hero.is-danger .subtitle strong {
10468 color: #fff;
10469 }
10470
10471 @media screen and (max-width: 1023px) {
10472 .hero.is-danger .navbar-menu {
10473 background-color: #ff3860;
10474 }
10475 }
10476
10477 .hero.is-danger .navbar-item,
10478 .hero.is-danger .navbar-link {
10479 color: rgba(255, 255, 255, 0.7);
10480 }
10481
10482 .hero.is-danger a.navbar-item:hover, .hero.is-danger a.navbar-item.is-active,
10483 .hero.is-danger .navbar-link:hover,
10484 .hero.is-danger .navbar-link.is-active {
10485 background-color: #ff1f4b;
10486 color: #fff;
10487 }
10488
10489 .hero.is-danger .tabs a {
10490 color: #fff;
10491 opacity: 0.9;
10492 }
10493
10494 .hero.is-danger .tabs a:hover {
10495 opacity: 1;
10496 }
10497
10498 .hero.is-danger .tabs li.is-active a {
10499 opacity: 1;
10500 }
10501
10502 .hero.is-danger .tabs.is-boxed a, .hero.is-danger .tabs.is-toggle a {
10503 color: #fff;
10504 }
10505
10506 .hero.is-danger .tabs.is-boxed a:hover, .hero.is-danger .tabs.is-toggle a:hover {
10507 background-color: rgba(10, 10, 10, 0.1);
10508 }
10509
10510 .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 {
10511 background-color: #fff;
10512 border-color: #fff;
10513 color: #ff3860;
10514 }
10515
10516 .hero.is-danger.is-bold {
10517 background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
10518 }
10519
10520 @media screen and (max-width: 768px) {
10521 .hero.is-danger.is-bold .navbar-menu {
10522 background-image: linear-gradient(141deg, #ff0561 0%, #ff3860 71%, #ff5257 100%);
10523 }
10524 }
10525
10526 .hero.is-small .hero-body {
10527 padding-bottom: 1.5rem;
10528 padding-top: 1.5rem;
10529 }
10530
10531 @media screen and (min-width: 769px), print {
10532 .hero.is-medium .hero-body {
10533 padding-bottom: 9rem;
10534 padding-top: 9rem;
10535 }
10536 }
10537
10538 @media screen and (min-width: 769px), print {
10539 .hero.is-large .hero-body {
10540 padding-bottom: 18rem;
10541 padding-top: 18rem;
10542 }
10543 }
10544
10545 .hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body {
10546 -webkit-box-align: center;
10547 -ms-flex-align: center;
10548 align-items: center;
10549 display: -webkit-box;
10550 display: -ms-flexbox;
10551 display: flex;
10552 }
10553
10554 .hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container {
10555 -webkit-box-flex: 1;
10556 -ms-flex-positive: 1;
10557 flex-grow: 1;
10558 -ms-flex-negative: 1;
10559 flex-shrink: 1;
10560 }
10561
10562 .hero.is-halfheight {
10563 min-height: 50vh;
10564 }
10565
10566 .hero.is-fullheight {
10567 min-height: 100vh;
10568 }
10569
10570 .hero-video {
10571 bottom: 0;
10572 left: 0;
10573 position: absolute;
10574 right: 0;
10575 top: 0;
10576 overflow: hidden;
10577 }
10578
10579 .hero-video video {
10580 left: 50%;
10581 min-height: 100%;
10582 min-width: 100%;
10583 position: absolute;
10584 top: 50%;
10585 -webkit-transform: translate3d(-50%, -50%, 0);
10586 transform: translate3d(-50%, -50%, 0);
10587 }
10588
10589 .hero-video.is-transparent {
10590 opacity: 0.3;
10591 }
10592
10593 @media screen and (max-width: 768px) {
10594 .hero-video {
10595 display: none;
10596 }
10597 }
10598
10599 .hero-buttons {
10600 margin-top: 1.5rem;
10601 }
10602
10603 @media screen and (max-width: 768px) {
10604 .hero-buttons .button {
10605 display: -webkit-box;
10606 display: -ms-flexbox;
10607 display: flex;
10608 }
10609 .hero-buttons .button:not(:last-child) {
10610 margin-bottom: 0.75rem;
10611 }
10612 }
10613
10614 @media screen and (min-width: 769px), print {
10615 .hero-buttons {
10616 display: -webkit-box;
10617 display: -ms-flexbox;
10618 display: flex;
10619 -webkit-box-pack: center;
10620 -ms-flex-pack: center;
10621 justify-content: center;
10622 }
10623 .hero-buttons .button:not(:last-child) {
10624 margin-right: 1.5rem;
10625 }
10626 }
10627
10628 .hero-head,
10629 .hero-foot {
10630 -webkit-box-flex: 0;
10631 -ms-flex-positive: 0;
10632 flex-grow: 0;
10633 -ms-flex-negative: 0;
10634 flex-shrink: 0;
10635 }
10636
10637 .hero-body {
10638 -webkit-box-flex: 1;
10639 -ms-flex-positive: 1;
10640 flex-grow: 1;
10641 -ms-flex-negative: 0;
10642 flex-shrink: 0;
10643 padding: 3rem 1.5rem;
10644 }
10645
10646 .section {
10647 padding: 3rem 1.5rem;
10648 }
10649
10650 @media screen and (min-width: 1024px) {
10651 .section.is-medium {
10652 padding: 9rem 1.5rem;
10653 }
10654 .section.is-large {
10655 padding: 18rem 1.5rem;
10656 }
10657 }
10658
10659 .footer {
10660 background-color: whitesmoke;
10661 padding: 3rem 1.5rem 6rem;
10662 }
10663 /*# sourceMappingURL=bulma.css.map */
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>Frony Ritter, MFT</title>
7 <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
8 <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css">
9 </head>
10 <body>
11 <section class="section">
12 <div class="container">
13 <h1 class="title">
14 Frony Ritter MFT
15 </h1>
16 <p class="subtitle">
17 stop being fucked up mind-wise yo
18 </p>
19 </div>
20 </section>
21 <section class="section">
22 <div class="columns">
23 <div class="column">
24 <div class="box">
25 <h2 class="subtitle">Common Issues</h2><hr/>
26 <div class="content">
27 <p>Common issues I work with include:</p>
28 <ul>
29 <li>Depression</li>
30 <li>Anxiety</li>
31 <li>Dodongos</li>
32 <li>Panic attacks</li>
33 <li>Marital conflict</li>
34 <li>Mid-life issues</li>
35 <li>Caregiver burnout</li>
36 <li>Communication issues</li>
37 <li>Dodongos again</li>
38 <li>Meaning of life issues</li>
39 <li>Trauma</li>
40 <li>Abuse issues</li>
41 <li>Memes</li>
42 <li>Spiritual issues (see previous)</li>
43 </ul></div></div>
44 </div>
45
46 <div class="column">
47 <div class="box">
48 <h2 class="subtitle">Insurance Information</h2><hr/>
49 <p>
50 I am an in network provider for Foundation for Medical
51 Care and out of network for all other insurances. I am
52 not a Medicare or Medical provider.
53 </p>
54 </div>
55 </div>
56
57 <div class="column">
58 <div class="box">
59 <h2 class="subtitle">Contact Details</h2><hr/>
60 <p>
61 Address:
62 3445 S. Demaree, Suite B
63 Visalia, CA, 93277
64 Phone:
65 559-635-4453
66 </p>
67 </div>
68 </div>
69 </div>
70 </section>
71 </body>
72 </html>
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title></title>
5 </head>
6 <body>
7 </body>
8 </html>