1@charset "UTF-8"; 2/* 3========================================================= 4* Argon Dokuwiki Template 5* Based on the Argon Design System by Creative Tim 6* Ported to Dokuwiki by Anchit (@IceWreck) 7========================================================= 8*/ 9/* 10* I know using important at multiple places is a bad thing, but 11* I need to overrule the css already provided by dokuwiki 12*/ 13/*! 14========================================================= 15* Argon Design System - v 1.2.0 16========================================================= 17 18* Product Page: https://www.creative-tim.com/product/argon-design-system 19* Copyright 2020 Creative Tim (http://www.creative-tim.com) 20 21Coded by www.creative-tim.com 22 23========================================================= 24 25* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 26 27 */ 28/*! 29 * Bootstrap v4.5.0 (https://getbootstrap.com/) 30 * Copyright 2011-2020 The Bootstrap Authors 31 * Copyright 2011-2020 Twitter, Inc. 32 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 33 */ 34:root { 35 --blue: #5e72e4; 36 --indigo: #5603ad; 37 --purple: #8965e0; 38 --pink: #f3a4b5; 39 --red: #f5365c; 40 --orange: #fb6340; 41 --yellow: #ffd600; 42 --green: #2dce89; 43 --teal: #11cdef; 44 --cyan: #2bffc6; 45 --white: #fff; 46 --gray: #8898aa; 47 --gray-dark: #32325d; 48 --light: #ced4da; 49 --lighter: #e9ecef; 50 --primary: #5e72e4; 51 --secondary: #f4f5f7; 52 --success: #2dce89; 53 --info: #11cdef; 54 --warning: #fb6340; 55 --danger: #f5365c; 56 --light: #adb5bd; 57 --dark: #212529; 58 --default: #172b4d; 59 --white: #fff; 60 --neutral: #fff; 61 --darker:black; 62 --breakpoint-xs: 0; 63 --breakpoint-sm: 576px; 64 --breakpoint-md: 768px; 65 --breakpoint-lg: 992px; 66 --breakpoint-xl: 1200px; 67 --font-family-sans-serif: sans-serif; 68 --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 69} 70 71*, 72*::before, 73*::after { 74 box-sizing: border-box; 75} 76 77html { 78 font-family: sans-serif; 79 line-height: 1.15; 80 -webkit-text-size-adjust: 100%; 81 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 82} 83 84.page { 85 margin-left: 8px; 86} 87 88article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { 89 display: block; 90} 91 92body { 93 margin: 0; 94 font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Open Sans", sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"; 95 font-size: 1rem; 96 font-weight: 400; 97 line-height: 1.5; 98 color: #17202a; 99 text-align: left; 100 background-color: #fff; 101} 102 103[tabindex="-1"]:focus:not(:focus-visible) { 104 outline: 0 !important; 105} 106 107hr { 108 box-sizing: content-box; 109 height: 0; 110 overflow: visible; 111} 112 113h1, h2, h3, h4, h5, h6 { 114 margin-top: 0; 115 margin-bottom: 0.5rem; 116} 117 118p { 119 margin-top: 0; 120 margin-bottom: 1rem; 121} 122 123abbr[title], 124abbr[data-original-title] { 125 text-decoration: underline; 126 text-decoration: underline dotted; 127 cursor: help; 128 border-bottom: 0; 129 text-decoration-skip-ink: none; 130} 131 132address { 133 margin-bottom: 1rem; 134 font-style: normal; 135 line-height: inherit; 136} 137 138ol, 139ul, 140dl { 141 margin-top: 0; 142 margin-bottom: 1rem; 143} 144 145ol ol, 146ul ul, 147ol ul, 148ul ol { 149 margin-bottom: 0; 150} 151 152dt { 153 font-weight: 600; 154} 155 156dd { 157 margin-bottom: 0.5rem; 158 margin-left: 0; 159} 160 161blockquote { 162 margin: 0 0 1rem; 163} 164 165b, 166strong { 167 font-weight: bolder; 168} 169 170small { 171 font-size: 80%; 172} 173 174sub, 175sup { 176 position: relative; 177 font-size: 75%; 178 line-height: 0; 179 vertical-align: baseline; 180} 181 182sub { 183 bottom: -0.25em; 184} 185 186sup { 187 top: -0.5em; 188} 189 190a { 191 color: #5e72e4; 192 text-decoration: none; 193 background-color: transparent; 194} 195 196a:hover { 197 color: #233dd2; 198 text-decoration: none; 199} 200 201a:not([href]) { 202 color: inherit; 203 text-decoration: none; 204} 205 206a:not([href]):hover { 207 color: inherit; 208 text-decoration: none; 209} 210 211pre, 212code, 213kbd, 214samp { 215 font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 216 font-size: 1em; 217} 218 219pre { 220 margin-top: 0; 221 margin-bottom: 1rem; 222 overflow: auto; 223 -ms-overflow-style: scrollbar; 224} 225 226figure { 227 margin: 0 0 1rem; 228} 229 230img { 231 vertical-align: middle; 232 border-style: none; 233} 234 235svg { 236 overflow: hidden; 237 vertical-align: middle; 238} 239 240table { 241 border-collapse: collapse; 242} 243 244caption { 245 padding-top: 1rem; 246 padding-bottom: 1rem; 247 color: #8898aa; 248 text-align: left; 249 caption-side: bottom; 250} 251 252th { 253 text-align: inherit; 254} 255 256label { 257 display: inline-block; 258 margin-bottom: 0.5rem; 259} 260 261button { 262 border-radius: 0; 263} 264 265button:focus { 266 outline: 1px dotted; 267 outline: 5px auto -webkit-focus-ring-color; 268} 269 270input, 271button, 272select, 273optgroup, 274textarea { 275 margin: 0; 276 font-family: inherit; 277 font-size: inherit; 278 line-height: inherit; 279} 280 281button, 282input { 283 overflow: visible; 284} 285 286button, 287select { 288 text-transform: none; 289} 290 291[role=button] { 292 cursor: pointer; 293} 294 295select { 296 word-wrap: normal; 297} 298 299button, 300[type=button], 301[type=reset], 302[type=submit] { 303 -webkit-appearance: button; 304} 305 306button:not(:disabled), 307[type=button]:not(:disabled), 308[type=reset]:not(:disabled), 309[type=submit]:not(:disabled) { 310 cursor: pointer; 311} 312 313button::-moz-focus-inner, 314[type=button]::-moz-focus-inner, 315[type=reset]::-moz-focus-inner, 316[type=submit]::-moz-focus-inner { 317 padding: 0; 318 border-style: none; 319} 320 321input[type=radio], 322input[type=checkbox] { 323 box-sizing: border-box; 324 padding: 0; 325} 326 327textarea { 328 overflow: auto; 329 resize: vertical; 330} 331 332fieldset { 333 min-width: 0; 334 padding: 0; 335 margin: 0; 336 border: 0; 337} 338 339legend { 340 display: block; 341 width: 100%; 342 max-width: 100%; 343 padding: 0; 344 margin-bottom: 0.5rem; 345 font-size: 1.5rem; 346 line-height: inherit; 347 color: inherit; 348 white-space: normal; 349} 350 351progress { 352 vertical-align: baseline; 353} 354 355[type=number]::-webkit-inner-spin-button, 356[type=number]::-webkit-outer-spin-button { 357 height: auto; 358} 359 360[type=search] { 361 outline-offset: -2px; 362 -webkit-appearance: none; 363} 364 365[type=search]::-webkit-search-decoration { 366 -webkit-appearance: none; 367} 368 369::-webkit-file-upload-button { 370 font: inherit; 371 -webkit-appearance: button; 372} 373 374output { 375 display: inline-block; 376} 377 378summary { 379 display: list-item; 380 cursor: pointer; 381} 382 383template { 384 display: none; 385} 386 387[hidden] { 388 display: none !important; 389} 390 391h1, h2, h3, h4, h5, h6, 392.h1, .h2, .h3, .dokuwiki #dw__register fieldset legend, 393#dw__profiledelete fieldset legend, legend, .h4, .h5, .h6 { 394 margin-bottom: 0.5rem; 395 font-family: inherit; 396 font-weight: 400; 397 line-height: 1.5; 398 color: #17202a; 399} 400 401h1, .h1 { 402 font-size: 2.0rem; 403} 404 405h2, .h2 { 406 font-size: 1.6rem; 407} 408 409h3, .h3, .dokuwiki #dw__register fieldset legend, 410#dw__profiledelete fieldset legend, legend { 411 font-size: 1.5rem; 412} 413 414h4, .h4 { 415 font-size: 1.4rem; 416} 417 418h5, .h5 { 419 font-size: 1.25rem; 420} 421 422h6, .h6 { 423 font-size: 1rem; 424} 425 426.lead { 427 font-size: 1.25rem; 428 font-weight: 300; 429} 430 431.display-1 { 432 font-size: 3.3rem; 433 font-weight: 600; 434 line-height: 1.5; 435} 436 437.display-2 { 438 font-size: 2.75rem; 439 font-weight: 600; 440 line-height: 1.5; 441} 442 443.display-3 { 444 font-size: 2.1875rem; 445 font-weight: 600; 446 line-height: 1.5; 447} 448 449.display-4 { 450 font-size: 1.6275rem; 451 font-weight: 600; 452 line-height: 1.5; 453} 454 455hr { 456 margin-top: 2rem; 457 margin-bottom: 2rem; 458 border: 0; 459 border-top: 0.0625rem solid rgba(0, 0, 0, 0.1); 460} 461 462small, 463.small { 464 font-size: 80%; 465 font-weight: 400; 466} 467 468mark, .search_hit, 469.mark { 470 padding: 0.2em; 471 background-color: #fcf8e3; 472} 473 474.list-unstyled { 475 padding-left: 0; 476 list-style: none; 477} 478 479.list-inline { 480 padding-left: 0; 481 list-style: none; 482} 483 484.list-inline-item { 485 display: inline-block; 486} 487 488.list-inline-item:not(:last-child) { 489 margin-right: 0.5rem; 490} 491 492.initialism { 493 font-size: 90%; 494 text-transform: uppercase; 495} 496 497.blockquote { 498 margin-bottom: 1rem; 499 font-size: 1.25rem; 500} 501 502.blockquote-footer { 503 display: block; 504 font-size: 80%; 505 color: #8898aa; 506} 507 508.blockquote-footer::before { 509 content: "— "; 510} 511 512.img-fluid { 513 max-width: 100%; 514 height: auto; 515} 516 517.img-thumbnail { 518 padding: 0.25rem; 519 background-color: #fff; 520 border: 0.0625rem solid #dee2e6; 521 border-radius: 0.25rem; 522 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); 523 max-width: 100%; 524 height: auto; 525} 526 527.figure { 528 display: inline-block; 529} 530 531.figure-img { 532 margin-bottom: 0.5rem; 533 line-height: 1; 534} 535 536.figure-caption { 537 font-size: 90%; 538 color: #8898aa; 539} 540 541code { 542 font-size: 87.5%; 543 color: #f3a4b5; 544 word-wrap: break-word; 545} 546 547a > code { 548 color: inherit; 549} 550 551kbd { 552 padding: 0.2rem 0.4rem; 553 font-size: 87.5%; 554 color: #fff; 555 background-color: #212529; 556 border-radius: 0.2rem; 557 box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25); 558} 559 560kbd kbd { 561 padding: 0; 562 font-size: 100%; 563 font-weight: 600; 564 box-shadow: none; 565} 566 567pre { 568 display: block; 569 font-size: 87.5%; 570 color: #212529; 571} 572 573pre code { 574 font-size: inherit; 575 color: inherit; 576 word-break: normal; 577} 578 579.pre-scrollable { 580 max-height: 340px; 581 overflow-y: scroll; 582} 583 584.container { 585 width: 100%; 586 padding-right: 15px; 587 padding-left: 15px; 588 margin-right: auto; 589 margin-left: auto; 590} 591 592@media (min-width: 576px) { 593 .container { 594 max-width: 540px; 595 } 596} 597@media (min-width: 768px) { 598 .container { 599 max-width: 720px; 600 } 601} 602@media (min-width: 992px) { 603 .container { 604 max-width: 960px; 605 } 606} 607@media (min-width: 1200px) { 608 .container { 609 max-width: 1040px; 610 } 611} 612.container-fluid, .container-xl, .container-lg, .container-md, .container-sm { 613 width: 100%; 614 padding-right: 15px; 615 padding-left: 15px; 616 margin-right: auto; 617 margin-left: auto; 618} 619 620@media (min-width: 576px) { 621 .container-sm, .container { 622 max-width: 540px; 623 } 624} 625@media (min-width: 768px) { 626 .container-md, .container-sm, .container { 627 max-width: 720px; 628 } 629} 630@media (min-width: 992px) { 631 .container-lg, .container-md, .container-sm, .container { 632 max-width: 960px; 633 } 634} 635@media (min-width: 1200px) { 636 .container-xl, .container-lg, .container-md, .container-sm, .container { 637 max-width: 1040px; 638 } 639} 640.row { 641 display: flex; 642 flex-wrap: wrap; 643 margin-right: -15px; 644 margin-left: -15px; 645} 646 647.no-gutters { 648 margin-right: 0; 649 margin-left: 0; 650} 651 652.no-gutters > .col, 653.no-gutters > [class*=col-] { 654 padding-right: 0; 655 padding-left: 0; 656} 657 658.col-xl, 659.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, 660.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, 661.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, 662.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, 663.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 { 664 position: relative; 665 width: 100%; 666 padding-right: 15px; 667 padding-left: 15px; 668} 669 670.col { 671 flex-basis: 0; 672 flex-grow: 1; 673 min-width: 0; 674 max-width: 100%; 675} 676 677.row-cols-1 > * { 678 flex: 0 0 100%; 679 max-width: 100%; 680} 681 682.row-cols-2 > * { 683 flex: 0 0 50%; 684 max-width: 50%; 685} 686 687.row-cols-3 > * { 688 flex: 0 0 33.3333333333%; 689 max-width: 33.3333333333%; 690} 691 692.row-cols-4 > * { 693 flex: 0 0 25%; 694 max-width: 25%; 695} 696 697.row-cols-5 > * { 698 flex: 0 0 20%; 699 max-width: 20%; 700} 701 702.row-cols-6 > * { 703 flex: 0 0 16.6666666667%; 704 max-width: 16.6666666667%; 705} 706 707.col-auto { 708 flex: 0 0 auto; 709 width: auto; 710 max-width: 100%; 711} 712 713.col-1 { 714 flex: 0 0 8.3333333333%; 715 max-width: 8.3333333333%; 716} 717 718.col-2 { 719 flex: 0 0 16.6666666667%; 720 max-width: 16.6666666667%; 721} 722 723.col-3 { 724 flex: 0 0 25%; 725 max-width: 25%; 726} 727 728.col-4 { 729 flex: 0 0 33.3333333333%; 730 max-width: 33.3333333333%; 731} 732 733.col-5 { 734 flex: 0 0 41.6666666667%; 735 max-width: 41.6666666667%; 736} 737 738.col-6 { 739 flex: 0 0 50%; 740 max-width: 50%; 741} 742 743.col-7 { 744 flex: 0 0 58.3333333333%; 745 max-width: 58.3333333333%; 746} 747 748.col-8 { 749 flex: 0 0 66.6666666667%; 750 max-width: 66.6666666667%; 751} 752 753.col-9 { 754 flex: 0 0 75%; 755 max-width: 75%; 756} 757 758.col-10 { 759 flex: 0 0 83.3333333333%; 760 max-width: 83.3333333333%; 761} 762 763.col-11 { 764 flex: 0 0 91.6666666667%; 765 max-width: 91.6666666667%; 766} 767 768.col-12 { 769 flex: 0 0 100%; 770 max-width: 100%; 771} 772 773.order-first { 774 order: -1; 775} 776 777.order-last { 778 order: 13; 779} 780 781.order-0 { 782 order: 0; 783} 784 785.order-1 { 786 order: 1; 787} 788 789.order-2 { 790 order: 2; 791} 792 793.order-3 { 794 order: 3; 795} 796 797.order-4 { 798 order: 4; 799} 800 801.order-5 { 802 order: 5; 803} 804 805.order-6 { 806 order: 6; 807} 808 809.order-7 { 810 order: 7; 811} 812 813.order-8 { 814 order: 8; 815} 816 817.order-9 { 818 order: 9; 819} 820 821.order-10 { 822 order: 10; 823} 824 825.order-11 { 826 order: 11; 827} 828 829.order-12 { 830 order: 12; 831} 832 833.offset-1 { 834 margin-left: 8.3333333333%; 835} 836 837.offset-2 { 838 margin-left: 16.6666666667%; 839} 840 841.offset-3 { 842 margin-left: 25%; 843} 844 845.offset-4 { 846 margin-left: 33.3333333333%; 847} 848 849.offset-5 { 850 margin-left: 41.6666666667%; 851} 852 853.offset-6 { 854 margin-left: 50%; 855} 856 857.offset-7 { 858 margin-left: 58.3333333333%; 859} 860 861.offset-8 { 862 margin-left: 66.6666666667%; 863} 864 865.offset-9 { 866 margin-left: 75%; 867} 868 869.offset-10 { 870 margin-left: 83.3333333333%; 871} 872 873.offset-11 { 874 margin-left: 91.6666666667%; 875} 876 877@media (min-width: 576px) { 878 .col-sm { 879 flex-basis: 0; 880 flex-grow: 1; 881 min-width: 0; 882 max-width: 100%; 883 } 884 885 .row-cols-sm-1 > * { 886 flex: 0 0 100%; 887 max-width: 100%; 888 } 889 890 .row-cols-sm-2 > * { 891 flex: 0 0 50%; 892 max-width: 50%; 893 } 894 895 .row-cols-sm-3 > * { 896 flex: 0 0 33.3333333333%; 897 max-width: 33.3333333333%; 898 } 899 900 .row-cols-sm-4 > * { 901 flex: 0 0 25%; 902 max-width: 25%; 903 } 904 905 .row-cols-sm-5 > * { 906 flex: 0 0 20%; 907 max-width: 20%; 908 } 909 910 .row-cols-sm-6 > * { 911 flex: 0 0 16.6666666667%; 912 max-width: 16.6666666667%; 913 } 914 915 .col-sm-auto { 916 flex: 0 0 auto; 917 width: auto; 918 max-width: 100%; 919 } 920 921 .col-sm-1 { 922 flex: 0 0 8.3333333333%; 923 max-width: 8.3333333333%; 924 } 925 926 .col-sm-2 { 927 flex: 0 0 16.6666666667%; 928 max-width: 16.6666666667%; 929 } 930 931 .col-sm-3 { 932 flex: 0 0 25%; 933 max-width: 25%; 934 } 935 936 .col-sm-4 { 937 flex: 0 0 33.3333333333%; 938 max-width: 33.3333333333%; 939 } 940 941 .col-sm-5 { 942 flex: 0 0 41.6666666667%; 943 max-width: 41.6666666667%; 944 } 945 946 .col-sm-6 { 947 flex: 0 0 50%; 948 max-width: 50%; 949 } 950 951 .col-sm-7 { 952 flex: 0 0 58.3333333333%; 953 max-width: 58.3333333333%; 954 } 955 956 .col-sm-8 { 957 flex: 0 0 66.6666666667%; 958 max-width: 66.6666666667%; 959 } 960 961 .col-sm-9 { 962 flex: 0 0 75%; 963 max-width: 75%; 964 } 965 966 .col-sm-10 { 967 flex: 0 0 83.3333333333%; 968 max-width: 83.3333333333%; 969 } 970 971 .col-sm-11 { 972 flex: 0 0 91.6666666667%; 973 max-width: 91.6666666667%; 974 } 975 976 .col-sm-12 { 977 flex: 0 0 100%; 978 max-width: 100%; 979 } 980 981 .order-sm-first { 982 order: -1; 983 } 984 985 .order-sm-last { 986 order: 13; 987 } 988 989 .order-sm-0 { 990 order: 0; 991 } 992 993 .order-sm-1 { 994 order: 1; 995 } 996 997 .order-sm-2 { 998 order: 2; 999 } 1000 1001 .order-sm-3 { 1002 order: 3; 1003 } 1004 1005 .order-sm-4 { 1006 order: 4; 1007 } 1008 1009 .order-sm-5 { 1010 order: 5; 1011 } 1012 1013 .order-sm-6 { 1014 order: 6; 1015 } 1016 1017 .order-sm-7 { 1018 order: 7; 1019 } 1020 1021 .order-sm-8 { 1022 order: 8; 1023 } 1024 1025 .order-sm-9 { 1026 order: 9; 1027 } 1028 1029 .order-sm-10 { 1030 order: 10; 1031 } 1032 1033 .order-sm-11 { 1034 order: 11; 1035 } 1036 1037 .order-sm-12 { 1038 order: 12; 1039 } 1040 1041 .offset-sm-0 { 1042 margin-left: 0; 1043 } 1044 1045 .offset-sm-1 { 1046 margin-left: 8.3333333333%; 1047 } 1048 1049 .offset-sm-2 { 1050 margin-left: 16.6666666667%; 1051 } 1052 1053 .offset-sm-3 { 1054 margin-left: 25%; 1055 } 1056 1057 .offset-sm-4 { 1058 margin-left: 33.3333333333%; 1059 } 1060 1061 .offset-sm-5 { 1062 margin-left: 41.6666666667%; 1063 } 1064 1065 .offset-sm-6 { 1066 margin-left: 50%; 1067 } 1068 1069 .offset-sm-7 { 1070 margin-left: 58.3333333333%; 1071 } 1072 1073 .offset-sm-8 { 1074 margin-left: 66.6666666667%; 1075 } 1076 1077 .offset-sm-9 { 1078 margin-left: 75%; 1079 } 1080 1081 .offset-sm-10 { 1082 margin-left: 83.3333333333%; 1083 } 1084 1085 .offset-sm-11 { 1086 margin-left: 91.6666666667%; 1087 } 1088} 1089@media (min-width: 768px) { 1090 .col-md { 1091 flex-basis: 0; 1092 flex-grow: 1; 1093 min-width: 0; 1094 max-width: 100%; 1095 } 1096 1097 .row-cols-md-1 > * { 1098 flex: 0 0 100%; 1099 max-width: 100%; 1100 } 1101 1102 .row-cols-md-2 > * { 1103 flex: 0 0 50%; 1104 max-width: 50%; 1105 } 1106 1107 .row-cols-md-3 > * { 1108 flex: 0 0 33.3333333333%; 1109 max-width: 33.3333333333%; 1110 } 1111 1112 .row-cols-md-4 > * { 1113 flex: 0 0 25%; 1114 max-width: 25%; 1115 } 1116 1117 .row-cols-md-5 > * { 1118 flex: 0 0 20%; 1119 max-width: 20%; 1120 } 1121 1122 .row-cols-md-6 > * { 1123 flex: 0 0 16.6666666667%; 1124 max-width: 16.6666666667%; 1125 } 1126 1127 .col-md-auto { 1128 flex: 0 0 auto; 1129 width: auto; 1130 max-width: 100%; 1131 } 1132 1133 .col-md-1 { 1134 flex: 0 0 8.3333333333%; 1135 max-width: 8.3333333333%; 1136 } 1137 1138 .col-md-2 { 1139 flex: 0 0 16.6666666667%; 1140 max-width: 16.6666666667%; 1141 } 1142 1143 .col-md-3 { 1144 flex: 0 0 25%; 1145 max-width: 25%; 1146 } 1147 1148 .col-md-4 { 1149 flex: 0 0 33.3333333333%; 1150 max-width: 33.3333333333%; 1151 } 1152 1153 .col-md-5 { 1154 flex: 0 0 41.6666666667%; 1155 max-width: 41.6666666667%; 1156 } 1157 1158 .col-md-6 { 1159 flex: 0 0 50%; 1160 max-width: 50%; 1161 } 1162 1163 .col-md-7 { 1164 flex: 0 0 58.3333333333%; 1165 max-width: 58.3333333333%; 1166 } 1167 1168 .col-md-8 { 1169 flex: 0 0 66.6666666667%; 1170 max-width: 66.6666666667%; 1171 } 1172 1173 .col-md-9 { 1174 flex: 0 0 75%; 1175 max-width: 75%; 1176 } 1177 1178 .col-md-10 { 1179 flex: 0 0 83.3333333333%; 1180 max-width: 83.3333333333%; 1181 } 1182 1183 .col-md-11 { 1184 flex: 0 0 91.6666666667%; 1185 max-width: 91.6666666667%; 1186 } 1187 1188 .col-md-12 { 1189 flex: 0 0 100%; 1190 max-width: 100%; 1191 } 1192 1193 .order-md-first { 1194 order: -1; 1195 } 1196 1197 .order-md-last { 1198 order: 13; 1199 } 1200 1201 .order-md-0 { 1202 order: 0; 1203 } 1204 1205 .order-md-1 { 1206 order: 1; 1207 } 1208 1209 .order-md-2 { 1210 order: 2; 1211 } 1212 1213 .order-md-3 { 1214 order: 3; 1215 } 1216 1217 .order-md-4 { 1218 order: 4; 1219 } 1220 1221 .order-md-5 { 1222 order: 5; 1223 } 1224 1225 .order-md-6 { 1226 order: 6; 1227 } 1228 1229 .order-md-7 { 1230 order: 7; 1231 } 1232 1233 .order-md-8 { 1234 order: 8; 1235 } 1236 1237 .order-md-9 { 1238 order: 9; 1239 } 1240 1241 .order-md-10 { 1242 order: 10; 1243 } 1244 1245 .order-md-11 { 1246 order: 11; 1247 } 1248 1249 .order-md-12 { 1250 order: 12; 1251 } 1252 1253 .offset-md-0 { 1254 margin-left: 0; 1255 } 1256 1257 .offset-md-1 { 1258 margin-left: 8.3333333333%; 1259 } 1260 1261 .offset-md-2 { 1262 margin-left: 16.6666666667%; 1263 } 1264 1265 .offset-md-3 { 1266 margin-left: 25%; 1267 } 1268 1269 .offset-md-4 { 1270 margin-left: 33.3333333333%; 1271 } 1272 1273 .offset-md-5 { 1274 margin-left: 41.6666666667%; 1275 } 1276 1277 .offset-md-6 { 1278 margin-left: 50%; 1279 } 1280 1281 .offset-md-7 { 1282 margin-left: 58.3333333333%; 1283 } 1284 1285 .offset-md-8 { 1286 margin-left: 66.6666666667%; 1287 } 1288 1289 .offset-md-9 { 1290 margin-left: 75%; 1291 } 1292 1293 .offset-md-10 { 1294 margin-left: 83.3333333333%; 1295 } 1296 1297 .offset-md-11 { 1298 margin-left: 91.6666666667%; 1299 } 1300} 1301@media (min-width: 992px) { 1302 .col-lg { 1303 flex-basis: 0; 1304 flex-grow: 1; 1305 min-width: 0; 1306 max-width: 100%; 1307 } 1308 1309 .row-cols-lg-1 > * { 1310 flex: 0 0 100%; 1311 max-width: 100%; 1312 } 1313 1314 .row-cols-lg-2 > * { 1315 flex: 0 0 50%; 1316 max-width: 50%; 1317 } 1318 1319 .row-cols-lg-3 > * { 1320 flex: 0 0 33.3333333333%; 1321 max-width: 33.3333333333%; 1322 } 1323 1324 .row-cols-lg-4 > * { 1325 flex: 0 0 25%; 1326 max-width: 25%; 1327 } 1328 1329 .row-cols-lg-5 > * { 1330 flex: 0 0 20%; 1331 max-width: 20%; 1332 } 1333 1334 .row-cols-lg-6 > * { 1335 flex: 0 0 16.6666666667%; 1336 max-width: 16.6666666667%; 1337 } 1338 1339 .col-lg-auto { 1340 flex: 0 0 auto; 1341 width: auto; 1342 max-width: 100%; 1343 } 1344 1345 .col-lg-1 { 1346 flex: 0 0 8.3333333333%; 1347 max-width: 8.3333333333%; 1348 } 1349 1350 .col-lg-2 { 1351 flex: 0 0 16.6666666667%; 1352 max-width: 16.6666666667%; 1353 } 1354 1355 .col-lg-3 { 1356 flex: 0 0 25%; 1357 max-width: 25%; 1358 } 1359 1360 .col-lg-4 { 1361 flex: 0 0 33.3333333333%; 1362 max-width: 33.3333333333%; 1363 } 1364 1365 .col-lg-5 { 1366 flex: 0 0 41.6666666667%; 1367 max-width: 41.6666666667%; 1368 } 1369 1370 .col-lg-6 { 1371 flex: 0 0 50%; 1372 max-width: 50%; 1373 } 1374 1375 .col-lg-7 { 1376 flex: 0 0 58.3333333333%; 1377 max-width: 58.3333333333%; 1378 } 1379 1380 .col-lg-8 { 1381 flex: 0 0 66.6666666667%; 1382 max-width: 66.6666666667%; 1383 } 1384 1385 .col-lg-9 { 1386 flex: 0 0 75%; 1387 max-width: 75%; 1388 } 1389 1390 .col-lg-10 { 1391 flex: 0 0 83.3333333333%; 1392 max-width: 83.3333333333%; 1393 } 1394 1395 .col-lg-11 { 1396 flex: 0 0 91.6666666667%; 1397 max-width: 91.6666666667%; 1398 } 1399 1400 .col-lg-12 { 1401 flex: 0 0 100%; 1402 max-width: 100%; 1403 } 1404 1405 .order-lg-first { 1406 order: -1; 1407 } 1408 1409 .order-lg-last { 1410 order: 13; 1411 } 1412 1413 .order-lg-0 { 1414 order: 0; 1415 } 1416 1417 .order-lg-1 { 1418 order: 1; 1419 } 1420 1421 .order-lg-2 { 1422 order: 2; 1423 } 1424 1425 .order-lg-3 { 1426 order: 3; 1427 } 1428 1429 .order-lg-4 { 1430 order: 4; 1431 } 1432 1433 .order-lg-5 { 1434 order: 5; 1435 } 1436 1437 .order-lg-6 { 1438 order: 6; 1439 } 1440 1441 .order-lg-7 { 1442 order: 7; 1443 } 1444 1445 .order-lg-8 { 1446 order: 8; 1447 } 1448 1449 .order-lg-9 { 1450 order: 9; 1451 } 1452 1453 .order-lg-10 { 1454 order: 10; 1455 } 1456 1457 .order-lg-11 { 1458 order: 11; 1459 } 1460 1461 .order-lg-12 { 1462 order: 12; 1463 } 1464 1465 .offset-lg-0 { 1466 margin-left: 0; 1467 } 1468 1469 .offset-lg-1 { 1470 margin-left: 8.3333333333%; 1471 } 1472 1473 .offset-lg-2 { 1474 margin-left: 16.6666666667%; 1475 } 1476 1477 .offset-lg-3 { 1478 margin-left: 25%; 1479 } 1480 1481 .offset-lg-4 { 1482 margin-left: 33.3333333333%; 1483 } 1484 1485 .offset-lg-5 { 1486 margin-left: 41.6666666667%; 1487 } 1488 1489 .offset-lg-6 { 1490 margin-left: 50%; 1491 } 1492 1493 .offset-lg-7 { 1494 margin-left: 58.3333333333%; 1495 } 1496 1497 .offset-lg-8 { 1498 margin-left: 66.6666666667%; 1499 } 1500 1501 .offset-lg-9 { 1502 margin-left: 75%; 1503 } 1504 1505 .offset-lg-10 { 1506 margin-left: 83.3333333333%; 1507 } 1508 1509 .offset-lg-11 { 1510 margin-left: 91.6666666667%; 1511 } 1512} 1513@media (min-width: 1200px) { 1514 .col-xl { 1515 flex-basis: 0; 1516 flex-grow: 1; 1517 min-width: 0; 1518 max-width: 100%; 1519 } 1520 1521 .row-cols-xl-1 > * { 1522 flex: 0 0 100%; 1523 max-width: 100%; 1524 } 1525 1526 .row-cols-xl-2 > * { 1527 flex: 0 0 50%; 1528 max-width: 50%; 1529 } 1530 1531 .row-cols-xl-3 > * { 1532 flex: 0 0 33.3333333333%; 1533 max-width: 33.3333333333%; 1534 } 1535 1536 .row-cols-xl-4 > * { 1537 flex: 0 0 25%; 1538 max-width: 25%; 1539 } 1540 1541 .row-cols-xl-5 > * { 1542 flex: 0 0 20%; 1543 max-width: 20%; 1544 } 1545 1546 .row-cols-xl-6 > * { 1547 flex: 0 0 16.6666666667%; 1548 max-width: 16.6666666667%; 1549 } 1550 1551 .col-xl-auto { 1552 flex: 0 0 auto; 1553 width: auto; 1554 max-width: 100%; 1555 } 1556 1557 .col-xl-1 { 1558 flex: 0 0 8.3333333333%; 1559 max-width: 8.3333333333%; 1560 } 1561 1562 .col-xl-2 { 1563 flex: 0 0 16.6666666667%; 1564 max-width: 16.6666666667%; 1565 } 1566 1567 .col-xl-3 { 1568 flex: 0 0 25%; 1569 max-width: 25%; 1570 } 1571 1572 .col-xl-4 { 1573 flex: 0 0 33.3333333333%; 1574 max-width: 33.3333333333%; 1575 } 1576 1577 .col-xl-5 { 1578 flex: 0 0 41.6666666667%; 1579 max-width: 41.6666666667%; 1580 } 1581 1582 .col-xl-6 { 1583 flex: 0 0 50%; 1584 max-width: 50%; 1585 } 1586 1587 .col-xl-7 { 1588 flex: 0 0 58.3333333333%; 1589 max-width: 58.3333333333%; 1590 } 1591 1592 .col-xl-8 { 1593 flex: 0 0 66.6666666667%; 1594 max-width: 66.6666666667%; 1595 } 1596 1597 .col-xl-9 { 1598 flex: 0 0 75%; 1599 max-width: 75%; 1600 } 1601 1602 .col-xl-10 { 1603 flex: 0 0 83.3333333333%; 1604 max-width: 83.3333333333%; 1605 } 1606 1607 .col-xl-11 { 1608 flex: 0 0 91.6666666667%; 1609 max-width: 91.6666666667%; 1610 } 1611 1612 .col-xl-12 { 1613 flex: 0 0 100%; 1614 max-width: 100%; 1615 } 1616 1617 .order-xl-first { 1618 order: -1; 1619 } 1620 1621 .order-xl-last { 1622 order: 13; 1623 } 1624 1625 .order-xl-0 { 1626 order: 0; 1627 } 1628 1629 .order-xl-1 { 1630 order: 1; 1631 } 1632 1633 .order-xl-2 { 1634 order: 2; 1635 } 1636 1637 .order-xl-3 { 1638 order: 3; 1639 } 1640 1641 .order-xl-4 { 1642 order: 4; 1643 } 1644 1645 .order-xl-5 { 1646 order: 5; 1647 } 1648 1649 .order-xl-6 { 1650 order: 6; 1651 } 1652 1653 .order-xl-7 { 1654 order: 7; 1655 } 1656 1657 .order-xl-8 { 1658 order: 8; 1659 } 1660 1661 .order-xl-9 { 1662 order: 9; 1663 } 1664 1665 .order-xl-10 { 1666 order: 10; 1667 } 1668 1669 .order-xl-11 { 1670 order: 11; 1671 } 1672 1673 .order-xl-12 { 1674 order: 12; 1675 } 1676 1677 .offset-xl-0 { 1678 margin-left: 0; 1679 } 1680 1681 .offset-xl-1 { 1682 margin-left: 8.3333333333%; 1683 } 1684 1685 .offset-xl-2 { 1686 margin-left: 16.6666666667%; 1687 } 1688 1689 .offset-xl-3 { 1690 margin-left: 25%; 1691 } 1692 1693 .offset-xl-4 { 1694 margin-left: 33.3333333333%; 1695 } 1696 1697 .offset-xl-5 { 1698 margin-left: 41.6666666667%; 1699 } 1700 1701 .offset-xl-6 { 1702 margin-left: 50%; 1703 } 1704 1705 .offset-xl-7 { 1706 margin-left: 58.3333333333%; 1707 } 1708 1709 .offset-xl-8 { 1710 margin-left: 66.6666666667%; 1711 } 1712 1713 .offset-xl-9 { 1714 margin-left: 75%; 1715 } 1716 1717 .offset-xl-10 { 1718 margin-left: 83.3333333333%; 1719 } 1720 1721 .offset-xl-11 { 1722 margin-left: 91.6666666667%; 1723 } 1724} 1725.table, #dokuwiki__content table { 1726 width: 100%; 1727 margin-bottom: 1rem; 1728 color: #525f7f; 1729 background-color: transparent; 1730} 1731 1732.table th, #dokuwiki__content table th, 1733.table td, 1734#dokuwiki__content table td { 1735 padding: 1rem; 1736 vertical-align: top; 1737 border-top: 0.0625rem solid #dee2e6; 1738} 1739 1740.table thead th, #dokuwiki__content table thead th { 1741 vertical-align: bottom; 1742 border-bottom: 0.125rem solid #dee2e6; 1743} 1744 1745.table tbody + tbody, #dokuwiki__content table tbody + tbody { 1746 border-top: 0.125rem solid #dee2e6; 1747} 1748 1749.table-sm th, 1750.table-sm td { 1751 padding: 0.3rem; 1752} 1753 1754.table-bordered { 1755 border: 0.0625rem solid #dee2e6; 1756} 1757 1758.table-bordered th, 1759.table-bordered td { 1760 border: 0.0625rem solid #dee2e6; 1761} 1762 1763.table-bordered thead th, 1764.table-bordered thead td { 1765 border-bottom-width: 0.125rem; 1766} 1767 1768.table-borderless th, 1769.table-borderless td, 1770.table-borderless thead th, 1771.table-borderless tbody + tbody { 1772 border: 0; 1773} 1774 1775.table-striped tbody tr:nth-of-type(odd) { 1776 background-color: rgba(0, 0, 0, 0.05); 1777} 1778 1779.table-hover tbody tr:hover { 1780 color: #525f7f; 1781 background-color: rgba(0, 0, 0, 0.075); 1782} 1783 1784.table-primary, 1785.table-primary > th, 1786.table-primary > td { 1787 background-color: #d2d8f7; 1788} 1789 1790.table-primary th, 1791.table-primary td, 1792.table-primary thead th, 1793.table-primary tbody + tbody { 1794 border-color: #abb6f1; 1795} 1796 1797.table-hover .table-primary:hover { 1798 background-color: #bcc5f3; 1799} 1800 1801.table-hover .table-primary:hover > td, 1802.table-hover .table-primary:hover > th { 1803 background-color: #bcc5f3; 1804} 1805 1806.table-secondary, 1807.table-secondary > th, 1808.table-secondary > td { 1809 background-color: #fcfcfd; 1810} 1811 1812.table-secondary th, 1813.table-secondary td, 1814.table-secondary thead th, 1815.table-secondary tbody + tbody { 1816 border-color: #f9fafb; 1817} 1818 1819.table-hover .table-secondary:hover { 1820 background-color: #ededf3; 1821} 1822 1823.table-hover .table-secondary:hover > td, 1824.table-hover .table-secondary:hover > th { 1825 background-color: #ededf3; 1826} 1827 1828.table-success, 1829.table-success > th, 1830.table-success > td { 1831 background-color: #c4f1de; 1832} 1833 1834.table-success th, 1835.table-success td, 1836.table-success thead th, 1837.table-success tbody + tbody { 1838 border-color: #92e6c2; 1839} 1840 1841.table-hover .table-success:hover { 1842 background-color: #afecd2; 1843} 1844 1845.table-hover .table-success:hover > td, 1846.table-hover .table-success:hover > th { 1847 background-color: #afecd2; 1848} 1849 1850.table-info, 1851.table-info > th, 1852.table-info > td { 1853 background-color: #bcf1fb; 1854} 1855 1856.table-info th, 1857.table-info td, 1858.table-info thead th, 1859.table-info tbody + tbody { 1860 border-color: #83e5f7; 1861} 1862 1863.table-hover .table-info:hover { 1864 background-color: #a4ecfa; 1865} 1866 1867.table-hover .table-info:hover > td, 1868.table-hover .table-info:hover > th { 1869 background-color: #a4ecfa; 1870} 1871 1872.table-warning, 1873.table-warning > th, 1874.table-warning > td { 1875 background-color: #fed3ca; 1876} 1877 1878.table-warning th, 1879.table-warning td, 1880.table-warning thead th, 1881.table-warning tbody + tbody { 1882 border-color: #fdae9c; 1883} 1884 1885.table-hover .table-warning:hover { 1886 background-color: #febeb1; 1887} 1888 1889.table-hover .table-warning:hover > td, 1890.table-hover .table-warning:hover > th { 1891 background-color: #febeb1; 1892} 1893 1894.table-danger, 1895.table-danger > th, 1896.table-danger > td { 1897 background-color: #fcc7d1; 1898} 1899 1900.table-danger th, 1901.table-danger td, 1902.table-danger thead th, 1903.table-danger tbody + tbody { 1904 border-color: #fa96aa; 1905} 1906 1907.table-hover .table-danger:hover { 1908 background-color: #fbafbd; 1909} 1910 1911.table-hover .table-danger:hover > td, 1912.table-hover .table-danger:hover > th { 1913 background-color: #fbafbd; 1914} 1915 1916.table-light, 1917.table-light > th, 1918.table-light > td { 1919 background-color: #e8eaed; 1920} 1921 1922.table-light th, 1923.table-light td, 1924.table-light thead th, 1925.table-light tbody + tbody { 1926 border-color: #d4d9dd; 1927} 1928 1929.table-hover .table-light:hover { 1930 background-color: #dadde2; 1931} 1932 1933.table-hover .table-light:hover > td, 1934.table-hover .table-light:hover > th { 1935 background-color: #dadde2; 1936} 1937 1938.table-dark, 1939.table-dark > th, 1940.table-dark > td { 1941 background-color: #c1c2c3; 1942} 1943 1944.table-dark th, 1945.table-dark td, 1946.table-dark thead th, 1947.table-dark tbody + tbody { 1948 border-color: #8c8e90; 1949} 1950 1951.table-hover .table-dark:hover { 1952 background-color: #b4b5b6; 1953} 1954 1955.table-hover .table-dark:hover > td, 1956.table-hover .table-dark:hover > th { 1957 background-color: #b4b5b6; 1958} 1959 1960.table-default, 1961.table-default > th, 1962.table-default > td { 1963 background-color: #bec4cd; 1964} 1965 1966.table-default th, 1967.table-default td, 1968.table-default thead th, 1969.table-default tbody + tbody { 1970 border-color: #8691a2; 1971} 1972 1973.table-hover .table-default:hover { 1974 background-color: #b0b7c2; 1975} 1976 1977.table-hover .table-default:hover > td, 1978.table-hover .table-default:hover > th { 1979 background-color: #b0b7c2; 1980} 1981 1982.table-white, 1983.table-white > th, 1984.table-white > td { 1985 background-color: white; 1986} 1987 1988.table-white th, 1989.table-white td, 1990.table-white thead th, 1991.table-white tbody + tbody { 1992 border-color: white; 1993} 1994 1995.table-hover .table-white:hover { 1996 background-color: #f2f2f2; 1997} 1998 1999.table-hover .table-white:hover > td, 2000.table-hover .table-white:hover > th { 2001 background-color: #f2f2f2; 2002} 2003 2004.table-neutral, 2005.table-neutral > th, 2006.table-neutral > td { 2007 background-color: white; 2008} 2009 2010.table-neutral th, 2011.table-neutral td, 2012.table-neutral thead th, 2013.table-neutral tbody + tbody { 2014 border-color: white; 2015} 2016 2017.table-hover .table-neutral:hover { 2018 background-color: #f2f2f2; 2019} 2020 2021.table-hover .table-neutral:hover > td, 2022.table-hover .table-neutral:hover > th { 2023 background-color: #f2f2f2; 2024} 2025 2026.table-darker, 2027.table-darker > th, 2028.table-darker > td { 2029 background-color: #b8b8b8; 2030} 2031 2032.table-darker th, 2033.table-darker td, 2034.table-darker thead th, 2035.table-darker tbody + tbody { 2036 border-color: #7a7a7a; 2037} 2038 2039.table-hover .table-darker:hover { 2040 background-color: #ababab; 2041} 2042 2043.table-hover .table-darker:hover > td, 2044.table-hover .table-darker:hover > th { 2045 background-color: #ababab; 2046} 2047 2048.table-active, 2049.table-active > th, 2050.table-active > td { 2051 background-color: rgba(0, 0, 0, 0.075); 2052} 2053 2054.table-hover .table-active:hover { 2055 background-color: rgba(0, 0, 0, 0.075); 2056} 2057 2058.table-hover .table-active:hover > td, 2059.table-hover .table-active:hover > th { 2060 background-color: rgba(0, 0, 0, 0.075); 2061} 2062 2063.table .thead-dark th, #dokuwiki__content table .thead-dark th { 2064 color: #fff; 2065 background-color: #212529; 2066 border-color: #32383e; 2067} 2068 2069.table .thead-light th, #dokuwiki__content table .thead-light th { 2070 color: #525f7f; 2071 background-color: #e9ecef; 2072 border-color: #dee2e6; 2073} 2074 2075.table-dark { 2076 color: #fff; 2077 background-color: #212529; 2078} 2079 2080.table-dark th, 2081.table-dark td, 2082.table-dark thead th { 2083 border-color: #32383e; 2084} 2085 2086.table-dark.table-bordered { 2087 border: 0; 2088} 2089 2090.table-dark.table-striped tbody tr:nth-of-type(odd) { 2091 background-color: rgba(255, 255, 255, 0.05); 2092} 2093 2094.table-dark.table-hover tbody tr:hover { 2095 color: #fff; 2096 background-color: rgba(255, 255, 255, 0.075); 2097} 2098 2099@media (max-width: 575.98px) { 2100 .table-responsive-sm { 2101 display: block; 2102 width: 100%; 2103 overflow-x: auto; 2104 -webkit-overflow-scrolling: touch; 2105 } 2106 2107 .table-responsive-sm > .table-bordered { 2108 border: 0; 2109 } 2110} 2111@media (max-width: 767.98px) { 2112 .table-responsive-md { 2113 display: block; 2114 width: 100%; 2115 overflow-x: auto; 2116 -webkit-overflow-scrolling: touch; 2117 } 2118 2119 .table-responsive-md > .table-bordered { 2120 border: 0; 2121 } 2122} 2123@media (max-width: 991.98px) { 2124 .table-responsive-lg { 2125 display: block; 2126 width: 100%; 2127 overflow-x: auto; 2128 -webkit-overflow-scrolling: touch; 2129 } 2130 2131 .table-responsive-lg > .table-bordered { 2132 border: 0; 2133 } 2134} 2135@media (max-width: 1199.98px) { 2136 .table-responsive-xl { 2137 display: block; 2138 width: 100%; 2139 overflow-x: auto; 2140 -webkit-overflow-scrolling: touch; 2141 } 2142 2143 .table-responsive-xl > .table-bordered { 2144 border: 0; 2145 } 2146} 2147.table-responsive, #dokuwiki__content table { 2148 display: block; 2149 width: 100%; 2150 overflow-x: auto; 2151 -webkit-overflow-scrolling: touch; 2152} 2153 2154.table-responsive > .table-bordered, #dokuwiki__content table > .table-bordered { 2155 border: 0; 2156} 2157 2158.form-control, #dw__login input, #config__manager td input.edit, .search-results-form fieldset input, .doku_form .no #qsearch__in, textarea { 2159 display: block; 2160 width: 100%; 2161 height: calc(1.5em + 1.25rem + 2px); 2162 padding: 0.625rem 0.75rem; 2163 font-size: 1.0rem; 2164 font-weight: 400; 2165 line-height: 1.5; 2166 color: #343a40; 2167 background-color: #fff; 2168 background-clip: padding-box; 2169 border: 1px solid #cad1d7; 2170 border-radius: 0.25rem; 2171 box-shadow: none; 2172 transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); 2173} 2174 2175@media (prefers-reduced-motion: reduce) { 2176 .form-control, #dw__login input, #config__manager td input.edit, .search-results-form fieldset input, .doku_form .no #qsearch__in, textarea { 2177 transition: none; 2178 } 2179} 2180.form-control::-ms-expand, #dw__login input::-ms-expand, #config__manager td input.edit::-ms-expand, .search-results-form fieldset input::-ms-expand, .doku_form .no #qsearch__in::-ms-expand, textarea::-ms-expand { 2181 background-color: transparent; 2182 border: 0; 2183} 2184 2185.form-control:-moz-focusring, #dw__login input:-moz-focusring, #config__manager td input.edit:-moz-focusring, .search-results-form fieldset input:-moz-focusring, .doku_form .no #qsearch__in:-moz-focusring, textarea:-moz-focusring { 2186 color: transparent; 2187 text-shadow: 0 0 0 #8898aa; 2188} 2189 2190.form-control:focus, #dw__login input:focus, #config__manager td input.edit:focus, .search-results-form fieldset input:focus, .doku_form .no #qsearch__in:focus, textarea:focus { 2191 color: #343a40; 2192 background-color: #fff; 2193 border-color: rgba(50, 151, 211, 0.25); 2194 outline: 0; 2195} 2196 2197.form-control::placeholder, #dw__login input::placeholder, #config__manager td input.edit::placeholder, .search-results-form fieldset input::placeholder, .doku_form .no #qsearch__in::placeholder, textarea::placeholder { 2198 color: #adb5bd; 2199 opacity: 1; 2200} 2201 2202.form-control:disabled, #dw__login input:disabled, #config__manager td input.edit:disabled, .search-results-form fieldset input:disabled, .doku_form .no #qsearch__in:disabled, textarea:disabled, .form-control[readonly], #dw__login input[readonly], #config__manager td input[readonly].edit, .search-results-form fieldset input[readonly], .doku_form .no [readonly]#qsearch__in, textarea[readonly] { 2203 background-color: #e9ecef; 2204 opacity: 1; 2205} 2206 2207input[type=date].form-control, #dw__login input[type=date], #config__manager td input[type=date].edit, .search-results-form fieldset input[type=date], .doku_form .no input[type=date]#qsearch__in, 2208input[type=time].form-control, 2209#dw__login input[type=time], 2210#config__manager td input[type=time].edit, 2211.search-results-form fieldset input[type=time], 2212.doku_form .no input[type=time]#qsearch__in, 2213input[type=datetime-local].form-control, 2214#dw__login input[type=datetime-local], 2215#config__manager td input[type=datetime-local].edit, 2216.search-results-form fieldset input[type=datetime-local], 2217.doku_form .no input[type=datetime-local]#qsearch__in, 2218input[type=month].form-control, 2219#dw__login input[type=month], 2220#config__manager td input[type=month].edit, 2221.search-results-form fieldset input[type=month], 2222.doku_form .no input[type=month]#qsearch__in { 2223 appearance: none; 2224} 2225 2226select.form-control:focus::-ms-value, .doku_form .no select#qsearch__in:focus::-ms-value { 2227 color: #8898aa; 2228 background-color: #fff; 2229} 2230 2231.form-control-file, 2232.form-control-range { 2233 display: block; 2234 width: 100%; 2235} 2236 2237.col-form-label { 2238 padding-top: calc(0.625rem + 1px); 2239 padding-bottom: calc(0.625rem + 1px); 2240 margin-bottom: 0; 2241 font-size: inherit; 2242 line-height: 1.5; 2243} 2244 2245.col-form-label-lg { 2246 padding-top: calc(0.875rem + 1px); 2247 padding-bottom: calc(0.875rem + 1px); 2248 font-size: 0.875rem; 2249 line-height: 1.5; 2250} 2251 2252.col-form-label-sm { 2253 padding-top: calc(0.25rem + 1px); 2254 padding-bottom: calc(0.25rem + 1px); 2255 font-size: 0.75rem; 2256 line-height: 1.5; 2257} 2258 2259.form-control-plaintext { 2260 display: block; 2261 width: 100%; 2262 padding: 0.625rem 0; 2263 margin-bottom: 0; 2264 font-size: 0.875rem; 2265 line-height: 1.5; 2266 color: #525f7f; 2267 background-color: transparent; 2268 border: solid transparent; 2269 border-width: 1px 0; 2270} 2271 2272.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { 2273 padding-right: 0; 2274 padding-left: 0; 2275} 2276 2277.form-control-sm { 2278 height: calc(1.5em + 0.5rem + 2px); 2279 padding: 0.25rem 0.5rem; 2280 font-size: 0.75rem; 2281 line-height: 1.5; 2282 border-radius: 0.2rem; 2283} 2284 2285.form-control-lg { 2286 height: calc(1.5em + 1.75rem + 2px); 2287 padding: 0.875rem 1rem; 2288 font-size: 0.875rem; 2289 line-height: 1.5; 2290 border-radius: 0.3rem; 2291} 2292 2293select.form-control[size], .doku_form .no select[size]#qsearch__in, select.form-control[multiple], .doku_form .no select[multiple]#qsearch__in { 2294 height: auto; 2295} 2296 2297textarea.form-control, .doku_form .no textarea#qsearch__in, textarea { 2298 height: auto; 2299} 2300 2301.form-group, .doku_form .no { 2302 margin-bottom: 1rem; 2303} 2304 2305.form-text { 2306 display: block; 2307 margin-top: 0.25rem; 2308} 2309 2310.form-row { 2311 display: flex; 2312 flex-wrap: wrap; 2313 margin-right: -5px; 2314 margin-left: -5px; 2315} 2316 2317.form-row > .col, 2318.form-row > [class*=col-] { 2319 padding-right: 5px; 2320 padding-left: 5px; 2321} 2322 2323.form-check { 2324 position: relative; 2325 display: block; 2326 padding-left: 1.25rem; 2327} 2328 2329.form-check-input { 2330 position: absolute; 2331 margin-top: 0.3rem; 2332 margin-left: -1.25rem; 2333} 2334 2335.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { 2336 color: #8898aa; 2337} 2338 2339.form-check-label { 2340 margin-bottom: 0; 2341} 2342 2343.form-check-inline { 2344 display: inline-flex; 2345 align-items: center; 2346 padding-left: 0; 2347 margin-right: 0.75rem; 2348} 2349 2350.form-check-inline .form-check-input { 2351 position: static; 2352 margin-top: 0; 2353 margin-right: 0.3125rem; 2354 margin-left: 0; 2355} 2356 2357.valid-feedback { 2358 display: none; 2359 width: 100%; 2360 margin-top: 0.25rem; 2361 font-size: 80%; 2362 color: #2dce89; 2363} 2364 2365.valid-tooltip { 2366 position: absolute; 2367 top: 100%; 2368 z-index: 5; 2369 display: none; 2370 max-width: 100%; 2371 padding: 0.25rem 0.5rem; 2372 margin-top: 0.1rem; 2373 font-size: 0.875rem; 2374 line-height: 1.5; 2375 color: #fff; 2376 background-color: rgba(45, 206, 137, 0.9); 2377 border-radius: 0.25rem; 2378} 2379 2380.was-validated :valid ~ .valid-feedback, 2381.was-validated :valid ~ .valid-tooltip, 2382.is-valid ~ .valid-feedback, 2383.is-valid ~ .valid-tooltip { 2384 display: block; 2385} 2386 2387.was-validated .form-control:valid, .was-validated #dw__login input:valid, #dw__login .was-validated input:valid, .was-validated #config__manager td input.edit:valid, #config__manager td .was-validated input.edit:valid, .was-validated .search-results-form fieldset input:valid, .search-results-form fieldset .was-validated input:valid, .was-validated .doku_form .no #qsearch__in:valid, .doku_form .no .was-validated #qsearch__in:valid, .was-validated textarea:valid, .form-control.is-valid, #dw__login input.is-valid, #config__manager td input.is-valid.edit, .search-results-form fieldset input.is-valid, .doku_form .no .is-valid#qsearch__in, textarea.is-valid { 2388 border-color: #2dce89; 2389 padding-right: calc(1.5em + 1.25rem); 2390 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%232dce89' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); 2391 background-repeat: no-repeat; 2392 background-position: right calc(0.375em + 0.3125rem) center; 2393 background-size: calc(0.75em + 0.625rem) calc(0.75em + 0.625rem); 2394} 2395 2396.was-validated .form-control:valid:focus, .was-validated #dw__login input:valid:focus, #dw__login .was-validated input:valid:focus, .was-validated #config__manager td input.edit:valid:focus, #config__manager td .was-validated input.edit:valid:focus, .was-validated .search-results-form fieldset input:valid:focus, .search-results-form fieldset .was-validated input:valid:focus, .was-validated .doku_form .no #qsearch__in:valid:focus, .doku_form .no .was-validated #qsearch__in:valid:focus, .was-validated textarea:valid:focus, .form-control.is-valid:focus, #dw__login input.is-valid:focus, #config__manager td input.is-valid.edit:focus, .search-results-form fieldset input.is-valid:focus, .doku_form .no .is-valid#qsearch__in:focus, textarea.is-valid:focus { 2397 border-color: #2dce89; 2398 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.25); 2399} 2400 2401.was-validated textarea.form-control:valid, .was-validated .doku_form .no textarea#qsearch__in:valid, .doku_form .no .was-validated textarea#qsearch__in:valid, .was-validated textarea:valid, textarea.form-control.is-valid, .doku_form .no textarea.is-valid#qsearch__in, textarea.is-valid { 2402 padding-right: calc(1.5em + 1.25rem); 2403 background-position: top calc(0.375em + 0.3125rem) right calc(0.375em + 0.3125rem); 2404} 2405 2406.was-validated .custom-select:valid, .custom-select.is-valid { 2407 border-color: #2dce89; 2408 padding-right: calc(0.75em + 2.6875rem); 2409 background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2332325d' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%232dce89' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.625rem) calc(0.75em + 0.625rem); 2410} 2411 2412.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { 2413 border-color: #2dce89; 2414 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.25); 2415} 2416 2417.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { 2418 color: #2dce89; 2419} 2420 2421.was-validated .form-check-input:valid ~ .valid-feedback, 2422.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, 2423.form-check-input.is-valid ~ .valid-tooltip { 2424 display: block; 2425} 2426 2427.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { 2428 color: #2dce89; 2429} 2430 2431.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { 2432 border-color: #2dce89; 2433} 2434 2435.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { 2436 border-color: #54daa1; 2437 background-color: #54daa1; 2438} 2439 2440.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { 2441 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.25); 2442} 2443 2444.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { 2445 border-color: #2dce89; 2446} 2447 2448.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { 2449 border-color: #2dce89; 2450} 2451 2452.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { 2453 border-color: #2dce89; 2454 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.25); 2455} 2456 2457.invalid-feedback { 2458 display: none; 2459 width: 100%; 2460 margin-top: 0.25rem; 2461 font-size: 80%; 2462 color: #fb6340; 2463} 2464 2465.invalid-tooltip { 2466 position: absolute; 2467 top: 100%; 2468 z-index: 5; 2469 display: none; 2470 max-width: 100%; 2471 padding: 0.25rem 0.5rem; 2472 margin-top: 0.1rem; 2473 font-size: 0.875rem; 2474 line-height: 1.5; 2475 color: #fff; 2476 background-color: rgba(251, 99, 64, 0.9); 2477 border-radius: 0.25rem; 2478} 2479 2480.was-validated :invalid ~ .invalid-feedback, 2481.was-validated :invalid ~ .invalid-tooltip, 2482.is-invalid ~ .invalid-feedback, 2483.is-invalid ~ .invalid-tooltip { 2484 display: block; 2485} 2486 2487.was-validated .form-control:invalid, .was-validated #dw__login input:invalid, #dw__login .was-validated input:invalid, .was-validated #config__manager td input.edit:invalid, #config__manager td .was-validated input.edit:invalid, .was-validated .search-results-form fieldset input:invalid, .search-results-form fieldset .was-validated input:invalid, .was-validated .doku_form .no #qsearch__in:invalid, .doku_form .no .was-validated #qsearch__in:invalid, .was-validated textarea:invalid, .form-control.is-invalid, #dw__login input.is-invalid, #config__manager td input.is-invalid.edit, .search-results-form fieldset input.is-invalid, .doku_form .no .is-invalid#qsearch__in, textarea.is-invalid { 2488 border-color: #fb6340; 2489 padding-right: calc(1.5em + 1.25rem); 2490 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fb6340' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fb6340' stroke='none'/%3e%3c/svg%3e"); 2491 background-repeat: no-repeat; 2492 background-position: right calc(0.375em + 0.3125rem) center; 2493 background-size: calc(0.75em + 0.625rem) calc(0.75em + 0.625rem); 2494} 2495 2496.was-validated .form-control:invalid:focus, .was-validated #dw__login input:invalid:focus, #dw__login .was-validated input:invalid:focus, .was-validated #config__manager td input.edit:invalid:focus, #config__manager td .was-validated input.edit:invalid:focus, .was-validated .search-results-form fieldset input:invalid:focus, .search-results-form fieldset .was-validated input:invalid:focus, .was-validated .doku_form .no #qsearch__in:invalid:focus, .doku_form .no .was-validated #qsearch__in:invalid:focus, .was-validated textarea:invalid:focus, .form-control.is-invalid:focus, #dw__login input.is-invalid:focus, #config__manager td input.is-invalid.edit:focus, .search-results-form fieldset input.is-invalid:focus, .doku_form .no .is-invalid#qsearch__in:focus, textarea.is-invalid:focus { 2497 border-color: #fb6340; 2498 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.25); 2499} 2500 2501.was-validated textarea.form-control:invalid, .was-validated .doku_form .no textarea#qsearch__in:invalid, .doku_form .no .was-validated textarea#qsearch__in:invalid, .was-validated textarea:invalid, textarea.form-control.is-invalid, .doku_form .no textarea.is-invalid#qsearch__in, textarea.is-invalid { 2502 padding-right: calc(1.5em + 1.25rem); 2503 background-position: top calc(0.375em + 0.3125rem) right calc(0.375em + 0.3125rem); 2504} 2505 2506.was-validated .custom-select:invalid, .custom-select.is-invalid { 2507 border-color: #fb6340; 2508 padding-right: calc(0.75em + 2.6875rem); 2509 background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2332325d' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23fb6340' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23fb6340' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.625rem) calc(0.75em + 0.625rem); 2510} 2511 2512.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { 2513 border-color: #fb6340; 2514 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.25); 2515} 2516 2517.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { 2518 color: #fb6340; 2519} 2520 2521.was-validated .form-check-input:invalid ~ .invalid-feedback, 2522.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, 2523.form-check-input.is-invalid ~ .invalid-tooltip { 2524 display: block; 2525} 2526 2527.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { 2528 color: #fb6340; 2529} 2530 2531.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { 2532 border-color: #fb6340; 2533} 2534 2535.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { 2536 border-color: #fc8c72; 2537 background-color: #fc8c72; 2538} 2539 2540.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { 2541 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.25); 2542} 2543 2544.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { 2545 border-color: #fb6340; 2546} 2547 2548.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { 2549 border-color: #fb6340; 2550} 2551 2552.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { 2553 border-color: #fb6340; 2554 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.25); 2555} 2556 2557.form-inline { 2558 display: flex; 2559 flex-flow: row wrap; 2560 align-items: center; 2561} 2562 2563.form-inline .form-check { 2564 width: 100%; 2565} 2566 2567@media (min-width: 576px) { 2568 .form-inline label { 2569 display: flex; 2570 align-items: center; 2571 justify-content: center; 2572 margin-bottom: 0; 2573 } 2574 2575 .form-inline .form-group, .form-inline .doku_form .no, .doku_form .form-inline .no { 2576 display: flex; 2577 flex: 0 0 auto; 2578 flex-flow: row wrap; 2579 align-items: center; 2580 margin-bottom: 0; 2581 } 2582 2583 .form-inline .form-control, .form-inline #dw__login input, #dw__login .form-inline input, .form-inline #config__manager td input.edit, #config__manager td .form-inline input.edit, .form-inline .search-results-form fieldset input, .search-results-form fieldset .form-inline input, .form-inline .doku_form .no #qsearch__in, .doku_form .no .form-inline #qsearch__in, .form-inline textarea { 2584 display: inline-block; 2585 width: auto; 2586 vertical-align: middle; 2587 } 2588 2589 .form-inline .form-control-plaintext { 2590 display: inline-block; 2591 } 2592 2593 .form-inline .input-group, .form-inline .doku_form .no, .doku_form .form-inline .no, 2594.form-inline .custom-select { 2595 width: auto; 2596 } 2597 2598 .form-inline .form-check { 2599 display: flex; 2600 align-items: center; 2601 justify-content: center; 2602 width: auto; 2603 padding-left: 0; 2604 } 2605 2606 .form-inline .form-check-input { 2607 position: relative; 2608 flex-shrink: 0; 2609 margin-top: 0; 2610 margin-right: 0.25rem; 2611 margin-left: 0; 2612 } 2613 2614 .form-inline .custom-control { 2615 align-items: center; 2616 justify-content: center; 2617 } 2618 2619 .form-inline .custom-control-label { 2620 margin-bottom: 0; 2621 } 2622} 2623.btn, #dw__login button, .qq-upload-button, .search-results-form .toggleAssistant, .search-results-form button, .toggleAssistant, .doku_form .no button, #tool__bar button, #dokuwiki__content .editButtons button, #dokuwiki__content #page__revisions button, #dokuwiki__content .secedit button, button { 2624 display: inline-block; 2625 font-weight: 600; 2626 color: #525f7f; 2627 text-align: center; 2628 vertical-align: middle; 2629 user-select: none; 2630 background-color: transparent; 2631 border: 1px solid transparent; 2632 padding: 0.625rem 1.25rem; 2633 font-size: 0.875rem; 2634 line-height: 1.5; 2635 border-radius: 0.25rem; 2636 transition: all 0.15s ease; 2637} 2638 2639@media (prefers-reduced-motion: reduce) { 2640 .btn, #dw__login button, .qq-upload-button, .search-results-form .toggleAssistant, .search-results-form button, .toggleAssistant, .doku_form .no button, #tool__bar button, #dokuwiki__content .editButtons button, #dokuwiki__content #page__revisions button, #dokuwiki__content .secedit button, button { 2641 transition: none; 2642 } 2643} 2644.btn:hover, #dw__login button:hover, .qq-upload-button:hover, .toggleAssistant:hover, .doku_form .no button:hover, #tool__bar button:hover, #dokuwiki__content .editButtons button:hover, #dokuwiki__content #page__revisions button:hover, #dokuwiki__content .secedit button:hover, button:hover { 2645 color: #525f7f; 2646 text-decoration: none; 2647} 2648 2649.btn:focus, #dw__login button:focus, .qq-upload-button:focus, .toggleAssistant:focus, .doku_form .no button:focus, #tool__bar button:focus, #dokuwiki__content .editButtons button:focus, #dokuwiki__content #page__revisions button:focus, #dokuwiki__content .secedit button:focus, button:focus, .btn.focus, #dw__login button.focus, .focus.qq-upload-button, .focus.toggleAssistant, .doku_form .no button.focus, #tool__bar button.focus, #dokuwiki__content .editButtons button.focus, #dokuwiki__content #page__revisions button.focus, #dokuwiki__content .secedit button.focus, button.focus { 2650 outline: 0; 2651 box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); 2652} 2653 2654.btn.disabled, #dw__login button.disabled, .disabled.qq-upload-button, .disabled.toggleAssistant, .doku_form .no button.disabled, #tool__bar button.disabled, #dokuwiki__content .editButtons button.disabled, #dokuwiki__content #page__revisions button.disabled, #dokuwiki__content .secedit button.disabled, button.disabled, .btn:disabled, #dw__login button:disabled, .qq-upload-button:disabled, .toggleAssistant:disabled, .doku_form .no button:disabled, #tool__bar button:disabled, #dokuwiki__content .editButtons button:disabled, #dokuwiki__content #page__revisions button:disabled, #dokuwiki__content .secedit button:disabled, button:disabled { 2655 opacity: 0.65; 2656 box-shadow: none; 2657} 2658 2659.btn:not(:disabled):not(.disabled), #dw__login button:not(:disabled):not(.disabled), .qq-upload-button:not(:disabled):not(.disabled), .toggleAssistant:not(:disabled):not(.disabled), #tool__bar button:not(:disabled):not(.disabled), #dokuwiki__content .editButtons button:not(:disabled):not(.disabled), #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled), #dokuwiki__content .secedit button:not(:disabled):not(.disabled), button:not(:disabled):not(.disabled) { 2660 cursor: pointer; 2661} 2662 2663.btn:not(:disabled):not(.disabled):active, #dw__login button:not(:disabled):not(.disabled):active, .qq-upload-button:not(:disabled):not(.disabled):active, .toggleAssistant:not(:disabled):not(.disabled):active, #tool__bar button:not(:disabled):not(.disabled):active, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled):active, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled):active, #dokuwiki__content .secedit button:not(:disabled):not(.disabled):active, button:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, #dw__login button:not(:disabled):not(.disabled).active, .qq-upload-button:not(:disabled):not(.disabled).active, .toggleAssistant:not(:disabled):not(.disabled).active, #tool__bar button:not(:disabled):not(.disabled).active, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled).active, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled).active, #dokuwiki__content .secedit button:not(:disabled):not(.disabled).active, button:not(:disabled):not(.disabled).active { 2664 box-shadow: none; 2665} 2666 2667.btn:not(:disabled):not(.disabled):active:focus, #dw__login button:not(:disabled):not(.disabled):active:focus, .qq-upload-button:not(:disabled):not(.disabled):active:focus, .toggleAssistant:not(:disabled):not(.disabled):active:focus, #tool__bar button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .secedit button:not(:disabled):not(.disabled):active:focus, button:not(:disabled):not(.disabled):active:focus, .btn:not(:disabled):not(.disabled).active:focus, #dw__login button:not(:disabled):not(.disabled).active:focus, .qq-upload-button:not(:disabled):not(.disabled).active:focus, .toggleAssistant:not(:disabled):not(.disabled).active:focus, #tool__bar button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content .secedit button:not(:disabled):not(.disabled).active:focus, button:not(:disabled):not(.disabled).active:focus { 2668 box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); 2669} 2670 2671a.btn.disabled, a.disabled.qq-upload-button, a.disabled.toggleAssistant, 2672fieldset:disabled a.btn, 2673fieldset:disabled a.qq-upload-button, 2674fieldset:disabled a.toggleAssistant { 2675 pointer-events: none; 2676} 2677 2678.btn-primary, #dw__login button, .search-results-form button, #dokuwiki__content .editButtons button, #dokuwiki__content #page__revisions button, #dokuwiki__content .secedit button { 2679 color: #fff; 2680 background-color: #1a81d3; 2681 border-color: #5e72e4; 2682 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2683} 2684 2685.btn-primary:hover, #dw__login button:hover, .search-results-form button:hover, #dokuwiki__content .editButtons button:hover, #dokuwiki__content #page__revisions button:hover, #dokuwiki__content .secedit button:hover { 2686 color: #fff; 2687 background-color: #3d55df; 2688 border-color: #324cdd; 2689} 2690 2691.btn-primary:focus, #dw__login button:focus, .search-results-form button:focus, #dokuwiki__content .editButtons button:focus, #dokuwiki__content #page__revisions button:focus, #dokuwiki__content .secedit button:focus, .btn-primary.focus, #dw__login button.focus, .search-results-form button.focus, #dokuwiki__content .editButtons button.focus, #dokuwiki__content #page__revisions button.focus, #dokuwiki__content .secedit button.focus { 2692 color: #fff; 2693 background-color: #3d55df; 2694 border-color: #324cdd; 2695 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(118, 135, 232, 0.5); 2696} 2697 2698.btn-primary.disabled, #dw__login button.disabled, .search-results-form button.disabled, #dokuwiki__content .editButtons button.disabled, #dokuwiki__content #page__revisions button.disabled, #dokuwiki__content .secedit button.disabled, .btn-primary:disabled, #dw__login button:disabled, .search-results-form button:disabled, #dokuwiki__content .editButtons button:disabled, #dokuwiki__content #page__revisions button:disabled, #dokuwiki__content .secedit button:disabled { 2699 color: #fff; 2700 background-color: #5e72e4; 2701 border-color: #5e72e4; 2702} 2703 2704.btn-primary:not(:disabled):not(.disabled):active, #dw__login button:not(:disabled):not(.disabled):active, .search-results-form button:not(:disabled):not(.disabled):active, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled):active, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled):active, #dokuwiki__content .secedit button:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, #dw__login button:not(:disabled):not(.disabled).active, .search-results-form button:not(:disabled):not(.disabled).active, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled).active, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled).active, #dokuwiki__content .secedit button:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle, #dw__login .show > button.dropdown-toggle, .search-results-form .show > button.dropdown-toggle, #dokuwiki__content .editButtons .show > button.dropdown-toggle, #dokuwiki__content #page__revisions .show > button.dropdown-toggle, #dokuwiki__content .secedit .show > button.dropdown-toggle { 2705 color: #fff; 2706 background-color: #324cdd; 2707 border-color: #2742db; 2708} 2709 2710.btn-primary:not(:disabled):not(.disabled):active:focus, #dw__login button:not(:disabled):not(.disabled):active:focus, .search-results-form button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .secedit button:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, #dw__login button:not(:disabled):not(.disabled).active:focus, .search-results-form button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content .editButtons button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled).active:focus, #dokuwiki__content .secedit button:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus, #dw__login .show > button.dropdown-toggle:focus, .search-results-form .show > button.dropdown-toggle:focus, #dokuwiki__content .editButtons .show > button.dropdown-toggle:focus, #dokuwiki__content #page__revisions .show > button.dropdown-toggle:focus, #dokuwiki__content .secedit .show > button.dropdown-toggle:focus { 2711 box-shadow: 0 0 0 0 rgba(118, 135, 232, 0.5); 2712} 2713 2714.btn-secondary, #tool__bar button { 2715 color: #212529; 2716 background-color: #f4f5f7; 2717 border-color: #f4f5f7; 2718 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2719} 2720 2721.btn-secondary:hover, #tool__bar button:hover { 2722 color: #212529; 2723 background-color: #dee1e7; 2724 border-color: #d6dae2; 2725} 2726 2727.btn-secondary:focus, #tool__bar button:focus, .btn-secondary.focus, #tool__bar button.focus { 2728 color: #212529; 2729 background-color: #dee1e7; 2730 border-color: #d6dae2; 2731 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(212, 214, 216, 0.5); 2732} 2733 2734.btn-secondary.disabled, #tool__bar button.disabled, .btn-secondary:disabled, #tool__bar button:disabled { 2735 color: #212529; 2736 background-color: #f4f5f7; 2737 border-color: #f4f5f7; 2738} 2739 2740.btn-secondary:not(:disabled):not(.disabled):active, #tool__bar button:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, #tool__bar button:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle, #tool__bar .show > button.dropdown-toggle { 2741 color: #212529; 2742 background-color: #d6dae2; 2743 border-color: #cfd3dc; 2744} 2745 2746.btn-secondary:not(:disabled):not(.disabled):active:focus, #tool__bar button:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, #tool__bar button:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus, #tool__bar .show > button.dropdown-toggle:focus { 2747 box-shadow: 0 0 0 0 rgba(212, 214, 216, 0.5); 2748} 2749 2750.btn-success { 2751 color: #fff; 2752 background-color: #2dce89; 2753 border-color: #2dce89; 2754 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2755} 2756 2757.btn-success:hover { 2758 color: #fff; 2759 background-color: #26af74; 2760 border-color: #24a46d; 2761} 2762 2763.btn-success:focus, .btn-success.focus { 2764 color: #fff; 2765 background-color: #26af74; 2766 border-color: #24a46d; 2767 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(77, 213, 155, 0.5); 2768} 2769 2770.btn-success.disabled, .btn-success:disabled { 2771 color: #fff; 2772 background-color: #2dce89; 2773 border-color: #2dce89; 2774} 2775 2776.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { 2777 color: #fff; 2778 background-color: #24a46d; 2779 border-color: #229a66; 2780} 2781 2782.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { 2783 box-shadow: 0 0 0 0 rgba(77, 213, 155, 0.5); 2784} 2785 2786.btn-info { 2787 color: #fff; 2788 background-color: #11cdef; 2789 border-color: #11cdef; 2790 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2791} 2792 2793.btn-info:hover { 2794 color: #fff; 2795 background-color: #0eafcc; 2796 border-color: #0da5c0; 2797} 2798 2799.btn-info:focus, .btn-info.focus { 2800 color: #fff; 2801 background-color: #0eafcc; 2802 border-color: #0da5c0; 2803 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(53, 213, 241, 0.5); 2804} 2805 2806.btn-info.disabled, .btn-info:disabled { 2807 color: #fff; 2808 background-color: #11cdef; 2809 border-color: #11cdef; 2810} 2811 2812.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { 2813 color: #fff; 2814 background-color: #0da5c0; 2815 border-color: #0c9ab4; 2816} 2817 2818.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { 2819 box-shadow: 0 0 0 0 rgba(53, 213, 241, 0.5); 2820} 2821 2822.btn-warning { 2823 color: #fff; 2824 background-color: #fb6340; 2825 border-color: #fb6340; 2826 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2827} 2828 2829.btn-warning:hover { 2830 color: #fff; 2831 background-color: #fa441b; 2832 border-color: #fa3a0e; 2833} 2834 2835.btn-warning:focus, .btn-warning.focus { 2836 color: #fff; 2837 background-color: #fa441b; 2838 border-color: #fa3a0e; 2839 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(252, 122, 93, 0.5); 2840} 2841 2842.btn-warning.disabled, .btn-warning:disabled { 2843 color: #fff; 2844 background-color: #fb6340; 2845 border-color: #fb6340; 2846} 2847 2848.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { 2849 color: #fff; 2850 background-color: #fa3a0e; 2851 border-color: #f63205; 2852} 2853 2854.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { 2855 box-shadow: 0 0 0 0 rgba(252, 122, 93, 0.5); 2856} 2857 2858.btn-danger { 2859 color: #fff; 2860 background-color: #f5365c; 2861 border-color: #f5365c; 2862 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2863} 2864 2865.btn-danger:hover { 2866 color: #fff; 2867 background-color: #f3123e; 2868 border-color: #ec0c38; 2869} 2870 2871.btn-danger:focus, .btn-danger.focus { 2872 color: #fff; 2873 background-color: #f3123e; 2874 border-color: #ec0c38; 2875 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(247, 84, 116, 0.5); 2876} 2877 2878.btn-danger.disabled, .btn-danger:disabled { 2879 color: #fff; 2880 background-color: #f5365c; 2881 border-color: #f5365c; 2882} 2883 2884.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { 2885 color: #fff; 2886 background-color: #ec0c38; 2887 border-color: #e00b36; 2888} 2889 2890.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { 2891 box-shadow: 0 0 0 0 rgba(247, 84, 116, 0.5); 2892} 2893 2894.btn-light { 2895 color: #fff; 2896 background-color: #adb5bd; 2897 border-color: #adb5bd; 2898 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2899} 2900 2901.btn-light:hover { 2902 color: #fff; 2903 background-color: #98a2ac; 2904 border-color: #919ca6; 2905} 2906 2907.btn-light:focus, .btn-light.focus { 2908 color: #fff; 2909 background-color: #98a2ac; 2910 border-color: #919ca6; 2911 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(185, 192, 199, 0.5); 2912} 2913 2914.btn-light.disabled, .btn-light:disabled { 2915 color: #fff; 2916 background-color: #adb5bd; 2917 border-color: #adb5bd; 2918} 2919 2920.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { 2921 color: #fff; 2922 background-color: #919ca6; 2923 border-color: #8a95a1; 2924} 2925 2926.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { 2927 box-shadow: 0 0 0 0 rgba(185, 192, 199, 0.5); 2928} 2929 2930.btn-dark { 2931 color: #fff; 2932 background-color: #212529; 2933 border-color: #212529; 2934 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2935} 2936 2937.btn-dark:hover { 2938 color: #fff; 2939 background-color: #101214; 2940 border-color: #0a0c0d; 2941} 2942 2943.btn-dark:focus, .btn-dark.focus { 2944 color: #fff; 2945 background-color: #101214; 2946 border-color: #0a0c0d; 2947 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(66, 70, 73, 0.5); 2948} 2949 2950.btn-dark.disabled, .btn-dark:disabled { 2951 color: #fff; 2952 background-color: #212529; 2953 border-color: #212529; 2954} 2955 2956.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { 2957 color: #fff; 2958 background-color: #0a0c0d; 2959 border-color: #050506; 2960} 2961 2962.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { 2963 box-shadow: 0 0 0 0 rgba(66, 70, 73, 0.5); 2964} 2965 2966.btn-default, .search-results-form .toggleAssistant, .toggleAssistant { 2967 color: #fff; 2968 background-color: #172b4d; 2969 border-color: #172b4d; 2970 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 2971} 2972 2973.btn-default:hover, .toggleAssistant:hover { 2974 color: #fff; 2975 background-color: #0e1b30; 2976 border-color: #0b1526; 2977} 2978 2979.btn-default:focus, .toggleAssistant:focus, .btn-default.focus, .focus.toggleAssistant { 2980 color: #fff; 2981 background-color: #0e1b30; 2982 border-color: #0b1526; 2983 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(58, 75, 104, 0.5); 2984} 2985 2986.btn-default.disabled, .disabled.toggleAssistant, .btn-default:disabled, .toggleAssistant:disabled { 2987 color: #fff; 2988 background-color: #172b4d; 2989 border-color: #172b4d; 2990} 2991 2992.btn-default:not(:disabled):not(.disabled):active, .toggleAssistant:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active, .toggleAssistant:not(:disabled):not(.disabled).active, .show > .btn-default.dropdown-toggle, .search-results-form .show > .dropdown-toggle.toggleAssistant, .show > .dropdown-toggle.toggleAssistant { 2993 color: #fff; 2994 background-color: #0b1526; 2995 border-color: #08101c; 2996} 2997 2998.btn-default:not(:disabled):not(.disabled):active:focus, .toggleAssistant:not(:disabled):not(.disabled):active:focus, .btn-default:not(:disabled):not(.disabled).active:focus, .toggleAssistant:not(:disabled):not(.disabled).active:focus, .show > .btn-default.dropdown-toggle:focus, .search-results-form .show > .dropdown-toggle.toggleAssistant:focus, .show > .dropdown-toggle.toggleAssistant:focus { 2999 box-shadow: 0 0 0 0 rgba(58, 75, 104, 0.5); 3000} 3001 3002.btn-white { 3003 color: #212529; 3004 background-color: #fff; 3005 border-color: #fff; 3006 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 3007} 3008 3009.btn-white:hover { 3010 color: #212529; 3011 background-color: #ececec; 3012 border-color: #e6e6e6; 3013} 3014 3015.btn-white:focus, .btn-white.focus { 3016 color: #212529; 3017 background-color: #ececec; 3018 border-color: #e6e6e6; 3019 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(222, 222, 223, 0.5); 3020} 3021 3022.btn-white.disabled, .btn-white:disabled { 3023 color: #212529; 3024 background-color: #fff; 3025 border-color: #fff; 3026} 3027 3028.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active, .show > .btn-white.dropdown-toggle { 3029 color: #212529; 3030 background-color: #e6e6e6; 3031 border-color: #dfdfdf; 3032} 3033 3034.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus, .show > .btn-white.dropdown-toggle:focus { 3035 box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5); 3036} 3037 3038.btn-neutral, .qq-upload-button, .doku_form .no button, button { 3039 color: #212529; 3040 background-color: #fff; 3041 border-color: #fff; 3042 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 3043} 3044 3045.btn-neutral:hover, .qq-upload-button:hover, .doku_form .no button:hover, button:hover { 3046 color: #212529; 3047 background-color: #ececec; 3048 border-color: #e6e6e6; 3049} 3050 3051.btn-neutral:focus, .qq-upload-button:focus, .doku_form .no button:focus, button:focus, .btn-neutral.focus, .focus.qq-upload-button, .doku_form .no button.focus, button.focus { 3052 color: #212529; 3053 background-color: #ececec; 3054 border-color: #e6e6e6; 3055 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(222, 222, 223, 0.5); 3056} 3057 3058.btn-neutral.disabled, .disabled.qq-upload-button, .doku_form .no button.disabled, button.disabled, .btn-neutral:disabled, .qq-upload-button:disabled, .doku_form .no button:disabled, button:disabled { 3059 color: #212529; 3060 background-color: #fff; 3061 border-color: #fff; 3062} 3063 3064.btn-neutral:not(:disabled):not(.disabled):active, .qq-upload-button:not(:disabled):not(.disabled):active, button:not(:disabled):not(.disabled):active, .btn-neutral:not(:disabled):not(.disabled).active, .qq-upload-button:not(:disabled):not(.disabled).active, button:not(:disabled):not(.disabled).active, .show > .btn-neutral.dropdown-toggle, .show > .dropdown-toggle.qq-upload-button, .doku_form .no .show > button.dropdown-toggle, .show > button.dropdown-toggle { 3065 color: #212529; 3066 background-color: #e6e6e6; 3067 border-color: #dfdfdf; 3068} 3069 3070.btn-neutral:not(:disabled):not(.disabled):active:focus, .qq-upload-button:not(:disabled):not(.disabled):active:focus, button:not(:disabled):not(.disabled):active:focus, .btn-neutral:not(:disabled):not(.disabled).active:focus, .qq-upload-button:not(:disabled):not(.disabled).active:focus, button:not(:disabled):not(.disabled).active:focus, .show > .btn-neutral.dropdown-toggle:focus, .show > .dropdown-toggle.qq-upload-button:focus, .doku_form .no .show > button.dropdown-toggle:focus, .show > button.dropdown-toggle:focus { 3071 box-shadow: 0 0 0 0 rgba(222, 222, 223, 0.5); 3072} 3073 3074.btn-darker { 3075 color: #fff; 3076 background-color: black; 3077 border-color: black; 3078 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 3079} 3080 3081.btn-darker:hover { 3082 color: #fff; 3083 background-color: black; 3084 border-color: black; 3085} 3086 3087.btn-darker:focus, .btn-darker.focus { 3088 color: #fff; 3089 background-color: black; 3090 border-color: black; 3091 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(38, 38, 38, 0.5); 3092} 3093 3094.btn-darker.disabled, .btn-darker:disabled { 3095 color: #fff; 3096 background-color: black; 3097 border-color: black; 3098} 3099 3100.btn-darker:not(:disabled):not(.disabled):active, .btn-darker:not(:disabled):not(.disabled).active, .show > .btn-darker.dropdown-toggle { 3101 color: #fff; 3102 background-color: black; 3103 border-color: black; 3104} 3105 3106.btn-darker:not(:disabled):not(.disabled):active:focus, .btn-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-darker.dropdown-toggle:focus { 3107 box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5); 3108} 3109 3110.btn-outline-primary { 3111 color: #5e72e4; 3112 border-color: #5e72e4; 3113} 3114 3115.btn-outline-primary:hover { 3116 color: #fff; 3117 background-color: #5e72e4; 3118 border-color: #5e72e4; 3119} 3120 3121.btn-outline-primary:focus, .btn-outline-primary.focus { 3122 box-shadow: 0 0 0 0 rgba(94, 114, 228, 0.5); 3123} 3124 3125.btn-outline-primary.disabled, .btn-outline-primary:disabled { 3126 color: #5e72e4; 3127 background-color: transparent; 3128} 3129 3130.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { 3131 color: #fff; 3132 background-color: #5e72e4; 3133 border-color: #5e72e4; 3134} 3135 3136.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { 3137 box-shadow: 0 0 0 0 rgba(94, 114, 228, 0.5); 3138} 3139 3140.btn-outline-secondary { 3141 color: #f4f5f7; 3142 border-color: #f4f5f7; 3143} 3144 3145.btn-outline-secondary:hover { 3146 color: #212529; 3147 background-color: #f4f5f7; 3148 border-color: #f4f5f7; 3149} 3150 3151.btn-outline-secondary:focus, .btn-outline-secondary.focus { 3152 box-shadow: 0 0 0 0 rgba(244, 245, 247, 0.5); 3153} 3154 3155.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { 3156 color: #f4f5f7; 3157 background-color: transparent; 3158} 3159 3160.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { 3161 color: #212529; 3162 background-color: #f4f5f7; 3163 border-color: #f4f5f7; 3164} 3165 3166.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { 3167 box-shadow: 0 0 0 0 rgba(244, 245, 247, 0.5); 3168} 3169 3170.btn-outline-success { 3171 color: #2dce89; 3172 border-color: #2dce89; 3173} 3174 3175.btn-outline-success:hover { 3176 color: #fff; 3177 background-color: #2dce89; 3178 border-color: #2dce89; 3179} 3180 3181.btn-outline-success:focus, .btn-outline-success.focus { 3182 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5); 3183} 3184 3185.btn-outline-success.disabled, .btn-outline-success:disabled { 3186 color: #2dce89; 3187 background-color: transparent; 3188} 3189 3190.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { 3191 color: #fff; 3192 background-color: #2dce89; 3193 border-color: #2dce89; 3194} 3195 3196.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { 3197 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5); 3198} 3199 3200.btn-outline-info { 3201 color: #11cdef; 3202 border-color: #11cdef; 3203} 3204 3205.btn-outline-info:hover { 3206 color: #fff; 3207 background-color: #11cdef; 3208 border-color: #11cdef; 3209} 3210 3211.btn-outline-info:focus, .btn-outline-info.focus { 3212 box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5); 3213} 3214 3215.btn-outline-info.disabled, .btn-outline-info:disabled { 3216 color: #11cdef; 3217 background-color: transparent; 3218} 3219 3220.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { 3221 color: #fff; 3222 background-color: #11cdef; 3223 border-color: #11cdef; 3224} 3225 3226.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { 3227 box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5); 3228} 3229 3230.btn-outline-warning { 3231 color: #fb6340; 3232 border-color: #fb6340; 3233} 3234 3235.btn-outline-warning:hover { 3236 color: #fff; 3237 background-color: #fb6340; 3238 border-color: #fb6340; 3239} 3240 3241.btn-outline-warning:focus, .btn-outline-warning.focus { 3242 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5); 3243} 3244 3245.btn-outline-warning.disabled, .btn-outline-warning:disabled { 3246 color: #fb6340; 3247 background-color: transparent; 3248} 3249 3250.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { 3251 color: #fff; 3252 background-color: #fb6340; 3253 border-color: #fb6340; 3254} 3255 3256.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { 3257 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5); 3258} 3259 3260.btn-outline-danger { 3261 color: #f5365c; 3262 border-color: #f5365c; 3263} 3264 3265.btn-outline-danger:hover { 3266 color: #fff; 3267 background-color: #f5365c; 3268 border-color: #f5365c; 3269} 3270 3271.btn-outline-danger:focus, .btn-outline-danger.focus { 3272 box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5); 3273} 3274 3275.btn-outline-danger.disabled, .btn-outline-danger:disabled { 3276 color: #f5365c; 3277 background-color: transparent; 3278} 3279 3280.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { 3281 color: #fff; 3282 background-color: #f5365c; 3283 border-color: #f5365c; 3284} 3285 3286.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { 3287 box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5); 3288} 3289 3290.btn-outline-light { 3291 color: #adb5bd; 3292 border-color: #adb5bd; 3293} 3294 3295.btn-outline-light:hover { 3296 color: #fff; 3297 background-color: #adb5bd; 3298 border-color: #adb5bd; 3299} 3300 3301.btn-outline-light:focus, .btn-outline-light.focus { 3302 box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5); 3303} 3304 3305.btn-outline-light.disabled, .btn-outline-light:disabled { 3306 color: #adb5bd; 3307 background-color: transparent; 3308} 3309 3310.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { 3311 color: #fff; 3312 background-color: #adb5bd; 3313 border-color: #adb5bd; 3314} 3315 3316.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { 3317 box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5); 3318} 3319 3320.btn-outline-dark { 3321 color: #212529; 3322 border-color: #212529; 3323} 3324 3325.btn-outline-dark:hover { 3326 color: #fff; 3327 background-color: #212529; 3328 border-color: #212529; 3329} 3330 3331.btn-outline-dark:focus, .btn-outline-dark.focus { 3332 box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5); 3333} 3334 3335.btn-outline-dark.disabled, .btn-outline-dark:disabled { 3336 color: #212529; 3337 background-color: transparent; 3338} 3339 3340.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { 3341 color: #fff; 3342 background-color: #212529; 3343 border-color: #212529; 3344} 3345 3346.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { 3347 box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5); 3348} 3349 3350.btn-outline-default { 3351 color: #172b4d; 3352 border-color: #172b4d; 3353} 3354 3355.btn-outline-default:hover { 3356 color: #fff; 3357 background-color: #172b4d; 3358 border-color: #172b4d; 3359} 3360 3361.btn-outline-default:focus, .btn-outline-default.focus { 3362 box-shadow: 0 0 0 0 rgba(23, 43, 77, 0.5); 3363} 3364 3365.btn-outline-default.disabled, .btn-outline-default:disabled { 3366 color: #172b4d; 3367 background-color: transparent; 3368} 3369 3370.btn-outline-default:not(:disabled):not(.disabled):active, .btn-outline-default:not(:disabled):not(.disabled).active, .show > .btn-outline-default.dropdown-toggle { 3371 color: #fff; 3372 background-color: #172b4d; 3373 border-color: #172b4d; 3374} 3375 3376.btn-outline-default:not(:disabled):not(.disabled):active:focus, .btn-outline-default:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-default.dropdown-toggle:focus { 3377 box-shadow: 0 0 0 0 rgba(23, 43, 77, 0.5); 3378} 3379 3380.btn-outline-white { 3381 color: #fff; 3382 border-color: #fff; 3383} 3384 3385.btn-outline-white:hover { 3386 color: #212529; 3387 background-color: #fff; 3388 border-color: #fff; 3389} 3390 3391.btn-outline-white:focus, .btn-outline-white.focus { 3392 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 3393} 3394 3395.btn-outline-white.disabled, .btn-outline-white:disabled { 3396 color: #fff; 3397 background-color: transparent; 3398} 3399 3400.btn-outline-white:not(:disabled):not(.disabled):active, .btn-outline-white:not(:disabled):not(.disabled).active, .show > .btn-outline-white.dropdown-toggle { 3401 color: #212529; 3402 background-color: #fff; 3403 border-color: #fff; 3404} 3405 3406.btn-outline-white:not(:disabled):not(.disabled):active:focus, .btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-white.dropdown-toggle:focus { 3407 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 3408} 3409 3410.btn-outline-neutral { 3411 color: #fff; 3412 border-color: #fff; 3413} 3414 3415.btn-outline-neutral:hover { 3416 color: #212529; 3417 background-color: #fff; 3418 border-color: #fff; 3419} 3420 3421.btn-outline-neutral:focus, .btn-outline-neutral.focus { 3422 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 3423} 3424 3425.btn-outline-neutral.disabled, .btn-outline-neutral:disabled { 3426 color: #fff; 3427 background-color: transparent; 3428} 3429 3430.btn-outline-neutral:not(:disabled):not(.disabled):active, .btn-outline-neutral:not(:disabled):not(.disabled).active, .show > .btn-outline-neutral.dropdown-toggle { 3431 color: #212529; 3432 background-color: #fff; 3433 border-color: #fff; 3434} 3435 3436.btn-outline-neutral:not(:disabled):not(.disabled):active:focus, .btn-outline-neutral:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-neutral.dropdown-toggle:focus { 3437 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 3438} 3439 3440.btn-outline-darker { 3441 color: black; 3442 border-color: black; 3443} 3444 3445.btn-outline-darker:hover { 3446 color: #fff; 3447 background-color: black; 3448 border-color: black; 3449} 3450 3451.btn-outline-darker:focus, .btn-outline-darker.focus { 3452 box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); 3453} 3454 3455.btn-outline-darker.disabled, .btn-outline-darker:disabled { 3456 color: black; 3457 background-color: transparent; 3458} 3459 3460.btn-outline-darker:not(:disabled):not(.disabled):active, .btn-outline-darker:not(:disabled):not(.disabled).active, .show > .btn-outline-darker.dropdown-toggle { 3461 color: #fff; 3462 background-color: black; 3463 border-color: black; 3464} 3465 3466.btn-outline-darker:not(:disabled):not(.disabled):active:focus, .btn-outline-darker:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darker.dropdown-toggle:focus { 3467 box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); 3468} 3469 3470.btn-link { 3471 font-weight: 400; 3472 color: #5e72e4; 3473 text-decoration: none; 3474} 3475 3476.btn-link:hover { 3477 color: #233dd2; 3478 text-decoration: none; 3479} 3480 3481.btn-link:focus, .btn-link.focus { 3482 text-decoration: none; 3483} 3484 3485.btn-link:disabled, .btn-link.disabled { 3486 color: #8898aa; 3487 pointer-events: none; 3488} 3489 3490.btn-lg, .btn-group-lg > .btn, #dw__login .btn-group-lg > button, .btn-group-lg > .qq-upload-button, .search-results-form .btn-group-lg > .toggleAssistant, .search-results-form .btn-group-lg > button, .btn-group-lg > .toggleAssistant, .doku_form .no .btn-group-lg > button, #tool__bar .btn-group-lg > button, #dokuwiki__content .editButtons .btn-group-lg > button, #dokuwiki__content #page__revisions .btn-group-lg > button, #dokuwiki__content .secedit .btn-group-lg > button, .btn-group-lg > button { 3491 padding: 0.875rem 1rem; 3492 font-size: 0.875rem; 3493 line-height: 1.5; 3494 border-radius: 0.3rem; 3495} 3496 3497.btn-sm, #tool__bar button, #dokuwiki__content .editButtons button, #dokuwiki__content .secedit button, .btn-group-sm > .btn, #dw__login .btn-group-sm > button, .btn-group-sm > .qq-upload-button, .search-results-form .btn-group-sm > .toggleAssistant, .search-results-form .btn-group-sm > button, .btn-group-sm > .toggleAssistant, .doku_form .no .btn-group-sm > button, #dokuwiki__content #page__revisions .btn-group-sm > button, .btn-group-sm > button { 3498 padding: 0.25rem 0.5rem; 3499 font-size: 0.75rem; 3500 line-height: 1.5; 3501 border-radius: 0.25rem; 3502} 3503 3504.btn-block { 3505 display: block; 3506 width: 100%; 3507} 3508 3509.btn-block + .btn-block { 3510 margin-top: 0.5rem; 3511} 3512 3513input[type=submit].btn-block, 3514input[type=reset].btn-block, 3515input[type=button].btn-block { 3516 width: 100%; 3517} 3518 3519.fade { 3520 transition: opacity 0.15s linear; 3521} 3522 3523@media (prefers-reduced-motion: reduce) { 3524 .fade { 3525 transition: none; 3526 } 3527} 3528.fade:not(.show) { 3529 opacity: 0; 3530} 3531 3532.collapse:not(.show) { 3533 display: none; 3534} 3535 3536.collapsing { 3537 position: relative; 3538 height: 0; 3539 overflow: hidden; 3540 transition: height 0.35s ease; 3541} 3542 3543@media (prefers-reduced-motion: reduce) { 3544 .collapsing { 3545 transition: none; 3546 } 3547} 3548.dropup, 3549.dropright, 3550.dropdown, 3551.dropleft { 3552 position: relative; 3553} 3554 3555.dropdown-toggle { 3556 white-space: nowrap; 3557} 3558 3559.dropdown-toggle::after { 3560 display: inline-block; 3561 margin-left: 0.255em; 3562 vertical-align: 0.255em; 3563 content: ""; 3564 border-top: 0.3em solid; 3565 border-right: 0.3em solid transparent; 3566 border-bottom: 0; 3567 border-left: 0.3em solid transparent; 3568} 3569 3570.dropdown-toggle:empty::after { 3571 margin-left: 0; 3572} 3573 3574.dropdown-menu { 3575 position: absolute; 3576 top: 100%; 3577 left: 0; 3578 z-index: 1000; 3579 display: none; 3580 float: left; 3581 min-width: 10rem; 3582 padding: 0.5rem 0; 3583 margin: 0.125rem 0 0; 3584 font-size: 1rem; 3585 color: #525f7f; 3586 text-align: left; 3587 list-style: none; 3588 background-color: #fff; 3589 background-clip: padding-box; 3590 border: 0 solid rgba(0, 0, 0, 0.15); 3591 border-radius: 0.3rem; 3592 box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1); 3593} 3594 3595.dropdown-menu-left { 3596 right: auto; 3597 left: 0; 3598} 3599 3600.dropdown-menu-right { 3601 right: 0; 3602 left: auto; 3603} 3604 3605@media (min-width: 576px) { 3606 .dropdown-menu-sm-left { 3607 right: auto; 3608 left: 0; 3609 } 3610 3611 .dropdown-menu-sm-right { 3612 right: 0; 3613 left: auto; 3614 } 3615} 3616@media (min-width: 768px) { 3617 .dropdown-menu-md-left { 3618 right: auto; 3619 left: 0; 3620 } 3621 3622 .dropdown-menu-md-right { 3623 right: 0; 3624 left: auto; 3625 } 3626} 3627@media (min-width: 992px) { 3628 .dropdown-menu-lg-left { 3629 right: auto; 3630 left: 0; 3631 } 3632 3633 .dropdown-menu-lg-right { 3634 right: 0; 3635 left: auto; 3636 } 3637} 3638@media (min-width: 1200px) { 3639 .dropdown-menu-xl-left { 3640 right: auto; 3641 left: 0; 3642 } 3643 3644 .dropdown-menu-xl-right { 3645 right: 0; 3646 left: auto; 3647 } 3648} 3649.dropup .dropdown-menu { 3650 top: auto; 3651 bottom: 100%; 3652 margin-top: 0; 3653 margin-bottom: 0.125rem; 3654} 3655 3656.dropup .dropdown-toggle::after { 3657 display: inline-block; 3658 margin-left: 0.255em; 3659 vertical-align: 0.255em; 3660 content: ""; 3661 border-top: 0; 3662 border-right: 0.3em solid transparent; 3663 border-bottom: 0.3em solid; 3664 border-left: 0.3em solid transparent; 3665} 3666 3667.dropup .dropdown-toggle:empty::after { 3668 margin-left: 0; 3669} 3670 3671.dropright .dropdown-menu { 3672 top: 0; 3673 right: auto; 3674 left: 100%; 3675 margin-top: 0; 3676 margin-left: 0.125rem; 3677} 3678 3679.dropright .dropdown-toggle::after { 3680 display: inline-block; 3681 margin-left: 0.255em; 3682 vertical-align: 0.255em; 3683 content: ""; 3684 border-top: 0.3em solid transparent; 3685 border-right: 0; 3686 border-bottom: 0.3em solid transparent; 3687 border-left: 0.3em solid; 3688} 3689 3690.dropright .dropdown-toggle:empty::after { 3691 margin-left: 0; 3692} 3693 3694.dropright .dropdown-toggle::after { 3695 vertical-align: 0; 3696} 3697 3698.dropleft .dropdown-menu { 3699 top: 0; 3700 right: 100%; 3701 left: auto; 3702 margin-top: 0; 3703 margin-right: 0.125rem; 3704} 3705 3706.dropleft .dropdown-toggle::after { 3707 display: inline-block; 3708 margin-left: 0.255em; 3709 vertical-align: 0.255em; 3710 content: ""; 3711} 3712 3713.dropleft .dropdown-toggle::after { 3714 display: none; 3715} 3716 3717.dropleft .dropdown-toggle::before { 3718 display: inline-block; 3719 margin-right: 0.255em; 3720 vertical-align: 0.255em; 3721 content: ""; 3722 border-top: 0.3em solid transparent; 3723 border-right: 0.3em solid; 3724 border-bottom: 0.3em solid transparent; 3725} 3726 3727.dropleft .dropdown-toggle:empty::after { 3728 margin-left: 0; 3729} 3730 3731.dropleft .dropdown-toggle::before { 3732 vertical-align: 0; 3733} 3734 3735.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] { 3736 right: auto; 3737 bottom: auto; 3738} 3739 3740.dropdown-divider { 3741 height: 0; 3742 margin: 0.5rem 0; 3743 overflow: hidden; 3744 border-top: 1px solid #e9ecef; 3745} 3746 3747.dropdown-item { 3748 display: block; 3749 width: 100%; 3750 padding: 0.25rem 1.5rem; 3751 clear: both; 3752 font-weight: 400; 3753 color: #212529; 3754 text-align: inherit; 3755 white-space: nowrap; 3756 background-color: transparent; 3757 border: 0; 3758} 3759 3760.dropdown-item:hover, .dropdown-item:focus { 3761 color: #16181b; 3762 text-decoration: none; 3763 background-color: #f6f9fc; 3764} 3765 3766.dropdown-item.active, .dropdown-item:active { 3767 color: #fff; 3768 text-decoration: none; 3769 background-color: #5e72e4; 3770} 3771 3772.dropdown-item.disabled, .dropdown-item:disabled { 3773 color: #8898aa; 3774 pointer-events: none; 3775 background-color: transparent; 3776} 3777 3778.dropdown-menu.show { 3779 display: block; 3780} 3781 3782.dropdown-header { 3783 display: block; 3784 padding: 0.5rem 1.5rem; 3785 margin-bottom: 0; 3786 font-size: 0.875rem; 3787 color: #8898aa; 3788 white-space: nowrap; 3789} 3790 3791.dropdown-item-text { 3792 display: block; 3793 padding: 0.25rem 1.5rem; 3794 color: #212529; 3795} 3796 3797.btn-group, 3798.btn-group-vertical { 3799 position: relative; 3800 display: inline-flex; 3801 vertical-align: middle; 3802} 3803 3804.btn-group > .btn, #dw__login .btn-group > button, .btn-group > .qq-upload-button, .search-results-form .btn-group > .toggleAssistant, .search-results-form .btn-group > button, .btn-group > .toggleAssistant, .doku_form .no .btn-group > button, #tool__bar .btn-group > button, #dokuwiki__content .editButtons .btn-group > button, #dokuwiki__content #page__revisions .btn-group > button, #dokuwiki__content .secedit .btn-group > button, .btn-group > button, 3805.btn-group-vertical > .btn, 3806#dw__login .btn-group-vertical > button, 3807.btn-group-vertical > .qq-upload-button, 3808.search-results-form .btn-group-vertical > .toggleAssistant, 3809.search-results-form .btn-group-vertical > button, 3810.btn-group-vertical > .toggleAssistant, 3811.doku_form .no .btn-group-vertical > button, 3812#tool__bar .btn-group-vertical > button, 3813#dokuwiki__content .editButtons .btn-group-vertical > button, 3814#dokuwiki__content #page__revisions .btn-group-vertical > button, 3815#dokuwiki__content .secedit .btn-group-vertical > button, 3816.btn-group-vertical > button { 3817 position: relative; 3818 flex: 1 1 auto; 3819} 3820 3821.btn-group > .btn:hover, #dw__login .btn-group > button:hover, .btn-group > .qq-upload-button:hover, .search-results-form .btn-group > .toggleAssistant:hover, .search-results-form .btn-group > button:hover, .btn-group > .toggleAssistant:hover, .doku_form .no .btn-group > button:hover, #tool__bar .btn-group > button:hover, #dokuwiki__content .editButtons .btn-group > button:hover, #dokuwiki__content #page__revisions .btn-group > button:hover, #dokuwiki__content .secedit .btn-group > button:hover, .btn-group > button:hover, 3822.btn-group-vertical > .btn:hover, 3823#dw__login .btn-group-vertical > button:hover, 3824.btn-group-vertical > .qq-upload-button:hover, 3825.search-results-form .btn-group-vertical > .toggleAssistant:hover, 3826.search-results-form .btn-group-vertical > button:hover, 3827.btn-group-vertical > .toggleAssistant:hover, 3828.doku_form .no .btn-group-vertical > button:hover, 3829#tool__bar .btn-group-vertical > button:hover, 3830#dokuwiki__content .editButtons .btn-group-vertical > button:hover, 3831#dokuwiki__content #page__revisions .btn-group-vertical > button:hover, 3832#dokuwiki__content .secedit .btn-group-vertical > button:hover, 3833.btn-group-vertical > button:hover { 3834 z-index: 1; 3835} 3836 3837.btn-group > .btn:focus, #dw__login .btn-group > button:focus, .btn-group > .qq-upload-button:focus, .search-results-form .btn-group > .toggleAssistant:focus, .search-results-form .btn-group > button:focus, .btn-group > .toggleAssistant:focus, .doku_form .no .btn-group > button:focus, #tool__bar .btn-group > button:focus, #dokuwiki__content .editButtons .btn-group > button:focus, #dokuwiki__content #page__revisions .btn-group > button:focus, #dokuwiki__content .secedit .btn-group > button:focus, .btn-group > button:focus, .btn-group > .btn:active, #dw__login .btn-group > button:active, .btn-group > .qq-upload-button:active, .search-results-form .btn-group > .toggleAssistant:active, .search-results-form .btn-group > button:active, .btn-group > .toggleAssistant:active, .doku_form .no .btn-group > button:active, #tool__bar .btn-group > button:active, #dokuwiki__content .editButtons .btn-group > button:active, #dokuwiki__content #page__revisions .btn-group > button:active, #dokuwiki__content .secedit .btn-group > button:active, .btn-group > button:active, .btn-group > .btn.active, #dw__login .btn-group > button.active, .btn-group > .active.qq-upload-button, .search-results-form .btn-group > .active.toggleAssistant, .search-results-form .btn-group > button.active, .btn-group > .active.toggleAssistant, .doku_form .no .btn-group > button.active, #tool__bar .btn-group > button.active, #dokuwiki__content .editButtons .btn-group > button.active, #dokuwiki__content #page__revisions .btn-group > button.active, #dokuwiki__content .secedit .btn-group > button.active, .btn-group > button.active, 3838.btn-group-vertical > .btn:focus, 3839#dw__login .btn-group-vertical > button:focus, 3840.btn-group-vertical > .qq-upload-button:focus, 3841.search-results-form .btn-group-vertical > .toggleAssistant:focus, 3842.search-results-form .btn-group-vertical > button:focus, 3843.btn-group-vertical > .toggleAssistant:focus, 3844.doku_form .no .btn-group-vertical > button:focus, 3845#tool__bar .btn-group-vertical > button:focus, 3846#dokuwiki__content .editButtons .btn-group-vertical > button:focus, 3847#dokuwiki__content #page__revisions .btn-group-vertical > button:focus, 3848#dokuwiki__content .secedit .btn-group-vertical > button:focus, 3849.btn-group-vertical > button:focus, 3850.btn-group-vertical > .btn:active, 3851#dw__login .btn-group-vertical > button:active, 3852.btn-group-vertical > .qq-upload-button:active, 3853.search-results-form .btn-group-vertical > .toggleAssistant:active, 3854.search-results-form .btn-group-vertical > button:active, 3855.btn-group-vertical > .toggleAssistant:active, 3856.doku_form .no .btn-group-vertical > button:active, 3857#tool__bar .btn-group-vertical > button:active, 3858#dokuwiki__content .editButtons .btn-group-vertical > button:active, 3859#dokuwiki__content #page__revisions .btn-group-vertical > button:active, 3860#dokuwiki__content .secedit .btn-group-vertical > button:active, 3861.btn-group-vertical > button:active, 3862.btn-group-vertical > .btn.active, 3863#dw__login .btn-group-vertical > button.active, 3864.btn-group-vertical > .active.qq-upload-button, 3865.search-results-form .btn-group-vertical > .active.toggleAssistant, 3866.search-results-form .btn-group-vertical > button.active, 3867.btn-group-vertical > .active.toggleAssistant, 3868.doku_form .no .btn-group-vertical > button.active, 3869#tool__bar .btn-group-vertical > button.active, 3870#dokuwiki__content .editButtons .btn-group-vertical > button.active, 3871#dokuwiki__content #page__revisions .btn-group-vertical > button.active, 3872#dokuwiki__content .secedit .btn-group-vertical > button.active, 3873.btn-group-vertical > button.active { 3874 z-index: 1; 3875} 3876 3877.btn-toolbar { 3878 display: flex; 3879 flex-wrap: wrap; 3880 justify-content: flex-start; 3881} 3882 3883.btn-toolbar .input-group, .btn-toolbar .doku_form .no, .doku_form .btn-toolbar .no { 3884 width: auto; 3885} 3886 3887.btn-group > .btn:not(:first-child), #dw__login .btn-group > button:not(:first-child), .btn-group > .qq-upload-button:not(:first-child), .search-results-form .btn-group > .toggleAssistant:not(:first-child), .search-results-form .btn-group > button:not(:first-child), .btn-group > .toggleAssistant:not(:first-child), .doku_form .no .btn-group > button:not(:first-child), #tool__bar .btn-group > button:not(:first-child), #dokuwiki__content .editButtons .btn-group > button:not(:first-child), #dokuwiki__content #page__revisions .btn-group > button:not(:first-child), #dokuwiki__content .secedit .btn-group > button:not(:first-child), .btn-group > button:not(:first-child), 3888.btn-group > .btn-group:not(:first-child) { 3889 margin-left: -1px; 3890} 3891 3892.btn-group > .btn:not(:last-child):not(.dropdown-toggle), #dw__login .btn-group > button:not(:last-child):not(.dropdown-toggle), .btn-group > .qq-upload-button:not(:last-child):not(.dropdown-toggle), .search-results-form .btn-group > .toggleAssistant:not(:last-child):not(.dropdown-toggle), .search-results-form .btn-group > button:not(:last-child):not(.dropdown-toggle), .btn-group > .toggleAssistant:not(:last-child):not(.dropdown-toggle), .doku_form .no .btn-group > button:not(:last-child):not(.dropdown-toggle), #tool__bar .btn-group > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content .editButtons .btn-group > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content #page__revisions .btn-group > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content .secedit .btn-group > button:not(:last-child):not(.dropdown-toggle), .btn-group > button:not(:last-child):not(.dropdown-toggle), 3893.btn-group > .btn-group:not(:last-child) > .btn, 3894#dw__login .btn-group > .btn-group:not(:last-child) > button, 3895.btn-group > .btn-group:not(:last-child) > .qq-upload-button, 3896.btn-group > .btn-group:not(:last-child) > .toggleAssistant, 3897#tool__bar .btn-group > .btn-group:not(:last-child) > button, 3898#dokuwiki__content .editButtons .btn-group > .btn-group:not(:last-child) > button, 3899#dokuwiki__content #page__revisions .btn-group > .btn-group:not(:last-child) > button, 3900#dokuwiki__content .secedit .btn-group > .btn-group:not(:last-child) > button, 3901.btn-group > .btn-group:not(:last-child) > button { 3902 border-top-right-radius: 0; 3903 border-bottom-right-radius: 0; 3904} 3905 3906.btn-group > .btn:not(:first-child), #dw__login .btn-group > button:not(:first-child), .btn-group > .qq-upload-button:not(:first-child), .search-results-form .btn-group > .toggleAssistant:not(:first-child), .search-results-form .btn-group > button:not(:first-child), .btn-group > .toggleAssistant:not(:first-child), .doku_form .no .btn-group > button:not(:first-child), #tool__bar .btn-group > button:not(:first-child), #dokuwiki__content .editButtons .btn-group > button:not(:first-child), #dokuwiki__content #page__revisions .btn-group > button:not(:first-child), #dokuwiki__content .secedit .btn-group > button:not(:first-child), .btn-group > button:not(:first-child), 3907.btn-group > .btn-group:not(:first-child) > .btn, 3908#dw__login .btn-group > .btn-group:not(:first-child) > button, 3909.btn-group > .btn-group:not(:first-child) > .qq-upload-button, 3910.btn-group > .btn-group:not(:first-child) > .toggleAssistant, 3911#tool__bar .btn-group > .btn-group:not(:first-child) > button, 3912#dokuwiki__content .editButtons .btn-group > .btn-group:not(:first-child) > button, 3913#dokuwiki__content #page__revisions .btn-group > .btn-group:not(:first-child) > button, 3914#dokuwiki__content .secedit .btn-group > .btn-group:not(:first-child) > button, 3915.btn-group > .btn-group:not(:first-child) > button { 3916 border-top-left-radius: 0; 3917 border-bottom-left-radius: 0; 3918} 3919 3920.dropdown-toggle-split { 3921 padding-right: 0.9375rem; 3922 padding-left: 0.9375rem; 3923} 3924 3925.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { 3926 margin-left: 0; 3927} 3928 3929.dropleft .dropdown-toggle-split::before { 3930 margin-right: 0; 3931} 3932 3933.btn-sm + .dropdown-toggle-split, #tool__bar button + .dropdown-toggle-split, #dokuwiki__content .editButtons button + .dropdown-toggle-split, #dokuwiki__content .secedit button + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, #dw__login .btn-group-sm > button + .dropdown-toggle-split, .btn-group-sm > .qq-upload-button + .dropdown-toggle-split, .btn-group-sm > .toggleAssistant + .dropdown-toggle-split, #tool__bar .btn-group-sm > button + .dropdown-toggle-split, #dokuwiki__content .editButtons .btn-group-sm > button + .dropdown-toggle-split, #dokuwiki__content #page__revisions .btn-group-sm > button + .dropdown-toggle-split, #dokuwiki__content .secedit .btn-group-sm > button + .dropdown-toggle-split, .btn-group-sm > button + .dropdown-toggle-split { 3934 padding-right: 0.375rem; 3935 padding-left: 0.375rem; 3936} 3937 3938.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, #dw__login .btn-group-lg > button + .dropdown-toggle-split, .btn-group-lg > .qq-upload-button + .dropdown-toggle-split, .btn-group-lg > .toggleAssistant + .dropdown-toggle-split, #tool__bar .btn-group-lg > button + .dropdown-toggle-split, #dokuwiki__content .editButtons .btn-group-lg > button + .dropdown-toggle-split, #dokuwiki__content #page__revisions .btn-group-lg > button + .dropdown-toggle-split, #dokuwiki__content .secedit .btn-group-lg > button + .dropdown-toggle-split, .btn-group-lg > button + .dropdown-toggle-split { 3939 padding-right: 0.75rem; 3940 padding-left: 0.75rem; 3941} 3942 3943.btn-group.show .dropdown-toggle { 3944 box-shadow: none; 3945} 3946 3947.btn-group.show .dropdown-toggle.btn-link { 3948 box-shadow: none; 3949} 3950 3951.btn-group-vertical { 3952 flex-direction: column; 3953 align-items: flex-start; 3954 justify-content: center; 3955} 3956 3957.btn-group-vertical > .btn, #dw__login .btn-group-vertical > button, .btn-group-vertical > .qq-upload-button, .search-results-form .btn-group-vertical > .toggleAssistant, .search-results-form .btn-group-vertical > button, .btn-group-vertical > .toggleAssistant, .doku_form .no .btn-group-vertical > button, #tool__bar .btn-group-vertical > button, #dokuwiki__content .editButtons .btn-group-vertical > button, #dokuwiki__content #page__revisions .btn-group-vertical > button, #dokuwiki__content .secedit .btn-group-vertical > button, .btn-group-vertical > button, 3958.btn-group-vertical > .btn-group { 3959 width: 100%; 3960} 3961 3962.btn-group-vertical > .btn:not(:first-child), #dw__login .btn-group-vertical > button:not(:first-child), .btn-group-vertical > .qq-upload-button:not(:first-child), .search-results-form .btn-group-vertical > .toggleAssistant:not(:first-child), .search-results-form .btn-group-vertical > button:not(:first-child), .btn-group-vertical > .toggleAssistant:not(:first-child), .doku_form .no .btn-group-vertical > button:not(:first-child), #tool__bar .btn-group-vertical > button:not(:first-child), #dokuwiki__content .editButtons .btn-group-vertical > button:not(:first-child), #dokuwiki__content #page__revisions .btn-group-vertical > button:not(:first-child), #dokuwiki__content .secedit .btn-group-vertical > button:not(:first-child), .btn-group-vertical > button:not(:first-child), 3963.btn-group-vertical > .btn-group:not(:first-child) { 3964 margin-top: -1px; 3965} 3966 3967.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), #dw__login .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .qq-upload-button:not(:last-child):not(.dropdown-toggle), .search-results-form .btn-group-vertical > .toggleAssistant:not(:last-child):not(.dropdown-toggle), .search-results-form .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .toggleAssistant:not(:last-child):not(.dropdown-toggle), .doku_form .no .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), #tool__bar .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content .editButtons .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content #page__revisions .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), #dokuwiki__content .secedit .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle), 3968.btn-group-vertical > .btn-group:not(:last-child) > .btn, 3969#dw__login .btn-group-vertical > .btn-group:not(:last-child) > button, 3970.btn-group-vertical > .btn-group:not(:last-child) > .qq-upload-button, 3971.btn-group-vertical > .btn-group:not(:last-child) > .toggleAssistant, 3972#tool__bar .btn-group-vertical > .btn-group:not(:last-child) > button, 3973#dokuwiki__content .editButtons .btn-group-vertical > .btn-group:not(:last-child) > button, 3974#dokuwiki__content #page__revisions .btn-group-vertical > .btn-group:not(:last-child) > button, 3975#dokuwiki__content .secedit .btn-group-vertical > .btn-group:not(:last-child) > button, 3976.btn-group-vertical > .btn-group:not(:last-child) > button { 3977 border-bottom-right-radius: 0; 3978 border-bottom-left-radius: 0; 3979} 3980 3981.btn-group-vertical > .btn:not(:first-child), #dw__login .btn-group-vertical > button:not(:first-child), .btn-group-vertical > .qq-upload-button:not(:first-child), .search-results-form .btn-group-vertical > .toggleAssistant:not(:first-child), .search-results-form .btn-group-vertical > button:not(:first-child), .btn-group-vertical > .toggleAssistant:not(:first-child), .doku_form .no .btn-group-vertical > button:not(:first-child), #tool__bar .btn-group-vertical > button:not(:first-child), #dokuwiki__content .editButtons .btn-group-vertical > button:not(:first-child), #dokuwiki__content #page__revisions .btn-group-vertical > button:not(:first-child), #dokuwiki__content .secedit .btn-group-vertical > button:not(:first-child), .btn-group-vertical > button:not(:first-child), 3982.btn-group-vertical > .btn-group:not(:first-child) > .btn, 3983#dw__login .btn-group-vertical > .btn-group:not(:first-child) > button, 3984.btn-group-vertical > .btn-group:not(:first-child) > .qq-upload-button, 3985.btn-group-vertical > .btn-group:not(:first-child) > .toggleAssistant, 3986#tool__bar .btn-group-vertical > .btn-group:not(:first-child) > button, 3987#dokuwiki__content .editButtons .btn-group-vertical > .btn-group:not(:first-child) > button, 3988#dokuwiki__content #page__revisions .btn-group-vertical > .btn-group:not(:first-child) > button, 3989#dokuwiki__content .secedit .btn-group-vertical > .btn-group:not(:first-child) > button, 3990.btn-group-vertical > .btn-group:not(:first-child) > button { 3991 border-top-left-radius: 0; 3992 border-top-right-radius: 0; 3993} 3994 3995.btn-group-toggle > .btn, #dw__login .btn-group-toggle > button, .btn-group-toggle > .qq-upload-button, .search-results-form .btn-group-toggle > .toggleAssistant, .search-results-form .btn-group-toggle > button, .btn-group-toggle > .toggleAssistant, .doku_form .no .btn-group-toggle > button, #tool__bar .btn-group-toggle > button, #dokuwiki__content .editButtons .btn-group-toggle > button, #dokuwiki__content #page__revisions .btn-group-toggle > button, #dokuwiki__content .secedit .btn-group-toggle > button, .btn-group-toggle > button, 3996.btn-group-toggle > .btn-group > .btn, 3997#dw__login .btn-group-toggle > .btn-group > button, 3998.btn-group-toggle > .btn-group > .qq-upload-button, 3999.btn-group-toggle > .btn-group > .toggleAssistant, 4000#tool__bar .btn-group-toggle > .btn-group > button, 4001#dokuwiki__content .editButtons .btn-group-toggle > .btn-group > button, 4002#dokuwiki__content #page__revisions .btn-group-toggle > .btn-group > button, 4003#dokuwiki__content .secedit .btn-group-toggle > .btn-group > button, 4004.btn-group-toggle > .btn-group > button { 4005 margin-bottom: 0; 4006} 4007 4008.btn-group-toggle > .btn input[type=radio], #dw__login .btn-group-toggle > button input[type=radio], .btn-group-toggle > .qq-upload-button input[type=radio], .btn-group-toggle > .toggleAssistant input[type=radio], #tool__bar .btn-group-toggle > button input[type=radio], #dokuwiki__content .editButtons .btn-group-toggle > button input[type=radio], #dokuwiki__content #page__revisions .btn-group-toggle > button input[type=radio], #dokuwiki__content .secedit .btn-group-toggle > button input[type=radio], .btn-group-toggle > button input[type=radio], 4009.btn-group-toggle > .btn input[type=checkbox], 4010#dw__login .btn-group-toggle > button input[type=checkbox], 4011.btn-group-toggle > .qq-upload-button input[type=checkbox], 4012.btn-group-toggle > .toggleAssistant input[type=checkbox], 4013#tool__bar .btn-group-toggle > button input[type=checkbox], 4014#dokuwiki__content .editButtons .btn-group-toggle > button input[type=checkbox], 4015#dokuwiki__content #page__revisions .btn-group-toggle > button input[type=checkbox], 4016#dokuwiki__content .secedit .btn-group-toggle > button input[type=checkbox], 4017.btn-group-toggle > button input[type=checkbox], 4018.btn-group-toggle > .btn-group > .btn input[type=radio], 4019.btn-group-toggle > .btn-group > .btn input[type=checkbox] { 4020 position: absolute; 4021 clip: rect(0, 0, 0, 0); 4022 pointer-events: none; 4023} 4024 4025.input-group, .doku_form .no { 4026 position: relative; 4027 display: flex; 4028 flex-wrap: wrap; 4029 align-items: stretch; 4030 width: 100%; 4031} 4032 4033.input-group > .form-control, #dw__login .input-group > input, #config__manager td .input-group > input.edit, .search-results-form fieldset .input-group > input, .doku_form .no .input-group > #qsearch__in, .doku_form .no > .form-control, .doku_form #dw__login .no > input, #dw__login .doku_form .no > input, .doku_form #config__manager td .no > input.edit, #config__manager td .doku_form .no > input.edit, .doku_form .search-results-form fieldset .no > input, .search-results-form fieldset .doku_form .no > input, .doku_form .no > #qsearch__in, .input-group > textarea, .doku_form .no > textarea, 4034.input-group > .form-control-plaintext, 4035.doku_form .no > .form-control-plaintext, 4036.input-group > .custom-select, 4037.doku_form .no > .custom-select, 4038.input-group > .custom-file, 4039.doku_form .no > .custom-file { 4040 position: relative; 4041 flex: 1 1 auto; 4042 width: 1%; 4043 min-width: 0; 4044 margin-bottom: 0; 4045} 4046 4047.input-group > .form-control + .form-control, #dw__login .input-group > input + .form-control, #dw__login .input-group > .form-control + input, #dw__login .input-group > input + input, #config__manager td .input-group > input.edit + .form-control, #config__manager td #dw__login .input-group > input.edit + input, #dw__login #config__manager td .input-group > input.edit + input, #config__manager td .input-group > .form-control + input.edit, #config__manager td #dw__login .input-group > input + input.edit, #dw__login #config__manager td .input-group > input + input.edit, #config__manager td .input-group > input.edit + input.edit, .search-results-form fieldset .input-group > input + .form-control, .search-results-form fieldset #dw__login .input-group > input + input, #dw__login .search-results-form fieldset .input-group > input + input, .search-results-form fieldset #config__manager td .input-group > input + input.edit, #config__manager td .search-results-form fieldset .input-group > input + input.edit, .search-results-form fieldset .input-group > .form-control + input, .search-results-form fieldset #dw__login .input-group > input + input, #dw__login .search-results-form fieldset .input-group > input + input, .search-results-form fieldset #config__manager td .input-group > input.edit + input, #config__manager td .search-results-form fieldset .input-group > input.edit + input, .search-results-form fieldset .input-group > input + input, .doku_form .no .input-group > #qsearch__in + .form-control, .doku_form .no #dw__login .input-group > #qsearch__in + input, #dw__login .doku_form .no .input-group > #qsearch__in + input, .doku_form .no #config__manager td .input-group > #qsearch__in + input.edit, #config__manager td .doku_form .no .input-group > #qsearch__in + input.edit, .doku_form .no .search-results-form fieldset .input-group > #qsearch__in + input, .search-results-form fieldset .doku_form .no .input-group > #qsearch__in + input, .doku_form .no .input-group > .form-control + #qsearch__in, .doku_form .no #dw__login .input-group > input + #qsearch__in, #dw__login .doku_form .no .input-group > input + #qsearch__in, .doku_form .no #config__manager td .input-group > input.edit + #qsearch__in, #config__manager td .doku_form .no .input-group > input.edit + #qsearch__in, .doku_form .no .search-results-form fieldset .input-group > input + #qsearch__in, .search-results-form fieldset .doku_form .no .input-group > input + #qsearch__in, .doku_form .no .input-group > #qsearch__in + #qsearch__in, .doku_form .no > .form-control + .form-control, .doku_form #dw__login .no > input + .form-control, #dw__login .doku_form .no > input + .form-control, .doku_form #dw__login .no > .form-control + input, #dw__login .doku_form .no > .form-control + input, .doku_form #dw__login .no > input + input, #dw__login .doku_form .no > input + input, .doku_form #config__manager td .no > input.edit + .form-control, .doku_form #config__manager td #dw__login .no > input.edit + input, #dw__login .doku_form #config__manager td .no > input.edit + input, #config__manager td .doku_form .no > input.edit + .form-control, #config__manager td .doku_form #dw__login .no > input.edit + input, #dw__login #config__manager td .doku_form .no > input.edit + input, .doku_form #config__manager td .no > .form-control + input.edit, .doku_form #config__manager td #dw__login .no > input + input.edit, #dw__login .doku_form #config__manager td .no > input + input.edit, #config__manager td .doku_form .no > .form-control + input.edit, #config__manager td .doku_form #dw__login .no > input + input.edit, #dw__login #config__manager td .doku_form .no > input + input.edit, .doku_form #config__manager td .no > input.edit + input.edit, #config__manager td .doku_form .no > input.edit + input.edit, .doku_form .search-results-form fieldset .no > input + .form-control, .doku_form .search-results-form fieldset #dw__login .no > input + input, #dw__login .doku_form .search-results-form fieldset .no > input + input, .doku_form .search-results-form fieldset #config__manager td .no > input + input.edit, #config__manager td .doku_form .search-results-form fieldset .no > input + input.edit, .search-results-form fieldset .doku_form .no > input + .form-control, .search-results-form fieldset .doku_form #dw__login .no > input + input, #dw__login .search-results-form fieldset .doku_form .no > input + input, .search-results-form fieldset .doku_form #config__manager td .no > input + input.edit, #config__manager td .search-results-form fieldset .doku_form .no > input + input.edit, .doku_form .search-results-form fieldset .no > .form-control + input, .doku_form .search-results-form fieldset #dw__login .no > input + input, #dw__login .doku_form .search-results-form fieldset .no > input + input, .doku_form .search-results-form fieldset #config__manager td .no > input.edit + input, #config__manager td .doku_form .search-results-form fieldset .no > input.edit + input, .search-results-form fieldset .doku_form .no > .form-control + input, .search-results-form fieldset .doku_form #dw__login .no > input + input, #dw__login .search-results-form fieldset .doku_form .no > input + input, .search-results-form fieldset .doku_form #config__manager td .no > input.edit + input, #config__manager td .search-results-form fieldset .doku_form .no > input.edit + input, .doku_form .search-results-form fieldset .no > input + input, .search-results-form fieldset .doku_form .no > input + input, .doku_form .no > #qsearch__in + .form-control, .doku_form #dw__login .no > #qsearch__in + input, #dw__login .doku_form .no > #qsearch__in + input, .doku_form #config__manager td .no > #qsearch__in + input.edit, #config__manager td .doku_form .no > #qsearch__in + input.edit, .doku_form .search-results-form fieldset .no > #qsearch__in + input, .search-results-form fieldset .doku_form .no > #qsearch__in + input, .doku_form .no > .form-control + #qsearch__in, .doku_form #dw__login .no > input + #qsearch__in, #dw__login .doku_form .no > input + #qsearch__in, .doku_form #config__manager td .no > input.edit + #qsearch__in, #config__manager td .doku_form .no > input.edit + #qsearch__in, .doku_form .search-results-form fieldset .no > input + #qsearch__in, .search-results-form fieldset .doku_form .no > input + #qsearch__in, .doku_form .no > #qsearch__in + #qsearch__in, .input-group > textarea + .form-control, #dw__login .input-group > textarea + input, #config__manager td .input-group > textarea + input.edit, .search-results-form fieldset .input-group > textarea + input, .doku_form .no .input-group > textarea + #qsearch__in, .doku_form .no > textarea + .form-control, .doku_form #dw__login .no > textarea + input, #dw__login .doku_form .no > textarea + input, .doku_form #config__manager td .no > textarea + input.edit, #config__manager td .doku_form .no > textarea + input.edit, .doku_form .search-results-form fieldset .no > textarea + input, .search-results-form fieldset .doku_form .no > textarea + input, .doku_form .no > textarea + #qsearch__in, .input-group > .form-control + textarea, #dw__login .input-group > input + textarea, #config__manager td .input-group > input.edit + textarea, .search-results-form fieldset .input-group > input + textarea, .doku_form .no .input-group > #qsearch__in + textarea, .doku_form .no > .form-control + textarea, .doku_form #dw__login .no > input + textarea, #dw__login .doku_form .no > input + textarea, .doku_form #config__manager td .no > input.edit + textarea, #config__manager td .doku_form .no > input.edit + textarea, .doku_form .search-results-form fieldset .no > input + textarea, .search-results-form fieldset .doku_form .no > input + textarea, .doku_form .no > #qsearch__in + textarea, .input-group > textarea + textarea, .doku_form .no > textarea + textarea, 4048.input-group > .form-control + .custom-select, 4049#dw__login .input-group > input + .custom-select, 4050#config__manager td .input-group > input.edit + .custom-select, 4051.search-results-form fieldset .input-group > input + .custom-select, 4052.doku_form .no .input-group > #qsearch__in + .custom-select, 4053.doku_form .no > .form-control + .custom-select, 4054.doku_form #dw__login .no > input + .custom-select, 4055#dw__login .doku_form .no > input + .custom-select, 4056.doku_form #config__manager td .no > input.edit + .custom-select, 4057#config__manager td .doku_form .no > input.edit + .custom-select, 4058.doku_form .search-results-form fieldset .no > input + .custom-select, 4059.search-results-form fieldset .doku_form .no > input + .custom-select, 4060.doku_form .no > #qsearch__in + .custom-select, 4061.input-group > textarea + .custom-select, 4062.doku_form .no > textarea + .custom-select, 4063.input-group > .form-control + .custom-file, 4064#dw__login .input-group > input + .custom-file, 4065#config__manager td .input-group > input.edit + .custom-file, 4066.search-results-form fieldset .input-group > input + .custom-file, 4067.doku_form .no .input-group > #qsearch__in + .custom-file, 4068.doku_form .no > .form-control + .custom-file, 4069.doku_form #dw__login .no > input + .custom-file, 4070#dw__login .doku_form .no > input + .custom-file, 4071.doku_form #config__manager td .no > input.edit + .custom-file, 4072#config__manager td .doku_form .no > input.edit + .custom-file, 4073.doku_form .search-results-form fieldset .no > input + .custom-file, 4074.search-results-form fieldset .doku_form .no > input + .custom-file, 4075.doku_form .no > #qsearch__in + .custom-file, 4076.input-group > textarea + .custom-file, 4077.doku_form .no > textarea + .custom-file, 4078.input-group > .form-control-plaintext + .form-control, 4079#dw__login .input-group > .form-control-plaintext + input, 4080#config__manager td .input-group > .form-control-plaintext + input.edit, 4081.search-results-form fieldset .input-group > .form-control-plaintext + input, 4082.doku_form .no .input-group > .form-control-plaintext + #qsearch__in, 4083.doku_form .no > .form-control-plaintext + .form-control, 4084.doku_form #dw__login .no > .form-control-plaintext + input, 4085#dw__login .doku_form .no > .form-control-plaintext + input, 4086.doku_form #config__manager td .no > .form-control-plaintext + input.edit, 4087#config__manager td .doku_form .no > .form-control-plaintext + input.edit, 4088.doku_form .search-results-form fieldset .no > .form-control-plaintext + input, 4089.search-results-form fieldset .doku_form .no > .form-control-plaintext + input, 4090.doku_form .no > .form-control-plaintext + #qsearch__in, 4091.input-group > .form-control-plaintext + textarea, 4092.doku_form .no > .form-control-plaintext + textarea, 4093.input-group > .form-control-plaintext + .custom-select, 4094.doku_form .no > .form-control-plaintext + .custom-select, 4095.input-group > .form-control-plaintext + .custom-file, 4096.doku_form .no > .form-control-plaintext + .custom-file, 4097.input-group > .custom-select + .form-control, 4098#dw__login .input-group > .custom-select + input, 4099#config__manager td .input-group > .custom-select + input.edit, 4100.search-results-form fieldset .input-group > .custom-select + input, 4101.doku_form .no .input-group > .custom-select + #qsearch__in, 4102.doku_form .no > .custom-select + .form-control, 4103.doku_form #dw__login .no > .custom-select + input, 4104#dw__login .doku_form .no > .custom-select + input, 4105.doku_form #config__manager td .no > .custom-select + input.edit, 4106#config__manager td .doku_form .no > .custom-select + input.edit, 4107.doku_form .search-results-form fieldset .no > .custom-select + input, 4108.search-results-form fieldset .doku_form .no > .custom-select + input, 4109.doku_form .no > .custom-select + #qsearch__in, 4110.input-group > .custom-select + textarea, 4111.doku_form .no > .custom-select + textarea, 4112.input-group > .custom-select + .custom-select, 4113.doku_form .no > .custom-select + .custom-select, 4114.input-group > .custom-select + .custom-file, 4115.doku_form .no > .custom-select + .custom-file, 4116.input-group > .custom-file + .form-control, 4117#dw__login .input-group > .custom-file + input, 4118#config__manager td .input-group > .custom-file + input.edit, 4119.search-results-form fieldset .input-group > .custom-file + input, 4120.doku_form .no .input-group > .custom-file + #qsearch__in, 4121.doku_form .no > .custom-file + .form-control, 4122.doku_form #dw__login .no > .custom-file + input, 4123#dw__login .doku_form .no > .custom-file + input, 4124.doku_form #config__manager td .no > .custom-file + input.edit, 4125#config__manager td .doku_form .no > .custom-file + input.edit, 4126.doku_form .search-results-form fieldset .no > .custom-file + input, 4127.search-results-form fieldset .doku_form .no > .custom-file + input, 4128.doku_form .no > .custom-file + #qsearch__in, 4129.input-group > .custom-file + textarea, 4130.doku_form .no > .custom-file + textarea, 4131.input-group > .custom-file + .custom-select, 4132.doku_form .no > .custom-file + .custom-select, 4133.input-group > .custom-file + .custom-file, 4134.doku_form .no > .custom-file + .custom-file { 4135 margin-left: -1px; 4136} 4137 4138.input-group > .form-control:focus, #dw__login .input-group > input:focus, #config__manager td .input-group > input.edit:focus, .search-results-form fieldset .input-group > input:focus, .doku_form .no .input-group > #qsearch__in:focus, .doku_form .no > .form-control:focus, .doku_form #dw__login .no > input:focus, #dw__login .doku_form .no > input:focus, .doku_form #config__manager td .no > input.edit:focus, #config__manager td .doku_form .no > input.edit:focus, .doku_form .search-results-form fieldset .no > input:focus, .search-results-form fieldset .doku_form .no > input:focus, .doku_form .no > #qsearch__in:focus, .input-group > textarea:focus, .doku_form .no > textarea:focus, 4139.input-group > .custom-select:focus, 4140.doku_form .no > .custom-select:focus, 4141.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, 4142.doku_form .no > .custom-file .custom-file-input:focus ~ .custom-file-label { 4143 z-index: 3; 4144} 4145 4146.input-group > .custom-file .custom-file-input:focus, .doku_form .no > .custom-file .custom-file-input:focus { 4147 z-index: 4; 4148} 4149 4150.input-group > .form-control:not(:last-child), #dw__login .input-group > input:not(:last-child), #config__manager td .input-group > input.edit:not(:last-child), .search-results-form fieldset .input-group > input:not(:last-child), .doku_form .no .input-group > #qsearch__in:not(:last-child), .doku_form .no > .form-control:not(:last-child), .doku_form #dw__login .no > input:not(:last-child), #dw__login .doku_form .no > input:not(:last-child), .doku_form #config__manager td .no > input.edit:not(:last-child), #config__manager td .doku_form .no > input.edit:not(:last-child), .doku_form .search-results-form fieldset .no > input:not(:last-child), .search-results-form fieldset .doku_form .no > input:not(:last-child), .doku_form .no > #qsearch__in:not(:last-child), .input-group > textarea:not(:last-child), .doku_form .no > textarea:not(:last-child), 4151.input-group > .custom-select:not(:last-child), 4152.doku_form .no > .custom-select:not(:last-child) { 4153 border-top-right-radius: 0; 4154 border-bottom-right-radius: 0; 4155} 4156 4157.input-group > .form-control:not(:first-child), #dw__login .input-group > input:not(:first-child), #config__manager td .input-group > input.edit:not(:first-child), .search-results-form fieldset .input-group > input:not(:first-child), .doku_form .no .input-group > #qsearch__in:not(:first-child), .doku_form .no > .form-control:not(:first-child), .doku_form #dw__login .no > input:not(:first-child), #dw__login .doku_form .no > input:not(:first-child), .doku_form #config__manager td .no > input.edit:not(:first-child), #config__manager td .doku_form .no > input.edit:not(:first-child), .doku_form .search-results-form fieldset .no > input:not(:first-child), .search-results-form fieldset .doku_form .no > input:not(:first-child), .doku_form .no > #qsearch__in:not(:first-child), .input-group > textarea:not(:first-child), .doku_form .no > textarea:not(:first-child), 4158.input-group > .custom-select:not(:first-child), 4159.doku_form .no > .custom-select:not(:first-child) { 4160 border-top-left-radius: 0; 4161 border-bottom-left-radius: 0; 4162} 4163 4164.input-group > .custom-file, .doku_form .no > .custom-file { 4165 display: flex; 4166 align-items: center; 4167} 4168 4169.input-group > .custom-file:not(:last-child) .custom-file-label, .doku_form .no > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after, .doku_form .no > .custom-file:not(:last-child) .custom-file-label::after { 4170 border-top-right-radius: 0; 4171 border-bottom-right-radius: 0; 4172} 4173 4174.input-group > .custom-file:not(:first-child) .custom-file-label, .doku_form .no > .custom-file:not(:first-child) .custom-file-label { 4175 border-top-left-radius: 0; 4176 border-bottom-left-radius: 0; 4177} 4178 4179.input-group-prepend, 4180.input-group-append { 4181 display: flex; 4182} 4183 4184.input-group-prepend .btn, .input-group-prepend #dw__login button, #dw__login .input-group-prepend button, .input-group-prepend .qq-upload-button, .input-group-prepend .toggleAssistant, .input-group-prepend .doku_form .no button, .doku_form .no .input-group-prepend button, .input-group-prepend #tool__bar button, #tool__bar .input-group-prepend button, .input-group-prepend #dokuwiki__content .editButtons button, #dokuwiki__content .editButtons .input-group-prepend button, .input-group-prepend #dokuwiki__content #page__revisions button, #dokuwiki__content #page__revisions .input-group-prepend button, .input-group-prepend #dokuwiki__content .secedit button, #dokuwiki__content .secedit .input-group-prepend button, .input-group-prepend button, 4185.input-group-append .btn, 4186.input-group-append #dw__login button, 4187#dw__login .input-group-append button, 4188.input-group-append .qq-upload-button, 4189.input-group-append .toggleAssistant, 4190.input-group-append .doku_form .no button, 4191.doku_form .no .input-group-append button, 4192.input-group-append #tool__bar button, 4193#tool__bar .input-group-append button, 4194.input-group-append #dokuwiki__content .editButtons button, 4195#dokuwiki__content .editButtons .input-group-append button, 4196.input-group-append #dokuwiki__content #page__revisions button, 4197#dokuwiki__content #page__revisions .input-group-append button, 4198.input-group-append #dokuwiki__content .secedit button, 4199#dokuwiki__content .secedit .input-group-append button, 4200.input-group-append button { 4201 position: relative; 4202 z-index: 2; 4203} 4204 4205.input-group-prepend .btn:focus, .input-group-prepend #dw__login button:focus, #dw__login .input-group-prepend button:focus, .input-group-prepend .qq-upload-button:focus, .input-group-prepend .toggleAssistant:focus, .input-group-prepend #tool__bar button:focus, #tool__bar .input-group-prepend button:focus, .input-group-prepend #dokuwiki__content .editButtons button:focus, #dokuwiki__content .editButtons .input-group-prepend button:focus, .input-group-prepend #dokuwiki__content #page__revisions button:focus, #dokuwiki__content #page__revisions .input-group-prepend button:focus, .input-group-prepend #dokuwiki__content .secedit button:focus, #dokuwiki__content .secedit .input-group-prepend button:focus, .input-group-prepend button:focus, 4206.input-group-append .btn:focus, 4207.input-group-append #dw__login button:focus, 4208#dw__login .input-group-append button:focus, 4209.input-group-append .qq-upload-button:focus, 4210.input-group-append .toggleAssistant:focus, 4211.input-group-append #tool__bar button:focus, 4212#tool__bar .input-group-append button:focus, 4213.input-group-append #dokuwiki__content .editButtons button:focus, 4214#dokuwiki__content .editButtons .input-group-append button:focus, 4215.input-group-append #dokuwiki__content #page__revisions button:focus, 4216#dokuwiki__content #page__revisions .input-group-append button:focus, 4217.input-group-append #dokuwiki__content .secedit button:focus, 4218#dokuwiki__content .secedit .input-group-append button:focus, 4219.input-group-append button:focus { 4220 z-index: 3; 4221} 4222 4223.input-group-prepend .btn + .btn, .input-group-prepend #dw__login button + .btn, #dw__login .input-group-prepend button + .btn, .input-group-prepend #dw__login .btn + button, #dw__login .input-group-prepend .btn + button, .input-group-prepend #dw__login button + button, #dw__login .input-group-prepend button + button, .input-group-prepend .qq-upload-button + .btn, .input-group-prepend #dw__login .qq-upload-button + button, #dw__login .input-group-prepend .qq-upload-button + button, .input-group-prepend .btn + .qq-upload-button, .input-group-prepend #dw__login button + .qq-upload-button, #dw__login .input-group-prepend button + .qq-upload-button, .input-group-prepend .qq-upload-button + .qq-upload-button, .input-group-prepend .search-results-form .toggleAssistant + .btn, .input-group-prepend .search-results-form #dw__login .toggleAssistant + button, #dw__login .input-group-prepend .search-results-form .toggleAssistant + button, .input-group-prepend .search-results-form .toggleAssistant + .qq-upload-button, .search-results-form .input-group-prepend .toggleAssistant + .btn, .search-results-form .input-group-prepend #dw__login .toggleAssistant + button, #dw__login .search-results-form .input-group-prepend .toggleAssistant + button, .search-results-form .input-group-prepend .toggleAssistant + .qq-upload-button, .input-group-prepend .search-results-form .btn + .toggleAssistant, .input-group-prepend .search-results-form #dw__login button + .toggleAssistant, #dw__login .input-group-prepend .search-results-form button + .toggleAssistant, .input-group-prepend .search-results-form .qq-upload-button + .toggleAssistant, .search-results-form .input-group-prepend .btn + .toggleAssistant, .search-results-form .input-group-prepend #dw__login button + .toggleAssistant, #dw__login .search-results-form .input-group-prepend button + .toggleAssistant, .search-results-form .input-group-prepend .qq-upload-button + .toggleAssistant, .input-group-prepend .search-results-form .toggleAssistant + .toggleAssistant, .search-results-form .input-group-prepend .toggleAssistant + .toggleAssistant, .input-group-prepend .search-results-form button + .btn, .input-group-prepend .search-results-form #dw__login button + button, #dw__login .input-group-prepend .search-results-form button + button, .input-group-prepend .search-results-form button + .qq-upload-button, .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend button + .btn, .search-results-form .input-group-prepend #dw__login button + button, #dw__login .search-results-form .input-group-prepend button + button, .search-results-form .input-group-prepend button + .qq-upload-button, .search-results-form .input-group-prepend button + .toggleAssistant, .input-group-prepend .search-results-form .btn + button, .input-group-prepend .search-results-form #dw__login button + button, #dw__login .input-group-prepend .search-results-form button + button, .input-group-prepend .search-results-form .qq-upload-button + button, .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend .btn + button, .search-results-form .input-group-prepend #dw__login button + button, #dw__login .search-results-form .input-group-prepend button + button, .search-results-form .input-group-prepend .qq-upload-button + button, .search-results-form .input-group-prepend .toggleAssistant + button, .input-group-prepend .search-results-form button + button, .search-results-form .input-group-prepend button + button, .input-group-prepend .toggleAssistant + .btn, .input-group-prepend #dw__login .toggleAssistant + button, #dw__login .input-group-prepend .toggleAssistant + button, .input-group-prepend .toggleAssistant + .qq-upload-button, .input-group-prepend .search-results-form .toggleAssistant + .toggleAssistant, .search-results-form .input-group-prepend .toggleAssistant + .toggleAssistant, .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend .toggleAssistant + button, .input-group-prepend .btn + .toggleAssistant, .input-group-prepend #dw__login button + .toggleAssistant, #dw__login .input-group-prepend button + .toggleAssistant, .input-group-prepend .qq-upload-button + .toggleAssistant, .input-group-prepend .search-results-form .toggleAssistant + .toggleAssistant, .search-results-form .input-group-prepend .toggleAssistant + .toggleAssistant, .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend button + .toggleAssistant, .input-group-prepend .toggleAssistant + .toggleAssistant, .input-group-prepend .doku_form .no button + .btn, .input-group-prepend .doku_form .no #dw__login button + button, #dw__login .input-group-prepend .doku_form .no button + button, .input-group-prepend .doku_form .no button + .qq-upload-button, .input-group-prepend .doku_form .no .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend .doku_form .no button + .toggleAssistant, .input-group-prepend .doku_form .no .search-results-form button + button, .search-results-form .input-group-prepend .doku_form .no button + button, .input-group-prepend .doku_form .no button + .toggleAssistant, .doku_form .no .input-group-prepend button + .btn, .doku_form .no .input-group-prepend #dw__login button + button, #dw__login .doku_form .no .input-group-prepend button + button, .doku_form .no .input-group-prepend button + .qq-upload-button, .doku_form .no .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form .doku_form .no .input-group-prepend button + .toggleAssistant, .doku_form .no .input-group-prepend .search-results-form button + button, .search-results-form .doku_form .no .input-group-prepend button + button, .doku_form .no .input-group-prepend button + .toggleAssistant, .input-group-prepend .doku_form .no .btn + button, .input-group-prepend .doku_form .no #dw__login button + button, #dw__login .input-group-prepend .doku_form .no button + button, .input-group-prepend .doku_form .no .qq-upload-button + button, .input-group-prepend .doku_form .no .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend .doku_form .no .toggleAssistant + button, .input-group-prepend .doku_form .no .search-results-form button + button, .search-results-form .input-group-prepend .doku_form .no button + button, .input-group-prepend .doku_form .no .toggleAssistant + button, .doku_form .no .input-group-prepend .btn + button, .doku_form .no .input-group-prepend #dw__login button + button, #dw__login .doku_form .no .input-group-prepend button + button, .doku_form .no .input-group-prepend .qq-upload-button + button, .doku_form .no .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form .doku_form .no .input-group-prepend .toggleAssistant + button, .doku_form .no .input-group-prepend .search-results-form button + button, .search-results-form .doku_form .no .input-group-prepend button + button, .doku_form .no .input-group-prepend .toggleAssistant + button, .input-group-prepend .doku_form .no button + button, .doku_form .no .input-group-prepend button + button, .input-group-prepend #tool__bar button + .btn, .input-group-prepend #tool__bar #dw__login button + button, #dw__login .input-group-prepend #tool__bar button + button, .input-group-prepend #tool__bar button + .qq-upload-button, .input-group-prepend #tool__bar .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend #tool__bar button + .toggleAssistant, .input-group-prepend #tool__bar .search-results-form button + button, .search-results-form .input-group-prepend #tool__bar button + button, .input-group-prepend #tool__bar button + .toggleAssistant, .input-group-prepend #tool__bar .doku_form .no button + button, .doku_form .no .input-group-prepend #tool__bar button + button, #tool__bar .input-group-prepend button + .btn, #tool__bar .input-group-prepend #dw__login button + button, #dw__login #tool__bar .input-group-prepend button + button, #tool__bar .input-group-prepend button + .qq-upload-button, #tool__bar .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form #tool__bar .input-group-prepend button + .toggleAssistant, #tool__bar .input-group-prepend .search-results-form button + button, .search-results-form #tool__bar .input-group-prepend button + button, #tool__bar .input-group-prepend button + .toggleAssistant, #tool__bar .input-group-prepend .doku_form .no button + button, .doku_form .no #tool__bar .input-group-prepend button + button, .input-group-prepend #tool__bar .btn + button, .input-group-prepend #tool__bar #dw__login button + button, #dw__login .input-group-prepend #tool__bar button + button, .input-group-prepend #tool__bar .qq-upload-button + button, .input-group-prepend #tool__bar .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend #tool__bar .toggleAssistant + button, .input-group-prepend #tool__bar .search-results-form button + button, .search-results-form .input-group-prepend #tool__bar button + button, .input-group-prepend #tool__bar .toggleAssistant + button, .input-group-prepend #tool__bar .doku_form .no button + button, .doku_form .no .input-group-prepend #tool__bar button + button, #tool__bar .input-group-prepend .btn + button, #tool__bar .input-group-prepend #dw__login button + button, #dw__login #tool__bar .input-group-prepend button + button, #tool__bar .input-group-prepend .qq-upload-button + button, #tool__bar .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form #tool__bar .input-group-prepend .toggleAssistant + button, #tool__bar .input-group-prepend .search-results-form button + button, .search-results-form #tool__bar .input-group-prepend button + button, #tool__bar .input-group-prepend .toggleAssistant + button, #tool__bar .input-group-prepend .doku_form .no button + button, .doku_form .no #tool__bar .input-group-prepend button + button, .input-group-prepend #tool__bar button + button, #tool__bar .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .editButtons button + .btn, .input-group-prepend #dokuwiki__content .editButtons #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons button + .qq-upload-button, .input-group-prepend #dokuwiki__content .editButtons .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend #dokuwiki__content .editButtons button + .toggleAssistant, .input-group-prepend #dokuwiki__content .editButtons .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons button + .toggleAssistant, .input-group-prepend #dokuwiki__content .editButtons .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content .editButtons button + button, #dokuwiki__content .editButtons .input-group-prepend button + .btn, #dokuwiki__content .editButtons .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend button + .qq-upload-button, #dokuwiki__content .editButtons .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form #dokuwiki__content .editButtons .input-group-prepend button + .toggleAssistant, #dokuwiki__content .editButtons .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend button + .toggleAssistant, #dokuwiki__content .editButtons .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content .editButtons .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .editButtons .btn + button, .input-group-prepend #dokuwiki__content .editButtons #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons .qq-upload-button + button, .input-group-prepend #dokuwiki__content .editButtons .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend #dokuwiki__content .editButtons .toggleAssistant + button, .input-group-prepend #dokuwiki__content .editButtons .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons .toggleAssistant + button, .input-group-prepend #dokuwiki__content .editButtons .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content .editButtons button + button, #dokuwiki__content .editButtons .input-group-prepend .btn + button, #dokuwiki__content .editButtons .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend .qq-upload-button + button, #dokuwiki__content .editButtons .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form #dokuwiki__content .editButtons .input-group-prepend .toggleAssistant + button, #dokuwiki__content .editButtons .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend .toggleAssistant + button, #dokuwiki__content .editButtons .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content .editButtons .input-group-prepend button + button, #dokuwiki__content .editButtons .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content .editButtons .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .editButtons button + button, #dokuwiki__content .editButtons .input-group-prepend button + button, .input-group-prepend #dokuwiki__content #page__revisions button + .btn, .input-group-prepend #dokuwiki__content #page__revisions #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions button + .qq-upload-button, .input-group-prepend #dokuwiki__content #page__revisions .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend #dokuwiki__content #page__revisions button + .toggleAssistant, .input-group-prepend #dokuwiki__content #page__revisions .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions button + .toggleAssistant, .input-group-prepend #dokuwiki__content #page__revisions .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons #page__revisions button + button, #dokuwiki__content #page__revisions .input-group-prepend button + .btn, #dokuwiki__content #page__revisions .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend button + .qq-upload-button, #dokuwiki__content #page__revisions .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form #dokuwiki__content #page__revisions .input-group-prepend button + .toggleAssistant, #dokuwiki__content #page__revisions .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend button + .toggleAssistant, #dokuwiki__content #page__revisions .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend .editButtons button + button, #dokuwiki__content .editButtons #page__revisions .input-group-prepend button + button, .input-group-prepend #dokuwiki__content #page__revisions .btn + button, .input-group-prepend #dokuwiki__content #page__revisions #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions .qq-upload-button + button, .input-group-prepend #dokuwiki__content #page__revisions .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend #dokuwiki__content #page__revisions .toggleAssistant + button, .input-group-prepend #dokuwiki__content #page__revisions .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions .toggleAssistant + button, .input-group-prepend #dokuwiki__content #page__revisions .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content #page__revisions button + button, .input-group-prepend #dokuwiki__content #page__revisions .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons #page__revisions button + button, #dokuwiki__content #page__revisions .input-group-prepend .btn + button, #dokuwiki__content #page__revisions .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend .qq-upload-button + button, #dokuwiki__content #page__revisions .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form #dokuwiki__content #page__revisions .input-group-prepend .toggleAssistant + button, #dokuwiki__content #page__revisions .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend .toggleAssistant + button, #dokuwiki__content #page__revisions .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content #page__revisions .input-group-prepend button + button, #dokuwiki__content #page__revisions .input-group-prepend .editButtons button + button, #dokuwiki__content .editButtons #page__revisions .input-group-prepend button + button, .input-group-prepend #dokuwiki__content #page__revisions button + button, #dokuwiki__content #page__revisions .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .secedit button + .btn, .input-group-prepend #dokuwiki__content .secedit #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit button + .qq-upload-button, .input-group-prepend #dokuwiki__content .secedit .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend #dokuwiki__content .secedit button + .toggleAssistant, .input-group-prepend #dokuwiki__content .secedit .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit button + .toggleAssistant, .input-group-prepend #dokuwiki__content .secedit .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons .secedit button + button, .input-group-prepend #dokuwiki__content #page__revisions .secedit button + button, #dokuwiki__content .secedit .input-group-prepend button + .btn, #dokuwiki__content .secedit .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend button + .qq-upload-button, #dokuwiki__content .secedit .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form #dokuwiki__content .secedit .input-group-prepend button + .toggleAssistant, #dokuwiki__content .secedit .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend button + .toggleAssistant, #dokuwiki__content .secedit .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend .editButtons button + button, #dokuwiki__content .editButtons .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend #page__revisions button + button, .input-group-prepend #dokuwiki__content .secedit .btn + button, .input-group-prepend #dokuwiki__content .secedit #dw__login button + button, #dw__login .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit .qq-upload-button + button, .input-group-prepend #dokuwiki__content .secedit .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend #dokuwiki__content .secedit .toggleAssistant + button, .input-group-prepend #dokuwiki__content .secedit .search-results-form button + button, .search-results-form .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit .toggleAssistant + button, .input-group-prepend #dokuwiki__content .secedit .doku_form .no button + button, .doku_form .no .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit #tool__bar button + button, #tool__bar .input-group-prepend #dokuwiki__content .secedit button + button, .input-group-prepend #dokuwiki__content .secedit .editButtons button + button, .input-group-prepend #dokuwiki__content .editButtons .secedit button + button, #dokuwiki__content .secedit .input-group-prepend .btn + button, #dokuwiki__content .secedit .input-group-prepend #dw__login button + button, #dw__login #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend .qq-upload-button + button, #dokuwiki__content .secedit .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form #dokuwiki__content .secedit .input-group-prepend .toggleAssistant + button, #dokuwiki__content .secedit .input-group-prepend .search-results-form button + button, .search-results-form #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend .toggleAssistant + button, #dokuwiki__content .secedit .input-group-prepend .doku_form .no button + button, .doku_form .no #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend #tool__bar button + button, #tool__bar #dokuwiki__content .secedit .input-group-prepend button + button, #dokuwiki__content .secedit .input-group-prepend .editButtons button + button, #dokuwiki__content .editButtons .secedit .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .secedit button + button, #dokuwiki__content .secedit .input-group-prepend button + button, .input-group-prepend button + .btn, .input-group-prepend #dw__login button + button, #dw__login .input-group-prepend button + button, .input-group-prepend button + .qq-upload-button, .input-group-prepend .search-results-form button + .toggleAssistant, .search-results-form .input-group-prepend button + .toggleAssistant, .input-group-prepend .search-results-form button + button, .search-results-form .input-group-prepend button + button, .input-group-prepend button + .toggleAssistant, .input-group-prepend .doku_form .no button + button, .doku_form .no .input-group-prepend button + button, .input-group-prepend #tool__bar button + button, #tool__bar .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .editButtons button + button, #dokuwiki__content .editButtons .input-group-prepend button + button, .input-group-prepend .btn + button, .input-group-prepend #dw__login button + button, #dw__login .input-group-prepend button + button, .input-group-prepend .qq-upload-button + button, .input-group-prepend .search-results-form .toggleAssistant + button, .search-results-form .input-group-prepend .toggleAssistant + button, .input-group-prepend .search-results-form button + button, .search-results-form .input-group-prepend button + button, .input-group-prepend .toggleAssistant + button, .input-group-prepend .doku_form .no button + button, .doku_form .no .input-group-prepend button + button, .input-group-prepend #tool__bar button + button, #tool__bar .input-group-prepend button + button, .input-group-prepend #dokuwiki__content .editButtons button + button, #dokuwiki__content .editButtons .input-group-prepend button + button, .input-group-prepend button + button, 4224.input-group-prepend .btn + .input-group-text, 4225.input-group-prepend #dw__login button + .input-group-text, 4226#dw__login .input-group-prepend button + .input-group-text, 4227.input-group-prepend .qq-upload-button + .input-group-text, 4228.input-group-prepend .search-results-form .toggleAssistant + .input-group-text, 4229.search-results-form .input-group-prepend .toggleAssistant + .input-group-text, 4230.input-group-prepend .search-results-form button + .input-group-text, 4231.search-results-form .input-group-prepend button + .input-group-text, 4232.input-group-prepend .toggleAssistant + .input-group-text, 4233.input-group-prepend .doku_form .no button + .input-group-text, 4234.doku_form .no .input-group-prepend button + .input-group-text, 4235.input-group-prepend #tool__bar button + .input-group-text, 4236#tool__bar .input-group-prepend button + .input-group-text, 4237.input-group-prepend #dokuwiki__content .editButtons button + .input-group-text, 4238#dokuwiki__content .editButtons .input-group-prepend button + .input-group-text, 4239.input-group-prepend #dokuwiki__content #page__revisions button + .input-group-text, 4240#dokuwiki__content #page__revisions .input-group-prepend button + .input-group-text, 4241.input-group-prepend #dokuwiki__content .secedit button + .input-group-text, 4242#dokuwiki__content .secedit .input-group-prepend button + .input-group-text, 4243.input-group-prepend button + .input-group-text, 4244.input-group-prepend .input-group-text + .input-group-text, 4245.input-group-prepend .input-group-text + .btn, 4246.input-group-prepend #dw__login .input-group-text + button, 4247#dw__login .input-group-prepend .input-group-text + button, 4248.input-group-prepend .input-group-text + .qq-upload-button, 4249.input-group-prepend .search-results-form .input-group-text + .toggleAssistant, 4250.search-results-form .input-group-prepend .input-group-text + .toggleAssistant, 4251.input-group-prepend .search-results-form .input-group-text + button, 4252.search-results-form .input-group-prepend .input-group-text + button, 4253.input-group-prepend .input-group-text + .toggleAssistant, 4254.input-group-prepend .doku_form .no .input-group-text + button, 4255.doku_form .no .input-group-prepend .input-group-text + button, 4256.input-group-prepend #tool__bar .input-group-text + button, 4257#tool__bar .input-group-prepend .input-group-text + button, 4258.input-group-prepend #dokuwiki__content .editButtons .input-group-text + button, 4259#dokuwiki__content .editButtons .input-group-prepend .input-group-text + button, 4260.input-group-prepend #dokuwiki__content #page__revisions .input-group-text + button, 4261#dokuwiki__content #page__revisions .input-group-prepend .input-group-text + button, 4262.input-group-prepend #dokuwiki__content .secedit .input-group-text + button, 4263#dokuwiki__content .secedit .input-group-prepend .input-group-text + button, 4264.input-group-prepend .input-group-text + button, 4265.input-group-append .btn + .btn, 4266.input-group-append #dw__login button + .btn, 4267#dw__login .input-group-append button + .btn, 4268.input-group-append #dw__login .btn + button, 4269#dw__login .input-group-append .btn + button, 4270.input-group-append #dw__login button + button, 4271#dw__login .input-group-append button + button, 4272.input-group-append .qq-upload-button + .btn, 4273.input-group-append #dw__login .qq-upload-button + button, 4274#dw__login .input-group-append .qq-upload-button + button, 4275.input-group-append .btn + .qq-upload-button, 4276.input-group-append #dw__login button + .qq-upload-button, 4277#dw__login .input-group-append button + .qq-upload-button, 4278.input-group-append .qq-upload-button + .qq-upload-button, 4279.input-group-append .search-results-form .toggleAssistant + .btn, 4280.input-group-append .search-results-form #dw__login .toggleAssistant + button, 4281#dw__login .input-group-append .search-results-form .toggleAssistant + button, 4282.input-group-append .search-results-form .toggleAssistant + .qq-upload-button, 4283.search-results-form .input-group-append .toggleAssistant + .btn, 4284.search-results-form .input-group-append #dw__login .toggleAssistant + button, 4285#dw__login .search-results-form .input-group-append .toggleAssistant + button, 4286.search-results-form .input-group-append .toggleAssistant + .qq-upload-button, 4287.input-group-append .search-results-form .btn + .toggleAssistant, 4288.input-group-append .search-results-form #dw__login button + .toggleAssistant, 4289#dw__login .input-group-append .search-results-form button + .toggleAssistant, 4290.input-group-append .search-results-form .qq-upload-button + .toggleAssistant, 4291.search-results-form .input-group-append .btn + .toggleAssistant, 4292.search-results-form .input-group-append #dw__login button + .toggleAssistant, 4293#dw__login .search-results-form .input-group-append button + .toggleAssistant, 4294.search-results-form .input-group-append .qq-upload-button + .toggleAssistant, 4295.input-group-append .search-results-form .toggleAssistant + .toggleAssistant, 4296.search-results-form .input-group-append .toggleAssistant + .toggleAssistant, 4297.input-group-append .search-results-form button + .btn, 4298.input-group-append .search-results-form #dw__login button + button, 4299#dw__login .input-group-append .search-results-form button + button, 4300.input-group-append .search-results-form button + .qq-upload-button, 4301.input-group-append .search-results-form button + .toggleAssistant, 4302.search-results-form .input-group-append button + .btn, 4303.search-results-form .input-group-append #dw__login button + button, 4304#dw__login .search-results-form .input-group-append button + button, 4305.search-results-form .input-group-append button + .qq-upload-button, 4306.search-results-form .input-group-append button + .toggleAssistant, 4307.input-group-append .search-results-form .btn + button, 4308.input-group-append .search-results-form #dw__login button + button, 4309#dw__login .input-group-append .search-results-form button + button, 4310.input-group-append .search-results-form .qq-upload-button + button, 4311.input-group-append .search-results-form .toggleAssistant + button, 4312.search-results-form .input-group-append .btn + button, 4313.search-results-form .input-group-append #dw__login button + button, 4314#dw__login .search-results-form .input-group-append button + button, 4315.search-results-form .input-group-append .qq-upload-button + button, 4316.search-results-form .input-group-append .toggleAssistant + button, 4317.input-group-append .search-results-form button + button, 4318.search-results-form .input-group-append button + button, 4319.input-group-append .toggleAssistant + .btn, 4320.input-group-append #dw__login .toggleAssistant + button, 4321#dw__login .input-group-append .toggleAssistant + button, 4322.input-group-append .toggleAssistant + .qq-upload-button, 4323.input-group-append .search-results-form .toggleAssistant + .toggleAssistant, 4324.search-results-form .input-group-append .toggleAssistant + .toggleAssistant, 4325.input-group-append .search-results-form .toggleAssistant + button, 4326.search-results-form .input-group-append .toggleAssistant + button, 4327.input-group-append .btn + .toggleAssistant, 4328.input-group-append #dw__login button + .toggleAssistant, 4329#dw__login .input-group-append button + .toggleAssistant, 4330.input-group-append .qq-upload-button + .toggleAssistant, 4331.input-group-append .search-results-form .toggleAssistant + .toggleAssistant, 4332.search-results-form .input-group-append .toggleAssistant + .toggleAssistant, 4333.input-group-append .search-results-form button + .toggleAssistant, 4334.search-results-form .input-group-append button + .toggleAssistant, 4335.input-group-append .toggleAssistant + .toggleAssistant, 4336.input-group-append .doku_form .no button + .btn, 4337.input-group-append .doku_form .no #dw__login button + button, 4338#dw__login .input-group-append .doku_form .no button + button, 4339.input-group-append .doku_form .no button + .qq-upload-button, 4340.input-group-append .doku_form .no .search-results-form button + .toggleAssistant, 4341.search-results-form .input-group-append .doku_form .no button + .toggleAssistant, 4342.input-group-append .doku_form .no .search-results-form button + button, 4343.search-results-form .input-group-append .doku_form .no button + button, 4344.input-group-append .doku_form .no button + .toggleAssistant, 4345.doku_form .no .input-group-append button + .btn, 4346.doku_form .no .input-group-append #dw__login button + button, 4347#dw__login .doku_form .no .input-group-append button + button, 4348.doku_form .no .input-group-append button + .qq-upload-button, 4349.doku_form .no .input-group-append .search-results-form button + .toggleAssistant, 4350.search-results-form .doku_form .no .input-group-append button + .toggleAssistant, 4351.doku_form .no .input-group-append .search-results-form button + button, 4352.search-results-form .doku_form .no .input-group-append button + button, 4353.doku_form .no .input-group-append button + .toggleAssistant, 4354.input-group-append .doku_form .no .btn + button, 4355.input-group-append .doku_form .no #dw__login button + button, 4356#dw__login .input-group-append .doku_form .no button + button, 4357.input-group-append .doku_form .no .qq-upload-button + button, 4358.input-group-append .doku_form .no .search-results-form .toggleAssistant + button, 4359.search-results-form .input-group-append .doku_form .no .toggleAssistant + button, 4360.input-group-append .doku_form .no .search-results-form button + button, 4361.search-results-form .input-group-append .doku_form .no button + button, 4362.input-group-append .doku_form .no .toggleAssistant + button, 4363.doku_form .no .input-group-append .btn + button, 4364.doku_form .no .input-group-append #dw__login button + button, 4365#dw__login .doku_form .no .input-group-append button + button, 4366.doku_form .no .input-group-append .qq-upload-button + button, 4367.doku_form .no .input-group-append .search-results-form .toggleAssistant + button, 4368.search-results-form .doku_form .no .input-group-append .toggleAssistant + button, 4369.doku_form .no .input-group-append .search-results-form button + button, 4370.search-results-form .doku_form .no .input-group-append button + button, 4371.doku_form .no .input-group-append .toggleAssistant + button, 4372.input-group-append .doku_form .no button + button, 4373.doku_form .no .input-group-append button + button, 4374.input-group-append #tool__bar button + .btn, 4375.input-group-append #tool__bar #dw__login button + button, 4376#dw__login .input-group-append #tool__bar button + button, 4377.input-group-append #tool__bar button + .qq-upload-button, 4378.input-group-append #tool__bar .search-results-form button + .toggleAssistant, 4379.search-results-form .input-group-append #tool__bar button + .toggleAssistant, 4380.input-group-append #tool__bar .search-results-form button + button, 4381.search-results-form .input-group-append #tool__bar button + button, 4382.input-group-append #tool__bar button + .toggleAssistant, 4383.input-group-append #tool__bar .doku_form .no button + button, 4384.doku_form .no .input-group-append #tool__bar button + button, 4385#tool__bar .input-group-append button + .btn, 4386#tool__bar .input-group-append #dw__login button + button, 4387#dw__login #tool__bar .input-group-append button + button, 4388#tool__bar .input-group-append button + .qq-upload-button, 4389#tool__bar .input-group-append .search-results-form button + .toggleAssistant, 4390.search-results-form #tool__bar .input-group-append button + .toggleAssistant, 4391#tool__bar .input-group-append .search-results-form button + button, 4392.search-results-form #tool__bar .input-group-append button + button, 4393#tool__bar .input-group-append button + .toggleAssistant, 4394#tool__bar .input-group-append .doku_form .no button + button, 4395.doku_form .no #tool__bar .input-group-append button + button, 4396.input-group-append #tool__bar .btn + button, 4397.input-group-append #tool__bar #dw__login button + button, 4398#dw__login .input-group-append #tool__bar button + button, 4399.input-group-append #tool__bar .qq-upload-button + button, 4400.input-group-append #tool__bar .search-results-form .toggleAssistant + button, 4401.search-results-form .input-group-append #tool__bar .toggleAssistant + button, 4402.input-group-append #tool__bar .search-results-form button + button, 4403.search-results-form .input-group-append #tool__bar button + button, 4404.input-group-append #tool__bar .toggleAssistant + button, 4405.input-group-append #tool__bar .doku_form .no button + button, 4406.doku_form .no .input-group-append #tool__bar button + button, 4407#tool__bar .input-group-append .btn + button, 4408#tool__bar .input-group-append #dw__login button + button, 4409#dw__login #tool__bar .input-group-append button + button, 4410#tool__bar .input-group-append .qq-upload-button + button, 4411#tool__bar .input-group-append .search-results-form .toggleAssistant + button, 4412.search-results-form #tool__bar .input-group-append .toggleAssistant + button, 4413#tool__bar .input-group-append .search-results-form button + button, 4414.search-results-form #tool__bar .input-group-append button + button, 4415#tool__bar .input-group-append .toggleAssistant + button, 4416#tool__bar .input-group-append .doku_form .no button + button, 4417.doku_form .no #tool__bar .input-group-append button + button, 4418.input-group-append #tool__bar button + button, 4419#tool__bar .input-group-append button + button, 4420.input-group-append #dokuwiki__content .editButtons button + .btn, 4421.input-group-append #dokuwiki__content .editButtons #dw__login button + button, 4422#dw__login .input-group-append #dokuwiki__content .editButtons button + button, 4423.input-group-append #dokuwiki__content .editButtons button + .qq-upload-button, 4424.input-group-append #dokuwiki__content .editButtons .search-results-form button + .toggleAssistant, 4425.search-results-form .input-group-append #dokuwiki__content .editButtons button + .toggleAssistant, 4426.input-group-append #dokuwiki__content .editButtons .search-results-form button + button, 4427.search-results-form .input-group-append #dokuwiki__content .editButtons button + button, 4428.input-group-append #dokuwiki__content .editButtons button + .toggleAssistant, 4429.input-group-append #dokuwiki__content .editButtons .doku_form .no button + button, 4430.doku_form .no .input-group-append #dokuwiki__content .editButtons button + button, 4431.input-group-append #dokuwiki__content .editButtons #tool__bar button + button, 4432#tool__bar .input-group-append #dokuwiki__content .editButtons button + button, 4433#dokuwiki__content .editButtons .input-group-append button + .btn, 4434#dokuwiki__content .editButtons .input-group-append #dw__login button + button, 4435#dw__login #dokuwiki__content .editButtons .input-group-append button + button, 4436#dokuwiki__content .editButtons .input-group-append button + .qq-upload-button, 4437#dokuwiki__content .editButtons .input-group-append .search-results-form button + .toggleAssistant, 4438.search-results-form #dokuwiki__content .editButtons .input-group-append button + .toggleAssistant, 4439#dokuwiki__content .editButtons .input-group-append .search-results-form button + button, 4440.search-results-form #dokuwiki__content .editButtons .input-group-append button + button, 4441#dokuwiki__content .editButtons .input-group-append button + .toggleAssistant, 4442#dokuwiki__content .editButtons .input-group-append .doku_form .no button + button, 4443.doku_form .no #dokuwiki__content .editButtons .input-group-append button + button, 4444#dokuwiki__content .editButtons .input-group-append #tool__bar button + button, 4445#tool__bar #dokuwiki__content .editButtons .input-group-append button + button, 4446.input-group-append #dokuwiki__content .editButtons .btn + button, 4447.input-group-append #dokuwiki__content .editButtons #dw__login button + button, 4448#dw__login .input-group-append #dokuwiki__content .editButtons button + button, 4449.input-group-append #dokuwiki__content .editButtons .qq-upload-button + button, 4450.input-group-append #dokuwiki__content .editButtons .search-results-form .toggleAssistant + button, 4451.search-results-form .input-group-append #dokuwiki__content .editButtons .toggleAssistant + button, 4452.input-group-append #dokuwiki__content .editButtons .search-results-form button + button, 4453.search-results-form .input-group-append #dokuwiki__content .editButtons button + button, 4454.input-group-append #dokuwiki__content .editButtons .toggleAssistant + button, 4455.input-group-append #dokuwiki__content .editButtons .doku_form .no button + button, 4456.doku_form .no .input-group-append #dokuwiki__content .editButtons button + button, 4457.input-group-append #dokuwiki__content .editButtons #tool__bar button + button, 4458#tool__bar .input-group-append #dokuwiki__content .editButtons button + button, 4459#dokuwiki__content .editButtons .input-group-append .btn + button, 4460#dokuwiki__content .editButtons .input-group-append #dw__login button + button, 4461#dw__login #dokuwiki__content .editButtons .input-group-append button + button, 4462#dokuwiki__content .editButtons .input-group-append .qq-upload-button + button, 4463#dokuwiki__content .editButtons .input-group-append .search-results-form .toggleAssistant + button, 4464.search-results-form #dokuwiki__content .editButtons .input-group-append .toggleAssistant + button, 4465#dokuwiki__content .editButtons .input-group-append .search-results-form button + button, 4466.search-results-form #dokuwiki__content .editButtons .input-group-append button + button, 4467#dokuwiki__content .editButtons .input-group-append .toggleAssistant + button, 4468#dokuwiki__content .editButtons .input-group-append .doku_form .no button + button, 4469.doku_form .no #dokuwiki__content .editButtons .input-group-append button + button, 4470#dokuwiki__content .editButtons .input-group-append #tool__bar button + button, 4471#tool__bar #dokuwiki__content .editButtons .input-group-append button + button, 4472.input-group-append #dokuwiki__content .editButtons button + button, 4473#dokuwiki__content .editButtons .input-group-append button + button, 4474.input-group-append #dokuwiki__content #page__revisions button + .btn, 4475.input-group-append #dokuwiki__content #page__revisions #dw__login button + button, 4476#dw__login .input-group-append #dokuwiki__content #page__revisions button + button, 4477.input-group-append #dokuwiki__content #page__revisions button + .qq-upload-button, 4478.input-group-append #dokuwiki__content #page__revisions .search-results-form button + .toggleAssistant, 4479.search-results-form .input-group-append #dokuwiki__content #page__revisions button + .toggleAssistant, 4480.input-group-append #dokuwiki__content #page__revisions .search-results-form button + button, 4481.search-results-form .input-group-append #dokuwiki__content #page__revisions button + button, 4482.input-group-append #dokuwiki__content #page__revisions button + .toggleAssistant, 4483.input-group-append #dokuwiki__content #page__revisions .doku_form .no button + button, 4484.doku_form .no .input-group-append #dokuwiki__content #page__revisions button + button, 4485.input-group-append #dokuwiki__content #page__revisions #tool__bar button + button, 4486#tool__bar .input-group-append #dokuwiki__content #page__revisions button + button, 4487.input-group-append #dokuwiki__content #page__revisions .editButtons button + button, 4488.input-group-append #dokuwiki__content .editButtons #page__revisions button + button, 4489#dokuwiki__content #page__revisions .input-group-append button + .btn, 4490#dokuwiki__content #page__revisions .input-group-append #dw__login button + button, 4491#dw__login #dokuwiki__content #page__revisions .input-group-append button + button, 4492#dokuwiki__content #page__revisions .input-group-append button + .qq-upload-button, 4493#dokuwiki__content #page__revisions .input-group-append .search-results-form button + .toggleAssistant, 4494.search-results-form #dokuwiki__content #page__revisions .input-group-append button + .toggleAssistant, 4495#dokuwiki__content #page__revisions .input-group-append .search-results-form button + button, 4496.search-results-form #dokuwiki__content #page__revisions .input-group-append button + button, 4497#dokuwiki__content #page__revisions .input-group-append button + .toggleAssistant, 4498#dokuwiki__content #page__revisions .input-group-append .doku_form .no button + button, 4499.doku_form .no #dokuwiki__content #page__revisions .input-group-append button + button, 4500#dokuwiki__content #page__revisions .input-group-append #tool__bar button + button, 4501#tool__bar #dokuwiki__content #page__revisions .input-group-append button + button, 4502#dokuwiki__content #page__revisions .input-group-append .editButtons button + button, 4503#dokuwiki__content .editButtons #page__revisions .input-group-append button + button, 4504.input-group-append #dokuwiki__content #page__revisions .btn + button, 4505.input-group-append #dokuwiki__content #page__revisions #dw__login button + button, 4506#dw__login .input-group-append #dokuwiki__content #page__revisions button + button, 4507.input-group-append #dokuwiki__content #page__revisions .qq-upload-button + button, 4508.input-group-append #dokuwiki__content #page__revisions .search-results-form .toggleAssistant + button, 4509.search-results-form .input-group-append #dokuwiki__content #page__revisions .toggleAssistant + button, 4510.input-group-append #dokuwiki__content #page__revisions .search-results-form button + button, 4511.search-results-form .input-group-append #dokuwiki__content #page__revisions button + button, 4512.input-group-append #dokuwiki__content #page__revisions .toggleAssistant + button, 4513.input-group-append #dokuwiki__content #page__revisions .doku_form .no button + button, 4514.doku_form .no .input-group-append #dokuwiki__content #page__revisions button + button, 4515.input-group-append #dokuwiki__content #page__revisions #tool__bar button + button, 4516#tool__bar .input-group-append #dokuwiki__content #page__revisions button + button, 4517.input-group-append #dokuwiki__content #page__revisions .editButtons button + button, 4518.input-group-append #dokuwiki__content .editButtons #page__revisions button + button, 4519#dokuwiki__content #page__revisions .input-group-append .btn + button, 4520#dokuwiki__content #page__revisions .input-group-append #dw__login button + button, 4521#dw__login #dokuwiki__content #page__revisions .input-group-append button + button, 4522#dokuwiki__content #page__revisions .input-group-append .qq-upload-button + button, 4523#dokuwiki__content #page__revisions .input-group-append .search-results-form .toggleAssistant + button, 4524.search-results-form #dokuwiki__content #page__revisions .input-group-append .toggleAssistant + button, 4525#dokuwiki__content #page__revisions .input-group-append .search-results-form button + button, 4526.search-results-form #dokuwiki__content #page__revisions .input-group-append button + button, 4527#dokuwiki__content #page__revisions .input-group-append .toggleAssistant + button, 4528#dokuwiki__content #page__revisions .input-group-append .doku_form .no button + button, 4529.doku_form .no #dokuwiki__content #page__revisions .input-group-append button + button, 4530#dokuwiki__content #page__revisions .input-group-append #tool__bar button + button, 4531#tool__bar #dokuwiki__content #page__revisions .input-group-append button + button, 4532#dokuwiki__content #page__revisions .input-group-append .editButtons button + button, 4533#dokuwiki__content .editButtons #page__revisions .input-group-append button + button, 4534.input-group-append #dokuwiki__content #page__revisions button + button, 4535#dokuwiki__content #page__revisions .input-group-append button + button, 4536.input-group-append #dokuwiki__content .secedit button + .btn, 4537.input-group-append #dokuwiki__content .secedit #dw__login button + button, 4538#dw__login .input-group-append #dokuwiki__content .secedit button + button, 4539.input-group-append #dokuwiki__content .secedit button + .qq-upload-button, 4540.input-group-append #dokuwiki__content .secedit .search-results-form button + .toggleAssistant, 4541.search-results-form .input-group-append #dokuwiki__content .secedit button + .toggleAssistant, 4542.input-group-append #dokuwiki__content .secedit .search-results-form button + button, 4543.search-results-form .input-group-append #dokuwiki__content .secedit button + button, 4544.input-group-append #dokuwiki__content .secedit button + .toggleAssistant, 4545.input-group-append #dokuwiki__content .secedit .doku_form .no button + button, 4546.doku_form .no .input-group-append #dokuwiki__content .secedit button + button, 4547.input-group-append #dokuwiki__content .secedit #tool__bar button + button, 4548#tool__bar .input-group-append #dokuwiki__content .secedit button + button, 4549.input-group-append #dokuwiki__content .secedit .editButtons button + button, 4550.input-group-append #dokuwiki__content .editButtons .secedit button + button, 4551.input-group-append #dokuwiki__content #page__revisions .secedit button + button, 4552#dokuwiki__content .secedit .input-group-append button + .btn, 4553#dokuwiki__content .secedit .input-group-append #dw__login button + button, 4554#dw__login #dokuwiki__content .secedit .input-group-append button + button, 4555#dokuwiki__content .secedit .input-group-append button + .qq-upload-button, 4556#dokuwiki__content .secedit .input-group-append .search-results-form button + .toggleAssistant, 4557.search-results-form #dokuwiki__content .secedit .input-group-append button + .toggleAssistant, 4558#dokuwiki__content .secedit .input-group-append .search-results-form button + button, 4559.search-results-form #dokuwiki__content .secedit .input-group-append button + button, 4560#dokuwiki__content .secedit .input-group-append button + .toggleAssistant, 4561#dokuwiki__content .secedit .input-group-append .doku_form .no button + button, 4562.doku_form .no #dokuwiki__content .secedit .input-group-append button + button, 4563#dokuwiki__content .secedit .input-group-append #tool__bar button + button, 4564#tool__bar #dokuwiki__content .secedit .input-group-append button + button, 4565#dokuwiki__content .secedit .input-group-append .editButtons button + button, 4566#dokuwiki__content .editButtons .secedit .input-group-append button + button, 4567#dokuwiki__content .secedit .input-group-append #page__revisions button + button, 4568.input-group-append #dokuwiki__content .secedit .btn + button, 4569.input-group-append #dokuwiki__content .secedit #dw__login button + button, 4570#dw__login .input-group-append #dokuwiki__content .secedit button + button, 4571.input-group-append #dokuwiki__content .secedit .qq-upload-button + button, 4572.input-group-append #dokuwiki__content .secedit .search-results-form .toggleAssistant + button, 4573.search-results-form .input-group-append #dokuwiki__content .secedit .toggleAssistant + button, 4574.input-group-append #dokuwiki__content .secedit .search-results-form button + button, 4575.search-results-form .input-group-append #dokuwiki__content .secedit button + button, 4576.input-group-append #dokuwiki__content .secedit .toggleAssistant + button, 4577.input-group-append #dokuwiki__content .secedit .doku_form .no button + button, 4578.doku_form .no .input-group-append #dokuwiki__content .secedit button + button, 4579.input-group-append #dokuwiki__content .secedit #tool__bar button + button, 4580#tool__bar .input-group-append #dokuwiki__content .secedit button + button, 4581.input-group-append #dokuwiki__content .secedit .editButtons button + button, 4582.input-group-append #dokuwiki__content .editButtons .secedit button + button, 4583#dokuwiki__content .secedit .input-group-append .btn + button, 4584#dokuwiki__content .secedit .input-group-append #dw__login button + button, 4585#dw__login #dokuwiki__content .secedit .input-group-append button + button, 4586#dokuwiki__content .secedit .input-group-append .qq-upload-button + button, 4587#dokuwiki__content .secedit .input-group-append .search-results-form .toggleAssistant + button, 4588.search-results-form #dokuwiki__content .secedit .input-group-append .toggleAssistant + button, 4589#dokuwiki__content .secedit .input-group-append .search-results-form button + button, 4590.search-results-form #dokuwiki__content .secedit .input-group-append button + button, 4591#dokuwiki__content .secedit .input-group-append .toggleAssistant + button, 4592#dokuwiki__content .secedit .input-group-append .doku_form .no button + button, 4593.doku_form .no #dokuwiki__content .secedit .input-group-append button + button, 4594#dokuwiki__content .secedit .input-group-append #tool__bar button + button, 4595#tool__bar #dokuwiki__content .secedit .input-group-append button + button, 4596#dokuwiki__content .secedit .input-group-append .editButtons button + button, 4597#dokuwiki__content .editButtons .secedit .input-group-append button + button, 4598.input-group-append #dokuwiki__content .secedit button + button, 4599#dokuwiki__content .secedit .input-group-append button + button, 4600.input-group-append button + .btn, 4601.input-group-append #dw__login button + button, 4602#dw__login .input-group-append button + button, 4603.input-group-append button + .qq-upload-button, 4604.input-group-append .search-results-form button + .toggleAssistant, 4605.search-results-form .input-group-append button + .toggleAssistant, 4606.input-group-append .search-results-form button + button, 4607.search-results-form .input-group-append button + button, 4608.input-group-append button + .toggleAssistant, 4609.input-group-append .doku_form .no button + button, 4610.doku_form .no .input-group-append button + button, 4611.input-group-append #tool__bar button + button, 4612#tool__bar .input-group-append button + button, 4613.input-group-append #dokuwiki__content .editButtons button + button, 4614#dokuwiki__content .editButtons .input-group-append button + button, 4615.input-group-append .btn + button, 4616.input-group-append #dw__login button + button, 4617#dw__login .input-group-append button + button, 4618.input-group-append .qq-upload-button + button, 4619.input-group-append .search-results-form .toggleAssistant + button, 4620.search-results-form .input-group-append .toggleAssistant + button, 4621.input-group-append .search-results-form button + button, 4622.search-results-form .input-group-append button + button, 4623.input-group-append .toggleAssistant + button, 4624.input-group-append .doku_form .no button + button, 4625.doku_form .no .input-group-append button + button, 4626.input-group-append #tool__bar button + button, 4627#tool__bar .input-group-append button + button, 4628.input-group-append #dokuwiki__content .editButtons button + button, 4629#dokuwiki__content .editButtons .input-group-append button + button, 4630.input-group-append button + button, 4631.input-group-append .btn + .input-group-text, 4632.input-group-append #dw__login button + .input-group-text, 4633#dw__login .input-group-append button + .input-group-text, 4634.input-group-append .qq-upload-button + .input-group-text, 4635.input-group-append .search-results-form .toggleAssistant + .input-group-text, 4636.search-results-form .input-group-append .toggleAssistant + .input-group-text, 4637.input-group-append .search-results-form button + .input-group-text, 4638.search-results-form .input-group-append button + .input-group-text, 4639.input-group-append .toggleAssistant + .input-group-text, 4640.input-group-append .doku_form .no button + .input-group-text, 4641.doku_form .no .input-group-append button + .input-group-text, 4642.input-group-append #tool__bar button + .input-group-text, 4643#tool__bar .input-group-append button + .input-group-text, 4644.input-group-append #dokuwiki__content .editButtons button + .input-group-text, 4645#dokuwiki__content .editButtons .input-group-append button + .input-group-text, 4646.input-group-append #dokuwiki__content #page__revisions button + .input-group-text, 4647#dokuwiki__content #page__revisions .input-group-append button + .input-group-text, 4648.input-group-append #dokuwiki__content .secedit button + .input-group-text, 4649#dokuwiki__content .secedit .input-group-append button + .input-group-text, 4650.input-group-append button + .input-group-text, 4651.input-group-append .input-group-text + .input-group-text, 4652.input-group-append .input-group-text + .btn, 4653.input-group-append #dw__login .input-group-text + button, 4654#dw__login .input-group-append .input-group-text + button, 4655.input-group-append .input-group-text + .qq-upload-button, 4656.input-group-append .search-results-form .input-group-text + .toggleAssistant, 4657.search-results-form .input-group-append .input-group-text + .toggleAssistant, 4658.input-group-append .search-results-form .input-group-text + button, 4659.search-results-form .input-group-append .input-group-text + button, 4660.input-group-append .input-group-text + .toggleAssistant, 4661.input-group-append .doku_form .no .input-group-text + button, 4662.doku_form .no .input-group-append .input-group-text + button, 4663.input-group-append #tool__bar .input-group-text + button, 4664#tool__bar .input-group-append .input-group-text + button, 4665.input-group-append #dokuwiki__content .editButtons .input-group-text + button, 4666#dokuwiki__content .editButtons .input-group-append .input-group-text + button, 4667.input-group-append #dokuwiki__content #page__revisions .input-group-text + button, 4668#dokuwiki__content #page__revisions .input-group-append .input-group-text + button, 4669.input-group-append #dokuwiki__content .secedit .input-group-text + button, 4670#dokuwiki__content .secedit .input-group-append .input-group-text + button, 4671.input-group-append .input-group-text + button { 4672 margin-left: -1px; 4673} 4674 4675.input-group-prepend { 4676 margin-right: -1px; 4677} 4678 4679.input-group-append { 4680 margin-left: -1px; 4681} 4682 4683.input-group-text { 4684 display: flex; 4685 align-items: center; 4686 padding: 0.625rem 0.75rem; 4687 margin-bottom: 0; 4688 font-size: 0.875rem; 4689 font-weight: 400; 4690 line-height: 1.5; 4691 color: #adb5bd; 4692 text-align: center; 4693 white-space: nowrap; 4694 background-color: #fff; 4695 border: 1px solid #cad1d7; 4696 border-radius: 0.25rem; 4697} 4698 4699.input-group-text input[type=radio], 4700.input-group-text input[type=checkbox] { 4701 margin-top: 0; 4702} 4703 4704.input-group-lg > .form-control:not(textarea), #dw__login .input-group-lg > input:not(textarea), #config__manager td .input-group-lg > input.edit:not(textarea), .search-results-form fieldset .input-group-lg > input:not(textarea), .doku_form .no .input-group-lg > #qsearch__in:not(textarea), .input-group-lg > textarea:not(textarea), 4705.input-group-lg > .custom-select { 4706 height: calc(1.5em + 1.75rem + 2px); 4707} 4708 4709.input-group-lg > .form-control, #dw__login .input-group-lg > input, #config__manager td .input-group-lg > input.edit, .search-results-form fieldset .input-group-lg > input, .doku_form .no .input-group-lg > #qsearch__in, .input-group-lg > textarea, 4710.input-group-lg > .custom-select, 4711.input-group-lg > .input-group-prepend > .input-group-text, 4712.input-group-lg > .input-group-append > .input-group-text, 4713.input-group-lg > .input-group-prepend > .btn, 4714#dw__login .input-group-lg > .input-group-prepend > button, 4715.input-group-lg > .input-group-prepend > .qq-upload-button, 4716.input-group-lg > .input-group-prepend > .toggleAssistant, 4717#tool__bar .input-group-lg > .input-group-prepend > button, 4718#dokuwiki__content .editButtons .input-group-lg > .input-group-prepend > button, 4719#dokuwiki__content #page__revisions .input-group-lg > .input-group-prepend > button, 4720#dokuwiki__content .secedit .input-group-lg > .input-group-prepend > button, 4721.input-group-lg > .input-group-prepend > button, 4722.input-group-lg > .input-group-append > .btn, 4723#dw__login .input-group-lg > .input-group-append > button, 4724.input-group-lg > .input-group-append > .qq-upload-button, 4725.input-group-lg > .input-group-append > .toggleAssistant, 4726#tool__bar .input-group-lg > .input-group-append > button, 4727#dokuwiki__content .editButtons .input-group-lg > .input-group-append > button, 4728#dokuwiki__content #page__revisions .input-group-lg > .input-group-append > button, 4729#dokuwiki__content .secedit .input-group-lg > .input-group-append > button, 4730.input-group-lg > .input-group-append > button { 4731 padding: 0.875rem 1rem; 4732 font-size: 0.875rem; 4733 line-height: 1.5; 4734 border-radius: 0.3rem; 4735} 4736 4737.input-group-sm > .form-control:not(textarea), #dw__login .input-group-sm > input:not(textarea), #config__manager td .input-group-sm > input.edit:not(textarea), .search-results-form fieldset .input-group-sm > input:not(textarea), .doku_form .no .input-group-sm > #qsearch__in:not(textarea), .input-group-sm > textarea:not(textarea), 4738.input-group-sm > .custom-select { 4739 height: calc(1.5em + 0.5rem + 2px); 4740} 4741 4742.input-group-sm > .form-control, #dw__login .input-group-sm > input, #config__manager td .input-group-sm > input.edit, .search-results-form fieldset .input-group-sm > input, .doku_form .no .input-group-sm > #qsearch__in, .input-group-sm > textarea, 4743.input-group-sm > .custom-select, 4744.input-group-sm > .input-group-prepend > .input-group-text, 4745.input-group-sm > .input-group-append > .input-group-text, 4746.input-group-sm > .input-group-prepend > .btn, 4747#dw__login .input-group-sm > .input-group-prepend > button, 4748.input-group-sm > .input-group-prepend > .qq-upload-button, 4749.input-group-sm > .input-group-prepend > .toggleAssistant, 4750#tool__bar .input-group-sm > .input-group-prepend > button, 4751#dokuwiki__content .editButtons .input-group-sm > .input-group-prepend > button, 4752#dokuwiki__content #page__revisions .input-group-sm > .input-group-prepend > button, 4753#dokuwiki__content .secedit .input-group-sm > .input-group-prepend > button, 4754.input-group-sm > .input-group-prepend > button, 4755.input-group-sm > .input-group-append > .btn, 4756#dw__login .input-group-sm > .input-group-append > button, 4757.input-group-sm > .input-group-append > .qq-upload-button, 4758.input-group-sm > .input-group-append > .toggleAssistant, 4759#tool__bar .input-group-sm > .input-group-append > button, 4760#dokuwiki__content .editButtons .input-group-sm > .input-group-append > button, 4761#dokuwiki__content #page__revisions .input-group-sm > .input-group-append > button, 4762#dokuwiki__content .secedit .input-group-sm > .input-group-append > button, 4763.input-group-sm > .input-group-append > button { 4764 padding: 0.25rem 0.5rem; 4765 font-size: 0.75rem; 4766 line-height: 1.5; 4767 border-radius: 0.2rem; 4768} 4769 4770.input-group-lg > .custom-select, 4771.input-group-sm > .custom-select { 4772 padding-right: 1.75rem; 4773} 4774 4775.input-group > .input-group-prepend > .btn, #dw__login .input-group > .input-group-prepend > button, .input-group > .input-group-prepend > .qq-upload-button, .input-group > .input-group-prepend > .toggleAssistant, .doku_form .no > .input-group-prepend > .btn, .doku_form #dw__login .no > .input-group-prepend > button, #dw__login .doku_form .no > .input-group-prepend > button, .doku_form .no > .input-group-prepend > .qq-upload-button, .doku_form .no > .input-group-prepend > .toggleAssistant, .doku_form .no > .input-group-prepend > button, #tool__bar .input-group > .input-group-prepend > button, #tool__bar .doku_form .no > .input-group-prepend > button, .doku_form #tool__bar .no > .input-group-prepend > button, #dokuwiki__content .editButtons .input-group > .input-group-prepend > button, #dokuwiki__content .editButtons .doku_form .no > .input-group-prepend > button, .doku_form #dokuwiki__content .editButtons .no > .input-group-prepend > button, #dokuwiki__content #page__revisions .input-group > .input-group-prepend > button, #dokuwiki__content #page__revisions .doku_form .no > .input-group-prepend > button, .doku_form #dokuwiki__content #page__revisions .no > .input-group-prepend > button, #dokuwiki__content .secedit .input-group > .input-group-prepend > button, #dokuwiki__content .secedit .doku_form .no > .input-group-prepend > button, .doku_form #dokuwiki__content .secedit .no > .input-group-prepend > button, .input-group > .input-group-prepend > button, 4776.input-group > .input-group-prepend > .input-group-text, 4777.doku_form .no > .input-group-prepend > .input-group-text, 4778.input-group > .input-group-append:not(:last-child) > .btn, 4779#dw__login .input-group > .input-group-append:not(:last-child) > button, 4780.input-group > .input-group-append:not(:last-child) > .qq-upload-button, 4781.input-group > .input-group-append:not(:last-child) > .toggleAssistant, 4782.doku_form .no > .input-group-append:not(:last-child) > .btn, 4783.doku_form #dw__login .no > .input-group-append:not(:last-child) > button, 4784#dw__login .doku_form .no > .input-group-append:not(:last-child) > button, 4785.doku_form .no > .input-group-append:not(:last-child) > .qq-upload-button, 4786.doku_form .no > .input-group-append:not(:last-child) > .toggleAssistant, 4787.doku_form .no > .input-group-append:not(:last-child) > button, 4788#tool__bar .input-group > .input-group-append:not(:last-child) > button, 4789#tool__bar .doku_form .no > .input-group-append:not(:last-child) > button, 4790.doku_form #tool__bar .no > .input-group-append:not(:last-child) > button, 4791#dokuwiki__content .editButtons .input-group > .input-group-append:not(:last-child) > button, 4792#dokuwiki__content .editButtons .doku_form .no > .input-group-append:not(:last-child) > button, 4793.doku_form #dokuwiki__content .editButtons .no > .input-group-append:not(:last-child) > button, 4794#dokuwiki__content #page__revisions .input-group > .input-group-append:not(:last-child) > button, 4795#dokuwiki__content #page__revisions .doku_form .no > .input-group-append:not(:last-child) > button, 4796.doku_form #dokuwiki__content #page__revisions .no > .input-group-append:not(:last-child) > button, 4797#dokuwiki__content .secedit .input-group > .input-group-append:not(:last-child) > button, 4798#dokuwiki__content .secedit .doku_form .no > .input-group-append:not(:last-child) > button, 4799.doku_form #dokuwiki__content .secedit .no > .input-group-append:not(:last-child) > button, 4800.input-group > .input-group-append:not(:last-child) > button, 4801.input-group > .input-group-append:not(:last-child) > .input-group-text, 4802.doku_form .no > .input-group-append:not(:last-child) > .input-group-text, 4803.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), 4804#dw__login .input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4805.input-group > .input-group-append:last-child > .qq-upload-button:not(:last-child):not(.dropdown-toggle), 4806.input-group > .input-group-append:last-child > .toggleAssistant:not(:last-child):not(.dropdown-toggle), 4807.doku_form .no > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), 4808.doku_form #dw__login .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4809#dw__login .doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4810.doku_form .no > .input-group-append:last-child > .qq-upload-button:not(:last-child):not(.dropdown-toggle), 4811.doku_form .no > .input-group-append:last-child > .toggleAssistant:not(:last-child):not(.dropdown-toggle), 4812.doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4813#tool__bar .input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4814#tool__bar .doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4815.doku_form #tool__bar .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4816#dokuwiki__content .editButtons .input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4817#dokuwiki__content .editButtons .doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4818.doku_form #dokuwiki__content .editButtons .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4819#dokuwiki__content #page__revisions .input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4820#dokuwiki__content #page__revisions .doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4821.doku_form #dokuwiki__content #page__revisions .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4822#dokuwiki__content .secedit .input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4823#dokuwiki__content .secedit .doku_form .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4824.doku_form #dokuwiki__content .secedit .no > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4825.input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle), 4826.input-group > .input-group-append:last-child > .input-group-text:not(:last-child), 4827.doku_form .no > .input-group-append:last-child > .input-group-text:not(:last-child) { 4828 border-top-right-radius: 0; 4829 border-bottom-right-radius: 0; 4830} 4831 4832.input-group > .input-group-append > .btn, #dw__login .input-group > .input-group-append > button, .input-group > .input-group-append > .qq-upload-button, .input-group > .input-group-append > .toggleAssistant, .doku_form .no > .input-group-append > .btn, .doku_form #dw__login .no > .input-group-append > button, #dw__login .doku_form .no > .input-group-append > button, .doku_form .no > .input-group-append > .qq-upload-button, .doku_form .no > .input-group-append > .toggleAssistant, .doku_form .no > .input-group-append > button, #tool__bar .input-group > .input-group-append > button, #tool__bar .doku_form .no > .input-group-append > button, .doku_form #tool__bar .no > .input-group-append > button, #dokuwiki__content .editButtons .input-group > .input-group-append > button, #dokuwiki__content .editButtons .doku_form .no > .input-group-append > button, .doku_form #dokuwiki__content .editButtons .no > .input-group-append > button, #dokuwiki__content #page__revisions .input-group > .input-group-append > button, #dokuwiki__content #page__revisions .doku_form .no > .input-group-append > button, .doku_form #dokuwiki__content #page__revisions .no > .input-group-append > button, #dokuwiki__content .secedit .input-group > .input-group-append > button, #dokuwiki__content .secedit .doku_form .no > .input-group-append > button, .doku_form #dokuwiki__content .secedit .no > .input-group-append > button, .input-group > .input-group-append > button, 4833.input-group > .input-group-append > .input-group-text, 4834.doku_form .no > .input-group-append > .input-group-text, 4835.input-group > .input-group-prepend:not(:first-child) > .btn, 4836#dw__login .input-group > .input-group-prepend:not(:first-child) > button, 4837.input-group > .input-group-prepend:not(:first-child) > .qq-upload-button, 4838.input-group > .input-group-prepend:not(:first-child) > .toggleAssistant, 4839.doku_form .no > .input-group-prepend:not(:first-child) > .btn, 4840.doku_form #dw__login .no > .input-group-prepend:not(:first-child) > button, 4841#dw__login .doku_form .no > .input-group-prepend:not(:first-child) > button, 4842.doku_form .no > .input-group-prepend:not(:first-child) > .qq-upload-button, 4843.doku_form .no > .input-group-prepend:not(:first-child) > .toggleAssistant, 4844.doku_form .no > .input-group-prepend:not(:first-child) > button, 4845#tool__bar .input-group > .input-group-prepend:not(:first-child) > button, 4846#tool__bar .doku_form .no > .input-group-prepend:not(:first-child) > button, 4847.doku_form #tool__bar .no > .input-group-prepend:not(:first-child) > button, 4848#dokuwiki__content .editButtons .input-group > .input-group-prepend:not(:first-child) > button, 4849#dokuwiki__content .editButtons .doku_form .no > .input-group-prepend:not(:first-child) > button, 4850.doku_form #dokuwiki__content .editButtons .no > .input-group-prepend:not(:first-child) > button, 4851#dokuwiki__content #page__revisions .input-group > .input-group-prepend:not(:first-child) > button, 4852#dokuwiki__content #page__revisions .doku_form .no > .input-group-prepend:not(:first-child) > button, 4853.doku_form #dokuwiki__content #page__revisions .no > .input-group-prepend:not(:first-child) > button, 4854#dokuwiki__content .secedit .input-group > .input-group-prepend:not(:first-child) > button, 4855#dokuwiki__content .secedit .doku_form .no > .input-group-prepend:not(:first-child) > button, 4856.doku_form #dokuwiki__content .secedit .no > .input-group-prepend:not(:first-child) > button, 4857.input-group > .input-group-prepend:not(:first-child) > button, 4858.input-group > .input-group-prepend:not(:first-child) > .input-group-text, 4859.doku_form .no > .input-group-prepend:not(:first-child) > .input-group-text, 4860.input-group > .input-group-prepend:first-child > .btn:not(:first-child), 4861#dw__login .input-group > .input-group-prepend:first-child > button:not(:first-child), 4862.input-group > .input-group-prepend:first-child > .qq-upload-button:not(:first-child), 4863.input-group > .input-group-prepend:first-child > .toggleAssistant:not(:first-child), 4864.doku_form .no > .input-group-prepend:first-child > .btn:not(:first-child), 4865.doku_form #dw__login .no > .input-group-prepend:first-child > button:not(:first-child), 4866#dw__login .doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4867.doku_form .no > .input-group-prepend:first-child > .qq-upload-button:not(:first-child), 4868.doku_form .no > .input-group-prepend:first-child > .toggleAssistant:not(:first-child), 4869.doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4870#tool__bar .input-group > .input-group-prepend:first-child > button:not(:first-child), 4871#tool__bar .doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4872.doku_form #tool__bar .no > .input-group-prepend:first-child > button:not(:first-child), 4873#dokuwiki__content .editButtons .input-group > .input-group-prepend:first-child > button:not(:first-child), 4874#dokuwiki__content .editButtons .doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4875.doku_form #dokuwiki__content .editButtons .no > .input-group-prepend:first-child > button:not(:first-child), 4876#dokuwiki__content #page__revisions .input-group > .input-group-prepend:first-child > button:not(:first-child), 4877#dokuwiki__content #page__revisions .doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4878.doku_form #dokuwiki__content #page__revisions .no > .input-group-prepend:first-child > button:not(:first-child), 4879#dokuwiki__content .secedit .input-group > .input-group-prepend:first-child > button:not(:first-child), 4880#dokuwiki__content .secedit .doku_form .no > .input-group-prepend:first-child > button:not(:first-child), 4881.doku_form #dokuwiki__content .secedit .no > .input-group-prepend:first-child > button:not(:first-child), 4882.input-group > .input-group-prepend:first-child > button:not(:first-child), 4883.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), 4884.doku_form .no > .input-group-prepend:first-child > .input-group-text:not(:first-child) { 4885 border-top-left-radius: 0; 4886 border-bottom-left-radius: 0; 4887} 4888 4889.custom-control { 4890 position: relative; 4891 display: block; 4892 min-height: 1.5rem; 4893 padding-left: 3rem; 4894} 4895 4896.custom-control-inline { 4897 display: inline-flex; 4898 margin-right: 1rem; 4899} 4900 4901.custom-control-input { 4902 position: absolute; 4903 left: 0; 4904 z-index: -1; 4905 width: 1.25rem; 4906 height: 1.375rem; 4907 opacity: 0; 4908} 4909 4910.custom-control-input:checked ~ .custom-control-label::before { 4911 color: #fff; 4912 border-color: #5e72e4; 4913 background-color: #5e72e4; 4914 box-shadow: none; 4915} 4916 4917.custom-control-input:focus ~ .custom-control-label::before { 4918 box-shadow: none, none; 4919} 4920 4921.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { 4922 border-color: rgba(50, 151, 211, 0.25); 4923} 4924 4925.custom-control-input:not(:disabled):active ~ .custom-control-label::before { 4926 color: #fff; 4927 background-color: #5e72e4; 4928 border-color: #5e72e4; 4929 box-shadow: none; 4930} 4931 4932.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { 4933 color: #8898aa; 4934} 4935 4936.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { 4937 background-color: #e9ecef; 4938} 4939 4940.custom-control-label { 4941 position: relative; 4942 margin-bottom: 0; 4943 vertical-align: top; 4944} 4945 4946.custom-control-label::before { 4947 position: absolute; 4948 top: 0.125rem; 4949 left: -3rem; 4950 display: block; 4951 width: 1.25rem; 4952 height: 1.25rem; 4953 pointer-events: none; 4954 content: ""; 4955 background-color: #fff; 4956 border: #cad1d7 solid 1px; 4957 box-shadow: none; 4958} 4959 4960.custom-control-label::after { 4961 position: absolute; 4962 top: 0.125rem; 4963 left: -3rem; 4964 display: block; 4965 width: 1.25rem; 4966 height: 1.25rem; 4967 content: ""; 4968 background: no-repeat 50%/50% 50%; 4969} 4970 4971.custom-checkbox .custom-control-label::before { 4972 border-radius: 0.2rem; 4973} 4974 4975.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { 4976 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); 4977} 4978 4979.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { 4980 border-color: #5e72e4; 4981 background-color: #5e72e4; 4982 box-shadow: none; 4983} 4984 4985.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { 4986 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); 4987} 4988 4989.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { 4990 background-color: rgba(94, 114, 228, 0.5); 4991} 4992 4993.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { 4994 background-color: rgba(94, 114, 228, 0.5); 4995} 4996 4997.custom-radio .custom-control-label::before { 4998 border-radius: 50%; 4999} 5000 5001.custom-radio .custom-control-input:checked ~ .custom-control-label::after { 5002 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); 5003} 5004 5005.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { 5006 background-color: rgba(94, 114, 228, 0.5); 5007} 5008 5009.custom-switch { 5010 padding-left: 3.9375rem; 5011} 5012 5013.custom-switch .custom-control-label::before { 5014 left: -3.9375rem; 5015 width: 2.1875rem; 5016 pointer-events: all; 5017 border-radius: 0.625rem; 5018} 5019 5020.custom-switch .custom-control-label::after { 5021 top: calc(0.125rem + 2px); 5022 left: calc(-3.9375rem + 2px); 5023 width: calc(1.25rem - 4px); 5024 height: calc(1.25rem - 4px); 5025 background-color: #cad1d7; 5026 border-radius: 0.625rem; 5027 transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 5028} 5029 5030@media (prefers-reduced-motion: reduce) { 5031 .custom-switch .custom-control-label::after { 5032 transition: none; 5033 } 5034} 5035.custom-switch .custom-control-input:checked ~ .custom-control-label::after { 5036 background-color: #fff; 5037 transform: translateX(0.9375rem); 5038} 5039 5040.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { 5041 background-color: rgba(94, 114, 228, 0.5); 5042} 5043 5044.custom-select { 5045 display: inline-block; 5046 width: 100%; 5047 height: calc(1.5em + 1.25rem + 2px); 5048 padding: 0.625rem 1.75rem 0.625rem 0.75rem; 5049 font-size: 0.875rem; 5050 font-weight: 400; 5051 line-height: 1.5; 5052 color: #8898aa; 5053 vertical-align: middle; 5054 background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2332325d' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; 5055 border: 1px solid #cad1d7; 5056 border-radius: 0.25rem; 5057 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075); 5058 appearance: none; 5059} 5060 5061.custom-select:focus { 5062 border-color: rgba(50, 151, 211, 0.25); 5063 outline: 0; 5064 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0 #5e72e4; 5065} 5066 5067.custom-select:focus::-ms-value { 5068 color: #8898aa; 5069 background-color: #fff; 5070} 5071 5072.custom-select[multiple], .custom-select[size]:not([size="1"]) { 5073 height: auto; 5074 padding-right: 0.75rem; 5075 background-image: none; 5076} 5077 5078.custom-select:disabled { 5079 color: #8898aa; 5080 background-color: #e9ecef; 5081} 5082 5083.custom-select::-ms-expand { 5084 display: none; 5085} 5086 5087.custom-select:-moz-focusring { 5088 color: transparent; 5089 text-shadow: 0 0 0 #8898aa; 5090} 5091 5092.custom-select-sm { 5093 height: calc(1.5em + 0.5rem + 2px); 5094 padding-top: 0.25rem; 5095 padding-bottom: 0.25rem; 5096 padding-left: 0.5rem; 5097 font-size: 0.75rem; 5098} 5099 5100.custom-select-lg { 5101 height: calc(1.5em + 1.75rem + 2px); 5102 padding-top: 0.875rem; 5103 padding-bottom: 0.875rem; 5104 padding-left: 1rem; 5105 font-size: 0.875rem; 5106} 5107 5108.custom-file { 5109 position: relative; 5110 display: inline-block; 5111 width: 100%; 5112 height: calc(1.5em + 1.25rem + 2px); 5113 margin-bottom: 0; 5114} 5115 5116.custom-file-input { 5117 position: relative; 5118 z-index: 2; 5119 width: 100%; 5120 height: calc(1.5em + 1.25rem + 2px); 5121 margin: 0; 5122 opacity: 0; 5123} 5124 5125.custom-file-input:focus ~ .custom-file-label { 5126 border-color: rgba(50, 151, 211, 0.25); 5127 box-shadow: none; 5128} 5129 5130.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label { 5131 background-color: #e9ecef; 5132} 5133 5134.custom-file-input:lang(en) ~ .custom-file-label::after { 5135 content: "Browse"; 5136} 5137 5138.custom-file-input ~ .custom-file-label[data-browse]::after { 5139 content: attr(data-browse); 5140} 5141 5142.custom-file-label { 5143 position: absolute; 5144 top: 0; 5145 right: 0; 5146 left: 0; 5147 z-index: 1; 5148 height: calc(1.5em + 1.25rem + 2px); 5149 padding: 0.625rem 0.75rem; 5150 font-weight: 400; 5151 line-height: 1.5; 5152 color: #8898aa; 5153 background-color: #fff; 5154 border: 1px solid #cad1d7; 5155 border-radius: 0.25rem; 5156 box-shadow: none; 5157} 5158 5159.custom-file-label::after { 5160 position: absolute; 5161 top: 0; 5162 right: 0; 5163 bottom: 0; 5164 z-index: 3; 5165 display: block; 5166 height: calc(1.5em + 1.25rem); 5167 padding: 0.625rem 0.75rem; 5168 line-height: 1.5; 5169 color: #8898aa; 5170 content: "Browse"; 5171 background-color: #fff; 5172 border-left: inherit; 5173 border-radius: 0 0.25rem 0.25rem 0; 5174} 5175 5176.custom-range { 5177 width: 100%; 5178 height: 1rem; 5179 padding: 0; 5180 background-color: transparent; 5181 appearance: none; 5182} 5183 5184.custom-range:focus { 5185 outline: none; 5186} 5187 5188.custom-range:focus::-webkit-slider-thumb { 5189 box-shadow: 0 0 0 1px #fff, none; 5190} 5191 5192.custom-range:focus::-moz-range-thumb { 5193 box-shadow: 0 0 0 1px #fff, none; 5194} 5195 5196.custom-range:focus::-ms-thumb { 5197 box-shadow: 0 0 0 1px #fff, none; 5198} 5199 5200.custom-range::-moz-focus-outer { 5201 border: 0; 5202} 5203 5204.custom-range::-webkit-slider-thumb { 5205 width: 1rem; 5206 height: 1rem; 5207 margin-top: -0.25rem; 5208 background-color: #5e72e4; 5209 border: 0; 5210 border-radius: 1rem; 5211 box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); 5212 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 5213 appearance: none; 5214} 5215 5216@media (prefers-reduced-motion: reduce) { 5217 .custom-range::-webkit-slider-thumb { 5218 transition: none; 5219 } 5220} 5221.custom-range::-webkit-slider-thumb:active { 5222 background-color: #f7f8fe; 5223} 5224 5225.custom-range::-webkit-slider-runnable-track { 5226 width: 100%; 5227 height: 0.5rem; 5228 color: transparent; 5229 cursor: pointer; 5230 background-color: #dee2e6; 5231 border-color: transparent; 5232 border-radius: 1rem; 5233 box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); 5234} 5235 5236.custom-range::-moz-range-thumb { 5237 width: 1rem; 5238 height: 1rem; 5239 background-color: #5e72e4; 5240 border: 0; 5241 border-radius: 1rem; 5242 box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); 5243 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 5244 appearance: none; 5245} 5246 5247@media (prefers-reduced-motion: reduce) { 5248 .custom-range::-moz-range-thumb { 5249 transition: none; 5250 } 5251} 5252.custom-range::-moz-range-thumb:active { 5253 background-color: #f7f8fe; 5254} 5255 5256.custom-range::-moz-range-track { 5257 width: 100%; 5258 height: 0.5rem; 5259 color: transparent; 5260 cursor: pointer; 5261 background-color: #dee2e6; 5262 border-color: transparent; 5263 border-radius: 1rem; 5264 box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); 5265} 5266 5267.custom-range::-ms-thumb { 5268 width: 1rem; 5269 height: 1rem; 5270 margin-top: 0; 5271 margin-right: 0; 5272 margin-left: 0; 5273 background-color: #5e72e4; 5274 border: 0; 5275 border-radius: 1rem; 5276 box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1); 5277 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 5278 appearance: none; 5279} 5280 5281@media (prefers-reduced-motion: reduce) { 5282 .custom-range::-ms-thumb { 5283 transition: none; 5284 } 5285} 5286.custom-range::-ms-thumb:active { 5287 background-color: #f7f8fe; 5288} 5289 5290.custom-range::-ms-track { 5291 width: 100%; 5292 height: 0.5rem; 5293 color: transparent; 5294 cursor: pointer; 5295 background-color: transparent; 5296 border-color: transparent; 5297 border-width: 0.5rem; 5298 box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1); 5299} 5300 5301.custom-range::-ms-fill-lower { 5302 background-color: #dee2e6; 5303 border-radius: 1rem; 5304} 5305 5306.custom-range::-ms-fill-upper { 5307 margin-right: 15px; 5308 background-color: #dee2e6; 5309 border-radius: 1rem; 5310} 5311 5312.custom-range:disabled::-webkit-slider-thumb { 5313 background-color: #adb5bd; 5314} 5315 5316.custom-range:disabled::-webkit-slider-runnable-track { 5317 cursor: default; 5318} 5319 5320.custom-range:disabled::-moz-range-thumb { 5321 background-color: #adb5bd; 5322} 5323 5324.custom-range:disabled::-moz-range-track { 5325 cursor: default; 5326} 5327 5328.custom-range:disabled::-ms-thumb { 5329 background-color: #adb5bd; 5330} 5331 5332.custom-control-label::before, 5333.custom-file-label, 5334.custom-select { 5335 transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; 5336} 5337 5338@media (prefers-reduced-motion: reduce) { 5339 .custom-control-label::before, 5340.custom-file-label, 5341.custom-select { 5342 transition: none; 5343 } 5344} 5345.nav, .leftsidebar .leftsidebar ul { 5346 display: flex; 5347 flex-wrap: wrap; 5348 padding-left: 0; 5349 margin-bottom: 0; 5350 list-style: none; 5351} 5352 5353.nav-link { 5354 display: block; 5355 padding: 0.25rem 0.75rem; 5356} 5357 5358.nav-link:hover, .nav-link:focus { 5359 text-decoration: none; 5360} 5361 5362.nav-link.disabled { 5363 color: #8898aa; 5364 pointer-events: none; 5365 cursor: default; 5366} 5367 5368.nav-tabs { 5369 border-bottom: 0.0625rem solid #dee2e6; 5370} 5371 5372.nav-tabs .nav-item { 5373 margin-bottom: -0.0625rem; 5374} 5375 5376.nav-tabs .nav-link { 5377 border: 0.0625rem solid transparent; 5378 border-top-left-radius: 0.25rem; 5379 border-top-right-radius: 0.25rem; 5380} 5381 5382.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { 5383 border-color: #e9ecef #e9ecef #dee2e6; 5384} 5385 5386.nav-tabs .nav-link.disabled { 5387 color: #8898aa; 5388 background-color: transparent; 5389 border-color: transparent; 5390} 5391 5392.nav-tabs .nav-link.active, 5393.nav-tabs .nav-item.show .nav-link { 5394 color: #525f7f; 5395 background-color: #fff; 5396 border-color: #dee2e6 #dee2e6 #fff; 5397} 5398 5399.nav-tabs .dropdown-menu { 5400 margin-top: -0.0625rem; 5401 border-top-left-radius: 0; 5402 border-top-right-radius: 0; 5403} 5404 5405.nav-pills .nav-link { 5406 border-radius: 0.25rem; 5407} 5408 5409.nav-pills .nav-link.active, 5410.nav-pills .show > .nav-link { 5411 color: #fff; 5412 background-color: #5e72e4; 5413} 5414 5415.nav-fill .nav-item { 5416 flex: 1 1 auto; 5417 text-align: center; 5418} 5419 5420.nav-justified .nav-item { 5421 flex-basis: 0; 5422 flex-grow: 1; 5423 text-align: center; 5424} 5425 5426.tab-content > .tab-pane { 5427 display: none; 5428} 5429 5430.tab-content > .active { 5431 display: block; 5432} 5433 5434.navbar { 5435 position: relative; 5436 display: flex; 5437 flex-wrap: wrap; 5438 align-items: center; 5439 justify-content: space-between; 5440 padding: 1rem 1rem; 5441} 5442 5443.navbar .container, 5444.navbar .container-fluid, 5445.navbar .container-sm, 5446.navbar .container-md, 5447.navbar .container-lg, 5448.navbar .container-xl { 5449 display: flex; 5450 flex-wrap: wrap; 5451 align-items: center; 5452 justify-content: space-between; 5453} 5454 5455.navbar-brand { 5456 display: inline-block; 5457 padding-top: 0.0625rem; 5458 padding-bottom: 0.0625rem; 5459 margin-right: 1rem; 5460 font-size: 1.25rem; 5461 line-height: inherit; 5462 white-space: nowrap; 5463} 5464 5465.navbar-brand:hover, .navbar-brand:focus { 5466 text-decoration: none; 5467} 5468 5469.navbar-nav { 5470 display: flex; 5471 flex-direction: column; 5472 padding-left: 0; 5473 margin-bottom: 0; 5474 list-style: none; 5475} 5476 5477.navbar-nav .nav-link { 5478 padding-right: 0; 5479 padding-left: 0; 5480} 5481 5482.navbar-nav .dropdown-menu { 5483 position: static; 5484 float: none; 5485} 5486 5487.navbar-text { 5488 display: inline-block; 5489 padding-top: 0.25rem; 5490 padding-bottom: 0.25rem; 5491} 5492 5493.navbar-collapse { 5494 flex-basis: 100%; 5495 flex-grow: 1; 5496 align-items: center; 5497} 5498 5499.navbar-toggler { 5500 padding: 0.25rem 0.75rem; 5501 font-size: 1.25rem; 5502 line-height: 1; 5503 background-color: transparent; 5504 border: 0.0625rem solid transparent; 5505 border-radius: 0.25rem; 5506} 5507 5508.navbar-toggler:hover, .navbar-toggler:focus { 5509 text-decoration: none; 5510} 5511 5512.navbar-toggler-icon { 5513 display: inline-block; 5514 width: 1.5em; 5515 height: 1.5em; 5516 vertical-align: middle; 5517 content: ""; 5518 background: no-repeat center center; 5519 background-size: 100% 100%; 5520} 5521 5522@media (max-width: 575.98px) { 5523 .navbar-expand-sm > .container, 5524.navbar-expand-sm > .container-fluid, 5525.navbar-expand-sm > .container-sm, 5526.navbar-expand-sm > .container-md, 5527.navbar-expand-sm > .container-lg, 5528.navbar-expand-sm > .container-xl { 5529 padding-right: 0; 5530 padding-left: 0; 5531 } 5532} 5533@media (min-width: 576px) { 5534 .navbar-expand-sm { 5535 flex-flow: row nowrap; 5536 justify-content: flex-start; 5537 } 5538 5539 .navbar-expand-sm .navbar-nav { 5540 flex-direction: row; 5541 } 5542 5543 .navbar-expand-sm .navbar-nav .dropdown-menu { 5544 position: absolute; 5545 } 5546 5547 .navbar-expand-sm .navbar-nav .nav-link { 5548 padding-right: 1rem; 5549 padding-left: 1rem; 5550 } 5551 5552 .navbar-expand-sm > .container, 5553.navbar-expand-sm > .container-fluid, 5554.navbar-expand-sm > .container-sm, 5555.navbar-expand-sm > .container-md, 5556.navbar-expand-sm > .container-lg, 5557.navbar-expand-sm > .container-xl { 5558 flex-wrap: nowrap; 5559 } 5560 5561 .navbar-expand-sm .navbar-collapse { 5562 display: flex !important; 5563 flex-basis: auto; 5564 } 5565 5566 .navbar-expand-sm .navbar-toggler { 5567 display: none; 5568 } 5569} 5570@media (max-width: 767.98px) { 5571 .navbar-expand-md > .container, 5572.navbar-expand-md > .container-fluid, 5573.navbar-expand-md > .container-sm, 5574.navbar-expand-md > .container-md, 5575.navbar-expand-md > .container-lg, 5576.navbar-expand-md > .container-xl { 5577 padding-right: 0; 5578 padding-left: 0; 5579 } 5580} 5581@media (min-width: 768px) { 5582 .navbar-expand-md { 5583 flex-flow: row nowrap; 5584 justify-content: flex-start; 5585 } 5586 5587 .navbar-expand-md .navbar-nav { 5588 flex-direction: row; 5589 } 5590 5591 .navbar-expand-md .navbar-nav .dropdown-menu { 5592 position: absolute; 5593 } 5594 5595 .navbar-expand-md .navbar-nav .nav-link { 5596 padding-right: 1rem; 5597 padding-left: 1rem; 5598 } 5599 5600 .navbar-expand-md > .container, 5601.navbar-expand-md > .container-fluid, 5602.navbar-expand-md > .container-sm, 5603.navbar-expand-md > .container-md, 5604.navbar-expand-md > .container-lg, 5605.navbar-expand-md > .container-xl { 5606 flex-wrap: nowrap; 5607 } 5608 5609 .navbar-expand-md .navbar-collapse { 5610 display: flex !important; 5611 flex-basis: auto; 5612 } 5613 5614 .navbar-expand-md .navbar-toggler { 5615 display: none; 5616 } 5617} 5618@media (max-width: 991.98px) { 5619 .navbar-expand-lg > .container, 5620.navbar-expand-lg > .container-fluid, 5621.navbar-expand-lg > .container-sm, 5622.navbar-expand-lg > .container-md, 5623.navbar-expand-lg > .container-lg, 5624.navbar-expand-lg > .container-xl { 5625 padding-right: 0; 5626 padding-left: 0; 5627 } 5628} 5629@media (min-width: 992px) { 5630 .navbar-expand-lg { 5631 flex-flow: row nowrap; 5632 justify-content: flex-start; 5633 } 5634 5635 .navbar-expand-lg .navbar-nav { 5636 flex-direction: row; 5637 } 5638 5639 .navbar-expand-lg .navbar-nav .dropdown-menu { 5640 position: absolute; 5641 } 5642 5643 .navbar-expand-lg .navbar-nav .nav-link { 5644 padding-right: 1rem; 5645 padding-left: 1rem; 5646 } 5647 5648 .navbar-expand-lg > .container, 5649.navbar-expand-lg > .container-fluid, 5650.navbar-expand-lg > .container-sm, 5651.navbar-expand-lg > .container-md, 5652.navbar-expand-lg > .container-lg, 5653.navbar-expand-lg > .container-xl { 5654 flex-wrap: nowrap; 5655 } 5656 5657 .navbar-expand-lg .navbar-collapse { 5658 display: flex !important; 5659 flex-basis: auto; 5660 } 5661 5662 .navbar-expand-lg .navbar-toggler { 5663 display: none; 5664 } 5665} 5666@media (max-width: 1199.98px) { 5667 .navbar-expand-xl > .container, 5668.navbar-expand-xl > .container-fluid, 5669.navbar-expand-xl > .container-sm, 5670.navbar-expand-xl > .container-md, 5671.navbar-expand-xl > .container-lg, 5672.navbar-expand-xl > .container-xl { 5673 padding-right: 0; 5674 padding-left: 0; 5675 } 5676} 5677@media (min-width: 1200px) { 5678 .navbar-expand-xl { 5679 flex-flow: row nowrap; 5680 justify-content: flex-start; 5681 } 5682 5683 .navbar-expand-xl .navbar-nav { 5684 flex-direction: row; 5685 } 5686 5687 .navbar-expand-xl .navbar-nav .dropdown-menu { 5688 position: absolute; 5689 } 5690 5691 .navbar-expand-xl .navbar-nav .nav-link { 5692 padding-right: 1rem; 5693 padding-left: 1rem; 5694 } 5695 5696 .navbar-expand-xl > .container, 5697.navbar-expand-xl > .container-fluid, 5698.navbar-expand-xl > .container-sm, 5699.navbar-expand-xl > .container-md, 5700.navbar-expand-xl > .container-lg, 5701.navbar-expand-xl > .container-xl { 5702 flex-wrap: nowrap; 5703 } 5704 5705 .navbar-expand-xl .navbar-collapse { 5706 display: flex !important; 5707 flex-basis: auto; 5708 } 5709 5710 .navbar-expand-xl .navbar-toggler { 5711 display: none; 5712 } 5713} 5714.navbar-expand { 5715 flex-flow: row nowrap; 5716 justify-content: flex-start; 5717} 5718 5719.navbar-expand > .container, 5720.navbar-expand > .container-fluid, 5721.navbar-expand > .container-sm, 5722.navbar-expand > .container-md, 5723.navbar-expand > .container-lg, 5724.navbar-expand > .container-xl { 5725 padding-right: 0; 5726 padding-left: 0; 5727} 5728 5729.navbar-expand .navbar-nav { 5730 flex-direction: row; 5731} 5732 5733.navbar-expand .navbar-nav .dropdown-menu { 5734 position: absolute; 5735} 5736 5737.navbar-expand .navbar-nav .nav-link { 5738 padding-right: 1rem; 5739 padding-left: 1rem; 5740} 5741 5742.navbar-expand > .container, 5743.navbar-expand > .container-fluid, 5744.navbar-expand > .container-sm, 5745.navbar-expand > .container-md, 5746.navbar-expand > .container-lg, 5747.navbar-expand > .container-xl { 5748 flex-wrap: nowrap; 5749} 5750 5751.navbar-expand .navbar-collapse { 5752 display: flex !important; 5753 flex-basis: auto; 5754} 5755 5756.navbar-expand .navbar-toggler { 5757 display: none; 5758} 5759 5760.navbar-light .navbar-brand { 5761 color: rgba(0, 0, 0, 0.9); 5762} 5763 5764.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { 5765 color: rgba(0, 0, 0, 0.9); 5766} 5767 5768.navbar-light .navbar-nav .nav-link { 5769 color: rgba(0, 0, 0, 0.5); 5770} 5771 5772.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { 5773 color: rgba(0, 0, 0, 0.7); 5774} 5775 5776.navbar-light .navbar-nav .nav-link.disabled { 5777 color: rgba(0, 0, 0, 0.3); 5778} 5779 5780.navbar-light .navbar-nav .show > .nav-link, 5781.navbar-light .navbar-nav .active > .nav-link, 5782.navbar-light .navbar-nav .nav-link.show, 5783.navbar-light .navbar-nav .nav-link.active { 5784 color: rgba(0, 0, 0, 0.9); 5785} 5786 5787.navbar-light .navbar-toggler { 5788 color: rgba(0, 0, 0, 0.5); 5789 border-color: transparent; 5790} 5791 5792.navbar-light .navbar-toggler-icon { 5793 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 5794} 5795 5796.navbar-light .navbar-text { 5797 color: rgba(0, 0, 0, 0.5); 5798} 5799 5800.navbar-light .navbar-text a { 5801 color: rgba(0, 0, 0, 0.9); 5802} 5803 5804.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { 5805 color: rgba(0, 0, 0, 0.9); 5806} 5807 5808.navbar-dark .navbar-brand { 5809 color: rgba(255, 255, 255, 0.65); 5810} 5811 5812.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { 5813 color: rgba(255, 255, 255, 0.65); 5814} 5815 5816.navbar-dark .navbar-nav .nav-link { 5817 color: rgba(255, 255, 255, 0.95); 5818} 5819 5820.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { 5821 color: rgba(255, 255, 255, 0.65); 5822} 5823 5824.navbar-dark .navbar-nav .nav-link.disabled { 5825 color: rgba(255, 255, 255, 0.25); 5826} 5827 5828.navbar-dark .navbar-nav .show > .nav-link, 5829.navbar-dark .navbar-nav .active > .nav-link, 5830.navbar-dark .navbar-nav .nav-link.show, 5831.navbar-dark .navbar-nav .nav-link.active { 5832 color: rgba(255, 255, 255, 0.65); 5833} 5834 5835.navbar-dark .navbar-toggler { 5836 color: rgba(255, 255, 255, 0.95); 5837 border-color: transparent; 5838} 5839 5840.navbar-dark .navbar-toggler-icon { 5841 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); 5842} 5843 5844.navbar-dark .navbar-text { 5845 color: rgba(255, 255, 255, 0.95); 5846} 5847 5848.navbar-dark .navbar-text a { 5849 color: rgba(255, 255, 255, 0.65); 5850} 5851 5852.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { 5853 color: rgba(255, 255, 255, 0.65); 5854} 5855 5856.card, #dw__login { 5857 position: relative; 5858 display: flex; 5859 flex-direction: column; 5860 min-width: 0; 5861 word-wrap: break-word; 5862 background-color: #fff; 5863 background-clip: border-box; 5864 border: 0.0625rem solid rgba(0, 0, 0, 0.05); 5865 border-radius: 0.25rem; 5866} 5867 5868.card > hr, #dw__login > hr { 5869 margin-right: 0; 5870 margin-left: 0; 5871} 5872 5873.card > .list-group, #dw__login > .list-group { 5874 border-top: inherit; 5875 border-bottom: inherit; 5876} 5877 5878.card > .list-group:first-child, #dw__login > .list-group:first-child { 5879 border-top-width: 0; 5880 border-top-left-radius: calc(0.25rem - 0.0625rem); 5881 border-top-right-radius: calc(0.25rem - 0.0625rem); 5882} 5883 5884.card > .list-group:last-child, #dw__login > .list-group:last-child { 5885 border-bottom-width: 0; 5886 border-bottom-right-radius: calc(0.25rem - 0.0625rem); 5887 border-bottom-left-radius: calc(0.25rem - 0.0625rem); 5888} 5889 5890.card-body { 5891 flex: 1 1 auto; 5892 min-height: 1px; 5893 padding: 1.5rem; 5894} 5895 5896.card-title { 5897 margin-bottom: 1.25rem; 5898} 5899 5900.card-subtitle { 5901 margin-top: -0.625rem; 5902 margin-bottom: 0; 5903} 5904 5905.card-text:last-child { 5906 margin-bottom: 0; 5907} 5908 5909.card-link:hover { 5910 text-decoration: none; 5911} 5912 5913.card-link + .card-link { 5914 margin-left: 1.5rem; 5915} 5916 5917.card-header { 5918 padding: 1.25rem 1.5rem; 5919 margin-bottom: 0; 5920 background-color: #f6f9fc; 5921 border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.05); 5922} 5923 5924.card-header:first-child { 5925 border-radius: calc(0.25rem - 0.0625rem) calc(0.25rem - 0.0625rem) 0 0; 5926} 5927 5928.card-header + .list-group .list-group-item:first-child { 5929 border-top: 0; 5930} 5931 5932.card-footer { 5933 padding: 1.25rem 1.5rem; 5934 background-color: #f6f9fc; 5935 border-top: 0.0625rem solid rgba(0, 0, 0, 0.05); 5936} 5937 5938.card-footer:last-child { 5939 border-radius: 0 0 calc(0.25rem - 0.0625rem) calc(0.25rem - 0.0625rem); 5940} 5941 5942.card-header-tabs { 5943 margin-right: -0.75rem; 5944 margin-bottom: -1.25rem; 5945 margin-left: -0.75rem; 5946 border-bottom: 0; 5947} 5948 5949.card-header-pills { 5950 margin-right: -0.75rem; 5951 margin-left: -0.75rem; 5952} 5953 5954.card-img-overlay { 5955 position: absolute; 5956 top: 0; 5957 right: 0; 5958 bottom: 0; 5959 left: 0; 5960 padding: 1.25rem; 5961} 5962 5963.card-img, 5964.card-img-top, 5965.card-img-bottom { 5966 flex-shrink: 0; 5967 width: 100%; 5968} 5969 5970.card-img, 5971.card-img-top { 5972 border-top-left-radius: calc(0.25rem - 0.0625rem); 5973 border-top-right-radius: calc(0.25rem - 0.0625rem); 5974} 5975 5976.card-img, 5977.card-img-bottom { 5978 border-bottom-right-radius: calc(0.25rem - 0.0625rem); 5979 border-bottom-left-radius: calc(0.25rem - 0.0625rem); 5980} 5981 5982.card-deck .card, .card-deck #dw__login { 5983 margin-bottom: 15px; 5984} 5985 5986@media (min-width: 576px) { 5987 .card-deck { 5988 display: flex; 5989 flex-flow: row wrap; 5990 margin-right: -15px; 5991 margin-left: -15px; 5992 } 5993 5994 .card-deck .card, .card-deck #dw__login { 5995 flex: 1 0 0%; 5996 margin-right: 15px; 5997 margin-bottom: 0; 5998 margin-left: 15px; 5999 } 6000} 6001.card-group > .card, .card-group > #dw__login { 6002 margin-bottom: 15px; 6003} 6004 6005@media (min-width: 576px) { 6006 .card-group { 6007 display: flex; 6008 flex-flow: row wrap; 6009 } 6010 6011 .card-group > .card, .card-group > #dw__login { 6012 flex: 1 0 0%; 6013 margin-bottom: 0; 6014 } 6015 6016 .card-group > .card + .card, .card-group > #dw__login + .card, .card-group > .card + #dw__login, .card-group > #dw__login + #dw__login { 6017 margin-left: 0; 6018 border-left: 0; 6019 } 6020 6021 .card-group > .card:not(:last-child), .card-group > #dw__login:not(:last-child) { 6022 border-top-right-radius: 0; 6023 border-bottom-right-radius: 0; 6024 } 6025 6026 .card-group > .card:not(:last-child) .card-img-top, .card-group > #dw__login:not(:last-child) .card-img-top, 6027.card-group > .card:not(:last-child) .card-header, 6028.card-group > #dw__login:not(:last-child) .card-header { 6029 border-top-right-radius: 0; 6030 } 6031 6032 .card-group > .card:not(:last-child) .card-img-bottom, .card-group > #dw__login:not(:last-child) .card-img-bottom, 6033.card-group > .card:not(:last-child) .card-footer, 6034.card-group > #dw__login:not(:last-child) .card-footer { 6035 border-bottom-right-radius: 0; 6036 } 6037 6038 .card-group > .card:not(:first-child), .card-group > #dw__login:not(:first-child) { 6039 border-top-left-radius: 0; 6040 border-bottom-left-radius: 0; 6041 } 6042 6043 .card-group > .card:not(:first-child) .card-img-top, .card-group > #dw__login:not(:first-child) .card-img-top, 6044.card-group > .card:not(:first-child) .card-header, 6045.card-group > #dw__login:not(:first-child) .card-header { 6046 border-top-left-radius: 0; 6047 } 6048 6049 .card-group > .card:not(:first-child) .card-img-bottom, .card-group > #dw__login:not(:first-child) .card-img-bottom, 6050.card-group > .card:not(:first-child) .card-footer, 6051.card-group > #dw__login:not(:first-child) .card-footer { 6052 border-bottom-left-radius: 0; 6053 } 6054} 6055.card-columns .card, .card-columns #dw__login { 6056 margin-bottom: 1.25rem; 6057} 6058 6059@media (min-width: 576px) { 6060 .card-columns { 6061 column-count: 3; 6062 column-gap: 1.25rem; 6063 orphans: 1; 6064 widows: 1; 6065 } 6066 6067 .card-columns .card, .card-columns #dw__login { 6068 display: inline-block; 6069 width: 100%; 6070 } 6071} 6072.accordion > .card, .accordion > #dw__login { 6073 overflow: hidden; 6074} 6075 6076.accordion > .card:not(:last-of-type), .accordion > #dw__login:not(:last-of-type) { 6077 border-bottom: 0; 6078 border-bottom-right-radius: 0; 6079 border-bottom-left-radius: 0; 6080} 6081 6082.accordion > .card:not(:first-of-type), .accordion > #dw__login:not(:first-of-type) { 6083 border-top-left-radius: 0; 6084 border-top-right-radius: 0; 6085} 6086 6087.accordion > .card > .card-header, .accordion > #dw__login > .card-header { 6088 border-radius: 0; 6089 margin-bottom: -0.0625rem; 6090} 6091 6092.breadcrumb { 6093 display: flex; 6094 flex-wrap: wrap; 6095 padding: 0.75rem 1rem; 6096 margin-bottom: 1rem; 6097 list-style: none; 6098 background-color: #e9ecef; 6099 border-radius: 0.25rem; 6100} 6101 6102.breadcrumb-item { 6103 display: flex; 6104} 6105 6106.breadcrumb-item + .breadcrumb-item { 6107 padding-left: 0.5rem; 6108} 6109 6110.breadcrumb-item + .breadcrumb-item::before { 6111 display: inline-block; 6112 padding-right: 0.5rem; 6113 color: #8898aa; 6114 content: "/"; 6115} 6116 6117.breadcrumb-item + .breadcrumb-item:hover::before { 6118 text-decoration: underline; 6119} 6120 6121.breadcrumb-item + .breadcrumb-item:hover::before { 6122 text-decoration: none; 6123} 6124 6125.breadcrumb-item.active { 6126 color: #8898aa; 6127} 6128 6129.pagination { 6130 display: flex; 6131 padding-left: 0; 6132 list-style: none; 6133 border-radius: 0.25rem; 6134} 6135 6136.page-link { 6137 position: relative; 6138 display: block; 6139 padding: 0.5rem 0.75rem; 6140 margin-left: -0.0625rem; 6141 line-height: 1.25; 6142 color: #8898aa; 6143 background-color: #fff; 6144 border: 0.0625rem solid #dee2e6; 6145} 6146 6147.page-link:hover { 6148 z-index: 2; 6149 color: #8898aa; 6150 text-decoration: none; 6151 background-color: #dee2e6; 6152 border-color: #dee2e6; 6153} 6154 6155.page-link:focus { 6156 z-index: 3; 6157 outline: 0; 6158 box-shadow: none; 6159} 6160 6161.page-item:first-child .page-link { 6162 margin-left: 0; 6163 border-top-left-radius: 0.25rem; 6164 border-bottom-left-radius: 0.25rem; 6165} 6166 6167.page-item:last-child .page-link { 6168 border-top-right-radius: 0.25rem; 6169 border-bottom-right-radius: 0.25rem; 6170} 6171 6172.page-item.active .page-link { 6173 z-index: 3; 6174 color: #fff; 6175 background-color: #5e72e4; 6176 border-color: #5e72e4; 6177} 6178 6179.page-item.disabled .page-link { 6180 color: #8898aa; 6181 pointer-events: none; 6182 cursor: auto; 6183 background-color: #fff; 6184 border-color: #dee2e6; 6185} 6186 6187.pagination-lg .page-link { 6188 padding: 0.75rem 1.5rem; 6189 font-size: 1.25rem; 6190 line-height: 1.5; 6191} 6192 6193.pagination-lg .page-item:first-child .page-link { 6194 border-top-left-radius: 0.3rem; 6195 border-bottom-left-radius: 0.3rem; 6196} 6197 6198.pagination-lg .page-item:last-child .page-link { 6199 border-top-right-radius: 0.3rem; 6200 border-bottom-right-radius: 0.3rem; 6201} 6202 6203.pagination-sm .page-link { 6204 padding: 0.25rem 0.5rem; 6205 font-size: 0.875rem; 6206 line-height: 1.5; 6207} 6208 6209.pagination-sm .page-item:first-child .page-link { 6210 border-top-left-radius: 0.2rem; 6211 border-bottom-left-radius: 0.2rem; 6212} 6213 6214.pagination-sm .page-item:last-child .page-link { 6215 border-top-right-radius: 0.2rem; 6216 border-bottom-right-radius: 0.2rem; 6217} 6218 6219.badge { 6220 display: inline-block; 6221 padding: 0.35rem 0.375rem; 6222 font-size: 66%; 6223 font-weight: 600; 6224 line-height: 1; 6225 text-align: center; 6226 white-space: nowrap; 6227 vertical-align: baseline; 6228 border-radius: 0.25rem; 6229 transition: all 0.15s ease; 6230} 6231 6232@media (prefers-reduced-motion: reduce) { 6233 .badge { 6234 transition: none; 6235 } 6236} 6237a.badge:hover, a.badge:focus { 6238 text-decoration: none; 6239} 6240 6241.badge:empty { 6242 display: none; 6243} 6244 6245.btn .badge, #dw__login button .badge, .qq-upload-button .badge, .toggleAssistant .badge, .doku_form .no button .badge, #tool__bar button .badge, #dokuwiki__content .editButtons button .badge, #dokuwiki__content #page__revisions button .badge, #dokuwiki__content .secedit button .badge, button .badge { 6246 position: relative; 6247 top: -1px; 6248} 6249 6250.badge-pill { 6251 padding-right: 0.875em; 6252 padding-left: 0.875em; 6253 border-radius: 10rem; 6254} 6255 6256.badge-primary { 6257 color: #fff; 6258 background-color: #5e72e4; 6259} 6260 6261a.badge-primary:hover, a.badge-primary:focus { 6262 color: #fff; 6263 background-color: #324cdd; 6264} 6265 6266a.badge-primary:focus, a.badge-primary.focus { 6267 outline: 0; 6268 box-shadow: 0 0 0 0 rgba(94, 114, 228, 0.5); 6269} 6270 6271.badge-secondary { 6272 color: #212529; 6273 background-color: #f4f5f7; 6274} 6275 6276a.badge-secondary:hover, a.badge-secondary:focus { 6277 color: #212529; 6278 background-color: #d6dae2; 6279} 6280 6281a.badge-secondary:focus, a.badge-secondary.focus { 6282 outline: 0; 6283 box-shadow: 0 0 0 0 rgba(244, 245, 247, 0.5); 6284} 6285 6286.badge-success { 6287 color: #fff; 6288 background-color: #2dce89; 6289} 6290 6291a.badge-success:hover, a.badge-success:focus { 6292 color: #fff; 6293 background-color: #24a46d; 6294} 6295 6296a.badge-success:focus, a.badge-success.focus { 6297 outline: 0; 6298 box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5); 6299} 6300 6301.badge-info { 6302 color: #fff; 6303 background-color: #11cdef; 6304} 6305 6306a.badge-info:hover, a.badge-info:focus { 6307 color: #fff; 6308 background-color: #0da5c0; 6309} 6310 6311a.badge-info:focus, a.badge-info.focus { 6312 outline: 0; 6313 box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5); 6314} 6315 6316.badge-warning { 6317 color: #fff; 6318 background-color: #fb6340; 6319} 6320 6321a.badge-warning:hover, a.badge-warning:focus { 6322 color: #fff; 6323 background-color: #fa3a0e; 6324} 6325 6326a.badge-warning:focus, a.badge-warning.focus { 6327 outline: 0; 6328 box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5); 6329} 6330 6331.badge-danger { 6332 color: #fff; 6333 background-color: #f5365c; 6334} 6335 6336a.badge-danger:hover, a.badge-danger:focus { 6337 color: #fff; 6338 background-color: #ec0c38; 6339} 6340 6341a.badge-danger:focus, a.badge-danger.focus { 6342 outline: 0; 6343 box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5); 6344} 6345 6346.badge-light { 6347 color: #fff; 6348 background-color: #adb5bd; 6349} 6350 6351a.badge-light:hover, a.badge-light:focus { 6352 color: #fff; 6353 background-color: #919ca6; 6354} 6355 6356a.badge-light:focus, a.badge-light.focus { 6357 outline: 0; 6358 box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5); 6359} 6360 6361.badge-dark { 6362 color: #fff; 6363 background-color: #212529; 6364} 6365 6366a.badge-dark:hover, a.badge-dark:focus { 6367 color: #fff; 6368 background-color: #0a0c0d; 6369} 6370 6371a.badge-dark:focus, a.badge-dark.focus { 6372 outline: 0; 6373 box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5); 6374} 6375 6376.badge-default { 6377 color: #fff; 6378 background-color: #172b4d; 6379} 6380 6381a.badge-default:hover, a.badge-default:focus { 6382 color: #fff; 6383 background-color: #0b1526; 6384} 6385 6386a.badge-default:focus, a.badge-default.focus { 6387 outline: 0; 6388 box-shadow: 0 0 0 0 rgba(23, 43, 77, 0.5); 6389} 6390 6391.badge-white { 6392 color: #212529; 6393 background-color: #fff; 6394} 6395 6396a.badge-white:hover, a.badge-white:focus { 6397 color: #212529; 6398 background-color: #e6e6e6; 6399} 6400 6401a.badge-white:focus, a.badge-white.focus { 6402 outline: 0; 6403 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 6404} 6405 6406.badge-neutral { 6407 color: #212529; 6408 background-color: #fff; 6409} 6410 6411a.badge-neutral:hover, a.badge-neutral:focus { 6412 color: #212529; 6413 background-color: #e6e6e6; 6414} 6415 6416a.badge-neutral:focus, a.badge-neutral.focus { 6417 outline: 0; 6418 box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); 6419} 6420 6421.badge-darker { 6422 color: #fff; 6423 background-color: black; 6424} 6425 6426a.badge-darker:hover, a.badge-darker:focus { 6427 color: #fff; 6428 background-color: black; 6429} 6430 6431a.badge-darker:focus, a.badge-darker.focus { 6432 outline: 0; 6433 box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5); 6434} 6435 6436.jumbotron { 6437 padding: 2rem 1rem; 6438 margin-bottom: 2rem; 6439 background-color: #e9ecef; 6440 border-radius: 0.3rem; 6441} 6442 6443@media (min-width: 576px) { 6444 .jumbotron { 6445 padding: 4rem 2rem; 6446 } 6447} 6448.jumbotron-fluid { 6449 padding-right: 0; 6450 padding-left: 0; 6451 border-radius: 0; 6452} 6453 6454.alert { 6455 position: relative; 6456 padding: 1rem 1.5rem; 6457 margin-bottom: 1rem; 6458 border: 0.0625rem solid transparent; 6459 border-radius: 0.25rem; 6460} 6461 6462.alert-heading { 6463 color: inherit; 6464} 6465 6466.alert-link { 6467 font-weight: 600; 6468} 6469 6470.alert-dismissible { 6471 padding-right: 4.5rem; 6472} 6473 6474.alert-dismissible .close { 6475 position: absolute; 6476 top: 0; 6477 right: 0; 6478 padding: 1rem 1.5rem; 6479 color: inherit; 6480} 6481 6482.alert-primary { 6483 color: #5e72e4; 6484 background-color: #7889e8; 6485 border-color: #7889e8; 6486} 6487 6488.alert-primary hr { 6489 border-top-color: #6276e4; 6490} 6491 6492.alert-primary .alert-link { 6493 color: #324cdd; 6494} 6495 6496.alert-secondary { 6497 color: #f4f5f7; 6498 background-color: #f6f7f8; 6499 border-color: #f6f7f8; 6500} 6501 6502.alert-secondary hr { 6503 border-top-color: #e8eaed; 6504} 6505 6506.alert-secondary .alert-link { 6507 color: #d6dae2; 6508} 6509 6510.alert-success { 6511 color: #2dce89; 6512 background-color: #4fd69c; 6513 border-color: #4fd69c; 6514} 6515 6516.alert-success hr { 6517 border-top-color: #3ad190; 6518} 6519 6520.alert-success .alert-link { 6521 color: #24a46d; 6522} 6523 6524.alert-info { 6525 color: #11cdef; 6526 background-color: #37d5f2; 6527 border-color: #37d5f2; 6528} 6529 6530.alert-info hr { 6531 border-top-color: #1fd0f0; 6532} 6533 6534.alert-info .alert-link { 6535 color: #0da5c0; 6536} 6537 6538.alert-warning { 6539 color: #fb6340; 6540 background-color: #fc7c5f; 6541 border-color: #fc7c5f; 6542} 6543 6544.alert-warning hr { 6545 border-top-color: #fc6846; 6546} 6547 6548.alert-warning .alert-link { 6549 color: #fa3a0e; 6550} 6551 6552.alert-danger { 6553 color: #f5365c; 6554 background-color: #f75676; 6555 border-color: #f75676; 6556} 6557 6558.alert-danger hr { 6559 border-top-color: #f63e62; 6560} 6561 6562.alert-danger .alert-link { 6563 color: #ec0c38; 6564} 6565 6566.alert-light { 6567 color: #adb5bd; 6568 background-color: #bac1c8; 6569 border-color: #bac1c8; 6570} 6571 6572.alert-light hr { 6573 border-top-color: #acb4bd; 6574} 6575 6576.alert-light .alert-link { 6577 color: #919ca6; 6578} 6579 6580.alert-dark { 6581 color: #212529; 6582 background-color: #45484b; 6583 border-color: #45484b; 6584} 6585 6586.alert-dark hr { 6587 border-top-color: #393b3e; 6588} 6589 6590.alert-dark .alert-link { 6591 color: #0a0c0d; 6592} 6593 6594.alert-default { 6595 color: #172b4d; 6596 background-color: #3c4d69; 6597 border-color: #3c4d69; 6598} 6599 6600.alert-default hr { 6601 border-top-color: #334159; 6602} 6603 6604.alert-default .alert-link { 6605 color: #0b1526; 6606} 6607 6608.alert-white { 6609 color: white; 6610 background-color: white; 6611 border-color: white; 6612} 6613 6614.alert-white hr { 6615 border-top-color: #f2f2f2; 6616} 6617 6618.alert-white .alert-link { 6619 color: #e6e6e6; 6620} 6621 6622.alert-neutral { 6623 color: white; 6624 background-color: white; 6625 border-color: white; 6626} 6627 6628.alert-neutral hr { 6629 border-top-color: #f2f2f2; 6630} 6631 6632.alert-neutral .alert-link { 6633 color: #e6e6e6; 6634} 6635 6636.alert-darker { 6637 color: black; 6638 background-color: #292929; 6639 border-color: #292929; 6640} 6641 6642.alert-darker hr { 6643 border-top-color: #1c1c1c; 6644} 6645 6646.alert-darker .alert-link { 6647 color: black; 6648} 6649 6650@keyframes progress-bar-stripes { 6651 from { 6652 background-position: 1rem 0; 6653 } 6654 to { 6655 background-position: 0 0; 6656 } 6657} 6658.progress { 6659 display: flex; 6660 height: 1rem; 6661 overflow: hidden; 6662 line-height: 0; 6663 font-size: 0.75rem; 6664 background-color: #e9ecef; 6665 border-radius: 0.25rem; 6666 box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1); 6667} 6668 6669.progress-bar { 6670 display: flex; 6671 flex-direction: column; 6672 justify-content: center; 6673 overflow: hidden; 6674 color: #fff; 6675 text-align: center; 6676 white-space: nowrap; 6677 background-color: #5e72e4; 6678 transition: width 0.6s ease; 6679} 6680 6681@media (prefers-reduced-motion: reduce) { 6682 .progress-bar { 6683 transition: none; 6684 } 6685} 6686.progress-bar-striped { 6687 background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); 6688 background-size: 1rem 1rem; 6689} 6690 6691.progress-bar-animated { 6692 animation: progress-bar-stripes 1s linear infinite; 6693} 6694 6695@media (prefers-reduced-motion: reduce) { 6696 .progress-bar-animated { 6697 animation: none; 6698 } 6699} 6700.media { 6701 display: flex; 6702 align-items: flex-start; 6703} 6704 6705.media-body { 6706 flex: 1; 6707} 6708 6709.list-group { 6710 display: flex; 6711 flex-direction: column; 6712 padding-left: 0; 6713 margin-bottom: 0; 6714 border-radius: 0.25rem; 6715} 6716 6717.list-group-item-action { 6718 width: 100%; 6719 color: #525f7f; 6720 text-align: inherit; 6721} 6722 6723.list-group-item-action:hover, .list-group-item-action:focus { 6724 z-index: 1; 6725 color: #525f7f; 6726 text-decoration: none; 6727 background-color: #f6f9fc; 6728} 6729 6730.list-group-item-action:active { 6731 color: #525f7f; 6732 background-color: #e9ecef; 6733} 6734 6735.list-group-item { 6736 position: relative; 6737 display: block; 6738 padding: 1rem 1rem; 6739 background-color: #fff; 6740 border: 0.0625rem solid #e9ecef; 6741} 6742 6743.list-group-item:first-child { 6744 border-top-left-radius: inherit; 6745 border-top-right-radius: inherit; 6746} 6747 6748.list-group-item:last-child { 6749 border-bottom-right-radius: inherit; 6750 border-bottom-left-radius: inherit; 6751} 6752 6753.list-group-item.disabled, .list-group-item:disabled { 6754 color: #8898aa; 6755 pointer-events: none; 6756 background-color: #fff; 6757} 6758 6759.list-group-item.active { 6760 z-index: 2; 6761 color: #fff; 6762 background-color: #5e72e4; 6763 border-color: #5e72e4; 6764} 6765 6766.list-group-item + .list-group-item { 6767 border-top-width: 0; 6768} 6769 6770.list-group-item + .list-group-item.active { 6771 margin-top: -0.0625rem; 6772 border-top-width: 0.0625rem; 6773} 6774 6775.list-group-horizontal { 6776 flex-direction: row; 6777} 6778 6779.list-group-horizontal > .list-group-item:first-child { 6780 border-bottom-left-radius: 0.25rem; 6781 border-top-right-radius: 0; 6782} 6783 6784.list-group-horizontal > .list-group-item:last-child { 6785 border-top-right-radius: 0.25rem; 6786 border-bottom-left-radius: 0; 6787} 6788 6789.list-group-horizontal > .list-group-item.active { 6790 margin-top: 0; 6791} 6792 6793.list-group-horizontal > .list-group-item + .list-group-item { 6794 border-top-width: 0.0625rem; 6795 border-left-width: 0; 6796} 6797 6798.list-group-horizontal > .list-group-item + .list-group-item.active { 6799 margin-left: -0.0625rem; 6800 border-left-width: 0.0625rem; 6801} 6802 6803@media (min-width: 576px) { 6804 .list-group-horizontal-sm { 6805 flex-direction: row; 6806 } 6807 6808 .list-group-horizontal-sm > .list-group-item:first-child { 6809 border-bottom-left-radius: 0.25rem; 6810 border-top-right-radius: 0; 6811 } 6812 6813 .list-group-horizontal-sm > .list-group-item:last-child { 6814 border-top-right-radius: 0.25rem; 6815 border-bottom-left-radius: 0; 6816 } 6817 6818 .list-group-horizontal-sm > .list-group-item.active { 6819 margin-top: 0; 6820 } 6821 6822 .list-group-horizontal-sm > .list-group-item + .list-group-item { 6823 border-top-width: 0.0625rem; 6824 border-left-width: 0; 6825 } 6826 6827 .list-group-horizontal-sm > .list-group-item + .list-group-item.active { 6828 margin-left: -0.0625rem; 6829 border-left-width: 0.0625rem; 6830 } 6831} 6832@media (min-width: 768px) { 6833 .list-group-horizontal-md { 6834 flex-direction: row; 6835 } 6836 6837 .list-group-horizontal-md > .list-group-item:first-child { 6838 border-bottom-left-radius: 0.25rem; 6839 border-top-right-radius: 0; 6840 } 6841 6842 .list-group-horizontal-md > .list-group-item:last-child { 6843 border-top-right-radius: 0.25rem; 6844 border-bottom-left-radius: 0; 6845 } 6846 6847 .list-group-horizontal-md > .list-group-item.active { 6848 margin-top: 0; 6849 } 6850 6851 .list-group-horizontal-md > .list-group-item + .list-group-item { 6852 border-top-width: 0.0625rem; 6853 border-left-width: 0; 6854 } 6855 6856 .list-group-horizontal-md > .list-group-item + .list-group-item.active { 6857 margin-left: -0.0625rem; 6858 border-left-width: 0.0625rem; 6859 } 6860} 6861@media (min-width: 992px) { 6862 .list-group-horizontal-lg { 6863 flex-direction: row; 6864 } 6865 6866 .list-group-horizontal-lg > .list-group-item:first-child { 6867 border-bottom-left-radius: 0.25rem; 6868 border-top-right-radius: 0; 6869 } 6870 6871 .list-group-horizontal-lg > .list-group-item:last-child { 6872 border-top-right-radius: 0.25rem; 6873 border-bottom-left-radius: 0; 6874 } 6875 6876 .list-group-horizontal-lg > .list-group-item.active { 6877 margin-top: 0; 6878 } 6879 6880 .list-group-horizontal-lg > .list-group-item + .list-group-item { 6881 border-top-width: 0.0625rem; 6882 border-left-width: 0; 6883 } 6884 6885 .list-group-horizontal-lg > .list-group-item + .list-group-item.active { 6886 margin-left: -0.0625rem; 6887 border-left-width: 0.0625rem; 6888 } 6889} 6890@media (min-width: 1200px) { 6891 .list-group-horizontal-xl { 6892 flex-direction: row; 6893 } 6894 6895 .list-group-horizontal-xl > .list-group-item:first-child { 6896 border-bottom-left-radius: 0.25rem; 6897 border-top-right-radius: 0; 6898 } 6899 6900 .list-group-horizontal-xl > .list-group-item:last-child { 6901 border-top-right-radius: 0.25rem; 6902 border-bottom-left-radius: 0; 6903 } 6904 6905 .list-group-horizontal-xl > .list-group-item.active { 6906 margin-top: 0; 6907 } 6908 6909 .list-group-horizontal-xl > .list-group-item + .list-group-item { 6910 border-top-width: 0.0625rem; 6911 border-left-width: 0; 6912 } 6913 6914 .list-group-horizontal-xl > .list-group-item + .list-group-item.active { 6915 margin-left: -0.0625rem; 6916 border-left-width: 0.0625rem; 6917 } 6918} 6919.list-group-flush { 6920 border-radius: 0; 6921} 6922 6923.list-group-flush > .list-group-item { 6924 border-width: 0 0 0.0625rem; 6925} 6926 6927.list-group-flush > .list-group-item:last-child { 6928 border-bottom-width: 0; 6929} 6930 6931.list-group-item-primary { 6932 color: #313b77; 6933 background-color: #d2d8f7; 6934} 6935 6936.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { 6937 color: #313b77; 6938 background-color: #bcc5f3; 6939} 6940 6941.list-group-item-primary.list-group-item-action.active { 6942 color: #fff; 6943 background-color: #313b77; 6944 border-color: #313b77; 6945} 6946 6947.list-group-item-secondary { 6948 color: #7f7f80; 6949 background-color: #fcfcfd; 6950} 6951 6952.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { 6953 color: #7f7f80; 6954 background-color: #ededf3; 6955} 6956 6957.list-group-item-secondary.list-group-item-action.active { 6958 color: #fff; 6959 background-color: #7f7f80; 6960 border-color: #7f7f80; 6961} 6962 6963.list-group-item-success { 6964 color: #176b47; 6965 background-color: #c4f1de; 6966} 6967 6968.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { 6969 color: #176b47; 6970 background-color: #afecd2; 6971} 6972 6973.list-group-item-success.list-group-item-action.active { 6974 color: #fff; 6975 background-color: #176b47; 6976 border-color: #176b47; 6977} 6978 6979.list-group-item-info { 6980 color: #096b7c; 6981 background-color: #bcf1fb; 6982} 6983 6984.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { 6985 color: #096b7c; 6986 background-color: #a4ecfa; 6987} 6988 6989.list-group-item-info.list-group-item-action.active { 6990 color: #fff; 6991 background-color: #096b7c; 6992 border-color: #096b7c; 6993} 6994 6995.list-group-item-warning { 6996 color: #833321; 6997 background-color: #fed3ca; 6998} 6999 7000.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { 7001 color: #833321; 7002 background-color: #febeb1; 7003} 7004 7005.list-group-item-warning.list-group-item-action.active { 7006 color: #fff; 7007 background-color: #833321; 7008 border-color: #833321; 7009} 7010 7011.list-group-item-danger { 7012 color: #7f1c30; 7013 background-color: #fcc7d1; 7014} 7015 7016.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { 7017 color: #7f1c30; 7018 background-color: #fbafbd; 7019} 7020 7021.list-group-item-danger.list-group-item-action.active { 7022 color: #fff; 7023 background-color: #7f1c30; 7024 border-color: #7f1c30; 7025} 7026 7027.list-group-item-light { 7028 color: #5a5e62; 7029 background-color: #e8eaed; 7030} 7031 7032.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { 7033 color: #5a5e62; 7034 background-color: #dadde2; 7035} 7036 7037.list-group-item-light.list-group-item-action.active { 7038 color: #fff; 7039 background-color: #5a5e62; 7040 border-color: #5a5e62; 7041} 7042 7043.list-group-item-dark { 7044 color: #111315; 7045 background-color: #c1c2c3; 7046} 7047 7048.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { 7049 color: #111315; 7050 background-color: #b4b5b6; 7051} 7052 7053.list-group-item-dark.list-group-item-action.active { 7054 color: #fff; 7055 background-color: #111315; 7056 border-color: #111315; 7057} 7058 7059.list-group-item-default { 7060 color: #0c1628; 7061 background-color: #bec4cd; 7062} 7063 7064.list-group-item-default.list-group-item-action:hover, .list-group-item-default.list-group-item-action:focus { 7065 color: #0c1628; 7066 background-color: #b0b7c2; 7067} 7068 7069.list-group-item-default.list-group-item-action.active { 7070 color: #fff; 7071 background-color: #0c1628; 7072 border-color: #0c1628; 7073} 7074 7075.list-group-item-white { 7076 color: #858585; 7077 background-color: white; 7078} 7079 7080.list-group-item-white.list-group-item-action:hover, .list-group-item-white.list-group-item-action:focus { 7081 color: #858585; 7082 background-color: #f2f2f2; 7083} 7084 7085.list-group-item-white.list-group-item-action.active { 7086 color: #fff; 7087 background-color: #858585; 7088 border-color: #858585; 7089} 7090 7091.list-group-item-neutral { 7092 color: #858585; 7093 background-color: white; 7094} 7095 7096.list-group-item-neutral.list-group-item-action:hover, .list-group-item-neutral.list-group-item-action:focus { 7097 color: #858585; 7098 background-color: #f2f2f2; 7099} 7100 7101.list-group-item-neutral.list-group-item-action.active { 7102 color: #fff; 7103 background-color: #858585; 7104 border-color: #858585; 7105} 7106 7107.list-group-item-darker { 7108 color: black; 7109 background-color: #b8b8b8; 7110} 7111 7112.list-group-item-darker.list-group-item-action:hover, .list-group-item-darker.list-group-item-action:focus { 7113 color: black; 7114 background-color: #ababab; 7115} 7116 7117.list-group-item-darker.list-group-item-action.active { 7118 color: #fff; 7119 background-color: black; 7120 border-color: black; 7121} 7122 7123.close { 7124 float: right; 7125 font-size: 1.5rem; 7126 font-weight: 600; 7127 line-height: 1; 7128 color: rgba(0, 0, 0, 0.6); 7129 text-shadow: none; 7130 opacity: 0.5; 7131} 7132 7133.close:hover { 7134 color: rgba(0, 0, 0, 0.6); 7135 text-decoration: none; 7136} 7137 7138.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { 7139 opacity: 0.75; 7140} 7141 7142button.close { 7143 padding: 0; 7144 background-color: transparent; 7145 border: 0; 7146} 7147 7148a.close.disabled { 7149 pointer-events: none; 7150} 7151 7152.toast { 7153 max-width: 350px; 7154 overflow: hidden; 7155 font-size: 0.875rem; 7156 background-color: rgba(255, 255, 255, 0.85); 7157 background-clip: padding-box; 7158 border: 1px solid rgba(0, 0, 0, 0.1); 7159 box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); 7160 backdrop-filter: blur(10px); 7161 opacity: 0; 7162 border-radius: 0.25rem; 7163} 7164 7165.toast:not(:last-child) { 7166 margin-bottom: 0.75rem; 7167} 7168 7169.toast.showing { 7170 opacity: 1; 7171} 7172 7173.toast.show { 7174 display: block; 7175 opacity: 1; 7176} 7177 7178.toast.hide { 7179 display: none; 7180} 7181 7182.toast-header { 7183 display: flex; 7184 align-items: center; 7185 padding: 0.25rem 0.75rem; 7186 color: #8898aa; 7187 background-color: rgba(255, 255, 255, 0.85); 7188 background-clip: padding-box; 7189 border-bottom: 1px solid rgba(0, 0, 0, 0.05); 7190} 7191 7192.toast-body { 7193 padding: 0.75rem; 7194} 7195 7196.modal-open { 7197 overflow: hidden; 7198} 7199 7200.modal-open .modal { 7201 overflow-x: hidden; 7202 overflow-y: auto; 7203} 7204 7205.modal { 7206 position: fixed; 7207 top: 0; 7208 left: 0; 7209 z-index: 1050; 7210 display: none; 7211 width: 100%; 7212 height: 100%; 7213 overflow: hidden; 7214 outline: 0; 7215} 7216 7217.modal-dialog { 7218 position: relative; 7219 width: auto; 7220 margin: 0.5rem; 7221 pointer-events: none; 7222} 7223 7224.modal.fade .modal-dialog { 7225 transition: transform 0.3s ease-out; 7226 transform: translate(0, -50px); 7227} 7228 7229@media (prefers-reduced-motion: reduce) { 7230 .modal.fade .modal-dialog { 7231 transition: none; 7232 } 7233} 7234.modal.show .modal-dialog { 7235 transform: none; 7236} 7237 7238.modal.modal-static .modal-dialog { 7239 transform: scale(1.02); 7240} 7241 7242.modal-dialog-scrollable { 7243 display: flex; 7244 max-height: calc(100% - 1rem); 7245} 7246 7247.modal-dialog-scrollable .modal-content { 7248 max-height: calc(100vh - 1rem); 7249 overflow: hidden; 7250} 7251 7252.modal-dialog-scrollable .modal-header, 7253.modal-dialog-scrollable .modal-footer { 7254 flex-shrink: 0; 7255} 7256 7257.modal-dialog-scrollable .modal-body { 7258 overflow-y: auto; 7259} 7260 7261.modal-dialog-centered { 7262 display: flex; 7263 align-items: center; 7264 min-height: calc(100% - 1rem); 7265} 7266 7267.modal-dialog-centered::before { 7268 display: block; 7269 height: calc(100vh - 1rem); 7270 height: min-content; 7271 content: ""; 7272} 7273 7274.modal-dialog-centered.modal-dialog-scrollable { 7275 flex-direction: column; 7276 justify-content: center; 7277 height: 100%; 7278} 7279 7280.modal-dialog-centered.modal-dialog-scrollable .modal-content { 7281 max-height: none; 7282} 7283 7284.modal-dialog-centered.modal-dialog-scrollable::before { 7285 content: none; 7286} 7287 7288.modal-content { 7289 position: relative; 7290 display: flex; 7291 flex-direction: column; 7292 width: 100%; 7293 pointer-events: auto; 7294 background-color: #fff; 7295 background-clip: padding-box; 7296 border: 1px solid rgba(0, 0, 0, 0.2); 7297 border-radius: 0.3rem; 7298 box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17); 7299 outline: 0; 7300} 7301 7302.modal-backdrop { 7303 position: fixed; 7304 top: 0; 7305 left: 0; 7306 z-index: 1040; 7307 width: 100vw; 7308 height: 100vh; 7309 background-color: #000; 7310} 7311 7312.modal-backdrop.fade { 7313 opacity: 0; 7314} 7315 7316.modal-backdrop.show { 7317 opacity: 0.16; 7318} 7319 7320.modal-header { 7321 display: flex; 7322 align-items: flex-start; 7323 justify-content: space-between; 7324 padding: 1.25rem; 7325 border-bottom: 1px solid #e9ecef; 7326 border-top-left-radius: calc(0.3rem - 1px); 7327 border-top-right-radius: calc(0.3rem - 1px); 7328} 7329 7330.modal-header .close { 7331 padding: 1.25rem; 7332 margin: -1rem -1rem -1rem auto; 7333} 7334 7335.modal-title { 7336 margin-bottom: 0; 7337 line-height: 1.1; 7338} 7339 7340.modal-body { 7341 position: relative; 7342 flex: 1 1 auto; 7343 padding: 1.5rem; 7344} 7345 7346.modal-footer { 7347 display: flex; 7348 flex-wrap: wrap; 7349 align-items: center; 7350 justify-content: flex-end; 7351 padding: 1.25rem; 7352 border-top: 1px solid #e9ecef; 7353 border-bottom-right-radius: calc(0.3rem - 1px); 7354 border-bottom-left-radius: calc(0.3rem - 1px); 7355} 7356 7357.modal-footer > * { 7358 margin: 0.25rem; 7359} 7360 7361.modal-scrollbar-measure { 7362 position: absolute; 7363 top: -9999px; 7364 width: 50px; 7365 height: 50px; 7366 overflow: scroll; 7367} 7368 7369@media (min-width: 576px) { 7370 .modal-dialog { 7371 max-width: 500px; 7372 margin: 1.75rem auto; 7373 } 7374 7375 .modal-dialog-scrollable { 7376 max-height: calc(100% - 3.5rem); 7377 } 7378 7379 .modal-dialog-scrollable .modal-content { 7380 max-height: calc(100vh - 3.5rem); 7381 } 7382 7383 .modal-dialog-centered { 7384 min-height: calc(100% - 3.5rem); 7385 } 7386 7387 .modal-dialog-centered::before { 7388 height: calc(100vh - 3.5rem); 7389 height: min-content; 7390 } 7391 7392 .modal-content { 7393 box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17); 7394 } 7395 7396 .modal-sm { 7397 max-width: 380px; 7398 } 7399} 7400@media (min-width: 992px) { 7401 .modal-lg, 7402.modal-xl { 7403 max-width: 800px; 7404 } 7405} 7406@media (min-width: 1200px) { 7407 .modal-xl { 7408 max-width: 1140px; 7409 } 7410} 7411.tooltip { 7412 position: absolute; 7413 z-index: 1070; 7414 display: block; 7415 margin: 0; 7416 font-family: "Open Sans", sans-serif; 7417 font-style: normal; 7418 font-weight: 400; 7419 line-height: 1.5; 7420 text-align: left; 7421 text-align: start; 7422 text-decoration: none; 7423 text-shadow: none; 7424 text-transform: none; 7425 letter-spacing: normal; 7426 word-break: normal; 7427 word-spacing: normal; 7428 white-space: normal; 7429 line-break: auto; 7430 font-size: 0.875rem; 7431 word-wrap: break-word; 7432 opacity: 0; 7433} 7434 7435.tooltip.show { 7436 opacity: 0.9; 7437} 7438 7439.tooltip .arrow { 7440 position: absolute; 7441 display: block; 7442 width: 0.8rem; 7443 height: 0.4rem; 7444} 7445 7446.tooltip .arrow::before { 7447 position: absolute; 7448 content: ""; 7449 border-color: transparent; 7450 border-style: solid; 7451} 7452 7453.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] { 7454 padding: 0.4rem 0; 7455} 7456 7457.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow { 7458 bottom: 0; 7459} 7460 7461.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before { 7462 top: 0; 7463 border-width: 0.4rem 0.4rem 0; 7464 border-top-color: #000; 7465} 7466 7467.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] { 7468 padding: 0 0.4rem; 7469} 7470 7471.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow { 7472 left: 0; 7473 width: 0.4rem; 7474 height: 0.8rem; 7475} 7476 7477.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before { 7478 right: 0; 7479 border-width: 0.4rem 0.4rem 0.4rem 0; 7480 border-right-color: #000; 7481} 7482 7483.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] { 7484 padding: 0.4rem 0; 7485} 7486 7487.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow { 7488 top: 0; 7489} 7490 7491.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before { 7492 bottom: 0; 7493 border-width: 0 0.4rem 0.4rem; 7494 border-bottom-color: #000; 7495} 7496 7497.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] { 7498 padding: 0 0.4rem; 7499} 7500 7501.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow { 7502 right: 0; 7503 width: 0.4rem; 7504 height: 0.8rem; 7505} 7506 7507.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before { 7508 left: 0; 7509 border-width: 0.4rem 0 0.4rem 0.4rem; 7510 border-left-color: #000; 7511} 7512 7513.tooltip-inner { 7514 max-width: 200px; 7515 padding: 0.25rem 0.5rem; 7516 color: #fff; 7517 text-align: center; 7518 background-color: #000; 7519 border-radius: 0.25rem; 7520} 7521 7522.popover { 7523 position: absolute; 7524 top: 0; 7525 left: 0; 7526 z-index: 1060; 7527 display: block; 7528 max-width: 276px; 7529 font-family: "Open Sans", sans-serif; 7530 font-style: normal; 7531 font-weight: 400; 7532 line-height: 1.5; 7533 text-align: left; 7534 text-align: start; 7535 text-decoration: none; 7536 text-shadow: none; 7537 text-transform: none; 7538 letter-spacing: normal; 7539 word-break: normal; 7540 word-spacing: normal; 7541 white-space: normal; 7542 line-break: auto; 7543 font-size: 0.875rem; 7544 word-wrap: break-word; 7545 background-color: #fff; 7546 background-clip: padding-box; 7547 border: 1px solid rgba(0, 0, 0, 0.05); 7548 border-radius: 0.3rem; 7549 box-shadow: 0px 0.5rem 2rem 0px rgba(0, 0, 0, 0.2); 7550} 7551 7552.popover .arrow { 7553 position: absolute; 7554 display: block; 7555 width: 1.5rem; 7556 height: 0.75rem; 7557 margin: 0 0.3rem; 7558} 7559 7560.popover .arrow::before, .popover .arrow::after { 7561 position: absolute; 7562 display: block; 7563 content: ""; 7564 border-color: transparent; 7565 border-style: solid; 7566} 7567 7568.bs-popover-top, .bs-popover-auto[x-placement^=top] { 7569 margin-bottom: 0.75rem; 7570} 7571 7572.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow { 7573 bottom: calc(-0.75rem - 1px); 7574} 7575 7576.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before { 7577 bottom: 0; 7578 border-width: 0.75rem 0.75rem 0; 7579 border-top-color: transparent; 7580} 7581 7582.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after { 7583 bottom: 1px; 7584 border-width: 0.75rem 0.75rem 0; 7585 border-top-color: #fff; 7586} 7587 7588.bs-popover-right, .bs-popover-auto[x-placement^=right] { 7589 margin-left: 0.75rem; 7590} 7591 7592.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow { 7593 left: calc(-0.75rem - 1px); 7594 width: 0.75rem; 7595 height: 1.5rem; 7596 margin: 0.3rem 0; 7597} 7598 7599.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before { 7600 left: 0; 7601 border-width: 0.75rem 0.75rem 0.75rem 0; 7602 border-right-color: transparent; 7603} 7604 7605.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after { 7606 left: 1px; 7607 border-width: 0.75rem 0.75rem 0.75rem 0; 7608 border-right-color: #fff; 7609} 7610 7611.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] { 7612 margin-top: 0.75rem; 7613} 7614 7615.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow { 7616 top: calc(-0.75rem - 1px); 7617} 7618 7619.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before { 7620 top: 0; 7621 border-width: 0 0.75rem 0.75rem 0.75rem; 7622 border-bottom-color: transparent; 7623} 7624 7625.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after { 7626 top: 1px; 7627 border-width: 0 0.75rem 0.75rem 0.75rem; 7628 border-bottom-color: #fff; 7629} 7630 7631.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before { 7632 position: absolute; 7633 top: 0; 7634 left: 50%; 7635 display: block; 7636 width: 1.5rem; 7637 margin-left: -0.75rem; 7638 content: ""; 7639 border-bottom: 1px solid #fff; 7640} 7641 7642.bs-popover-left, .bs-popover-auto[x-placement^=left] { 7643 margin-right: 0.75rem; 7644} 7645 7646.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow { 7647 right: calc(-0.75rem - 1px); 7648 width: 0.75rem; 7649 height: 1.5rem; 7650 margin: 0.3rem 0; 7651} 7652 7653.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before { 7654 right: 0; 7655 border-width: 0.75rem 0 0.75rem 0.75rem; 7656 border-left-color: transparent; 7657} 7658 7659.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after { 7660 right: 1px; 7661 border-width: 0.75rem 0 0.75rem 0.75rem; 7662 border-left-color: #fff; 7663} 7664 7665.popover-header { 7666 padding: 0.75rem 0.75rem; 7667 margin-bottom: 0; 7668 font-size: 1rem; 7669 color: #32325d; 7670 background-color: #fff; 7671 border-bottom: 1px solid #f2f2f2; 7672 border-top-left-radius: calc(0.3rem - 1px); 7673 border-top-right-radius: calc(0.3rem - 1px); 7674} 7675 7676.popover-header:empty { 7677 display: none; 7678} 7679 7680.popover-body { 7681 padding: 0.75rem 0.75rem; 7682 color: #525f7f; 7683} 7684 7685.carousel { 7686 position: relative; 7687} 7688 7689.carousel.pointer-event { 7690 touch-action: pan-y; 7691} 7692 7693.carousel-inner { 7694 position: relative; 7695 width: 100%; 7696 overflow: hidden; 7697} 7698 7699.carousel-inner::after { 7700 display: block; 7701 clear: both; 7702 content: ""; 7703} 7704 7705.carousel-item { 7706 position: relative; 7707 display: none; 7708 float: left; 7709 width: 100%; 7710 margin-right: -100%; 7711 backface-visibility: hidden; 7712 transition: transform 0.6s ease-in-out; 7713} 7714 7715@media (prefers-reduced-motion: reduce) { 7716 .carousel-item { 7717 transition: none; 7718 } 7719} 7720.carousel-item.active, 7721.carousel-item-next, 7722.carousel-item-prev { 7723 display: block; 7724} 7725 7726.carousel-item-next:not(.carousel-item-left), 7727.active.carousel-item-right { 7728 transform: translateX(100%); 7729} 7730 7731.carousel-item-prev:not(.carousel-item-right), 7732.active.carousel-item-left { 7733 transform: translateX(-100%); 7734} 7735 7736.carousel-fade .carousel-item { 7737 opacity: 0; 7738 transition-property: opacity; 7739 transform: none; 7740} 7741 7742.carousel-fade .carousel-item.active, 7743.carousel-fade .carousel-item-next.carousel-item-left, 7744.carousel-fade .carousel-item-prev.carousel-item-right { 7745 z-index: 1; 7746 opacity: 1; 7747} 7748 7749.carousel-fade .active.carousel-item-left, 7750.carousel-fade .active.carousel-item-right { 7751 z-index: 0; 7752 opacity: 0; 7753 transition: opacity 0s 0.6s; 7754} 7755 7756@media (prefers-reduced-motion: reduce) { 7757 .carousel-fade .active.carousel-item-left, 7758.carousel-fade .active.carousel-item-right { 7759 transition: none; 7760 } 7761} 7762.carousel-control-prev, 7763.carousel-control-next { 7764 position: absolute; 7765 top: 0; 7766 bottom: 0; 7767 z-index: 1; 7768 display: flex; 7769 align-items: center; 7770 justify-content: center; 7771 width: 15%; 7772 color: #fff; 7773 text-align: center; 7774 opacity: 0.5; 7775 transition: opacity 0.15s ease; 7776} 7777 7778@media (prefers-reduced-motion: reduce) { 7779 .carousel-control-prev, 7780.carousel-control-next { 7781 transition: none; 7782 } 7783} 7784.carousel-control-prev:hover, .carousel-control-prev:focus, 7785.carousel-control-next:hover, 7786.carousel-control-next:focus { 7787 color: #fff; 7788 text-decoration: none; 7789 outline: 0; 7790 opacity: 0.9; 7791} 7792 7793.carousel-control-prev { 7794 left: 0; 7795} 7796 7797.carousel-control-next { 7798 right: 0; 7799} 7800 7801.carousel-control-prev-icon, 7802.carousel-control-next-icon { 7803 display: inline-block; 7804 width: 20px; 7805 height: 20px; 7806 background: no-repeat 50%/100% 100%; 7807} 7808 7809.carousel-control-prev-icon { 7810 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); 7811} 7812 7813.carousel-control-next-icon { 7814 background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); 7815} 7816 7817.carousel-indicators { 7818 position: absolute; 7819 right: 0; 7820 bottom: 0; 7821 left: 0; 7822 z-index: 15; 7823 display: flex; 7824 justify-content: center; 7825 padding-left: 0; 7826 margin-right: 15%; 7827 margin-left: 15%; 7828 list-style: none; 7829} 7830 7831.carousel-indicators li { 7832 box-sizing: content-box; 7833 flex: 0 1 auto; 7834 width: 30px; 7835 height: 3px; 7836 margin-right: 3px; 7837 margin-left: 3px; 7838 text-indent: -999px; 7839 cursor: pointer; 7840 background-color: #fff; 7841 background-clip: padding-box; 7842 border-top: 10px solid transparent; 7843 border-bottom: 10px solid transparent; 7844 opacity: 0.5; 7845 transition: opacity 0.6s ease; 7846} 7847 7848@media (prefers-reduced-motion: reduce) { 7849 .carousel-indicators li { 7850 transition: none; 7851 } 7852} 7853.carousel-indicators .active { 7854 opacity: 1; 7855} 7856 7857.carousel-caption { 7858 position: absolute; 7859 right: 15%; 7860 bottom: 20px; 7861 left: 15%; 7862 z-index: 10; 7863 padding-top: 20px; 7864 padding-bottom: 20px; 7865 color: #fff; 7866 text-align: center; 7867} 7868 7869@keyframes spinner-border { 7870 to { 7871 transform: rotate(360deg); 7872 } 7873} 7874.spinner-border { 7875 display: inline-block; 7876 width: 2rem; 7877 height: 2rem; 7878 vertical-align: text-bottom; 7879 border: 0.25em solid currentColor; 7880 border-right-color: transparent; 7881 border-radius: 50%; 7882 animation: spinner-border 0.75s linear infinite; 7883} 7884 7885.spinner-border-sm { 7886 width: 1rem; 7887 height: 1rem; 7888 border-width: 0.2em; 7889} 7890 7891@keyframes spinner-grow { 7892 0% { 7893 transform: scale(0); 7894 } 7895 50% { 7896 opacity: 1; 7897 transform: none; 7898 } 7899} 7900.spinner-grow { 7901 display: inline-block; 7902 width: 2rem; 7903 height: 2rem; 7904 vertical-align: text-bottom; 7905 background-color: currentColor; 7906 border-radius: 50%; 7907 opacity: 0; 7908 animation: spinner-grow 0.75s linear infinite; 7909} 7910 7911.spinner-grow-sm { 7912 width: 1rem; 7913 height: 1rem; 7914} 7915 7916.align-baseline { 7917 vertical-align: baseline !important; 7918} 7919 7920.align-top { 7921 vertical-align: top !important; 7922} 7923 7924.align-middle { 7925 vertical-align: middle !important; 7926} 7927 7928.align-bottom { 7929 vertical-align: bottom !important; 7930} 7931 7932.align-text-bottom { 7933 vertical-align: text-bottom !important; 7934} 7935 7936.align-text-top { 7937 vertical-align: text-top !important; 7938} 7939 7940.bg-primary { 7941 background-color: #343a40 !important; 7942} 7943 7944a.bg-primary:hover, a.bg-primary:focus, 7945button.bg-primary:hover, 7946button.bg-primary:focus { 7947 background-color: #324cdd !important; 7948} 7949 7950.bg-secondary, #dw__login { 7951 background-color: #f4f5f7 !important; 7952} 7953 7954a.bg-secondary:hover, a#dw__login:hover, a.bg-secondary:focus, a#dw__login:focus, 7955button.bg-secondary:hover, 7956button#dw__login:hover, 7957button.bg-secondary:focus, 7958button#dw__login:focus { 7959 background-color: #d6dae2 !important; 7960} 7961 7962.bg-success { 7963 background-color: #2dce89 !important; 7964} 7965 7966a.bg-success:hover, a.bg-success:focus, 7967button.bg-success:hover, 7968button.bg-success:focus { 7969 background-color: #24a46d !important; 7970} 7971 7972.bg-info { 7973 background-color: #11cdef !important; 7974} 7975 7976a.bg-info:hover, a.bg-info:focus, 7977button.bg-info:hover, 7978button.bg-info:focus { 7979 background-color: #0da5c0 !important; 7980} 7981 7982.bg-warning { 7983 background-color: #fb6340 !important; 7984} 7985 7986a.bg-warning:hover, a.bg-warning:focus, 7987button.bg-warning:hover, 7988button.bg-warning:focus { 7989 background-color: #fa3a0e !important; 7990} 7991 7992.bg-danger { 7993 background-color: #f5365c !important; 7994} 7995 7996a.bg-danger:hover, a.bg-danger:focus, 7997button.bg-danger:hover, 7998button.bg-danger:focus { 7999 background-color: #ec0c38 !important; 8000} 8001 8002.bg-light { 8003 background-color: #adb5bd !important; 8004} 8005 8006a.bg-light:hover, a.bg-light:focus, 8007button.bg-light:hover, 8008button.bg-light:focus { 8009 background-color: #919ca6 !important; 8010} 8011 8012.bg-dark { 8013 background-color: #212529 !important; 8014} 8015 8016a.bg-dark:hover, a.bg-dark:focus, 8017button.bg-dark:hover, 8018button.bg-dark:focus { 8019 background-color: #0a0c0d !important; 8020} 8021 8022.bg-default { 8023 background-color: #172b4d !important; 8024} 8025 8026a.bg-default:hover, a.bg-default:focus, 8027button.bg-default:hover, 8028button.bg-default:focus { 8029 background-color: #0b1526 !important; 8030} 8031 8032.bg-white { 8033 background-color: #fff !important; 8034} 8035 8036a.bg-white:hover, a.bg-white:focus, 8037button.bg-white:hover, 8038button.bg-white:focus { 8039 background-color: #e6e6e6 !important; 8040} 8041 8042.bg-neutral { 8043 background-color: #fff !important; 8044} 8045 8046a.bg-neutral:hover, a.bg-neutral:focus, 8047button.bg-neutral:hover, 8048button.bg-neutral:focus { 8049 background-color: #e6e6e6 !important; 8050} 8051 8052.bg-darker { 8053 background-color: black !important; 8054} 8055 8056a.bg-darker:hover, a.bg-darker:focus, 8057button.bg-darker:hover, 8058button.bg-darker:focus { 8059 background-color: black !important; 8060} 8061 8062.bg-white { 8063 background-color: #fff !important; 8064} 8065 8066.bg-transparent { 8067 background-color: transparent !important; 8068} 8069 8070.border { 8071 border: 0.0625rem solid #e9ecef !important; 8072} 8073 8074.border-top { 8075 border-top: 0.0625rem solid #e9ecef !important; 8076} 8077 8078.border-right { 8079 border-right: 0.0625rem solid #e9ecef !important; 8080} 8081 8082.border-bottom { 8083 border-bottom: 0.0625rem solid #e9ecef !important; 8084} 8085 8086.border-left { 8087 border-left: 0.0625rem solid #e9ecef !important; 8088} 8089 8090.border-0, #dw__login { 8091 border: 0 !important; 8092} 8093 8094.border-top-0 { 8095 border-top: 0 !important; 8096} 8097 8098.border-right-0 { 8099 border-right: 0 !important; 8100} 8101 8102.border-bottom-0 { 8103 border-bottom: 0 !important; 8104} 8105 8106.border-left-0 { 8107 border-left: 0 !important; 8108} 8109 8110.border-primary { 8111 border-color: #5e72e4 !important; 8112} 8113 8114.border-secondary { 8115 border-color: #f4f5f7 !important; 8116} 8117 8118.border-success { 8119 border-color: #2dce89 !important; 8120} 8121 8122.border-info { 8123 border-color: #11cdef !important; 8124} 8125 8126.border-warning { 8127 border-color: #fb6340 !important; 8128} 8129 8130.border-danger { 8131 border-color: #f5365c !important; 8132} 8133 8134.border-light { 8135 border-color: #adb5bd !important; 8136} 8137 8138.border-dark { 8139 border-color: #212529 !important; 8140} 8141 8142.border-default { 8143 border-color: #172b4d !important; 8144} 8145 8146.border-white { 8147 border-color: #fff !important; 8148} 8149 8150.border-neutral { 8151 border-color: #fff !important; 8152} 8153 8154.border-darker { 8155 border-color: black !important; 8156} 8157 8158.border-white { 8159 border-color: #fff !important; 8160} 8161 8162.rounded-sm { 8163 border-radius: 0.2rem !important; 8164} 8165 8166.rounded { 8167 border-radius: 0.25rem !important; 8168} 8169 8170.rounded-top { 8171 border-top-left-radius: 0.25rem !important; 8172 border-top-right-radius: 0.25rem !important; 8173} 8174 8175.rounded-right { 8176 border-top-right-radius: 0.25rem !important; 8177 border-bottom-right-radius: 0.25rem !important; 8178} 8179 8180.rounded-bottom { 8181 border-bottom-right-radius: 0.25rem !important; 8182 border-bottom-left-radius: 0.25rem !important; 8183} 8184 8185.rounded-left { 8186 border-top-left-radius: 0.25rem !important; 8187 border-bottom-left-radius: 0.25rem !important; 8188} 8189 8190.rounded-lg { 8191 border-radius: 0.3rem !important; 8192} 8193 8194.rounded-circle { 8195 border-radius: 50% !important; 8196} 8197 8198.rounded-pill { 8199 border-radius: 50rem !important; 8200} 8201 8202.rounded-0 { 8203 border-radius: 0 !important; 8204} 8205 8206.clearfix::after { 8207 display: block; 8208 clear: both; 8209 content: ""; 8210} 8211 8212.d-none { 8213 display: none !important; 8214} 8215 8216.d-inline { 8217 display: inline !important; 8218} 8219 8220.d-inline-block { 8221 display: inline-block !important; 8222} 8223 8224.d-block { 8225 display: block !important; 8226} 8227 8228.d-table { 8229 display: table !important; 8230} 8231 8232.d-table-row { 8233 display: table-row !important; 8234} 8235 8236.d-table-cell { 8237 display: table-cell !important; 8238} 8239 8240.d-flex { 8241 display: flex !important; 8242} 8243 8244.d-inline-flex { 8245 display: inline-flex !important; 8246} 8247 8248@media (min-width: 576px) { 8249 .d-sm-none { 8250 display: none !important; 8251 } 8252 8253 .d-sm-inline { 8254 display: inline !important; 8255 } 8256 8257 .d-sm-inline-block { 8258 display: inline-block !important; 8259 } 8260 8261 .d-sm-block { 8262 display: block !important; 8263 } 8264 8265 .d-sm-table { 8266 display: table !important; 8267 } 8268 8269 .d-sm-table-row { 8270 display: table-row !important; 8271 } 8272 8273 .d-sm-table-cell { 8274 display: table-cell !important; 8275 } 8276 8277 .d-sm-flex { 8278 display: flex !important; 8279 } 8280 8281 .d-sm-inline-flex { 8282 display: inline-flex !important; 8283 } 8284} 8285@media (min-width: 768px) { 8286 .d-md-none { 8287 display: none !important; 8288 } 8289 8290 .d-md-inline { 8291 display: inline !important; 8292 } 8293 8294 .d-md-inline-block { 8295 display: inline-block !important; 8296 } 8297 8298 .d-md-block { 8299 display: block !important; 8300 } 8301 8302 .d-md-table { 8303 display: table !important; 8304 } 8305 8306 .d-md-table-row { 8307 display: table-row !important; 8308 } 8309 8310 .d-md-table-cell { 8311 display: table-cell !important; 8312 } 8313 8314 .d-md-flex { 8315 display: flex !important; 8316 } 8317 8318 .d-md-inline-flex { 8319 display: inline-flex !important; 8320 } 8321} 8322@media (min-width: 992px) { 8323 .d-lg-none { 8324 display: none !important; 8325 } 8326 8327 .d-lg-inline { 8328 display: inline !important; 8329 } 8330 8331 .d-lg-inline-block { 8332 display: inline-block !important; 8333 } 8334 8335 .d-lg-block { 8336 display: block !important; 8337 } 8338 8339 .d-lg-table { 8340 display: table !important; 8341 } 8342 8343 .d-lg-table-row { 8344 display: table-row !important; 8345 } 8346 8347 .d-lg-table-cell { 8348 display: table-cell !important; 8349 } 8350 8351 .d-lg-flex { 8352 display: flex !important; 8353 } 8354 8355 .d-lg-inline-flex { 8356 display: inline-flex !important; 8357 } 8358} 8359@media (min-width: 1200px) { 8360 .d-xl-none { 8361 display: none !important; 8362 } 8363 8364 .d-xl-inline { 8365 display: inline !important; 8366 } 8367 8368 .d-xl-inline-block { 8369 display: inline-block !important; 8370 } 8371 8372 .d-xl-block { 8373 display: block !important; 8374 } 8375 8376 .d-xl-table { 8377 display: table !important; 8378 } 8379 8380 .d-xl-table-row { 8381 display: table-row !important; 8382 } 8383 8384 .d-xl-table-cell { 8385 display: table-cell !important; 8386 } 8387 8388 .d-xl-flex { 8389 display: flex !important; 8390 } 8391 8392 .d-xl-inline-flex { 8393 display: inline-flex !important; 8394 } 8395} 8396@media print { 8397 .d-print-none { 8398 display: none !important; 8399 } 8400 8401 .d-print-inline { 8402 display: inline !important; 8403 } 8404 8405 .d-print-inline-block { 8406 display: inline-block !important; 8407 } 8408 8409 .d-print-block { 8410 display: block !important; 8411 } 8412 8413 .d-print-table { 8414 display: table !important; 8415 } 8416 8417 .d-print-table-row { 8418 display: table-row !important; 8419 } 8420 8421 .d-print-table-cell { 8422 display: table-cell !important; 8423 } 8424 8425 .d-print-flex { 8426 display: flex !important; 8427 } 8428 8429 .d-print-inline-flex { 8430 display: inline-flex !important; 8431 } 8432} 8433.embed-responsive { 8434 position: relative; 8435 display: block; 8436 width: 100%; 8437 padding: 0; 8438 overflow: hidden; 8439} 8440 8441.embed-responsive::before { 8442 display: block; 8443 content: ""; 8444} 8445 8446.embed-responsive .embed-responsive-item, 8447.embed-responsive iframe, 8448.embed-responsive embed, 8449.embed-responsive object, 8450.embed-responsive video { 8451 position: absolute; 8452 top: 0; 8453 bottom: 0; 8454 left: 0; 8455 width: 100%; 8456 height: 100%; 8457 border: 0; 8458} 8459 8460.embed-responsive-21by9::before { 8461 padding-top: 42.8571428571%; 8462} 8463 8464.embed-responsive-16by9::before { 8465 padding-top: 56.25%; 8466} 8467 8468.embed-responsive-4by3::before { 8469 padding-top: 75%; 8470} 8471 8472.embed-responsive-1by1::before { 8473 padding-top: 100%; 8474} 8475 8476.flex-row { 8477 flex-direction: row !important; 8478} 8479 8480.flex-column { 8481 flex-direction: column !important; 8482} 8483 8484.flex-row-reverse { 8485 flex-direction: row-reverse !important; 8486} 8487 8488.flex-column-reverse { 8489 flex-direction: column-reverse !important; 8490} 8491 8492.flex-wrap { 8493 flex-wrap: wrap !important; 8494} 8495 8496.flex-nowrap { 8497 flex-wrap: nowrap !important; 8498} 8499 8500.flex-wrap-reverse { 8501 flex-wrap: wrap-reverse !important; 8502} 8503 8504.flex-fill { 8505 flex: 1 1 auto !important; 8506} 8507 8508.flex-grow-0 { 8509 flex-grow: 0 !important; 8510} 8511 8512.flex-grow-1 { 8513 flex-grow: 1 !important; 8514} 8515 8516.flex-shrink-0 { 8517 flex-shrink: 0 !important; 8518} 8519 8520.flex-shrink-1 { 8521 flex-shrink: 1 !important; 8522} 8523 8524.justify-content-start { 8525 justify-content: flex-start !important; 8526} 8527 8528.justify-content-end { 8529 justify-content: flex-end !important; 8530} 8531 8532.justify-content-center { 8533 justify-content: center !important; 8534} 8535 8536.justify-content-between { 8537 justify-content: space-between !important; 8538} 8539 8540.justify-content-around { 8541 justify-content: space-around !important; 8542} 8543 8544.align-items-start { 8545 align-items: flex-start !important; 8546} 8547 8548.align-items-end { 8549 align-items: flex-end !important; 8550} 8551 8552.align-items-center { 8553 align-items: center !important; 8554} 8555 8556.align-items-baseline { 8557 align-items: baseline !important; 8558} 8559 8560.align-items-stretch { 8561 align-items: stretch !important; 8562} 8563 8564.align-content-start { 8565 align-content: flex-start !important; 8566} 8567 8568.align-content-end { 8569 align-content: flex-end !important; 8570} 8571 8572.align-content-center { 8573 align-content: center !important; 8574} 8575 8576.align-content-between { 8577 align-content: space-between !important; 8578} 8579 8580.align-content-around { 8581 align-content: space-around !important; 8582} 8583 8584.align-content-stretch { 8585 align-content: stretch !important; 8586} 8587 8588.align-self-auto { 8589 align-self: auto !important; 8590} 8591 8592.align-self-start { 8593 align-self: flex-start !important; 8594} 8595 8596.align-self-end { 8597 align-self: flex-end !important; 8598} 8599 8600.align-self-center { 8601 align-self: center !important; 8602} 8603 8604.align-self-baseline { 8605 align-self: baseline !important; 8606} 8607 8608.align-self-stretch { 8609 align-self: stretch !important; 8610} 8611 8612@media (min-width: 576px) { 8613 .flex-sm-row { 8614 flex-direction: row !important; 8615 } 8616 8617 .flex-sm-column { 8618 flex-direction: column !important; 8619 } 8620 8621 .flex-sm-row-reverse { 8622 flex-direction: row-reverse !important; 8623 } 8624 8625 .flex-sm-column-reverse { 8626 flex-direction: column-reverse !important; 8627 } 8628 8629 .flex-sm-wrap { 8630 flex-wrap: wrap !important; 8631 } 8632 8633 .flex-sm-nowrap { 8634 flex-wrap: nowrap !important; 8635 } 8636 8637 .flex-sm-wrap-reverse { 8638 flex-wrap: wrap-reverse !important; 8639 } 8640 8641 .flex-sm-fill { 8642 flex: 1 1 auto !important; 8643 } 8644 8645 .flex-sm-grow-0 { 8646 flex-grow: 0 !important; 8647 } 8648 8649 .flex-sm-grow-1 { 8650 flex-grow: 1 !important; 8651 } 8652 8653 .flex-sm-shrink-0 { 8654 flex-shrink: 0 !important; 8655 } 8656 8657 .flex-sm-shrink-1 { 8658 flex-shrink: 1 !important; 8659 } 8660 8661 .justify-content-sm-start { 8662 justify-content: flex-start !important; 8663 } 8664 8665 .justify-content-sm-end { 8666 justify-content: flex-end !important; 8667 } 8668 8669 .justify-content-sm-center { 8670 justify-content: center !important; 8671 } 8672 8673 .justify-content-sm-between { 8674 justify-content: space-between !important; 8675 } 8676 8677 .justify-content-sm-around { 8678 justify-content: space-around !important; 8679 } 8680 8681 .align-items-sm-start { 8682 align-items: flex-start !important; 8683 } 8684 8685 .align-items-sm-end { 8686 align-items: flex-end !important; 8687 } 8688 8689 .align-items-sm-center { 8690 align-items: center !important; 8691 } 8692 8693 .align-items-sm-baseline { 8694 align-items: baseline !important; 8695 } 8696 8697 .align-items-sm-stretch { 8698 align-items: stretch !important; 8699 } 8700 8701 .align-content-sm-start { 8702 align-content: flex-start !important; 8703 } 8704 8705 .align-content-sm-end { 8706 align-content: flex-end !important; 8707 } 8708 8709 .align-content-sm-center { 8710 align-content: center !important; 8711 } 8712 8713 .align-content-sm-between { 8714 align-content: space-between !important; 8715 } 8716 8717 .align-content-sm-around { 8718 align-content: space-around !important; 8719 } 8720 8721 .align-content-sm-stretch { 8722 align-content: stretch !important; 8723 } 8724 8725 .align-self-sm-auto { 8726 align-self: auto !important; 8727 } 8728 8729 .align-self-sm-start { 8730 align-self: flex-start !important; 8731 } 8732 8733 .align-self-sm-end { 8734 align-self: flex-end !important; 8735 } 8736 8737 .align-self-sm-center { 8738 align-self: center !important; 8739 } 8740 8741 .align-self-sm-baseline { 8742 align-self: baseline !important; 8743 } 8744 8745 .align-self-sm-stretch { 8746 align-self: stretch !important; 8747 } 8748} 8749@media (min-width: 768px) { 8750 .flex-md-row { 8751 flex-direction: row !important; 8752 } 8753 8754 .flex-md-column { 8755 flex-direction: column !important; 8756 } 8757 8758 .flex-md-row-reverse { 8759 flex-direction: row-reverse !important; 8760 } 8761 8762 .flex-md-column-reverse { 8763 flex-direction: column-reverse !important; 8764 } 8765 8766 .flex-md-wrap { 8767 flex-wrap: wrap !important; 8768 } 8769 8770 .flex-md-nowrap { 8771 flex-wrap: nowrap !important; 8772 } 8773 8774 .flex-md-wrap-reverse { 8775 flex-wrap: wrap-reverse !important; 8776 } 8777 8778 .flex-md-fill { 8779 flex: 1 1 auto !important; 8780 } 8781 8782 .flex-md-grow-0 { 8783 flex-grow: 0 !important; 8784 } 8785 8786 .flex-md-grow-1 { 8787 flex-grow: 1 !important; 8788 } 8789 8790 .flex-md-shrink-0 { 8791 flex-shrink: 0 !important; 8792 } 8793 8794 .flex-md-shrink-1 { 8795 flex-shrink: 1 !important; 8796 } 8797 8798 .justify-content-md-start { 8799 justify-content: flex-start !important; 8800 } 8801 8802 .justify-content-md-end { 8803 justify-content: flex-end !important; 8804 } 8805 8806 .justify-content-md-center { 8807 justify-content: center !important; 8808 } 8809 8810 .justify-content-md-between { 8811 justify-content: space-between !important; 8812 } 8813 8814 .justify-content-md-around { 8815 justify-content: space-around !important; 8816 } 8817 8818 .align-items-md-start { 8819 align-items: flex-start !important; 8820 } 8821 8822 .align-items-md-end { 8823 align-items: flex-end !important; 8824 } 8825 8826 .align-items-md-center { 8827 align-items: center !important; 8828 } 8829 8830 .align-items-md-baseline { 8831 align-items: baseline !important; 8832 } 8833 8834 .align-items-md-stretch { 8835 align-items: stretch !important; 8836 } 8837 8838 .align-content-md-start { 8839 align-content: flex-start !important; 8840 } 8841 8842 .align-content-md-end { 8843 align-content: flex-end !important; 8844 } 8845 8846 .align-content-md-center { 8847 align-content: center !important; 8848 } 8849 8850 .align-content-md-between { 8851 align-content: space-between !important; 8852 } 8853 8854 .align-content-md-around { 8855 align-content: space-around !important; 8856 } 8857 8858 .align-content-md-stretch { 8859 align-content: stretch !important; 8860 } 8861 8862 .align-self-md-auto { 8863 align-self: auto !important; 8864 } 8865 8866 .align-self-md-start { 8867 align-self: flex-start !important; 8868 } 8869 8870 .align-self-md-end { 8871 align-self: flex-end !important; 8872 } 8873 8874 .align-self-md-center { 8875 align-self: center !important; 8876 } 8877 8878 .align-self-md-baseline { 8879 align-self: baseline !important; 8880 } 8881 8882 .align-self-md-stretch { 8883 align-self: stretch !important; 8884 } 8885} 8886@media (min-width: 992px) { 8887 .flex-lg-row { 8888 flex-direction: row !important; 8889 } 8890 8891 .flex-lg-column { 8892 flex-direction: column !important; 8893 } 8894 8895 .flex-lg-row-reverse { 8896 flex-direction: row-reverse !important; 8897 } 8898 8899 .flex-lg-column-reverse { 8900 flex-direction: column-reverse !important; 8901 } 8902 8903 .flex-lg-wrap { 8904 flex-wrap: wrap !important; 8905 } 8906 8907 .flex-lg-nowrap { 8908 flex-wrap: nowrap !important; 8909 } 8910 8911 .flex-lg-wrap-reverse { 8912 flex-wrap: wrap-reverse !important; 8913 } 8914 8915 .flex-lg-fill { 8916 flex: 1 1 auto !important; 8917 } 8918 8919 .flex-lg-grow-0 { 8920 flex-grow: 0 !important; 8921 } 8922 8923 .flex-lg-grow-1 { 8924 flex-grow: 1 !important; 8925 } 8926 8927 .flex-lg-shrink-0 { 8928 flex-shrink: 0 !important; 8929 } 8930 8931 .flex-lg-shrink-1 { 8932 flex-shrink: 1 !important; 8933 } 8934 8935 .justify-content-lg-start { 8936 justify-content: flex-start !important; 8937 } 8938 8939 .justify-content-lg-end { 8940 justify-content: flex-end !important; 8941 } 8942 8943 .justify-content-lg-center { 8944 justify-content: center !important; 8945 } 8946 8947 .justify-content-lg-between { 8948 justify-content: space-between !important; 8949 } 8950 8951 .justify-content-lg-around { 8952 justify-content: space-around !important; 8953 } 8954 8955 .align-items-lg-start { 8956 align-items: flex-start !important; 8957 } 8958 8959 .align-items-lg-end { 8960 align-items: flex-end !important; 8961 } 8962 8963 .align-items-lg-center { 8964 align-items: center !important; 8965 } 8966 8967 .align-items-lg-baseline { 8968 align-items: baseline !important; 8969 } 8970 8971 .align-items-lg-stretch { 8972 align-items: stretch !important; 8973 } 8974 8975 .align-content-lg-start { 8976 align-content: flex-start !important; 8977 } 8978 8979 .align-content-lg-end { 8980 align-content: flex-end !important; 8981 } 8982 8983 .align-content-lg-center { 8984 align-content: center !important; 8985 } 8986 8987 .align-content-lg-between { 8988 align-content: space-between !important; 8989 } 8990 8991 .align-content-lg-around { 8992 align-content: space-around !important; 8993 } 8994 8995 .align-content-lg-stretch { 8996 align-content: stretch !important; 8997 } 8998 8999 .align-self-lg-auto { 9000 align-self: auto !important; 9001 } 9002 9003 .align-self-lg-start { 9004 align-self: flex-start !important; 9005 } 9006 9007 .align-self-lg-end { 9008 align-self: flex-end !important; 9009 } 9010 9011 .align-self-lg-center { 9012 align-self: center !important; 9013 } 9014 9015 .align-self-lg-baseline { 9016 align-self: baseline !important; 9017 } 9018 9019 .align-self-lg-stretch { 9020 align-self: stretch !important; 9021 } 9022} 9023@media (min-width: 1200px) { 9024 .flex-xl-row { 9025 flex-direction: row !important; 9026 } 9027 9028 .flex-xl-column { 9029 flex-direction: column !important; 9030 } 9031 9032 .flex-xl-row-reverse { 9033 flex-direction: row-reverse !important; 9034 } 9035 9036 .flex-xl-column-reverse { 9037 flex-direction: column-reverse !important; 9038 } 9039 9040 .flex-xl-wrap { 9041 flex-wrap: wrap !important; 9042 } 9043 9044 .flex-xl-nowrap { 9045 flex-wrap: nowrap !important; 9046 } 9047 9048 .flex-xl-wrap-reverse { 9049 flex-wrap: wrap-reverse !important; 9050 } 9051 9052 .flex-xl-fill { 9053 flex: 1 1 auto !important; 9054 } 9055 9056 .flex-xl-grow-0 { 9057 flex-grow: 0 !important; 9058 } 9059 9060 .flex-xl-grow-1 { 9061 flex-grow: 1 !important; 9062 } 9063 9064 .flex-xl-shrink-0 { 9065 flex-shrink: 0 !important; 9066 } 9067 9068 .flex-xl-shrink-1 { 9069 flex-shrink: 1 !important; 9070 } 9071 9072 .justify-content-xl-start { 9073 justify-content: flex-start !important; 9074 } 9075 9076 .justify-content-xl-end { 9077 justify-content: flex-end !important; 9078 } 9079 9080 .justify-content-xl-center { 9081 justify-content: center !important; 9082 } 9083 9084 .justify-content-xl-between { 9085 justify-content: space-between !important; 9086 } 9087 9088 .justify-content-xl-around { 9089 justify-content: space-around !important; 9090 } 9091 9092 .align-items-xl-start { 9093 align-items: flex-start !important; 9094 } 9095 9096 .align-items-xl-end { 9097 align-items: flex-end !important; 9098 } 9099 9100 .align-items-xl-center { 9101 align-items: center !important; 9102 } 9103 9104 .align-items-xl-baseline { 9105 align-items: baseline !important; 9106 } 9107 9108 .align-items-xl-stretch { 9109 align-items: stretch !important; 9110 } 9111 9112 .align-content-xl-start { 9113 align-content: flex-start !important; 9114 } 9115 9116 .align-content-xl-end { 9117 align-content: flex-end !important; 9118 } 9119 9120 .align-content-xl-center { 9121 align-content: center !important; 9122 } 9123 9124 .align-content-xl-between { 9125 align-content: space-between !important; 9126 } 9127 9128 .align-content-xl-around { 9129 align-content: space-around !important; 9130 } 9131 9132 .align-content-xl-stretch { 9133 align-content: stretch !important; 9134 } 9135 9136 .align-self-xl-auto { 9137 align-self: auto !important; 9138 } 9139 9140 .align-self-xl-start { 9141 align-self: flex-start !important; 9142 } 9143 9144 .align-self-xl-end { 9145 align-self: flex-end !important; 9146 } 9147 9148 .align-self-xl-center { 9149 align-self: center !important; 9150 } 9151 9152 .align-self-xl-baseline { 9153 align-self: baseline !important; 9154 } 9155 9156 .align-self-xl-stretch { 9157 align-self: stretch !important; 9158 } 9159} 9160.float-left { 9161 float: left !important; 9162} 9163 9164.float-right { 9165 float: right !important; 9166} 9167 9168.float-none { 9169 float: none !important; 9170} 9171 9172@media (min-width: 576px) { 9173 .float-sm-left { 9174 float: left !important; 9175 } 9176 9177 .float-sm-right { 9178 float: right !important; 9179 } 9180 9181 .float-sm-none { 9182 float: none !important; 9183 } 9184} 9185@media (min-width: 768px) { 9186 .float-md-left { 9187 float: left !important; 9188 } 9189 9190 .float-md-right { 9191 float: right !important; 9192 } 9193 9194 .float-md-none { 9195 float: none !important; 9196 } 9197} 9198@media (min-width: 992px) { 9199 .float-lg-left { 9200 float: left !important; 9201 } 9202 9203 .float-lg-right { 9204 float: right !important; 9205 } 9206 9207 .float-lg-none { 9208 float: none !important; 9209 } 9210} 9211@media (min-width: 1200px) { 9212 .float-xl-left { 9213 float: left !important; 9214 } 9215 9216 .float-xl-right { 9217 float: right !important; 9218 } 9219 9220 .float-xl-none { 9221 float: none !important; 9222 } 9223} 9224.user-select-all { 9225 user-select: all !important; 9226} 9227 9228.user-select-auto { 9229 user-select: auto !important; 9230} 9231 9232.user-select-none { 9233 user-select: none !important; 9234} 9235 9236.overflow-auto { 9237 overflow: auto !important; 9238} 9239 9240.overflow-hidden { 9241 overflow: hidden !important; 9242} 9243 9244.position-static { 9245 position: static !important; 9246} 9247 9248.position-relative { 9249 position: relative !important; 9250} 9251 9252.position-absolute { 9253 position: absolute !important; 9254} 9255 9256.position-fixed, .headroom--unpinned, .headroom--pinned { 9257 position: fixed !important; 9258} 9259 9260.position-sticky { 9261 position: sticky !important; 9262} 9263 9264.fixed-top { 9265 position: fixed; 9266 top: 0; 9267 right: 0; 9268 left: 0; 9269 z-index: 1030; 9270} 9271 9272.fixed-bottom { 9273 position: fixed; 9274 right: 0; 9275 bottom: 0; 9276 left: 0; 9277 z-index: 1030; 9278} 9279 9280@supports (position: sticky) { 9281 .sticky-top { 9282 position: sticky; 9283 top: 0; 9284 z-index: 1020; 9285 } 9286} 9287.sr-only { 9288 position: absolute; 9289 width: 1px; 9290 height: 1px; 9291 padding: 0; 9292 margin: -1px; 9293 overflow: hidden; 9294 clip: rect(0, 0, 0, 0); 9295 white-space: nowrap; 9296 border: 0; 9297} 9298 9299.sr-only-focusable:active, .sr-only-focusable:focus { 9300 position: static; 9301 width: auto; 9302 height: auto; 9303 overflow: visible; 9304 clip: auto; 9305 white-space: normal; 9306} 9307 9308.shadow-sm { 9309 box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; 9310} 9311 9312.shadow, #dw__login, .profile-page .card-profile .card-profile-image img { 9313 box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important; 9314} 9315 9316.shadow-lg { 9317 box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; 9318} 9319 9320.shadow-none { 9321 box-shadow: none !important; 9322} 9323 9324.w-25 { 9325 width: 25% !important; 9326} 9327 9328.w-50 { 9329 width: 50% !important; 9330} 9331 9332.w-75 { 9333 width: 75% !important; 9334} 9335 9336.w-100 { 9337 width: 100% !important; 9338} 9339 9340.w-auto { 9341 width: auto !important; 9342} 9343 9344.h-25 { 9345 height: 25% !important; 9346} 9347 9348.h-50 { 9349 height: 50% !important; 9350} 9351 9352.h-75 { 9353 height: 75% !important; 9354} 9355 9356.h-100 { 9357 height: 100% !important; 9358} 9359 9360.h-auto { 9361 height: auto !important; 9362} 9363 9364.mw-100 { 9365 max-width: 100% !important; 9366} 9367 9368.mh-100 { 9369 max-height: 100% !important; 9370} 9371 9372.min-vw-100 { 9373 min-width: 100vw !important; 9374} 9375 9376.min-vh-100 { 9377 min-height: 100vh !important; 9378} 9379 9380.vw-100 { 9381 width: 100vw !important; 9382} 9383 9384.vh-100 { 9385 height: 100vh !important; 9386} 9387 9388.m-0 { 9389 margin: 0 !important; 9390} 9391 9392.mt-0, 9393.my-0 { 9394 margin-top: 0 !important; 9395} 9396 9397.mr-0, 9398.mx-0 { 9399 margin-right: 0 !important; 9400} 9401 9402.mb-0, 9403.my-0 { 9404 margin-bottom: 0 !important; 9405} 9406 9407.ml-0, 9408.mx-0 { 9409 margin-left: 0 !important; 9410} 9411 9412.m-1 { 9413 margin: 0.25rem !important; 9414} 9415 9416.mt-1, 9417.my-1 { 9418 margin-top: 0.25rem !important; 9419} 9420 9421.mr-1, 9422.mx-1 { 9423 margin-right: 0.25rem !important; 9424} 9425 9426.mb-1, 9427.my-1 { 9428 margin-bottom: 0.25rem !important; 9429} 9430 9431.ml-1, 9432.mx-1 { 9433 margin-left: 0.25rem !important; 9434} 9435 9436.m-2 { 9437 margin: 0.5rem !important; 9438} 9439 9440.mt-2, 9441.my-2 { 9442 margin-top: 0.5rem !important; 9443} 9444 9445.mr-2, 9446.mx-2 { 9447 margin-right: 0.5rem !important; 9448} 9449 9450.mb-2, 9451.my-2 { 9452 margin-bottom: 0.5rem !important; 9453} 9454 9455.ml-2, 9456.mx-2 { 9457 margin-left: 0.5rem !important; 9458} 9459 9460.m-3 { 9461 margin: 1rem !important; 9462} 9463 9464.mt-3, 9465.my-3 { 9466 margin-top: 1rem !important; 9467} 9468 9469.mr-3, 9470.mx-3 { 9471 margin-right: 1rem !important; 9472} 9473 9474.mb-3, 9475.my-3 { 9476 margin-bottom: 1rem !important; 9477} 9478 9479.ml-3, 9480.mx-3 { 9481 margin-left: 1rem !important; 9482} 9483 9484.m-4 { 9485 margin: 1.5rem !important; 9486} 9487 9488.mt-4, 9489.my-4 { 9490 margin-top: 1.5rem !important; 9491} 9492 9493.mr-4, 9494.mx-4 { 9495 margin-right: 1.5rem !important; 9496} 9497 9498.mb-4, .doku_form .no, 9499.my-4 { 9500 margin-bottom: 1.5rem !important; 9501} 9502 9503.ml-4, 9504.mx-4 { 9505 margin-left: 1.5rem !important; 9506} 9507 9508.m-5 { 9509 margin: 3rem !important; 9510} 9511 9512.mt-5, 9513.my-5 { 9514 margin-top: 3rem !important; 9515} 9516 9517.mr-5, 9518.mx-5 { 9519 margin-right: 3rem !important; 9520} 9521 9522.mb-5, 9523.my-5 { 9524 margin-bottom: 3rem !important; 9525} 9526 9527.ml-5, 9528.mx-5 { 9529 margin-left: 3rem !important; 9530} 9531 9532.m--9 { 9533 margin: -10rem !important; 9534} 9535 9536.mt--9, 9537.my--9 { 9538 margin-top: -10rem !important; 9539} 9540 9541.mr--9, 9542.mx--9 { 9543 margin-right: -10rem !important; 9544} 9545 9546.mb--9, 9547.my--9 { 9548 margin-bottom: -10rem !important; 9549} 9550 9551.ml--9, 9552.mx--9 { 9553 margin-left: -10rem !important; 9554} 9555 9556.m--8 { 9557 margin: -8rem !important; 9558} 9559 9560.mt--8, 9561.my--8 { 9562 margin-top: -8rem !important; 9563} 9564 9565.mr--8, 9566.mx--8 { 9567 margin-right: -8rem !important; 9568} 9569 9570.mb--8, 9571.my--8 { 9572 margin-bottom: -8rem !important; 9573} 9574 9575.ml--8, 9576.mx--8 { 9577 margin-left: -8rem !important; 9578} 9579 9580.m--7 { 9581 margin: -6rem !important; 9582} 9583 9584.mt--7, 9585.my--7 { 9586 margin-top: -6rem !important; 9587} 9588 9589.mr--7, 9590.mx--7 { 9591 margin-right: -6rem !important; 9592} 9593 9594.mb--7, 9595.my--7 { 9596 margin-bottom: -6rem !important; 9597} 9598 9599.ml--7, 9600.mx--7 { 9601 margin-left: -6rem !important; 9602} 9603 9604.m--6 { 9605 margin: -4.5rem !important; 9606} 9607 9608.mt--6, 9609.my--6 { 9610 margin-top: -4.5rem !important; 9611} 9612 9613.mr--6, 9614.mx--6 { 9615 margin-right: -4.5rem !important; 9616} 9617 9618.mb--6, 9619.my--6 { 9620 margin-bottom: -4.5rem !important; 9621} 9622 9623.ml--6, 9624.mx--6 { 9625 margin-left: -4.5rem !important; 9626} 9627 9628.m--5 { 9629 margin: -3rem !important; 9630} 9631 9632.mt--5, 9633.my--5 { 9634 margin-top: -3rem !important; 9635} 9636 9637.mr--5, 9638.mx--5 { 9639 margin-right: -3rem !important; 9640} 9641 9642.mb--5, 9643.my--5 { 9644 margin-bottom: -3rem !important; 9645} 9646 9647.ml--5, 9648.mx--5 { 9649 margin-left: -3rem !important; 9650} 9651 9652.m--4 { 9653 margin: -1.5rem !important; 9654} 9655 9656.mt--4, 9657.my--4 { 9658 margin-top: -1.5rem !important; 9659} 9660 9661.mr--4, 9662.mx--4 { 9663 margin-right: -1.5rem !important; 9664} 9665 9666.mb--4, 9667.my--4 { 9668 margin-bottom: -1.5rem !important; 9669} 9670 9671.ml--4, 9672.mx--4 { 9673 margin-left: -1.5rem !important; 9674} 9675 9676.m--3 { 9677 margin: -1rem !important; 9678} 9679 9680.mt--3, 9681.my--3 { 9682 margin-top: -1rem !important; 9683} 9684 9685.mr--3, 9686.mx--3 { 9687 margin-right: -1rem !important; 9688} 9689 9690.mb--3, 9691.my--3 { 9692 margin-bottom: -1rem !important; 9693} 9694 9695.ml--3, 9696.mx--3 { 9697 margin-left: -1rem !important; 9698} 9699 9700.m--2 { 9701 margin: -0.5rem !important; 9702} 9703 9704.mt--2, 9705.my--2 { 9706 margin-top: -0.5rem !important; 9707} 9708 9709.mr--2, 9710.mx--2 { 9711 margin-right: -0.5rem !important; 9712} 9713 9714.mb--2, 9715.my--2 { 9716 margin-bottom: -0.5rem !important; 9717} 9718 9719.ml--2, 9720.mx--2 { 9721 margin-left: -0.5rem !important; 9722} 9723 9724.m--1 { 9725 margin: -0.25rem !important; 9726} 9727 9728.mt--1, 9729.my--1 { 9730 margin-top: -0.25rem !important; 9731} 9732 9733.mr--1, 9734.mx--1 { 9735 margin-right: -0.25rem !important; 9736} 9737 9738.mb--1, 9739.my--1 { 9740 margin-bottom: -0.25rem !important; 9741} 9742 9743.ml--1, 9744.mx--1 { 9745 margin-left: -0.25rem !important; 9746} 9747 9748.m-6 { 9749 margin: 4.5rem !important; 9750} 9751 9752.mt-6, 9753.my-6 { 9754 margin-top: 4.5rem !important; 9755} 9756 9757.mr-6, 9758.mx-6 { 9759 margin-right: 4.5rem !important; 9760} 9761 9762.mb-6, 9763.my-6 { 9764 margin-bottom: 4.5rem !important; 9765} 9766 9767.ml-6, 9768.mx-6 { 9769 margin-left: 4.5rem !important; 9770} 9771 9772.m-7 { 9773 margin: 6rem !important; 9774} 9775 9776.mt-7, 9777.my-7 { 9778 margin-top: 6rem !important; 9779} 9780 9781.mr-7, 9782.mx-7 { 9783 margin-right: 6rem !important; 9784} 9785 9786.mb-7, 9787.my-7 { 9788 margin-bottom: 6rem !important; 9789} 9790 9791.ml-7, 9792.mx-7 { 9793 margin-left: 6rem !important; 9794} 9795 9796.m-8 { 9797 margin: 8rem !important; 9798} 9799 9800.mt-8, 9801.my-8 { 9802 margin-top: 8rem !important; 9803} 9804 9805.mr-8, 9806.mx-8 { 9807 margin-right: 8rem !important; 9808} 9809 9810.mb-8, 9811.my-8 { 9812 margin-bottom: 8rem !important; 9813} 9814 9815.ml-8, 9816.mx-8 { 9817 margin-left: 8rem !important; 9818} 9819 9820.m-9 { 9821 margin: 10rem !important; 9822} 9823 9824.mt-9, 9825.my-9 { 9826 margin-top: 10rem !important; 9827} 9828 9829.mr-9, 9830.mx-9 { 9831 margin-right: 10rem !important; 9832} 9833 9834.mb-9, 9835.my-9 { 9836 margin-bottom: 10rem !important; 9837} 9838 9839.ml-9, 9840.mx-9 { 9841 margin-left: 10rem !important; 9842} 9843 9844.p-0 { 9845 padding: 0 !important; 9846} 9847 9848.pt-0, 9849.py-0 { 9850 padding-top: 0 !important; 9851} 9852 9853.pr-0, 9854.px-0 { 9855 padding-right: 0 !important; 9856} 9857 9858.pb-0, 9859.py-0 { 9860 padding-bottom: 0 !important; 9861} 9862 9863.pl-0, 9864.px-0 { 9865 padding-left: 0 !important; 9866} 9867 9868.p-1 { 9869 padding: 0.25rem !important; 9870} 9871 9872.pt-1, 9873.py-1 { 9874 padding-top: 0.25rem !important; 9875} 9876 9877.pr-1, 9878.px-1 { 9879 padding-right: 0.25rem !important; 9880} 9881 9882.pb-1, 9883.py-1 { 9884 padding-bottom: 0.25rem !important; 9885} 9886 9887.pl-1, 9888.px-1 { 9889 padding-left: 0.25rem !important; 9890} 9891 9892.p-2 { 9893 padding: 0.5rem !important; 9894} 9895 9896.pt-2, 9897.py-2 { 9898 padding-top: 0.5rem !important; 9899} 9900 9901.pr-2, 9902.px-2 { 9903 padding-right: 0.5rem !important; 9904} 9905 9906.pb-2, 9907.py-2 { 9908 padding-bottom: 0.5rem !important; 9909} 9910 9911.pl-2, 9912.px-2 { 9913 padding-left: 0.5rem !important; 9914} 9915 9916.p-3 { 9917 padding: 1rem !important; 9918} 9919 9920.pt-3, 9921.py-3 { 9922 padding-top: 1rem !important; 9923} 9924 9925.pr-3, 9926.px-3 { 9927 padding-right: 1rem !important; 9928} 9929 9930.pb-3, 9931.py-3 { 9932 padding-bottom: 1rem !important; 9933} 9934 9935.pl-3, 9936.px-3 { 9937 padding-left: 1rem !important; 9938} 9939 9940.p-4 { 9941 padding: 1.5rem !important; 9942} 9943 9944.pt-4, 9945.py-4 { 9946 padding-top: 1.5rem !important; 9947} 9948 9949.pr-4, 9950.px-4 { 9951 padding-right: 1.5rem !important; 9952} 9953 9954.pb-4, 9955.py-4 { 9956 padding-bottom: 1.5rem !important; 9957} 9958 9959.pl-4, 9960.px-4 { 9961 padding-left: 1.5rem !important; 9962} 9963 9964.p-5 { 9965 padding: 3rem !important; 9966} 9967 9968.pt-5, 9969.py-5 { 9970 padding-top: 3rem !important; 9971} 9972 9973.pr-5, 9974.px-5 { 9975 padding-right: 3rem !important; 9976} 9977 9978.pb-5, 9979.py-5 { 9980 padding-bottom: 3rem !important; 9981} 9982 9983.pl-5, 9984.px-5 { 9985 padding-left: 3rem !important; 9986} 9987 9988.p--9 { 9989 padding: -10rem !important; 9990} 9991 9992.pt--9, 9993.py--9 { 9994 padding-top: -10rem !important; 9995} 9996 9997.pr--9, 9998.px--9 { 9999 padding-right: -10rem !important; 10000} 10001 10002.pb--9, 10003.py--9 { 10004 padding-bottom: -10rem !important; 10005} 10006 10007.pl--9, 10008.px--9 { 10009 padding-left: -10rem !important; 10010} 10011 10012.p--8 { 10013 padding: -8rem !important; 10014} 10015 10016.pt--8, 10017.py--8 { 10018 padding-top: -8rem !important; 10019} 10020 10021.pr--8, 10022.px--8 { 10023 padding-right: -8rem !important; 10024} 10025 10026.pb--8, 10027.py--8 { 10028 padding-bottom: -8rem !important; 10029} 10030 10031.pl--8, 10032.px--8 { 10033 padding-left: -8rem !important; 10034} 10035 10036.p--7 { 10037 padding: -6rem !important; 10038} 10039 10040.pt--7, 10041.py--7 { 10042 padding-top: -6rem !important; 10043} 10044 10045.pr--7, 10046.px--7 { 10047 padding-right: -6rem !important; 10048} 10049 10050.pb--7, 10051.py--7 { 10052 padding-bottom: -6rem !important; 10053} 10054 10055.pl--7, 10056.px--7 { 10057 padding-left: -6rem !important; 10058} 10059 10060.p--6 { 10061 padding: -4.5rem !important; 10062} 10063 10064.pt--6, 10065.py--6 { 10066 padding-top: -4.5rem !important; 10067} 10068 10069.pr--6, 10070.px--6 { 10071 padding-right: -4.5rem !important; 10072} 10073 10074.pb--6, 10075.py--6 { 10076 padding-bottom: -4.5rem !important; 10077} 10078 10079.pl--6, 10080.px--6 { 10081 padding-left: -4.5rem !important; 10082} 10083 10084.p--5 { 10085 padding: -3rem !important; 10086} 10087 10088.pt--5, 10089.py--5 { 10090 padding-top: -3rem !important; 10091} 10092 10093.pr--5, 10094.px--5 { 10095 padding-right: -3rem !important; 10096} 10097 10098.pb--5, 10099.py--5 { 10100 padding-bottom: -3rem !important; 10101} 10102 10103.pl--5, 10104.px--5 { 10105 padding-left: -3rem !important; 10106} 10107 10108.p--4 { 10109 padding: -1.5rem !important; 10110} 10111 10112.pt--4, 10113.py--4 { 10114 padding-top: -1.5rem !important; 10115} 10116 10117.pr--4, 10118.px--4 { 10119 padding-right: -1.5rem !important; 10120} 10121 10122.pb--4, 10123.py--4 { 10124 padding-bottom: -1.5rem !important; 10125} 10126 10127.pl--4, 10128.px--4 { 10129 padding-left: -1.5rem !important; 10130} 10131 10132.p--3 { 10133 padding: -1rem !important; 10134} 10135 10136.pt--3, 10137.py--3 { 10138 padding-top: -1rem !important; 10139} 10140 10141.pr--3, 10142.px--3 { 10143 padding-right: -1rem !important; 10144} 10145 10146.pb--3, 10147.py--3 { 10148 padding-bottom: -1rem !important; 10149} 10150 10151.pl--3, 10152.px--3 { 10153 padding-left: -1rem !important; 10154} 10155 10156.p--2 { 10157 padding: -0.5rem !important; 10158} 10159 10160.pt--2, 10161.py--2 { 10162 padding-top: -0.5rem !important; 10163} 10164 10165.pr--2, 10166.px--2 { 10167 padding-right: -0.5rem !important; 10168} 10169 10170.pb--2, 10171.py--2 { 10172 padding-bottom: -0.5rem !important; 10173} 10174 10175.pl--2, 10176.px--2 { 10177 padding-left: -0.5rem !important; 10178} 10179 10180.p--1 { 10181 padding: -0.25rem !important; 10182} 10183 10184.pt--1, 10185.py--1 { 10186 padding-top: -0.25rem !important; 10187} 10188 10189.pr--1, 10190.px--1 { 10191 padding-right: -0.25rem !important; 10192} 10193 10194.pb--1, 10195.py--1 { 10196 padding-bottom: -0.25rem !important; 10197} 10198 10199.pl--1, 10200.px--1 { 10201 padding-left: -0.25rem !important; 10202} 10203 10204.p-6 { 10205 padding: 4.5rem !important; 10206} 10207 10208.pt-6, 10209.py-6 { 10210 padding-top: 4.5rem !important; 10211} 10212 10213.pr-6, 10214.px-6 { 10215 padding-right: 4.5rem !important; 10216} 10217 10218.pb-6, 10219.py-6 { 10220 padding-bottom: 4.5rem !important; 10221} 10222 10223.pl-6, 10224.px-6 { 10225 padding-left: 4.5rem !important; 10226} 10227 10228.p-7 { 10229 padding: 6rem !important; 10230} 10231 10232.pt-7, 10233.py-7 { 10234 padding-top: 6rem !important; 10235} 10236 10237.pr-7, 10238.px-7 { 10239 padding-right: 6rem !important; 10240} 10241 10242.pb-7, 10243.py-7 { 10244 padding-bottom: 6rem !important; 10245} 10246 10247.pl-7, 10248.px-7 { 10249 padding-left: 6rem !important; 10250} 10251 10252.p-8 { 10253 padding: 8rem !important; 10254} 10255 10256.pt-8, 10257.py-8 { 10258 padding-top: 8rem !important; 10259} 10260 10261.pr-8, 10262.px-8 { 10263 padding-right: 8rem !important; 10264} 10265 10266.pb-8, 10267.py-8 { 10268 padding-bottom: 8rem !important; 10269} 10270 10271.pl-8, 10272.px-8 { 10273 padding-left: 8rem !important; 10274} 10275 10276.p-9 { 10277 padding: 10rem !important; 10278} 10279 10280.pt-9, 10281.py-9 { 10282 padding-top: 10rem !important; 10283} 10284 10285.pr-9, 10286.px-9 { 10287 padding-right: 10rem !important; 10288} 10289 10290.pb-9, 10291.py-9 { 10292 padding-bottom: 10rem !important; 10293} 10294 10295.pl-9, 10296.px-9 { 10297 padding-left: 10rem !important; 10298} 10299 10300.m-n1 { 10301 margin: -0.25rem !important; 10302} 10303 10304.mt-n1, 10305.my-n1 { 10306 margin-top: -0.25rem !important; 10307} 10308 10309.mr-n1, 10310.mx-n1 { 10311 margin-right: -0.25rem !important; 10312} 10313 10314.mb-n1, 10315.my-n1 { 10316 margin-bottom: -0.25rem !important; 10317} 10318 10319.ml-n1, 10320.mx-n1 { 10321 margin-left: -0.25rem !important; 10322} 10323 10324.m-n2 { 10325 margin: -0.5rem !important; 10326} 10327 10328.mt-n2, 10329.my-n2 { 10330 margin-top: -0.5rem !important; 10331} 10332 10333.mr-n2, 10334.mx-n2 { 10335 margin-right: -0.5rem !important; 10336} 10337 10338.mb-n2, 10339.my-n2 { 10340 margin-bottom: -0.5rem !important; 10341} 10342 10343.ml-n2, 10344.mx-n2 { 10345 margin-left: -0.5rem !important; 10346} 10347 10348.m-n3 { 10349 margin: -1rem !important; 10350} 10351 10352.mt-n3, 10353.my-n3 { 10354 margin-top: -1rem !important; 10355} 10356 10357.mr-n3, 10358.mx-n3 { 10359 margin-right: -1rem !important; 10360} 10361 10362.mb-n3, 10363.my-n3 { 10364 margin-bottom: -1rem !important; 10365} 10366 10367.ml-n3, 10368.mx-n3 { 10369 margin-left: -1rem !important; 10370} 10371 10372.m-n4 { 10373 margin: -1.5rem !important; 10374} 10375 10376.mt-n4, 10377.my-n4 { 10378 margin-top: -1.5rem !important; 10379} 10380 10381.mr-n4, 10382.mx-n4 { 10383 margin-right: -1.5rem !important; 10384} 10385 10386.mb-n4, 10387.my-n4 { 10388 margin-bottom: -1.5rem !important; 10389} 10390 10391.ml-n4, 10392.mx-n4 { 10393 margin-left: -1.5rem !important; 10394} 10395 10396.m-n5 { 10397 margin: -3rem !important; 10398} 10399 10400.mt-n5, 10401.my-n5 { 10402 margin-top: -3rem !important; 10403} 10404 10405.mr-n5, 10406.mx-n5 { 10407 margin-right: -3rem !important; 10408} 10409 10410.mb-n5, 10411.my-n5 { 10412 margin-bottom: -3rem !important; 10413} 10414 10415.ml-n5, 10416.mx-n5 { 10417 margin-left: -3rem !important; 10418} 10419 10420.m-n-9 { 10421 margin: 10rem !important; 10422} 10423 10424.mt-n-9, 10425.my-n-9 { 10426 margin-top: 10rem !important; 10427} 10428 10429.mr-n-9, 10430.mx-n-9 { 10431 margin-right: 10rem !important; 10432} 10433 10434.mb-n-9, 10435.my-n-9 { 10436 margin-bottom: 10rem !important; 10437} 10438 10439.ml-n-9, 10440.mx-n-9 { 10441 margin-left: 10rem !important; 10442} 10443 10444.m-n-8 { 10445 margin: 8rem !important; 10446} 10447 10448.mt-n-8, 10449.my-n-8 { 10450 margin-top: 8rem !important; 10451} 10452 10453.mr-n-8, 10454.mx-n-8 { 10455 margin-right: 8rem !important; 10456} 10457 10458.mb-n-8, 10459.my-n-8 { 10460 margin-bottom: 8rem !important; 10461} 10462 10463.ml-n-8, 10464.mx-n-8 { 10465 margin-left: 8rem !important; 10466} 10467 10468.m-n-7 { 10469 margin: 6rem !important; 10470} 10471 10472.mt-n-7, 10473.my-n-7 { 10474 margin-top: 6rem !important; 10475} 10476 10477.mr-n-7, 10478.mx-n-7 { 10479 margin-right: 6rem !important; 10480} 10481 10482.mb-n-7, 10483.my-n-7 { 10484 margin-bottom: 6rem !important; 10485} 10486 10487.ml-n-7, 10488.mx-n-7 { 10489 margin-left: 6rem !important; 10490} 10491 10492.m-n-6 { 10493 margin: 4.5rem !important; 10494} 10495 10496.mt-n-6, 10497.my-n-6 { 10498 margin-top: 4.5rem !important; 10499} 10500 10501.mr-n-6, 10502.mx-n-6 { 10503 margin-right: 4.5rem !important; 10504} 10505 10506.mb-n-6, 10507.my-n-6 { 10508 margin-bottom: 4.5rem !important; 10509} 10510 10511.ml-n-6, 10512.mx-n-6 { 10513 margin-left: 4.5rem !important; 10514} 10515 10516.m-n-5 { 10517 margin: 3rem !important; 10518} 10519 10520.mt-n-5, 10521.my-n-5 { 10522 margin-top: 3rem !important; 10523} 10524 10525.mr-n-5, 10526.mx-n-5 { 10527 margin-right: 3rem !important; 10528} 10529 10530.mb-n-5, 10531.my-n-5 { 10532 margin-bottom: 3rem !important; 10533} 10534 10535.ml-n-5, 10536.mx-n-5 { 10537 margin-left: 3rem !important; 10538} 10539 10540.m-n-4 { 10541 margin: 1.5rem !important; 10542} 10543 10544.mt-n-4, 10545.my-n-4 { 10546 margin-top: 1.5rem !important; 10547} 10548 10549.mr-n-4, 10550.mx-n-4 { 10551 margin-right: 1.5rem !important; 10552} 10553 10554.mb-n-4, 10555.my-n-4 { 10556 margin-bottom: 1.5rem !important; 10557} 10558 10559.ml-n-4, 10560.mx-n-4 { 10561 margin-left: 1.5rem !important; 10562} 10563 10564.m-n-3 { 10565 margin: 1rem !important; 10566} 10567 10568.mt-n-3, 10569.my-n-3 { 10570 margin-top: 1rem !important; 10571} 10572 10573.mr-n-3, 10574.mx-n-3 { 10575 margin-right: 1rem !important; 10576} 10577 10578.mb-n-3, 10579.my-n-3 { 10580 margin-bottom: 1rem !important; 10581} 10582 10583.ml-n-3, 10584.mx-n-3 { 10585 margin-left: 1rem !important; 10586} 10587 10588.m-n-2 { 10589 margin: 0.5rem !important; 10590} 10591 10592.mt-n-2, 10593.my-n-2 { 10594 margin-top: 0.5rem !important; 10595} 10596 10597.mr-n-2, 10598.mx-n-2 { 10599 margin-right: 0.5rem !important; 10600} 10601 10602.mb-n-2, 10603.my-n-2 { 10604 margin-bottom: 0.5rem !important; 10605} 10606 10607.ml-n-2, 10608.mx-n-2 { 10609 margin-left: 0.5rem !important; 10610} 10611 10612.m-n-1 { 10613 margin: 0.25rem !important; 10614} 10615 10616.mt-n-1, 10617.my-n-1 { 10618 margin-top: 0.25rem !important; 10619} 10620 10621.mr-n-1, 10622.mx-n-1 { 10623 margin-right: 0.25rem !important; 10624} 10625 10626.mb-n-1, 10627.my-n-1 { 10628 margin-bottom: 0.25rem !important; 10629} 10630 10631.ml-n-1, 10632.mx-n-1 { 10633 margin-left: 0.25rem !important; 10634} 10635 10636.m-n6 { 10637 margin: -4.5rem !important; 10638} 10639 10640.mt-n6, 10641.my-n6 { 10642 margin-top: -4.5rem !important; 10643} 10644 10645.mr-n6, 10646.mx-n6 { 10647 margin-right: -4.5rem !important; 10648} 10649 10650.mb-n6, 10651.my-n6 { 10652 margin-bottom: -4.5rem !important; 10653} 10654 10655.ml-n6, 10656.mx-n6 { 10657 margin-left: -4.5rem !important; 10658} 10659 10660.m-n7 { 10661 margin: -6rem !important; 10662} 10663 10664.mt-n7, 10665.my-n7 { 10666 margin-top: -6rem !important; 10667} 10668 10669.mr-n7, 10670.mx-n7 { 10671 margin-right: -6rem !important; 10672} 10673 10674.mb-n7, 10675.my-n7 { 10676 margin-bottom: -6rem !important; 10677} 10678 10679.ml-n7, 10680.mx-n7 { 10681 margin-left: -6rem !important; 10682} 10683 10684.m-n8 { 10685 margin: -8rem !important; 10686} 10687 10688.mt-n8, 10689.my-n8 { 10690 margin-top: -8rem !important; 10691} 10692 10693.mr-n8, 10694.mx-n8 { 10695 margin-right: -8rem !important; 10696} 10697 10698.mb-n8, 10699.my-n8 { 10700 margin-bottom: -8rem !important; 10701} 10702 10703.ml-n8, 10704.mx-n8 { 10705 margin-left: -8rem !important; 10706} 10707 10708.m-n9 { 10709 margin: -10rem !important; 10710} 10711 10712.mt-n9, 10713.my-n9 { 10714 margin-top: -10rem !important; 10715} 10716 10717.mr-n9, 10718.mx-n9 { 10719 margin-right: -10rem !important; 10720} 10721 10722.mb-n9, 10723.my-n9 { 10724 margin-bottom: -10rem !important; 10725} 10726 10727.ml-n9, 10728.mx-n9 { 10729 margin-left: -10rem !important; 10730} 10731 10732.m-auto { 10733 margin: auto !important; 10734} 10735 10736.mt-auto, 10737.my-auto { 10738 margin-top: auto !important; 10739} 10740 10741.mr-auto, 10742.mx-auto { 10743 margin-right: auto !important; 10744} 10745 10746.mb-auto, 10747.my-auto { 10748 margin-bottom: auto !important; 10749} 10750 10751.ml-auto, 10752.mx-auto { 10753 margin-left: auto !important; 10754} 10755 10756@media (min-width: 576px) { 10757 .m-sm-0 { 10758 margin: 0 !important; 10759 } 10760 10761 .mt-sm-0, 10762.my-sm-0 { 10763 margin-top: 0 !important; 10764 } 10765 10766 .mr-sm-0, 10767.mx-sm-0 { 10768 margin-right: 0 !important; 10769 } 10770 10771 .mb-sm-0, 10772.my-sm-0 { 10773 margin-bottom: 0 !important; 10774 } 10775 10776 .ml-sm-0, 10777.mx-sm-0 { 10778 margin-left: 0 !important; 10779 } 10780 10781 .m-sm-1 { 10782 margin: 0.25rem !important; 10783 } 10784 10785 .mt-sm-1, 10786.my-sm-1 { 10787 margin-top: 0.25rem !important; 10788 } 10789 10790 .mr-sm-1, 10791.mx-sm-1 { 10792 margin-right: 0.25rem !important; 10793 } 10794 10795 .mb-sm-1, 10796.my-sm-1 { 10797 margin-bottom: 0.25rem !important; 10798 } 10799 10800 .ml-sm-1, 10801.mx-sm-1 { 10802 margin-left: 0.25rem !important; 10803 } 10804 10805 .m-sm-2 { 10806 margin: 0.5rem !important; 10807 } 10808 10809 .mt-sm-2, 10810.my-sm-2 { 10811 margin-top: 0.5rem !important; 10812 } 10813 10814 .mr-sm-2, 10815.mx-sm-2 { 10816 margin-right: 0.5rem !important; 10817 } 10818 10819 .mb-sm-2, 10820.my-sm-2 { 10821 margin-bottom: 0.5rem !important; 10822 } 10823 10824 .ml-sm-2, 10825.mx-sm-2 { 10826 margin-left: 0.5rem !important; 10827 } 10828 10829 .m-sm-3 { 10830 margin: 1rem !important; 10831 } 10832 10833 .mt-sm-3, 10834.my-sm-3 { 10835 margin-top: 1rem !important; 10836 } 10837 10838 .mr-sm-3, 10839.mx-sm-3 { 10840 margin-right: 1rem !important; 10841 } 10842 10843 .mb-sm-3, 10844.my-sm-3 { 10845 margin-bottom: 1rem !important; 10846 } 10847 10848 .ml-sm-3, 10849.mx-sm-3 { 10850 margin-left: 1rem !important; 10851 } 10852 10853 .m-sm-4 { 10854 margin: 1.5rem !important; 10855 } 10856 10857 .mt-sm-4, 10858.my-sm-4 { 10859 margin-top: 1.5rem !important; 10860 } 10861 10862 .mr-sm-4, 10863.mx-sm-4 { 10864 margin-right: 1.5rem !important; 10865 } 10866 10867 .mb-sm-4, 10868.my-sm-4 { 10869 margin-bottom: 1.5rem !important; 10870 } 10871 10872 .ml-sm-4, 10873.mx-sm-4 { 10874 margin-left: 1.5rem !important; 10875 } 10876 10877 .m-sm-5 { 10878 margin: 3rem !important; 10879 } 10880 10881 .mt-sm-5, 10882.my-sm-5 { 10883 margin-top: 3rem !important; 10884 } 10885 10886 .mr-sm-5, 10887.mx-sm-5 { 10888 margin-right: 3rem !important; 10889 } 10890 10891 .mb-sm-5, 10892.my-sm-5 { 10893 margin-bottom: 3rem !important; 10894 } 10895 10896 .ml-sm-5, 10897.mx-sm-5 { 10898 margin-left: 3rem !important; 10899 } 10900 10901 .m-sm--9 { 10902 margin: -10rem !important; 10903 } 10904 10905 .mt-sm--9, 10906.my-sm--9 { 10907 margin-top: -10rem !important; 10908 } 10909 10910 .mr-sm--9, 10911.mx-sm--9 { 10912 margin-right: -10rem !important; 10913 } 10914 10915 .mb-sm--9, 10916.my-sm--9 { 10917 margin-bottom: -10rem !important; 10918 } 10919 10920 .ml-sm--9, 10921.mx-sm--9 { 10922 margin-left: -10rem !important; 10923 } 10924 10925 .m-sm--8 { 10926 margin: -8rem !important; 10927 } 10928 10929 .mt-sm--8, 10930.my-sm--8 { 10931 margin-top: -8rem !important; 10932 } 10933 10934 .mr-sm--8, 10935.mx-sm--8 { 10936 margin-right: -8rem !important; 10937 } 10938 10939 .mb-sm--8, 10940.my-sm--8 { 10941 margin-bottom: -8rem !important; 10942 } 10943 10944 .ml-sm--8, 10945.mx-sm--8 { 10946 margin-left: -8rem !important; 10947 } 10948 10949 .m-sm--7 { 10950 margin: -6rem !important; 10951 } 10952 10953 .mt-sm--7, 10954.my-sm--7 { 10955 margin-top: -6rem !important; 10956 } 10957 10958 .mr-sm--7, 10959.mx-sm--7 { 10960 margin-right: -6rem !important; 10961 } 10962 10963 .mb-sm--7, 10964.my-sm--7 { 10965 margin-bottom: -6rem !important; 10966 } 10967 10968 .ml-sm--7, 10969.mx-sm--7 { 10970 margin-left: -6rem !important; 10971 } 10972 10973 .m-sm--6 { 10974 margin: -4.5rem !important; 10975 } 10976 10977 .mt-sm--6, 10978.my-sm--6 { 10979 margin-top: -4.5rem !important; 10980 } 10981 10982 .mr-sm--6, 10983.mx-sm--6 { 10984 margin-right: -4.5rem !important; 10985 } 10986 10987 .mb-sm--6, 10988.my-sm--6 { 10989 margin-bottom: -4.5rem !important; 10990 } 10991 10992 .ml-sm--6, 10993.mx-sm--6 { 10994 margin-left: -4.5rem !important; 10995 } 10996 10997 .m-sm--5 { 10998 margin: -3rem !important; 10999 } 11000 11001 .mt-sm--5, 11002.my-sm--5 { 11003 margin-top: -3rem !important; 11004 } 11005 11006 .mr-sm--5, 11007.mx-sm--5 { 11008 margin-right: -3rem !important; 11009 } 11010 11011 .mb-sm--5, 11012.my-sm--5 { 11013 margin-bottom: -3rem !important; 11014 } 11015 11016 .ml-sm--5, 11017.mx-sm--5 { 11018 margin-left: -3rem !important; 11019 } 11020 11021 .m-sm--4 { 11022 margin: -1.5rem !important; 11023 } 11024 11025 .mt-sm--4, 11026.my-sm--4 { 11027 margin-top: -1.5rem !important; 11028 } 11029 11030 .mr-sm--4, 11031.mx-sm--4 { 11032 margin-right: -1.5rem !important; 11033 } 11034 11035 .mb-sm--4, 11036.my-sm--4 { 11037 margin-bottom: -1.5rem !important; 11038 } 11039 11040 .ml-sm--4, 11041.mx-sm--4 { 11042 margin-left: -1.5rem !important; 11043 } 11044 11045 .m-sm--3 { 11046 margin: -1rem !important; 11047 } 11048 11049 .mt-sm--3, 11050.my-sm--3 { 11051 margin-top: -1rem !important; 11052 } 11053 11054 .mr-sm--3, 11055.mx-sm--3 { 11056 margin-right: -1rem !important; 11057 } 11058 11059 .mb-sm--3, 11060.my-sm--3 { 11061 margin-bottom: -1rem !important; 11062 } 11063 11064 .ml-sm--3, 11065.mx-sm--3 { 11066 margin-left: -1rem !important; 11067 } 11068 11069 .m-sm--2 { 11070 margin: -0.5rem !important; 11071 } 11072 11073 .mt-sm--2, 11074.my-sm--2 { 11075 margin-top: -0.5rem !important; 11076 } 11077 11078 .mr-sm--2, 11079.mx-sm--2 { 11080 margin-right: -0.5rem !important; 11081 } 11082 11083 .mb-sm--2, 11084.my-sm--2 { 11085 margin-bottom: -0.5rem !important; 11086 } 11087 11088 .ml-sm--2, 11089.mx-sm--2 { 11090 margin-left: -0.5rem !important; 11091 } 11092 11093 .m-sm--1 { 11094 margin: -0.25rem !important; 11095 } 11096 11097 .mt-sm--1, 11098.my-sm--1 { 11099 margin-top: -0.25rem !important; 11100 } 11101 11102 .mr-sm--1, 11103.mx-sm--1 { 11104 margin-right: -0.25rem !important; 11105 } 11106 11107 .mb-sm--1, 11108.my-sm--1 { 11109 margin-bottom: -0.25rem !important; 11110 } 11111 11112 .ml-sm--1, 11113.mx-sm--1 { 11114 margin-left: -0.25rem !important; 11115 } 11116 11117 .m-sm-6 { 11118 margin: 4.5rem !important; 11119 } 11120 11121 .mt-sm-6, 11122.my-sm-6 { 11123 margin-top: 4.5rem !important; 11124 } 11125 11126 .mr-sm-6, 11127.mx-sm-6 { 11128 margin-right: 4.5rem !important; 11129 } 11130 11131 .mb-sm-6, 11132.my-sm-6 { 11133 margin-bottom: 4.5rem !important; 11134 } 11135 11136 .ml-sm-6, 11137.mx-sm-6 { 11138 margin-left: 4.5rem !important; 11139 } 11140 11141 .m-sm-7 { 11142 margin: 6rem !important; 11143 } 11144 11145 .mt-sm-7, 11146.my-sm-7 { 11147 margin-top: 6rem !important; 11148 } 11149 11150 .mr-sm-7, 11151.mx-sm-7 { 11152 margin-right: 6rem !important; 11153 } 11154 11155 .mb-sm-7, 11156.my-sm-7 { 11157 margin-bottom: 6rem !important; 11158 } 11159 11160 .ml-sm-7, 11161.mx-sm-7 { 11162 margin-left: 6rem !important; 11163 } 11164 11165 .m-sm-8 { 11166 margin: 8rem !important; 11167 } 11168 11169 .mt-sm-8, 11170.my-sm-8 { 11171 margin-top: 8rem !important; 11172 } 11173 11174 .mr-sm-8, 11175.mx-sm-8 { 11176 margin-right: 8rem !important; 11177 } 11178 11179 .mb-sm-8, 11180.my-sm-8 { 11181 margin-bottom: 8rem !important; 11182 } 11183 11184 .ml-sm-8, 11185.mx-sm-8 { 11186 margin-left: 8rem !important; 11187 } 11188 11189 .m-sm-9 { 11190 margin: 10rem !important; 11191 } 11192 11193 .mt-sm-9, 11194.my-sm-9 { 11195 margin-top: 10rem !important; 11196 } 11197 11198 .mr-sm-9, 11199.mx-sm-9 { 11200 margin-right: 10rem !important; 11201 } 11202 11203 .mb-sm-9, 11204.my-sm-9 { 11205 margin-bottom: 10rem !important; 11206 } 11207 11208 .ml-sm-9, 11209.mx-sm-9 { 11210 margin-left: 10rem !important; 11211 } 11212 11213 .p-sm-0 { 11214 padding: 0 !important; 11215 } 11216 11217 .pt-sm-0, 11218.py-sm-0 { 11219 padding-top: 0 !important; 11220 } 11221 11222 .pr-sm-0, 11223.px-sm-0 { 11224 padding-right: 0 !important; 11225 } 11226 11227 .pb-sm-0, 11228.py-sm-0 { 11229 padding-bottom: 0 !important; 11230 } 11231 11232 .pl-sm-0, 11233.px-sm-0 { 11234 padding-left: 0 !important; 11235 } 11236 11237 .p-sm-1 { 11238 padding: 0.25rem !important; 11239 } 11240 11241 .pt-sm-1, 11242.py-sm-1 { 11243 padding-top: 0.25rem !important; 11244 } 11245 11246 .pr-sm-1, 11247.px-sm-1 { 11248 padding-right: 0.25rem !important; 11249 } 11250 11251 .pb-sm-1, 11252.py-sm-1 { 11253 padding-bottom: 0.25rem !important; 11254 } 11255 11256 .pl-sm-1, 11257.px-sm-1 { 11258 padding-left: 0.25rem !important; 11259 } 11260 11261 .p-sm-2 { 11262 padding: 0.5rem !important; 11263 } 11264 11265 .pt-sm-2, 11266.py-sm-2 { 11267 padding-top: 0.5rem !important; 11268 } 11269 11270 .pr-sm-2, 11271.px-sm-2 { 11272 padding-right: 0.5rem !important; 11273 } 11274 11275 .pb-sm-2, 11276.py-sm-2 { 11277 padding-bottom: 0.5rem !important; 11278 } 11279 11280 .pl-sm-2, 11281.px-sm-2 { 11282 padding-left: 0.5rem !important; 11283 } 11284 11285 .p-sm-3 { 11286 padding: 1rem !important; 11287 } 11288 11289 .pt-sm-3, 11290.py-sm-3 { 11291 padding-top: 1rem !important; 11292 } 11293 11294 .pr-sm-3, 11295.px-sm-3 { 11296 padding-right: 1rem !important; 11297 } 11298 11299 .pb-sm-3, 11300.py-sm-3 { 11301 padding-bottom: 1rem !important; 11302 } 11303 11304 .pl-sm-3, 11305.px-sm-3 { 11306 padding-left: 1rem !important; 11307 } 11308 11309 .p-sm-4 { 11310 padding: 1.5rem !important; 11311 } 11312 11313 .pt-sm-4, 11314.py-sm-4 { 11315 padding-top: 1.5rem !important; 11316 } 11317 11318 .pr-sm-4, 11319.px-sm-4 { 11320 padding-right: 1.5rem !important; 11321 } 11322 11323 .pb-sm-4, 11324.py-sm-4 { 11325 padding-bottom: 1.5rem !important; 11326 } 11327 11328 .pl-sm-4, 11329.px-sm-4 { 11330 padding-left: 1.5rem !important; 11331 } 11332 11333 .p-sm-5 { 11334 padding: 3rem !important; 11335 } 11336 11337 .pt-sm-5, 11338.py-sm-5 { 11339 padding-top: 3rem !important; 11340 } 11341 11342 .pr-sm-5, 11343.px-sm-5 { 11344 padding-right: 3rem !important; 11345 } 11346 11347 .pb-sm-5, 11348.py-sm-5 { 11349 padding-bottom: 3rem !important; 11350 } 11351 11352 .pl-sm-5, 11353.px-sm-5 { 11354 padding-left: 3rem !important; 11355 } 11356 11357 .p-sm--9 { 11358 padding: -10rem !important; 11359 } 11360 11361 .pt-sm--9, 11362.py-sm--9 { 11363 padding-top: -10rem !important; 11364 } 11365 11366 .pr-sm--9, 11367.px-sm--9 { 11368 padding-right: -10rem !important; 11369 } 11370 11371 .pb-sm--9, 11372.py-sm--9 { 11373 padding-bottom: -10rem !important; 11374 } 11375 11376 .pl-sm--9, 11377.px-sm--9 { 11378 padding-left: -10rem !important; 11379 } 11380 11381 .p-sm--8 { 11382 padding: -8rem !important; 11383 } 11384 11385 .pt-sm--8, 11386.py-sm--8 { 11387 padding-top: -8rem !important; 11388 } 11389 11390 .pr-sm--8, 11391.px-sm--8 { 11392 padding-right: -8rem !important; 11393 } 11394 11395 .pb-sm--8, 11396.py-sm--8 { 11397 padding-bottom: -8rem !important; 11398 } 11399 11400 .pl-sm--8, 11401.px-sm--8 { 11402 padding-left: -8rem !important; 11403 } 11404 11405 .p-sm--7 { 11406 padding: -6rem !important; 11407 } 11408 11409 .pt-sm--7, 11410.py-sm--7 { 11411 padding-top: -6rem !important; 11412 } 11413 11414 .pr-sm--7, 11415.px-sm--7 { 11416 padding-right: -6rem !important; 11417 } 11418 11419 .pb-sm--7, 11420.py-sm--7 { 11421 padding-bottom: -6rem !important; 11422 } 11423 11424 .pl-sm--7, 11425.px-sm--7 { 11426 padding-left: -6rem !important; 11427 } 11428 11429 .p-sm--6 { 11430 padding: -4.5rem !important; 11431 } 11432 11433 .pt-sm--6, 11434.py-sm--6 { 11435 padding-top: -4.5rem !important; 11436 } 11437 11438 .pr-sm--6, 11439.px-sm--6 { 11440 padding-right: -4.5rem !important; 11441 } 11442 11443 .pb-sm--6, 11444.py-sm--6 { 11445 padding-bottom: -4.5rem !important; 11446 } 11447 11448 .pl-sm--6, 11449.px-sm--6 { 11450 padding-left: -4.5rem !important; 11451 } 11452 11453 .p-sm--5 { 11454 padding: -3rem !important; 11455 } 11456 11457 .pt-sm--5, 11458.py-sm--5 { 11459 padding-top: -3rem !important; 11460 } 11461 11462 .pr-sm--5, 11463.px-sm--5 { 11464 padding-right: -3rem !important; 11465 } 11466 11467 .pb-sm--5, 11468.py-sm--5 { 11469 padding-bottom: -3rem !important; 11470 } 11471 11472 .pl-sm--5, 11473.px-sm--5 { 11474 padding-left: -3rem !important; 11475 } 11476 11477 .p-sm--4 { 11478 padding: -1.5rem !important; 11479 } 11480 11481 .pt-sm--4, 11482.py-sm--4 { 11483 padding-top: -1.5rem !important; 11484 } 11485 11486 .pr-sm--4, 11487.px-sm--4 { 11488 padding-right: -1.5rem !important; 11489 } 11490 11491 .pb-sm--4, 11492.py-sm--4 { 11493 padding-bottom: -1.5rem !important; 11494 } 11495 11496 .pl-sm--4, 11497.px-sm--4 { 11498 padding-left: -1.5rem !important; 11499 } 11500 11501 .p-sm--3 { 11502 padding: -1rem !important; 11503 } 11504 11505 .pt-sm--3, 11506.py-sm--3 { 11507 padding-top: -1rem !important; 11508 } 11509 11510 .pr-sm--3, 11511.px-sm--3 { 11512 padding-right: -1rem !important; 11513 } 11514 11515 .pb-sm--3, 11516.py-sm--3 { 11517 padding-bottom: -1rem !important; 11518 } 11519 11520 .pl-sm--3, 11521.px-sm--3 { 11522 padding-left: -1rem !important; 11523 } 11524 11525 .p-sm--2 { 11526 padding: -0.5rem !important; 11527 } 11528 11529 .pt-sm--2, 11530.py-sm--2 { 11531 padding-top: -0.5rem !important; 11532 } 11533 11534 .pr-sm--2, 11535.px-sm--2 { 11536 padding-right: -0.5rem !important; 11537 } 11538 11539 .pb-sm--2, 11540.py-sm--2 { 11541 padding-bottom: -0.5rem !important; 11542 } 11543 11544 .pl-sm--2, 11545.px-sm--2 { 11546 padding-left: -0.5rem !important; 11547 } 11548 11549 .p-sm--1 { 11550 padding: -0.25rem !important; 11551 } 11552 11553 .pt-sm--1, 11554.py-sm--1 { 11555 padding-top: -0.25rem !important; 11556 } 11557 11558 .pr-sm--1, 11559.px-sm--1 { 11560 padding-right: -0.25rem !important; 11561 } 11562 11563 .pb-sm--1, 11564.py-sm--1 { 11565 padding-bottom: -0.25rem !important; 11566 } 11567 11568 .pl-sm--1, 11569.px-sm--1 { 11570 padding-left: -0.25rem !important; 11571 } 11572 11573 .p-sm-6 { 11574 padding: 4.5rem !important; 11575 } 11576 11577 .pt-sm-6, 11578.py-sm-6 { 11579 padding-top: 4.5rem !important; 11580 } 11581 11582 .pr-sm-6, 11583.px-sm-6 { 11584 padding-right: 4.5rem !important; 11585 } 11586 11587 .pb-sm-6, 11588.py-sm-6 { 11589 padding-bottom: 4.5rem !important; 11590 } 11591 11592 .pl-sm-6, 11593.px-sm-6 { 11594 padding-left: 4.5rem !important; 11595 } 11596 11597 .p-sm-7 { 11598 padding: 6rem !important; 11599 } 11600 11601 .pt-sm-7, 11602.py-sm-7 { 11603 padding-top: 6rem !important; 11604 } 11605 11606 .pr-sm-7, 11607.px-sm-7 { 11608 padding-right: 6rem !important; 11609 } 11610 11611 .pb-sm-7, 11612.py-sm-7 { 11613 padding-bottom: 6rem !important; 11614 } 11615 11616 .pl-sm-7, 11617.px-sm-7 { 11618 padding-left: 6rem !important; 11619 } 11620 11621 .p-sm-8 { 11622 padding: 8rem !important; 11623 } 11624 11625 .pt-sm-8, 11626.py-sm-8 { 11627 padding-top: 8rem !important; 11628 } 11629 11630 .pr-sm-8, 11631.px-sm-8 { 11632 padding-right: 8rem !important; 11633 } 11634 11635 .pb-sm-8, 11636.py-sm-8 { 11637 padding-bottom: 8rem !important; 11638 } 11639 11640 .pl-sm-8, 11641.px-sm-8 { 11642 padding-left: 8rem !important; 11643 } 11644 11645 .p-sm-9 { 11646 padding: 10rem !important; 11647 } 11648 11649 .pt-sm-9, 11650.py-sm-9 { 11651 padding-top: 10rem !important; 11652 } 11653 11654 .pr-sm-9, 11655.px-sm-9 { 11656 padding-right: 10rem !important; 11657 } 11658 11659 .pb-sm-9, 11660.py-sm-9 { 11661 padding-bottom: 10rem !important; 11662 } 11663 11664 .pl-sm-9, 11665.px-sm-9 { 11666 padding-left: 10rem !important; 11667 } 11668 11669 .m-sm-n1 { 11670 margin: -0.25rem !important; 11671 } 11672 11673 .mt-sm-n1, 11674.my-sm-n1 { 11675 margin-top: -0.25rem !important; 11676 } 11677 11678 .mr-sm-n1, 11679.mx-sm-n1 { 11680 margin-right: -0.25rem !important; 11681 } 11682 11683 .mb-sm-n1, 11684.my-sm-n1 { 11685 margin-bottom: -0.25rem !important; 11686 } 11687 11688 .ml-sm-n1, 11689.mx-sm-n1 { 11690 margin-left: -0.25rem !important; 11691 } 11692 11693 .m-sm-n2 { 11694 margin: -0.5rem !important; 11695 } 11696 11697 .mt-sm-n2, 11698.my-sm-n2 { 11699 margin-top: -0.5rem !important; 11700 } 11701 11702 .mr-sm-n2, 11703.mx-sm-n2 { 11704 margin-right: -0.5rem !important; 11705 } 11706 11707 .mb-sm-n2, 11708.my-sm-n2 { 11709 margin-bottom: -0.5rem !important; 11710 } 11711 11712 .ml-sm-n2, 11713.mx-sm-n2 { 11714 margin-left: -0.5rem !important; 11715 } 11716 11717 .m-sm-n3 { 11718 margin: -1rem !important; 11719 } 11720 11721 .mt-sm-n3, 11722.my-sm-n3 { 11723 margin-top: -1rem !important; 11724 } 11725 11726 .mr-sm-n3, 11727.mx-sm-n3 { 11728 margin-right: -1rem !important; 11729 } 11730 11731 .mb-sm-n3, 11732.my-sm-n3 { 11733 margin-bottom: -1rem !important; 11734 } 11735 11736 .ml-sm-n3, 11737.mx-sm-n3 { 11738 margin-left: -1rem !important; 11739 } 11740 11741 .m-sm-n4 { 11742 margin: -1.5rem !important; 11743 } 11744 11745 .mt-sm-n4, 11746.my-sm-n4 { 11747 margin-top: -1.5rem !important; 11748 } 11749 11750 .mr-sm-n4, 11751.mx-sm-n4 { 11752 margin-right: -1.5rem !important; 11753 } 11754 11755 .mb-sm-n4, 11756.my-sm-n4 { 11757 margin-bottom: -1.5rem !important; 11758 } 11759 11760 .ml-sm-n4, 11761.mx-sm-n4 { 11762 margin-left: -1.5rem !important; 11763 } 11764 11765 .m-sm-n5 { 11766 margin: -3rem !important; 11767 } 11768 11769 .mt-sm-n5, 11770.my-sm-n5 { 11771 margin-top: -3rem !important; 11772 } 11773 11774 .mr-sm-n5, 11775.mx-sm-n5 { 11776 margin-right: -3rem !important; 11777 } 11778 11779 .mb-sm-n5, 11780.my-sm-n5 { 11781 margin-bottom: -3rem !important; 11782 } 11783 11784 .ml-sm-n5, 11785.mx-sm-n5 { 11786 margin-left: -3rem !important; 11787 } 11788 11789 .m-sm-n-9 { 11790 margin: 10rem !important; 11791 } 11792 11793 .mt-sm-n-9, 11794.my-sm-n-9 { 11795 margin-top: 10rem !important; 11796 } 11797 11798 .mr-sm-n-9, 11799.mx-sm-n-9 { 11800 margin-right: 10rem !important; 11801 } 11802 11803 .mb-sm-n-9, 11804.my-sm-n-9 { 11805 margin-bottom: 10rem !important; 11806 } 11807 11808 .ml-sm-n-9, 11809.mx-sm-n-9 { 11810 margin-left: 10rem !important; 11811 } 11812 11813 .m-sm-n-8 { 11814 margin: 8rem !important; 11815 } 11816 11817 .mt-sm-n-8, 11818.my-sm-n-8 { 11819 margin-top: 8rem !important; 11820 } 11821 11822 .mr-sm-n-8, 11823.mx-sm-n-8 { 11824 margin-right: 8rem !important; 11825 } 11826 11827 .mb-sm-n-8, 11828.my-sm-n-8 { 11829 margin-bottom: 8rem !important; 11830 } 11831 11832 .ml-sm-n-8, 11833.mx-sm-n-8 { 11834 margin-left: 8rem !important; 11835 } 11836 11837 .m-sm-n-7 { 11838 margin: 6rem !important; 11839 } 11840 11841 .mt-sm-n-7, 11842.my-sm-n-7 { 11843 margin-top: 6rem !important; 11844 } 11845 11846 .mr-sm-n-7, 11847.mx-sm-n-7 { 11848 margin-right: 6rem !important; 11849 } 11850 11851 .mb-sm-n-7, 11852.my-sm-n-7 { 11853 margin-bottom: 6rem !important; 11854 } 11855 11856 .ml-sm-n-7, 11857.mx-sm-n-7 { 11858 margin-left: 6rem !important; 11859 } 11860 11861 .m-sm-n-6 { 11862 margin: 4.5rem !important; 11863 } 11864 11865 .mt-sm-n-6, 11866.my-sm-n-6 { 11867 margin-top: 4.5rem !important; 11868 } 11869 11870 .mr-sm-n-6, 11871.mx-sm-n-6 { 11872 margin-right: 4.5rem !important; 11873 } 11874 11875 .mb-sm-n-6, 11876.my-sm-n-6 { 11877 margin-bottom: 4.5rem !important; 11878 } 11879 11880 .ml-sm-n-6, 11881.mx-sm-n-6 { 11882 margin-left: 4.5rem !important; 11883 } 11884 11885 .m-sm-n-5 { 11886 margin: 3rem !important; 11887 } 11888 11889 .mt-sm-n-5, 11890.my-sm-n-5 { 11891 margin-top: 3rem !important; 11892 } 11893 11894 .mr-sm-n-5, 11895.mx-sm-n-5 { 11896 margin-right: 3rem !important; 11897 } 11898 11899 .mb-sm-n-5, 11900.my-sm-n-5 { 11901 margin-bottom: 3rem !important; 11902 } 11903 11904 .ml-sm-n-5, 11905.mx-sm-n-5 { 11906 margin-left: 3rem !important; 11907 } 11908 11909 .m-sm-n-4 { 11910 margin: 1.5rem !important; 11911 } 11912 11913 .mt-sm-n-4, 11914.my-sm-n-4 { 11915 margin-top: 1.5rem !important; 11916 } 11917 11918 .mr-sm-n-4, 11919.mx-sm-n-4 { 11920 margin-right: 1.5rem !important; 11921 } 11922 11923 .mb-sm-n-4, 11924.my-sm-n-4 { 11925 margin-bottom: 1.5rem !important; 11926 } 11927 11928 .ml-sm-n-4, 11929.mx-sm-n-4 { 11930 margin-left: 1.5rem !important; 11931 } 11932 11933 .m-sm-n-3 { 11934 margin: 1rem !important; 11935 } 11936 11937 .mt-sm-n-3, 11938.my-sm-n-3 { 11939 margin-top: 1rem !important; 11940 } 11941 11942 .mr-sm-n-3, 11943.mx-sm-n-3 { 11944 margin-right: 1rem !important; 11945 } 11946 11947 .mb-sm-n-3, 11948.my-sm-n-3 { 11949 margin-bottom: 1rem !important; 11950 } 11951 11952 .ml-sm-n-3, 11953.mx-sm-n-3 { 11954 margin-left: 1rem !important; 11955 } 11956 11957 .m-sm-n-2 { 11958 margin: 0.5rem !important; 11959 } 11960 11961 .mt-sm-n-2, 11962.my-sm-n-2 { 11963 margin-top: 0.5rem !important; 11964 } 11965 11966 .mr-sm-n-2, 11967.mx-sm-n-2 { 11968 margin-right: 0.5rem !important; 11969 } 11970 11971 .mb-sm-n-2, 11972.my-sm-n-2 { 11973 margin-bottom: 0.5rem !important; 11974 } 11975 11976 .ml-sm-n-2, 11977.mx-sm-n-2 { 11978 margin-left: 0.5rem !important; 11979 } 11980 11981 .m-sm-n-1 { 11982 margin: 0.25rem !important; 11983 } 11984 11985 .mt-sm-n-1, 11986.my-sm-n-1 { 11987 margin-top: 0.25rem !important; 11988 } 11989 11990 .mr-sm-n-1, 11991.mx-sm-n-1 { 11992 margin-right: 0.25rem !important; 11993 } 11994 11995 .mb-sm-n-1, 11996.my-sm-n-1 { 11997 margin-bottom: 0.25rem !important; 11998 } 11999 12000 .ml-sm-n-1, 12001.mx-sm-n-1 { 12002 margin-left: 0.25rem !important; 12003 } 12004 12005 .m-sm-n6 { 12006 margin: -4.5rem !important; 12007 } 12008 12009 .mt-sm-n6, 12010.my-sm-n6 { 12011 margin-top: -4.5rem !important; 12012 } 12013 12014 .mr-sm-n6, 12015.mx-sm-n6 { 12016 margin-right: -4.5rem !important; 12017 } 12018 12019 .mb-sm-n6, 12020.my-sm-n6 { 12021 margin-bottom: -4.5rem !important; 12022 } 12023 12024 .ml-sm-n6, 12025.mx-sm-n6 { 12026 margin-left: -4.5rem !important; 12027 } 12028 12029 .m-sm-n7 { 12030 margin: -6rem !important; 12031 } 12032 12033 .mt-sm-n7, 12034.my-sm-n7 { 12035 margin-top: -6rem !important; 12036 } 12037 12038 .mr-sm-n7, 12039.mx-sm-n7 { 12040 margin-right: -6rem !important; 12041 } 12042 12043 .mb-sm-n7, 12044.my-sm-n7 { 12045 margin-bottom: -6rem !important; 12046 } 12047 12048 .ml-sm-n7, 12049.mx-sm-n7 { 12050 margin-left: -6rem !important; 12051 } 12052 12053 .m-sm-n8 { 12054 margin: -8rem !important; 12055 } 12056 12057 .mt-sm-n8, 12058.my-sm-n8 { 12059 margin-top: -8rem !important; 12060 } 12061 12062 .mr-sm-n8, 12063.mx-sm-n8 { 12064 margin-right: -8rem !important; 12065 } 12066 12067 .mb-sm-n8, 12068.my-sm-n8 { 12069 margin-bottom: -8rem !important; 12070 } 12071 12072 .ml-sm-n8, 12073.mx-sm-n8 { 12074 margin-left: -8rem !important; 12075 } 12076 12077 .m-sm-n9 { 12078 margin: -10rem !important; 12079 } 12080 12081 .mt-sm-n9, 12082.my-sm-n9 { 12083 margin-top: -10rem !important; 12084 } 12085 12086 .mr-sm-n9, 12087.mx-sm-n9 { 12088 margin-right: -10rem !important; 12089 } 12090 12091 .mb-sm-n9, 12092.my-sm-n9 { 12093 margin-bottom: -10rem !important; 12094 } 12095 12096 .ml-sm-n9, 12097.mx-sm-n9 { 12098 margin-left: -10rem !important; 12099 } 12100 12101 .m-sm-auto { 12102 margin: auto !important; 12103 } 12104 12105 .mt-sm-auto, 12106.my-sm-auto { 12107 margin-top: auto !important; 12108 } 12109 12110 .mr-sm-auto, 12111.mx-sm-auto { 12112 margin-right: auto !important; 12113 } 12114 12115 .mb-sm-auto, 12116.my-sm-auto { 12117 margin-bottom: auto !important; 12118 } 12119 12120 .ml-sm-auto, 12121.mx-sm-auto { 12122 margin-left: auto !important; 12123 } 12124} 12125@media (min-width: 768px) { 12126 .m-md-0 { 12127 margin: 0 !important; 12128 } 12129 12130 .mt-md-0, 12131.my-md-0 { 12132 margin-top: 0 !important; 12133 } 12134 12135 .mr-md-0, 12136.mx-md-0 { 12137 margin-right: 0 !important; 12138 } 12139 12140 .mb-md-0, 12141.my-md-0 { 12142 margin-bottom: 0 !important; 12143 } 12144 12145 .ml-md-0, 12146.mx-md-0 { 12147 margin-left: 0 !important; 12148 } 12149 12150 .m-md-1 { 12151 margin: 0.25rem !important; 12152 } 12153 12154 .mt-md-1, 12155.my-md-1 { 12156 margin-top: 0.25rem !important; 12157 } 12158 12159 .mr-md-1, 12160.mx-md-1 { 12161 margin-right: 0.25rem !important; 12162 } 12163 12164 .mb-md-1, 12165.my-md-1 { 12166 margin-bottom: 0.25rem !important; 12167 } 12168 12169 .ml-md-1, 12170.mx-md-1 { 12171 margin-left: 0.25rem !important; 12172 } 12173 12174 .m-md-2 { 12175 margin: 0.5rem !important; 12176 } 12177 12178 .mt-md-2, 12179.my-md-2 { 12180 margin-top: 0.5rem !important; 12181 } 12182 12183 .mr-md-2, 12184.mx-md-2 { 12185 margin-right: 0.5rem !important; 12186 } 12187 12188 .mb-md-2, 12189.my-md-2 { 12190 margin-bottom: 0.5rem !important; 12191 } 12192 12193 .ml-md-2, 12194.mx-md-2 { 12195 margin-left: 0.5rem !important; 12196 } 12197 12198 .m-md-3 { 12199 margin: 1rem !important; 12200 } 12201 12202 .mt-md-3, 12203.my-md-3 { 12204 margin-top: 1rem !important; 12205 } 12206 12207 .mr-md-3, 12208.mx-md-3 { 12209 margin-right: 1rem !important; 12210 } 12211 12212 .mb-md-3, 12213.my-md-3 { 12214 margin-bottom: 1rem !important; 12215 } 12216 12217 .ml-md-3, 12218.mx-md-3 { 12219 margin-left: 1rem !important; 12220 } 12221 12222 .m-md-4 { 12223 margin: 1.5rem !important; 12224 } 12225 12226 .mt-md-4, 12227.my-md-4 { 12228 margin-top: 1.5rem !important; 12229 } 12230 12231 .mr-md-4, 12232.mx-md-4 { 12233 margin-right: 1.5rem !important; 12234 } 12235 12236 .mb-md-4, 12237.my-md-4 { 12238 margin-bottom: 1.5rem !important; 12239 } 12240 12241 .ml-md-4, 12242.mx-md-4 { 12243 margin-left: 1.5rem !important; 12244 } 12245 12246 .m-md-5 { 12247 margin: 3rem !important; 12248 } 12249 12250 .mt-md-5, 12251.my-md-5 { 12252 margin-top: 3rem !important; 12253 } 12254 12255 .mr-md-5, 12256.mx-md-5 { 12257 margin-right: 3rem !important; 12258 } 12259 12260 .mb-md-5, 12261.my-md-5 { 12262 margin-bottom: 3rem !important; 12263 } 12264 12265 .ml-md-5, 12266.mx-md-5 { 12267 margin-left: 3rem !important; 12268 } 12269 12270 .m-md--9 { 12271 margin: -10rem !important; 12272 } 12273 12274 .mt-md--9, 12275.my-md--9 { 12276 margin-top: -10rem !important; 12277 } 12278 12279 .mr-md--9, 12280.mx-md--9 { 12281 margin-right: -10rem !important; 12282 } 12283 12284 .mb-md--9, 12285.my-md--9 { 12286 margin-bottom: -10rem !important; 12287 } 12288 12289 .ml-md--9, 12290.mx-md--9 { 12291 margin-left: -10rem !important; 12292 } 12293 12294 .m-md--8 { 12295 margin: -8rem !important; 12296 } 12297 12298 .mt-md--8, 12299.my-md--8 { 12300 margin-top: -8rem !important; 12301 } 12302 12303 .mr-md--8, 12304.mx-md--8 { 12305 margin-right: -8rem !important; 12306 } 12307 12308 .mb-md--8, 12309.my-md--8 { 12310 margin-bottom: -8rem !important; 12311 } 12312 12313 .ml-md--8, 12314.mx-md--8 { 12315 margin-left: -8rem !important; 12316 } 12317 12318 .m-md--7 { 12319 margin: -6rem !important; 12320 } 12321 12322 .mt-md--7, 12323.my-md--7 { 12324 margin-top: -6rem !important; 12325 } 12326 12327 .mr-md--7, 12328.mx-md--7 { 12329 margin-right: -6rem !important; 12330 } 12331 12332 .mb-md--7, 12333.my-md--7 { 12334 margin-bottom: -6rem !important; 12335 } 12336 12337 .ml-md--7, 12338.mx-md--7 { 12339 margin-left: -6rem !important; 12340 } 12341 12342 .m-md--6 { 12343 margin: -4.5rem !important; 12344 } 12345 12346 .mt-md--6, 12347.my-md--6 { 12348 margin-top: -4.5rem !important; 12349 } 12350 12351 .mr-md--6, 12352.mx-md--6 { 12353 margin-right: -4.5rem !important; 12354 } 12355 12356 .mb-md--6, 12357.my-md--6 { 12358 margin-bottom: -4.5rem !important; 12359 } 12360 12361 .ml-md--6, 12362.mx-md--6 { 12363 margin-left: -4.5rem !important; 12364 } 12365 12366 .m-md--5 { 12367 margin: -3rem !important; 12368 } 12369 12370 .mt-md--5, 12371.my-md--5 { 12372 margin-top: -3rem !important; 12373 } 12374 12375 .mr-md--5, 12376.mx-md--5 { 12377 margin-right: -3rem !important; 12378 } 12379 12380 .mb-md--5, 12381.my-md--5 { 12382 margin-bottom: -3rem !important; 12383 } 12384 12385 .ml-md--5, 12386.mx-md--5 { 12387 margin-left: -3rem !important; 12388 } 12389 12390 .m-md--4 { 12391 margin: -1.5rem !important; 12392 } 12393 12394 .mt-md--4, 12395.my-md--4 { 12396 margin-top: -1.5rem !important; 12397 } 12398 12399 .mr-md--4, 12400.mx-md--4 { 12401 margin-right: -1.5rem !important; 12402 } 12403 12404 .mb-md--4, 12405.my-md--4 { 12406 margin-bottom: -1.5rem !important; 12407 } 12408 12409 .ml-md--4, 12410.mx-md--4 { 12411 margin-left: -1.5rem !important; 12412 } 12413 12414 .m-md--3 { 12415 margin: -1rem !important; 12416 } 12417 12418 .mt-md--3, 12419.my-md--3 { 12420 margin-top: -1rem !important; 12421 } 12422 12423 .mr-md--3, 12424.mx-md--3 { 12425 margin-right: -1rem !important; 12426 } 12427 12428 .mb-md--3, 12429.my-md--3 { 12430 margin-bottom: -1rem !important; 12431 } 12432 12433 .ml-md--3, 12434.mx-md--3 { 12435 margin-left: -1rem !important; 12436 } 12437 12438 .m-md--2 { 12439 margin: -0.5rem !important; 12440 } 12441 12442 .mt-md--2, 12443.my-md--2 { 12444 margin-top: -0.5rem !important; 12445 } 12446 12447 .mr-md--2, 12448.mx-md--2 { 12449 margin-right: -0.5rem !important; 12450 } 12451 12452 .mb-md--2, 12453.my-md--2 { 12454 margin-bottom: -0.5rem !important; 12455 } 12456 12457 .ml-md--2, 12458.mx-md--2 { 12459 margin-left: -0.5rem !important; 12460 } 12461 12462 .m-md--1 { 12463 margin: -0.25rem !important; 12464 } 12465 12466 .mt-md--1, 12467.my-md--1 { 12468 margin-top: -0.25rem !important; 12469 } 12470 12471 .mr-md--1, 12472.mx-md--1 { 12473 margin-right: -0.25rem !important; 12474 } 12475 12476 .mb-md--1, 12477.my-md--1 { 12478 margin-bottom: -0.25rem !important; 12479 } 12480 12481 .ml-md--1, 12482.mx-md--1 { 12483 margin-left: -0.25rem !important; 12484 } 12485 12486 .m-md-6 { 12487 margin: 4.5rem !important; 12488 } 12489 12490 .mt-md-6, 12491.my-md-6 { 12492 margin-top: 4.5rem !important; 12493 } 12494 12495 .mr-md-6, 12496.mx-md-6 { 12497 margin-right: 4.5rem !important; 12498 } 12499 12500 .mb-md-6, 12501.my-md-6 { 12502 margin-bottom: 4.5rem !important; 12503 } 12504 12505 .ml-md-6, 12506.mx-md-6 { 12507 margin-left: 4.5rem !important; 12508 } 12509 12510 .m-md-7 { 12511 margin: 6rem !important; 12512 } 12513 12514 .mt-md-7, 12515.my-md-7 { 12516 margin-top: 6rem !important; 12517 } 12518 12519 .mr-md-7, 12520.mx-md-7 { 12521 margin-right: 6rem !important; 12522 } 12523 12524 .mb-md-7, 12525.my-md-7 { 12526 margin-bottom: 6rem !important; 12527 } 12528 12529 .ml-md-7, 12530.mx-md-7 { 12531 margin-left: 6rem !important; 12532 } 12533 12534 .m-md-8 { 12535 margin: 8rem !important; 12536 } 12537 12538 .mt-md-8, 12539.my-md-8 { 12540 margin-top: 8rem !important; 12541 } 12542 12543 .mr-md-8, 12544.mx-md-8 { 12545 margin-right: 8rem !important; 12546 } 12547 12548 .mb-md-8, 12549.my-md-8 { 12550 margin-bottom: 8rem !important; 12551 } 12552 12553 .ml-md-8, 12554.mx-md-8 { 12555 margin-left: 8rem !important; 12556 } 12557 12558 .m-md-9 { 12559 margin: 10rem !important; 12560 } 12561 12562 .mt-md-9, 12563.my-md-9 { 12564 margin-top: 10rem !important; 12565 } 12566 12567 .mr-md-9, 12568.mx-md-9 { 12569 margin-right: 10rem !important; 12570 } 12571 12572 .mb-md-9, 12573.my-md-9 { 12574 margin-bottom: 10rem !important; 12575 } 12576 12577 .ml-md-9, 12578.mx-md-9 { 12579 margin-left: 10rem !important; 12580 } 12581 12582 .p-md-0 { 12583 padding: 0 !important; 12584 } 12585 12586 .pt-md-0, 12587.py-md-0 { 12588 padding-top: 0 !important; 12589 } 12590 12591 .pr-md-0, 12592.px-md-0 { 12593 padding-right: 0 !important; 12594 } 12595 12596 .pb-md-0, 12597.py-md-0 { 12598 padding-bottom: 0 !important; 12599 } 12600 12601 .pl-md-0, 12602.px-md-0 { 12603 padding-left: 0 !important; 12604 } 12605 12606 .p-md-1 { 12607 padding: 0.25rem !important; 12608 } 12609 12610 .pt-md-1, 12611.py-md-1 { 12612 padding-top: 0.25rem !important; 12613 } 12614 12615 .pr-md-1, 12616.px-md-1 { 12617 padding-right: 0.25rem !important; 12618 } 12619 12620 .pb-md-1, 12621.py-md-1 { 12622 padding-bottom: 0.25rem !important; 12623 } 12624 12625 .pl-md-1, 12626.px-md-1 { 12627 padding-left: 0.25rem !important; 12628 } 12629 12630 .p-md-2 { 12631 padding: 0.5rem !important; 12632 } 12633 12634 .pt-md-2, 12635.py-md-2 { 12636 padding-top: 0.5rem !important; 12637 } 12638 12639 .pr-md-2, 12640.px-md-2 { 12641 padding-right: 0.5rem !important; 12642 } 12643 12644 .pb-md-2, 12645.py-md-2 { 12646 padding-bottom: 0.5rem !important; 12647 } 12648 12649 .pl-md-2, 12650.px-md-2 { 12651 padding-left: 0.5rem !important; 12652 } 12653 12654 .p-md-3 { 12655 padding: 1rem !important; 12656 } 12657 12658 .pt-md-3, 12659.py-md-3 { 12660 padding-top: 1rem !important; 12661 } 12662 12663 .pr-md-3, 12664.px-md-3 { 12665 padding-right: 1rem !important; 12666 } 12667 12668 .pb-md-3, 12669.py-md-3 { 12670 padding-bottom: 1rem !important; 12671 } 12672 12673 .pl-md-3, 12674.px-md-3 { 12675 padding-left: 1rem !important; 12676 } 12677 12678 .p-md-4 { 12679 padding: 1.5rem !important; 12680 } 12681 12682 .pt-md-4, 12683.py-md-4 { 12684 padding-top: 1.5rem !important; 12685 } 12686 12687 .pr-md-4, 12688.px-md-4 { 12689 padding-right: 1.5rem !important; 12690 } 12691 12692 .pb-md-4, 12693.py-md-4 { 12694 padding-bottom: 1.5rem !important; 12695 } 12696 12697 .pl-md-4, 12698.px-md-4 { 12699 padding-left: 1.5rem !important; 12700 } 12701 12702 .p-md-5 { 12703 padding: 3rem !important; 12704 } 12705 12706 .pt-md-5, 12707.py-md-5 { 12708 padding-top: 3rem !important; 12709 } 12710 12711 .pr-md-5, 12712.px-md-5 { 12713 padding-right: 3rem !important; 12714 } 12715 12716 .pb-md-5, 12717.py-md-5 { 12718 padding-bottom: 3rem !important; 12719 } 12720 12721 .pl-md-5, 12722.px-md-5 { 12723 padding-left: 3rem !important; 12724 } 12725 12726 .p-md--9 { 12727 padding: -10rem !important; 12728 } 12729 12730 .pt-md--9, 12731.py-md--9 { 12732 padding-top: -10rem !important; 12733 } 12734 12735 .pr-md--9, 12736.px-md--9 { 12737 padding-right: -10rem !important; 12738 } 12739 12740 .pb-md--9, 12741.py-md--9 { 12742 padding-bottom: -10rem !important; 12743 } 12744 12745 .pl-md--9, 12746.px-md--9 { 12747 padding-left: -10rem !important; 12748 } 12749 12750 .p-md--8 { 12751 padding: -8rem !important; 12752 } 12753 12754 .pt-md--8, 12755.py-md--8 { 12756 padding-top: -8rem !important; 12757 } 12758 12759 .pr-md--8, 12760.px-md--8 { 12761 padding-right: -8rem !important; 12762 } 12763 12764 .pb-md--8, 12765.py-md--8 { 12766 padding-bottom: -8rem !important; 12767 } 12768 12769 .pl-md--8, 12770.px-md--8 { 12771 padding-left: -8rem !important; 12772 } 12773 12774 .p-md--7 { 12775 padding: -6rem !important; 12776 } 12777 12778 .pt-md--7, 12779.py-md--7 { 12780 padding-top: -6rem !important; 12781 } 12782 12783 .pr-md--7, 12784.px-md--7 { 12785 padding-right: -6rem !important; 12786 } 12787 12788 .pb-md--7, 12789.py-md--7 { 12790 padding-bottom: -6rem !important; 12791 } 12792 12793 .pl-md--7, 12794.px-md--7 { 12795 padding-left: -6rem !important; 12796 } 12797 12798 .p-md--6 { 12799 padding: -4.5rem !important; 12800 } 12801 12802 .pt-md--6, 12803.py-md--6 { 12804 padding-top: -4.5rem !important; 12805 } 12806 12807 .pr-md--6, 12808.px-md--6 { 12809 padding-right: -4.5rem !important; 12810 } 12811 12812 .pb-md--6, 12813.py-md--6 { 12814 padding-bottom: -4.5rem !important; 12815 } 12816 12817 .pl-md--6, 12818.px-md--6 { 12819 padding-left: -4.5rem !important; 12820 } 12821 12822 .p-md--5 { 12823 padding: -3rem !important; 12824 } 12825 12826 .pt-md--5, 12827.py-md--5 { 12828 padding-top: -3rem !important; 12829 } 12830 12831 .pr-md--5, 12832.px-md--5 { 12833 padding-right: -3rem !important; 12834 } 12835 12836 .pb-md--5, 12837.py-md--5 { 12838 padding-bottom: -3rem !important; 12839 } 12840 12841 .pl-md--5, 12842.px-md--5 { 12843 padding-left: -3rem !important; 12844 } 12845 12846 .p-md--4 { 12847 padding: -1.5rem !important; 12848 } 12849 12850 .pt-md--4, 12851.py-md--4 { 12852 padding-top: -1.5rem !important; 12853 } 12854 12855 .pr-md--4, 12856.px-md--4 { 12857 padding-right: -1.5rem !important; 12858 } 12859 12860 .pb-md--4, 12861.py-md--4 { 12862 padding-bottom: -1.5rem !important; 12863 } 12864 12865 .pl-md--4, 12866.px-md--4 { 12867 padding-left: -1.5rem !important; 12868 } 12869 12870 .p-md--3 { 12871 padding: -1rem !important; 12872 } 12873 12874 .pt-md--3, 12875.py-md--3 { 12876 padding-top: -1rem !important; 12877 } 12878 12879 .pr-md--3, 12880.px-md--3 { 12881 padding-right: -1rem !important; 12882 } 12883 12884 .pb-md--3, 12885.py-md--3 { 12886 padding-bottom: -1rem !important; 12887 } 12888 12889 .pl-md--3, 12890.px-md--3 { 12891 padding-left: -1rem !important; 12892 } 12893 12894 .p-md--2 { 12895 padding: -0.5rem !important; 12896 } 12897 12898 .pt-md--2, 12899.py-md--2 { 12900 padding-top: -0.5rem !important; 12901 } 12902 12903 .pr-md--2, 12904.px-md--2 { 12905 padding-right: -0.5rem !important; 12906 } 12907 12908 .pb-md--2, 12909.py-md--2 { 12910 padding-bottom: -0.5rem !important; 12911 } 12912 12913 .pl-md--2, 12914.px-md--2 { 12915 padding-left: -0.5rem !important; 12916 } 12917 12918 .p-md--1 { 12919 padding: -0.25rem !important; 12920 } 12921 12922 .pt-md--1, 12923.py-md--1 { 12924 padding-top: -0.25rem !important; 12925 } 12926 12927 .pr-md--1, 12928.px-md--1 { 12929 padding-right: -0.25rem !important; 12930 } 12931 12932 .pb-md--1, 12933.py-md--1 { 12934 padding-bottom: -0.25rem !important; 12935 } 12936 12937 .pl-md--1, 12938.px-md--1 { 12939 padding-left: -0.25rem !important; 12940 } 12941 12942 .p-md-6 { 12943 padding: 4.5rem !important; 12944 } 12945 12946 .pt-md-6, 12947.py-md-6 { 12948 padding-top: 4.5rem !important; 12949 } 12950 12951 .pr-md-6, 12952.px-md-6 { 12953 padding-right: 4.5rem !important; 12954 } 12955 12956 .pb-md-6, 12957.py-md-6 { 12958 padding-bottom: 4.5rem !important; 12959 } 12960 12961 .pl-md-6, 12962.px-md-6 { 12963 padding-left: 4.5rem !important; 12964 } 12965 12966 .p-md-7 { 12967 padding: 6rem !important; 12968 } 12969 12970 .pt-md-7, 12971.py-md-7 { 12972 padding-top: 6rem !important; 12973 } 12974 12975 .pr-md-7, 12976.px-md-7 { 12977 padding-right: 6rem !important; 12978 } 12979 12980 .pb-md-7, 12981.py-md-7 { 12982 padding-bottom: 6rem !important; 12983 } 12984 12985 .pl-md-7, 12986.px-md-7 { 12987 padding-left: 6rem !important; 12988 } 12989 12990 .p-md-8 { 12991 padding: 8rem !important; 12992 } 12993 12994 .pt-md-8, 12995.py-md-8 { 12996 padding-top: 8rem !important; 12997 } 12998 12999 .pr-md-8, 13000.px-md-8 { 13001 padding-right: 8rem !important; 13002 } 13003 13004 .pb-md-8, 13005.py-md-8 { 13006 padding-bottom: 8rem !important; 13007 } 13008 13009 .pl-md-8, 13010.px-md-8 { 13011 padding-left: 8rem !important; 13012 } 13013 13014 .p-md-9 { 13015 padding: 10rem !important; 13016 } 13017 13018 .pt-md-9, 13019.py-md-9 { 13020 padding-top: 10rem !important; 13021 } 13022 13023 .pr-md-9, 13024.px-md-9 { 13025 padding-right: 10rem !important; 13026 } 13027 13028 .pb-md-9, 13029.py-md-9 { 13030 padding-bottom: 10rem !important; 13031 } 13032 13033 .pl-md-9, 13034.px-md-9 { 13035 padding-left: 10rem !important; 13036 } 13037 13038 .m-md-n1 { 13039 margin: -0.25rem !important; 13040 } 13041 13042 .mt-md-n1, 13043.my-md-n1 { 13044 margin-top: -0.25rem !important; 13045 } 13046 13047 .mr-md-n1, 13048.mx-md-n1 { 13049 margin-right: -0.25rem !important; 13050 } 13051 13052 .mb-md-n1, 13053.my-md-n1 { 13054 margin-bottom: -0.25rem !important; 13055 } 13056 13057 .ml-md-n1, 13058.mx-md-n1 { 13059 margin-left: -0.25rem !important; 13060 } 13061 13062 .m-md-n2 { 13063 margin: -0.5rem !important; 13064 } 13065 13066 .mt-md-n2, 13067.my-md-n2 { 13068 margin-top: -0.5rem !important; 13069 } 13070 13071 .mr-md-n2, 13072.mx-md-n2 { 13073 margin-right: -0.5rem !important; 13074 } 13075 13076 .mb-md-n2, 13077.my-md-n2 { 13078 margin-bottom: -0.5rem !important; 13079 } 13080 13081 .ml-md-n2, 13082.mx-md-n2 { 13083 margin-left: -0.5rem !important; 13084 } 13085 13086 .m-md-n3 { 13087 margin: -1rem !important; 13088 } 13089 13090 .mt-md-n3, 13091.my-md-n3 { 13092 margin-top: -1rem !important; 13093 } 13094 13095 .mr-md-n3, 13096.mx-md-n3 { 13097 margin-right: -1rem !important; 13098 } 13099 13100 .mb-md-n3, 13101.my-md-n3 { 13102 margin-bottom: -1rem !important; 13103 } 13104 13105 .ml-md-n3, 13106.mx-md-n3 { 13107 margin-left: -1rem !important; 13108 } 13109 13110 .m-md-n4 { 13111 margin: -1.5rem !important; 13112 } 13113 13114 .mt-md-n4, 13115.my-md-n4 { 13116 margin-top: -1.5rem !important; 13117 } 13118 13119 .mr-md-n4, 13120.mx-md-n4 { 13121 margin-right: -1.5rem !important; 13122 } 13123 13124 .mb-md-n4, 13125.my-md-n4 { 13126 margin-bottom: -1.5rem !important; 13127 } 13128 13129 .ml-md-n4, 13130.mx-md-n4 { 13131 margin-left: -1.5rem !important; 13132 } 13133 13134 .m-md-n5 { 13135 margin: -3rem !important; 13136 } 13137 13138 .mt-md-n5, 13139.my-md-n5 { 13140 margin-top: -3rem !important; 13141 } 13142 13143 .mr-md-n5, 13144.mx-md-n5 { 13145 margin-right: -3rem !important; 13146 } 13147 13148 .mb-md-n5, 13149.my-md-n5 { 13150 margin-bottom: -3rem !important; 13151 } 13152 13153 .ml-md-n5, 13154.mx-md-n5 { 13155 margin-left: -3rem !important; 13156 } 13157 13158 .m-md-n-9 { 13159 margin: 10rem !important; 13160 } 13161 13162 .mt-md-n-9, 13163.my-md-n-9 { 13164 margin-top: 10rem !important; 13165 } 13166 13167 .mr-md-n-9, 13168.mx-md-n-9 { 13169 margin-right: 10rem !important; 13170 } 13171 13172 .mb-md-n-9, 13173.my-md-n-9 { 13174 margin-bottom: 10rem !important; 13175 } 13176 13177 .ml-md-n-9, 13178.mx-md-n-9 { 13179 margin-left: 10rem !important; 13180 } 13181 13182 .m-md-n-8 { 13183 margin: 8rem !important; 13184 } 13185 13186 .mt-md-n-8, 13187.my-md-n-8 { 13188 margin-top: 8rem !important; 13189 } 13190 13191 .mr-md-n-8, 13192.mx-md-n-8 { 13193 margin-right: 8rem !important; 13194 } 13195 13196 .mb-md-n-8, 13197.my-md-n-8 { 13198 margin-bottom: 8rem !important; 13199 } 13200 13201 .ml-md-n-8, 13202.mx-md-n-8 { 13203 margin-left: 8rem !important; 13204 } 13205 13206 .m-md-n-7 { 13207 margin: 6rem !important; 13208 } 13209 13210 .mt-md-n-7, 13211.my-md-n-7 { 13212 margin-top: 6rem !important; 13213 } 13214 13215 .mr-md-n-7, 13216.mx-md-n-7 { 13217 margin-right: 6rem !important; 13218 } 13219 13220 .mb-md-n-7, 13221.my-md-n-7 { 13222 margin-bottom: 6rem !important; 13223 } 13224 13225 .ml-md-n-7, 13226.mx-md-n-7 { 13227 margin-left: 6rem !important; 13228 } 13229 13230 .m-md-n-6 { 13231 margin: 4.5rem !important; 13232 } 13233 13234 .mt-md-n-6, 13235.my-md-n-6 { 13236 margin-top: 4.5rem !important; 13237 } 13238 13239 .mr-md-n-6, 13240.mx-md-n-6 { 13241 margin-right: 4.5rem !important; 13242 } 13243 13244 .mb-md-n-6, 13245.my-md-n-6 { 13246 margin-bottom: 4.5rem !important; 13247 } 13248 13249 .ml-md-n-6, 13250.mx-md-n-6 { 13251 margin-left: 4.5rem !important; 13252 } 13253 13254 .m-md-n-5 { 13255 margin: 3rem !important; 13256 } 13257 13258 .mt-md-n-5, 13259.my-md-n-5 { 13260 margin-top: 3rem !important; 13261 } 13262 13263 .mr-md-n-5, 13264.mx-md-n-5 { 13265 margin-right: 3rem !important; 13266 } 13267 13268 .mb-md-n-5, 13269.my-md-n-5 { 13270 margin-bottom: 3rem !important; 13271 } 13272 13273 .ml-md-n-5, 13274.mx-md-n-5 { 13275 margin-left: 3rem !important; 13276 } 13277 13278 .m-md-n-4 { 13279 margin: 1.5rem !important; 13280 } 13281 13282 .mt-md-n-4, 13283.my-md-n-4 { 13284 margin-top: 1.5rem !important; 13285 } 13286 13287 .mr-md-n-4, 13288.mx-md-n-4 { 13289 margin-right: 1.5rem !important; 13290 } 13291 13292 .mb-md-n-4, 13293.my-md-n-4 { 13294 margin-bottom: 1.5rem !important; 13295 } 13296 13297 .ml-md-n-4, 13298.mx-md-n-4 { 13299 margin-left: 1.5rem !important; 13300 } 13301 13302 .m-md-n-3 { 13303 margin: 1rem !important; 13304 } 13305 13306 .mt-md-n-3, 13307.my-md-n-3 { 13308 margin-top: 1rem !important; 13309 } 13310 13311 .mr-md-n-3, 13312.mx-md-n-3 { 13313 margin-right: 1rem !important; 13314 } 13315 13316 .mb-md-n-3, 13317.my-md-n-3 { 13318 margin-bottom: 1rem !important; 13319 } 13320 13321 .ml-md-n-3, 13322.mx-md-n-3 { 13323 margin-left: 1rem !important; 13324 } 13325 13326 .m-md-n-2 { 13327 margin: 0.5rem !important; 13328 } 13329 13330 .mt-md-n-2, 13331.my-md-n-2 { 13332 margin-top: 0.5rem !important; 13333 } 13334 13335 .mr-md-n-2, 13336.mx-md-n-2 { 13337 margin-right: 0.5rem !important; 13338 } 13339 13340 .mb-md-n-2, 13341.my-md-n-2 { 13342 margin-bottom: 0.5rem !important; 13343 } 13344 13345 .ml-md-n-2, 13346.mx-md-n-2 { 13347 margin-left: 0.5rem !important; 13348 } 13349 13350 .m-md-n-1 { 13351 margin: 0.25rem !important; 13352 } 13353 13354 .mt-md-n-1, 13355.my-md-n-1 { 13356 margin-top: 0.25rem !important; 13357 } 13358 13359 .mr-md-n-1, 13360.mx-md-n-1 { 13361 margin-right: 0.25rem !important; 13362 } 13363 13364 .mb-md-n-1, 13365.my-md-n-1 { 13366 margin-bottom: 0.25rem !important; 13367 } 13368 13369 .ml-md-n-1, 13370.mx-md-n-1 { 13371 margin-left: 0.25rem !important; 13372 } 13373 13374 .m-md-n6 { 13375 margin: -4.5rem !important; 13376 } 13377 13378 .mt-md-n6, 13379.my-md-n6 { 13380 margin-top: -4.5rem !important; 13381 } 13382 13383 .mr-md-n6, 13384.mx-md-n6 { 13385 margin-right: -4.5rem !important; 13386 } 13387 13388 .mb-md-n6, 13389.my-md-n6 { 13390 margin-bottom: -4.5rem !important; 13391 } 13392 13393 .ml-md-n6, 13394.mx-md-n6 { 13395 margin-left: -4.5rem !important; 13396 } 13397 13398 .m-md-n7 { 13399 margin: -6rem !important; 13400 } 13401 13402 .mt-md-n7, 13403.my-md-n7 { 13404 margin-top: -6rem !important; 13405 } 13406 13407 .mr-md-n7, 13408.mx-md-n7 { 13409 margin-right: -6rem !important; 13410 } 13411 13412 .mb-md-n7, 13413.my-md-n7 { 13414 margin-bottom: -6rem !important; 13415 } 13416 13417 .ml-md-n7, 13418.mx-md-n7 { 13419 margin-left: -6rem !important; 13420 } 13421 13422 .m-md-n8 { 13423 margin: -8rem !important; 13424 } 13425 13426 .mt-md-n8, 13427.my-md-n8 { 13428 margin-top: -8rem !important; 13429 } 13430 13431 .mr-md-n8, 13432.mx-md-n8 { 13433 margin-right: -8rem !important; 13434 } 13435 13436 .mb-md-n8, 13437.my-md-n8 { 13438 margin-bottom: -8rem !important; 13439 } 13440 13441 .ml-md-n8, 13442.mx-md-n8 { 13443 margin-left: -8rem !important; 13444 } 13445 13446 .m-md-n9 { 13447 margin: -10rem !important; 13448 } 13449 13450 .mt-md-n9, 13451.my-md-n9 { 13452 margin-top: -10rem !important; 13453 } 13454 13455 .mr-md-n9, 13456.mx-md-n9 { 13457 margin-right: -10rem !important; 13458 } 13459 13460 .mb-md-n9, 13461.my-md-n9 { 13462 margin-bottom: -10rem !important; 13463 } 13464 13465 .ml-md-n9, 13466.mx-md-n9 { 13467 margin-left: -10rem !important; 13468 } 13469 13470 .m-md-auto { 13471 margin: auto !important; 13472 } 13473 13474 .mt-md-auto, 13475.my-md-auto { 13476 margin-top: auto !important; 13477 } 13478 13479 .mr-md-auto, 13480.mx-md-auto { 13481 margin-right: auto !important; 13482 } 13483 13484 .mb-md-auto, 13485.my-md-auto { 13486 margin-bottom: auto !important; 13487 } 13488 13489 .ml-md-auto, 13490.mx-md-auto { 13491 margin-left: auto !important; 13492 } 13493} 13494@media (min-width: 992px) { 13495 .m-lg-0 { 13496 margin: 0 !important; 13497 } 13498 13499 .mt-lg-0, 13500.my-lg-0 { 13501 margin-top: 0 !important; 13502 } 13503 13504 .mr-lg-0, 13505.mx-lg-0 { 13506 margin-right: 0 !important; 13507 } 13508 13509 .mb-lg-0, 13510.my-lg-0 { 13511 margin-bottom: 0 !important; 13512 } 13513 13514 .ml-lg-0, 13515.mx-lg-0 { 13516 margin-left: 0 !important; 13517 } 13518 13519 .m-lg-1 { 13520 margin: 0.25rem !important; 13521 } 13522 13523 .mt-lg-1, 13524.my-lg-1 { 13525 margin-top: 0.25rem !important; 13526 } 13527 13528 .mr-lg-1, 13529.mx-lg-1 { 13530 margin-right: 0.25rem !important; 13531 } 13532 13533 .mb-lg-1, 13534.my-lg-1 { 13535 margin-bottom: 0.25rem !important; 13536 } 13537 13538 .ml-lg-1, 13539.mx-lg-1 { 13540 margin-left: 0.25rem !important; 13541 } 13542 13543 .m-lg-2 { 13544 margin: 0.5rem !important; 13545 } 13546 13547 .mt-lg-2, 13548.my-lg-2 { 13549 margin-top: 0.5rem !important; 13550 } 13551 13552 .mr-lg-2, 13553.mx-lg-2 { 13554 margin-right: 0.5rem !important; 13555 } 13556 13557 .mb-lg-2, 13558.my-lg-2 { 13559 margin-bottom: 0.5rem !important; 13560 } 13561 13562 .ml-lg-2, 13563.mx-lg-2 { 13564 margin-left: 0.5rem !important; 13565 } 13566 13567 .m-lg-3 { 13568 margin: 1rem !important; 13569 } 13570 13571 .mt-lg-3, 13572.my-lg-3 { 13573 margin-top: 1rem !important; 13574 } 13575 13576 .mr-lg-3, 13577.mx-lg-3 { 13578 margin-right: 1rem !important; 13579 } 13580 13581 .mb-lg-3, 13582.my-lg-3 { 13583 margin-bottom: 1rem !important; 13584 } 13585 13586 .ml-lg-3, 13587.mx-lg-3 { 13588 margin-left: 1rem !important; 13589 } 13590 13591 .m-lg-4 { 13592 margin: 1.5rem !important; 13593 } 13594 13595 .mt-lg-4, 13596.my-lg-4 { 13597 margin-top: 1.5rem !important; 13598 } 13599 13600 .mr-lg-4, 13601.mx-lg-4 { 13602 margin-right: 1.5rem !important; 13603 } 13604 13605 .mb-lg-4, 13606.my-lg-4 { 13607 margin-bottom: 1.5rem !important; 13608 } 13609 13610 .ml-lg-4, 13611.mx-lg-4 { 13612 margin-left: 1.5rem !important; 13613 } 13614 13615 .m-lg-5 { 13616 margin: 3rem !important; 13617 } 13618 13619 .mt-lg-5, 13620.my-lg-5 { 13621 margin-top: 3rem !important; 13622 } 13623 13624 .mr-lg-5, 13625.mx-lg-5 { 13626 margin-right: 3rem !important; 13627 } 13628 13629 .mb-lg-5, 13630.my-lg-5 { 13631 margin-bottom: 3rem !important; 13632 } 13633 13634 .ml-lg-5, 13635.mx-lg-5 { 13636 margin-left: 3rem !important; 13637 } 13638 13639 .m-lg--9 { 13640 margin: -10rem !important; 13641 } 13642 13643 .mt-lg--9, 13644.my-lg--9 { 13645 margin-top: -10rem !important; 13646 } 13647 13648 .mr-lg--9, 13649.mx-lg--9 { 13650 margin-right: -10rem !important; 13651 } 13652 13653 .mb-lg--9, 13654.my-lg--9 { 13655 margin-bottom: -10rem !important; 13656 } 13657 13658 .ml-lg--9, 13659.mx-lg--9 { 13660 margin-left: -10rem !important; 13661 } 13662 13663 .m-lg--8 { 13664 margin: -8rem !important; 13665 } 13666 13667 .mt-lg--8, 13668.my-lg--8 { 13669 margin-top: -8rem !important; 13670 } 13671 13672 .mr-lg--8, 13673.mx-lg--8 { 13674 margin-right: -8rem !important; 13675 } 13676 13677 .mb-lg--8, 13678.my-lg--8 { 13679 margin-bottom: -8rem !important; 13680 } 13681 13682 .ml-lg--8, 13683.mx-lg--8 { 13684 margin-left: -8rem !important; 13685 } 13686 13687 .m-lg--7 { 13688 margin: -6rem !important; 13689 } 13690 13691 .mt-lg--7, 13692.my-lg--7 { 13693 margin-top: -6rem !important; 13694 } 13695 13696 .mr-lg--7, 13697.mx-lg--7 { 13698 margin-right: -6rem !important; 13699 } 13700 13701 .mb-lg--7, 13702.my-lg--7 { 13703 margin-bottom: -6rem !important; 13704 } 13705 13706 .ml-lg--7, 13707.mx-lg--7 { 13708 margin-left: -6rem !important; 13709 } 13710 13711 .m-lg--6 { 13712 margin: -4.5rem !important; 13713 } 13714 13715 .mt-lg--6, 13716.my-lg--6 { 13717 margin-top: -4.5rem !important; 13718 } 13719 13720 .mr-lg--6, 13721.mx-lg--6 { 13722 margin-right: -4.5rem !important; 13723 } 13724 13725 .mb-lg--6, 13726.my-lg--6 { 13727 margin-bottom: -4.5rem !important; 13728 } 13729 13730 .ml-lg--6, 13731.mx-lg--6 { 13732 margin-left: -4.5rem !important; 13733 } 13734 13735 .m-lg--5 { 13736 margin: -3rem !important; 13737 } 13738 13739 .mt-lg--5, 13740.my-lg--5 { 13741 margin-top: -3rem !important; 13742 } 13743 13744 .mr-lg--5, 13745.mx-lg--5 { 13746 margin-right: -3rem !important; 13747 } 13748 13749 .mb-lg--5, 13750.my-lg--5 { 13751 margin-bottom: -3rem !important; 13752 } 13753 13754 .ml-lg--5, 13755.mx-lg--5 { 13756 margin-left: -3rem !important; 13757 } 13758 13759 .m-lg--4 { 13760 margin: -1.5rem !important; 13761 } 13762 13763 .mt-lg--4, 13764.my-lg--4 { 13765 margin-top: -1.5rem !important; 13766 } 13767 13768 .mr-lg--4, 13769.mx-lg--4 { 13770 margin-right: -1.5rem !important; 13771 } 13772 13773 .mb-lg--4, 13774.my-lg--4 { 13775 margin-bottom: -1.5rem !important; 13776 } 13777 13778 .ml-lg--4, 13779.mx-lg--4 { 13780 margin-left: -1.5rem !important; 13781 } 13782 13783 .m-lg--3 { 13784 margin: -1rem !important; 13785 } 13786 13787 .mt-lg--3, 13788.my-lg--3 { 13789 margin-top: -1rem !important; 13790 } 13791 13792 .mr-lg--3, 13793.mx-lg--3 { 13794 margin-right: -1rem !important; 13795 } 13796 13797 .mb-lg--3, 13798.my-lg--3 { 13799 margin-bottom: -1rem !important; 13800 } 13801 13802 .ml-lg--3, 13803.mx-lg--3 { 13804 margin-left: -1rem !important; 13805 } 13806 13807 .m-lg--2 { 13808 margin: -0.5rem !important; 13809 } 13810 13811 .mt-lg--2, 13812.my-lg--2 { 13813 margin-top: -0.5rem !important; 13814 } 13815 13816 .mr-lg--2, 13817.mx-lg--2 { 13818 margin-right: -0.5rem !important; 13819 } 13820 13821 .mb-lg--2, 13822.my-lg--2 { 13823 margin-bottom: -0.5rem !important; 13824 } 13825 13826 .ml-lg--2, 13827.mx-lg--2 { 13828 margin-left: -0.5rem !important; 13829 } 13830 13831 .m-lg--1 { 13832 margin: -0.25rem !important; 13833 } 13834 13835 .mt-lg--1, 13836.my-lg--1 { 13837 margin-top: -0.25rem !important; 13838 } 13839 13840 .mr-lg--1, 13841.mx-lg--1 { 13842 margin-right: -0.25rem !important; 13843 } 13844 13845 .mb-lg--1, 13846.my-lg--1 { 13847 margin-bottom: -0.25rem !important; 13848 } 13849 13850 .ml-lg--1, 13851.mx-lg--1 { 13852 margin-left: -0.25rem !important; 13853 } 13854 13855 .m-lg-6 { 13856 margin: 4.5rem !important; 13857 } 13858 13859 .mt-lg-6, 13860.my-lg-6 { 13861 margin-top: 4.5rem !important; 13862 } 13863 13864 .mr-lg-6, 13865.mx-lg-6 { 13866 margin-right: 4.5rem !important; 13867 } 13868 13869 .mb-lg-6, 13870.my-lg-6 { 13871 margin-bottom: 4.5rem !important; 13872 } 13873 13874 .ml-lg-6, 13875.mx-lg-6 { 13876 margin-left: 4.5rem !important; 13877 } 13878 13879 .m-lg-7 { 13880 margin: 6rem !important; 13881 } 13882 13883 .mt-lg-7, 13884.my-lg-7 { 13885 margin-top: 6rem !important; 13886 } 13887 13888 .mr-lg-7, 13889.mx-lg-7 { 13890 margin-right: 6rem !important; 13891 } 13892 13893 .mb-lg-7, 13894.my-lg-7 { 13895 margin-bottom: 6rem !important; 13896 } 13897 13898 .ml-lg-7, 13899.mx-lg-7 { 13900 margin-left: 6rem !important; 13901 } 13902 13903 .m-lg-8 { 13904 margin: 8rem !important; 13905 } 13906 13907 .mt-lg-8, 13908.my-lg-8 { 13909 margin-top: 8rem !important; 13910 } 13911 13912 .mr-lg-8, 13913.mx-lg-8 { 13914 margin-right: 8rem !important; 13915 } 13916 13917 .mb-lg-8, 13918.my-lg-8 { 13919 margin-bottom: 8rem !important; 13920 } 13921 13922 .ml-lg-8, 13923.mx-lg-8 { 13924 margin-left: 8rem !important; 13925 } 13926 13927 .m-lg-9 { 13928 margin: 10rem !important; 13929 } 13930 13931 .mt-lg-9, 13932.my-lg-9 { 13933 margin-top: 10rem !important; 13934 } 13935 13936 .mr-lg-9, 13937.mx-lg-9 { 13938 margin-right: 10rem !important; 13939 } 13940 13941 .mb-lg-9, 13942.my-lg-9 { 13943 margin-bottom: 10rem !important; 13944 } 13945 13946 .ml-lg-9, 13947.mx-lg-9 { 13948 margin-left: 10rem !important; 13949 } 13950 13951 .p-lg-0 { 13952 padding: 0 !important; 13953 } 13954 13955 .pt-lg-0, 13956.py-lg-0 { 13957 padding-top: 0 !important; 13958 } 13959 13960 .pr-lg-0, 13961.px-lg-0 { 13962 padding-right: 0 !important; 13963 } 13964 13965 .pb-lg-0, 13966.py-lg-0 { 13967 padding-bottom: 0 !important; 13968 } 13969 13970 .pl-lg-0, 13971.px-lg-0 { 13972 padding-left: 0 !important; 13973 } 13974 13975 .p-lg-1 { 13976 padding: 0.25rem !important; 13977 } 13978 13979 .pt-lg-1, 13980.py-lg-1 { 13981 padding-top: 0.25rem !important; 13982 } 13983 13984 .pr-lg-1, 13985.px-lg-1 { 13986 padding-right: 0.25rem !important; 13987 } 13988 13989 .pb-lg-1, 13990.py-lg-1 { 13991 padding-bottom: 0.25rem !important; 13992 } 13993 13994 .pl-lg-1, 13995.px-lg-1 { 13996 padding-left: 0.25rem !important; 13997 } 13998 13999 .p-lg-2 { 14000 padding: 0.5rem !important; 14001 } 14002 14003 .pt-lg-2, 14004.py-lg-2 { 14005 padding-top: 0.5rem !important; 14006 } 14007 14008 .pr-lg-2, 14009.px-lg-2 { 14010 padding-right: 0.5rem !important; 14011 } 14012 14013 .pb-lg-2, 14014.py-lg-2 { 14015 padding-bottom: 0.5rem !important; 14016 } 14017 14018 .pl-lg-2, 14019.px-lg-2 { 14020 padding-left: 0.5rem !important; 14021 } 14022 14023 .p-lg-3 { 14024 padding: 1rem !important; 14025 } 14026 14027 .pt-lg-3, 14028.py-lg-3 { 14029 padding-top: 1rem !important; 14030 } 14031 14032 .pr-lg-3, 14033.px-lg-3 { 14034 padding-right: 1rem !important; 14035 } 14036 14037 .pb-lg-3, 14038.py-lg-3 { 14039 padding-bottom: 1rem !important; 14040 } 14041 14042 .pl-lg-3, 14043.px-lg-3 { 14044 padding-left: 1rem !important; 14045 } 14046 14047 .p-lg-4 { 14048 padding: 1.5rem !important; 14049 } 14050 14051 .pt-lg-4, 14052.py-lg-4 { 14053 padding-top: 1.5rem !important; 14054 } 14055 14056 .pr-lg-4, 14057.px-lg-4 { 14058 padding-right: 1.5rem !important; 14059 } 14060 14061 .pb-lg-4, 14062.py-lg-4 { 14063 padding-bottom: 1.5rem !important; 14064 } 14065 14066 .pl-lg-4, 14067.px-lg-4 { 14068 padding-left: 1.5rem !important; 14069 } 14070 14071 .p-lg-5 { 14072 padding: 3rem !important; 14073 } 14074 14075 .pt-lg-5, 14076.py-lg-5 { 14077 padding-top: 3rem !important; 14078 } 14079 14080 .pr-lg-5, 14081.px-lg-5 { 14082 padding-right: 3rem !important; 14083 } 14084 14085 .pb-lg-5, 14086.py-lg-5 { 14087 padding-bottom: 3rem !important; 14088 } 14089 14090 .pl-lg-5, 14091.px-lg-5 { 14092 padding-left: 3rem !important; 14093 } 14094 14095 .p-lg--9 { 14096 padding: -10rem !important; 14097 } 14098 14099 .pt-lg--9, 14100.py-lg--9 { 14101 padding-top: -10rem !important; 14102 } 14103 14104 .pr-lg--9, 14105.px-lg--9 { 14106 padding-right: -10rem !important; 14107 } 14108 14109 .pb-lg--9, 14110.py-lg--9 { 14111 padding-bottom: -10rem !important; 14112 } 14113 14114 .pl-lg--9, 14115.px-lg--9 { 14116 padding-left: -10rem !important; 14117 } 14118 14119 .p-lg--8 { 14120 padding: -8rem !important; 14121 } 14122 14123 .pt-lg--8, 14124.py-lg--8 { 14125 padding-top: -8rem !important; 14126 } 14127 14128 .pr-lg--8, 14129.px-lg--8 { 14130 padding-right: -8rem !important; 14131 } 14132 14133 .pb-lg--8, 14134.py-lg--8 { 14135 padding-bottom: -8rem !important; 14136 } 14137 14138 .pl-lg--8, 14139.px-lg--8 { 14140 padding-left: -8rem !important; 14141 } 14142 14143 .p-lg--7 { 14144 padding: -6rem !important; 14145 } 14146 14147 .pt-lg--7, 14148.py-lg--7 { 14149 padding-top: -6rem !important; 14150 } 14151 14152 .pr-lg--7, 14153.px-lg--7 { 14154 padding-right: -6rem !important; 14155 } 14156 14157 .pb-lg--7, 14158.py-lg--7 { 14159 padding-bottom: -6rem !important; 14160 } 14161 14162 .pl-lg--7, 14163.px-lg--7 { 14164 padding-left: -6rem !important; 14165 } 14166 14167 .p-lg--6 { 14168 padding: -4.5rem !important; 14169 } 14170 14171 .pt-lg--6, 14172.py-lg--6 { 14173 padding-top: -4.5rem !important; 14174 } 14175 14176 .pr-lg--6, 14177.px-lg--6 { 14178 padding-right: -4.5rem !important; 14179 } 14180 14181 .pb-lg--6, 14182.py-lg--6 { 14183 padding-bottom: -4.5rem !important; 14184 } 14185 14186 .pl-lg--6, 14187.px-lg--6 { 14188 padding-left: -4.5rem !important; 14189 } 14190 14191 .p-lg--5 { 14192 padding: -3rem !important; 14193 } 14194 14195 .pt-lg--5, 14196.py-lg--5 { 14197 padding-top: -3rem !important; 14198 } 14199 14200 .pr-lg--5, 14201.px-lg--5 { 14202 padding-right: -3rem !important; 14203 } 14204 14205 .pb-lg--5, 14206.py-lg--5 { 14207 padding-bottom: -3rem !important; 14208 } 14209 14210 .pl-lg--5, 14211.px-lg--5 { 14212 padding-left: -3rem !important; 14213 } 14214 14215 .p-lg--4 { 14216 padding: -1.5rem !important; 14217 } 14218 14219 .pt-lg--4, 14220.py-lg--4 { 14221 padding-top: -1.5rem !important; 14222 } 14223 14224 .pr-lg--4, 14225.px-lg--4 { 14226 padding-right: -1.5rem !important; 14227 } 14228 14229 .pb-lg--4, 14230.py-lg--4 { 14231 padding-bottom: -1.5rem !important; 14232 } 14233 14234 .pl-lg--4, 14235.px-lg--4 { 14236 padding-left: -1.5rem !important; 14237 } 14238 14239 .p-lg--3 { 14240 padding: -1rem !important; 14241 } 14242 14243 .pt-lg--3, 14244.py-lg--3 { 14245 padding-top: -1rem !important; 14246 } 14247 14248 .pr-lg--3, 14249.px-lg--3 { 14250 padding-right: -1rem !important; 14251 } 14252 14253 .pb-lg--3, 14254.py-lg--3 { 14255 padding-bottom: -1rem !important; 14256 } 14257 14258 .pl-lg--3, 14259.px-lg--3 { 14260 padding-left: -1rem !important; 14261 } 14262 14263 .p-lg--2 { 14264 padding: -0.5rem !important; 14265 } 14266 14267 .pt-lg--2, 14268.py-lg--2 { 14269 padding-top: -0.5rem !important; 14270 } 14271 14272 .pr-lg--2, 14273.px-lg--2 { 14274 padding-right: -0.5rem !important; 14275 } 14276 14277 .pb-lg--2, 14278.py-lg--2 { 14279 padding-bottom: -0.5rem !important; 14280 } 14281 14282 .pl-lg--2, 14283.px-lg--2 { 14284 padding-left: -0.5rem !important; 14285 } 14286 14287 .p-lg--1 { 14288 padding: -0.25rem !important; 14289 } 14290 14291 .pt-lg--1, 14292.py-lg--1 { 14293 padding-top: -0.25rem !important; 14294 } 14295 14296 .pr-lg--1, 14297.px-lg--1 { 14298 padding-right: -0.25rem !important; 14299 } 14300 14301 .pb-lg--1, 14302.py-lg--1 { 14303 padding-bottom: -0.25rem !important; 14304 } 14305 14306 .pl-lg--1, 14307.px-lg--1 { 14308 padding-left: -0.25rem !important; 14309 } 14310 14311 .p-lg-6 { 14312 padding: 4.5rem !important; 14313 } 14314 14315 .pt-lg-6, 14316.py-lg-6 { 14317 padding-top: 4.5rem !important; 14318 } 14319 14320 .pr-lg-6, 14321.px-lg-6 { 14322 padding-right: 4.5rem !important; 14323 } 14324 14325 .pb-lg-6, 14326.py-lg-6 { 14327 padding-bottom: 4.5rem !important; 14328 } 14329 14330 .pl-lg-6, 14331.px-lg-6 { 14332 padding-left: 4.5rem !important; 14333 } 14334 14335 .p-lg-7 { 14336 padding: 6rem !important; 14337 } 14338 14339 .pt-lg-7, 14340.py-lg-7 { 14341 padding-top: 6rem !important; 14342 } 14343 14344 .pr-lg-7, 14345.px-lg-7 { 14346 padding-right: 6rem !important; 14347 } 14348 14349 .pb-lg-7, 14350.py-lg-7 { 14351 padding-bottom: 6rem !important; 14352 } 14353 14354 .pl-lg-7, 14355.px-lg-7 { 14356 padding-left: 6rem !important; 14357 } 14358 14359 .p-lg-8 { 14360 padding: 8rem !important; 14361 } 14362 14363 .pt-lg-8, 14364.py-lg-8 { 14365 padding-top: 8rem !important; 14366 } 14367 14368 .pr-lg-8, 14369.px-lg-8 { 14370 padding-right: 8rem !important; 14371 } 14372 14373 .pb-lg-8, 14374.py-lg-8 { 14375 padding-bottom: 8rem !important; 14376 } 14377 14378 .pl-lg-8, 14379.px-lg-8 { 14380 padding-left: 8rem !important; 14381 } 14382 14383 .p-lg-9 { 14384 padding: 10rem !important; 14385 } 14386 14387 .pt-lg-9, 14388.py-lg-9 { 14389 padding-top: 10rem !important; 14390 } 14391 14392 .pr-lg-9, 14393.px-lg-9 { 14394 padding-right: 10rem !important; 14395 } 14396 14397 .pb-lg-9, 14398.py-lg-9 { 14399 padding-bottom: 10rem !important; 14400 } 14401 14402 .pl-lg-9, 14403.px-lg-9 { 14404 padding-left: 10rem !important; 14405 } 14406 14407 .m-lg-n1 { 14408 margin: -0.25rem !important; 14409 } 14410 14411 .mt-lg-n1, 14412.my-lg-n1 { 14413 margin-top: -0.25rem !important; 14414 } 14415 14416 .mr-lg-n1, 14417.mx-lg-n1 { 14418 margin-right: -0.25rem !important; 14419 } 14420 14421 .mb-lg-n1, 14422.my-lg-n1 { 14423 margin-bottom: -0.25rem !important; 14424 } 14425 14426 .ml-lg-n1, 14427.mx-lg-n1 { 14428 margin-left: -0.25rem !important; 14429 } 14430 14431 .m-lg-n2 { 14432 margin: -0.5rem !important; 14433 } 14434 14435 .mt-lg-n2, 14436.my-lg-n2 { 14437 margin-top: -0.5rem !important; 14438 } 14439 14440 .mr-lg-n2, 14441.mx-lg-n2 { 14442 margin-right: -0.5rem !important; 14443 } 14444 14445 .mb-lg-n2, 14446.my-lg-n2 { 14447 margin-bottom: -0.5rem !important; 14448 } 14449 14450 .ml-lg-n2, 14451.mx-lg-n2 { 14452 margin-left: -0.5rem !important; 14453 } 14454 14455 .m-lg-n3 { 14456 margin: -1rem !important; 14457 } 14458 14459 .mt-lg-n3, 14460.my-lg-n3 { 14461 margin-top: -1rem !important; 14462 } 14463 14464 .mr-lg-n3, 14465.mx-lg-n3 { 14466 margin-right: -1rem !important; 14467 } 14468 14469 .mb-lg-n3, 14470.my-lg-n3 { 14471 margin-bottom: -1rem !important; 14472 } 14473 14474 .ml-lg-n3, 14475.mx-lg-n3 { 14476 margin-left: -1rem !important; 14477 } 14478 14479 .m-lg-n4 { 14480 margin: -1.5rem !important; 14481 } 14482 14483 .mt-lg-n4, 14484.my-lg-n4 { 14485 margin-top: -1.5rem !important; 14486 } 14487 14488 .mr-lg-n4, 14489.mx-lg-n4 { 14490 margin-right: -1.5rem !important; 14491 } 14492 14493 .mb-lg-n4, 14494.my-lg-n4 { 14495 margin-bottom: -1.5rem !important; 14496 } 14497 14498 .ml-lg-n4, 14499.mx-lg-n4 { 14500 margin-left: -1.5rem !important; 14501 } 14502 14503 .m-lg-n5 { 14504 margin: -3rem !important; 14505 } 14506 14507 .mt-lg-n5, 14508.my-lg-n5 { 14509 margin-top: -3rem !important; 14510 } 14511 14512 .mr-lg-n5, 14513.mx-lg-n5 { 14514 margin-right: -3rem !important; 14515 } 14516 14517 .mb-lg-n5, 14518.my-lg-n5 { 14519 margin-bottom: -3rem !important; 14520 } 14521 14522 .ml-lg-n5, 14523.mx-lg-n5 { 14524 margin-left: -3rem !important; 14525 } 14526 14527 .m-lg-n-9 { 14528 margin: 10rem !important; 14529 } 14530 14531 .mt-lg-n-9, 14532.my-lg-n-9 { 14533 margin-top: 10rem !important; 14534 } 14535 14536 .mr-lg-n-9, 14537.mx-lg-n-9 { 14538 margin-right: 10rem !important; 14539 } 14540 14541 .mb-lg-n-9, 14542.my-lg-n-9 { 14543 margin-bottom: 10rem !important; 14544 } 14545 14546 .ml-lg-n-9, 14547.mx-lg-n-9 { 14548 margin-left: 10rem !important; 14549 } 14550 14551 .m-lg-n-8 { 14552 margin: 8rem !important; 14553 } 14554 14555 .mt-lg-n-8, 14556.my-lg-n-8 { 14557 margin-top: 8rem !important; 14558 } 14559 14560 .mr-lg-n-8, 14561.mx-lg-n-8 { 14562 margin-right: 8rem !important; 14563 } 14564 14565 .mb-lg-n-8, 14566.my-lg-n-8 { 14567 margin-bottom: 8rem !important; 14568 } 14569 14570 .ml-lg-n-8, 14571.mx-lg-n-8 { 14572 margin-left: 8rem !important; 14573 } 14574 14575 .m-lg-n-7 { 14576 margin: 6rem !important; 14577 } 14578 14579 .mt-lg-n-7, 14580.my-lg-n-7 { 14581 margin-top: 6rem !important; 14582 } 14583 14584 .mr-lg-n-7, 14585.mx-lg-n-7 { 14586 margin-right: 6rem !important; 14587 } 14588 14589 .mb-lg-n-7, 14590.my-lg-n-7 { 14591 margin-bottom: 6rem !important; 14592 } 14593 14594 .ml-lg-n-7, 14595.mx-lg-n-7 { 14596 margin-left: 6rem !important; 14597 } 14598 14599 .m-lg-n-6 { 14600 margin: 4.5rem !important; 14601 } 14602 14603 .mt-lg-n-6, 14604.my-lg-n-6 { 14605 margin-top: 4.5rem !important; 14606 } 14607 14608 .mr-lg-n-6, 14609.mx-lg-n-6 { 14610 margin-right: 4.5rem !important; 14611 } 14612 14613 .mb-lg-n-6, 14614.my-lg-n-6 { 14615 margin-bottom: 4.5rem !important; 14616 } 14617 14618 .ml-lg-n-6, 14619.mx-lg-n-6 { 14620 margin-left: 4.5rem !important; 14621 } 14622 14623 .m-lg-n-5 { 14624 margin: 3rem !important; 14625 } 14626 14627 .mt-lg-n-5, 14628.my-lg-n-5 { 14629 margin-top: 3rem !important; 14630 } 14631 14632 .mr-lg-n-5, 14633.mx-lg-n-5 { 14634 margin-right: 3rem !important; 14635 } 14636 14637 .mb-lg-n-5, 14638.my-lg-n-5 { 14639 margin-bottom: 3rem !important; 14640 } 14641 14642 .ml-lg-n-5, 14643.mx-lg-n-5 { 14644 margin-left: 3rem !important; 14645 } 14646 14647 .m-lg-n-4 { 14648 margin: 1.5rem !important; 14649 } 14650 14651 .mt-lg-n-4, 14652.my-lg-n-4 { 14653 margin-top: 1.5rem !important; 14654 } 14655 14656 .mr-lg-n-4, 14657.mx-lg-n-4 { 14658 margin-right: 1.5rem !important; 14659 } 14660 14661 .mb-lg-n-4, 14662.my-lg-n-4 { 14663 margin-bottom: 1.5rem !important; 14664 } 14665 14666 .ml-lg-n-4, 14667.mx-lg-n-4 { 14668 margin-left: 1.5rem !important; 14669 } 14670 14671 .m-lg-n-3 { 14672 margin: 1rem !important; 14673 } 14674 14675 .mt-lg-n-3, 14676.my-lg-n-3 { 14677 margin-top: 1rem !important; 14678 } 14679 14680 .mr-lg-n-3, 14681.mx-lg-n-3 { 14682 margin-right: 1rem !important; 14683 } 14684 14685 .mb-lg-n-3, 14686.my-lg-n-3 { 14687 margin-bottom: 1rem !important; 14688 } 14689 14690 .ml-lg-n-3, 14691.mx-lg-n-3 { 14692 margin-left: 1rem !important; 14693 } 14694 14695 .m-lg-n-2 { 14696 margin: 0.5rem !important; 14697 } 14698 14699 .mt-lg-n-2, 14700.my-lg-n-2 { 14701 margin-top: 0.5rem !important; 14702 } 14703 14704 .mr-lg-n-2, 14705.mx-lg-n-2 { 14706 margin-right: 0.5rem !important; 14707 } 14708 14709 .mb-lg-n-2, 14710.my-lg-n-2 { 14711 margin-bottom: 0.5rem !important; 14712 } 14713 14714 .ml-lg-n-2, 14715.mx-lg-n-2 { 14716 margin-left: 0.5rem !important; 14717 } 14718 14719 .m-lg-n-1 { 14720 margin: 0.25rem !important; 14721 } 14722 14723 .mt-lg-n-1, 14724.my-lg-n-1 { 14725 margin-top: 0.25rem !important; 14726 } 14727 14728 .mr-lg-n-1, 14729.mx-lg-n-1 { 14730 margin-right: 0.25rem !important; 14731 } 14732 14733 .mb-lg-n-1, 14734.my-lg-n-1 { 14735 margin-bottom: 0.25rem !important; 14736 } 14737 14738 .ml-lg-n-1, 14739.mx-lg-n-1 { 14740 margin-left: 0.25rem !important; 14741 } 14742 14743 .m-lg-n6 { 14744 margin: -4.5rem !important; 14745 } 14746 14747 .mt-lg-n6, 14748.my-lg-n6 { 14749 margin-top: -4.5rem !important; 14750 } 14751 14752 .mr-lg-n6, 14753.mx-lg-n6 { 14754 margin-right: -4.5rem !important; 14755 } 14756 14757 .mb-lg-n6, 14758.my-lg-n6 { 14759 margin-bottom: -4.5rem !important; 14760 } 14761 14762 .ml-lg-n6, 14763.mx-lg-n6 { 14764 margin-left: -4.5rem !important; 14765 } 14766 14767 .m-lg-n7 { 14768 margin: -6rem !important; 14769 } 14770 14771 .mt-lg-n7, 14772.my-lg-n7 { 14773 margin-top: -6rem !important; 14774 } 14775 14776 .mr-lg-n7, 14777.mx-lg-n7 { 14778 margin-right: -6rem !important; 14779 } 14780 14781 .mb-lg-n7, 14782.my-lg-n7 { 14783 margin-bottom: -6rem !important; 14784 } 14785 14786 .ml-lg-n7, 14787.mx-lg-n7 { 14788 margin-left: -6rem !important; 14789 } 14790 14791 .m-lg-n8 { 14792 margin: -8rem !important; 14793 } 14794 14795 .mt-lg-n8, 14796.my-lg-n8 { 14797 margin-top: -8rem !important; 14798 } 14799 14800 .mr-lg-n8, 14801.mx-lg-n8 { 14802 margin-right: -8rem !important; 14803 } 14804 14805 .mb-lg-n8, 14806.my-lg-n8 { 14807 margin-bottom: -8rem !important; 14808 } 14809 14810 .ml-lg-n8, 14811.mx-lg-n8 { 14812 margin-left: -8rem !important; 14813 } 14814 14815 .m-lg-n9 { 14816 margin: -10rem !important; 14817 } 14818 14819 .mt-lg-n9, 14820.my-lg-n9 { 14821 margin-top: -10rem !important; 14822 } 14823 14824 .mr-lg-n9, 14825.mx-lg-n9 { 14826 margin-right: -10rem !important; 14827 } 14828 14829 .mb-lg-n9, 14830.my-lg-n9 { 14831 margin-bottom: -10rem !important; 14832 } 14833 14834 .ml-lg-n9, 14835.mx-lg-n9 { 14836 margin-left: -10rem !important; 14837 } 14838 14839 .m-lg-auto { 14840 margin: auto !important; 14841 } 14842 14843 .mt-lg-auto, 14844.my-lg-auto { 14845 margin-top: auto !important; 14846 } 14847 14848 .mr-lg-auto, 14849.mx-lg-auto { 14850 margin-right: auto !important; 14851 } 14852 14853 .mb-lg-auto, 14854.my-lg-auto { 14855 margin-bottom: auto !important; 14856 } 14857 14858 .ml-lg-auto, 14859.mx-lg-auto { 14860 margin-left: auto !important; 14861 } 14862} 14863@media (min-width: 1200px) { 14864 .m-xl-0 { 14865 margin: 0 !important; 14866 } 14867 14868 .mt-xl-0, 14869.my-xl-0 { 14870 margin-top: 0 !important; 14871 } 14872 14873 .mr-xl-0, 14874.mx-xl-0 { 14875 margin-right: 0 !important; 14876 } 14877 14878 .mb-xl-0, 14879.my-xl-0 { 14880 margin-bottom: 0 !important; 14881 } 14882 14883 .ml-xl-0, 14884.mx-xl-0 { 14885 margin-left: 0 !important; 14886 } 14887 14888 .m-xl-1 { 14889 margin: 0.25rem !important; 14890 } 14891 14892 .mt-xl-1, 14893.my-xl-1 { 14894 margin-top: 0.25rem !important; 14895 } 14896 14897 .mr-xl-1, 14898.mx-xl-1 { 14899 margin-right: 0.25rem !important; 14900 } 14901 14902 .mb-xl-1, 14903.my-xl-1 { 14904 margin-bottom: 0.25rem !important; 14905 } 14906 14907 .ml-xl-1, 14908.mx-xl-1 { 14909 margin-left: 0.25rem !important; 14910 } 14911 14912 .m-xl-2 { 14913 margin: 0.5rem !important; 14914 } 14915 14916 .mt-xl-2, 14917.my-xl-2 { 14918 margin-top: 0.5rem !important; 14919 } 14920 14921 .mr-xl-2, 14922.mx-xl-2 { 14923 margin-right: 0.5rem !important; 14924 } 14925 14926 .mb-xl-2, 14927.my-xl-2 { 14928 margin-bottom: 0.5rem !important; 14929 } 14930 14931 .ml-xl-2, 14932.mx-xl-2 { 14933 margin-left: 0.5rem !important; 14934 } 14935 14936 .m-xl-3 { 14937 margin: 1rem !important; 14938 } 14939 14940 .mt-xl-3, 14941.my-xl-3 { 14942 margin-top: 1rem !important; 14943 } 14944 14945 .mr-xl-3, 14946.mx-xl-3 { 14947 margin-right: 1rem !important; 14948 } 14949 14950 .mb-xl-3, 14951.my-xl-3 { 14952 margin-bottom: 1rem !important; 14953 } 14954 14955 .ml-xl-3, 14956.mx-xl-3 { 14957 margin-left: 1rem !important; 14958 } 14959 14960 .m-xl-4 { 14961 margin: 1.5rem !important; 14962 } 14963 14964 .mt-xl-4, 14965.my-xl-4 { 14966 margin-top: 1.5rem !important; 14967 } 14968 14969 .mr-xl-4, 14970.mx-xl-4 { 14971 margin-right: 1.5rem !important; 14972 } 14973 14974 .mb-xl-4, 14975.my-xl-4 { 14976 margin-bottom: 1.5rem !important; 14977 } 14978 14979 .ml-xl-4, 14980.mx-xl-4 { 14981 margin-left: 1.5rem !important; 14982 } 14983 14984 .m-xl-5 { 14985 margin: 3rem !important; 14986 } 14987 14988 .mt-xl-5, 14989.my-xl-5 { 14990 margin-top: 3rem !important; 14991 } 14992 14993 .mr-xl-5, 14994.mx-xl-5 { 14995 margin-right: 3rem !important; 14996 } 14997 14998 .mb-xl-5, 14999.my-xl-5 { 15000 margin-bottom: 3rem !important; 15001 } 15002 15003 .ml-xl-5, 15004.mx-xl-5 { 15005 margin-left: 3rem !important; 15006 } 15007 15008 .m-xl--9 { 15009 margin: -10rem !important; 15010 } 15011 15012 .mt-xl--9, 15013.my-xl--9 { 15014 margin-top: -10rem !important; 15015 } 15016 15017 .mr-xl--9, 15018.mx-xl--9 { 15019 margin-right: -10rem !important; 15020 } 15021 15022 .mb-xl--9, 15023.my-xl--9 { 15024 margin-bottom: -10rem !important; 15025 } 15026 15027 .ml-xl--9, 15028.mx-xl--9 { 15029 margin-left: -10rem !important; 15030 } 15031 15032 .m-xl--8 { 15033 margin: -8rem !important; 15034 } 15035 15036 .mt-xl--8, 15037.my-xl--8 { 15038 margin-top: -8rem !important; 15039 } 15040 15041 .mr-xl--8, 15042.mx-xl--8 { 15043 margin-right: -8rem !important; 15044 } 15045 15046 .mb-xl--8, 15047.my-xl--8 { 15048 margin-bottom: -8rem !important; 15049 } 15050 15051 .ml-xl--8, 15052.mx-xl--8 { 15053 margin-left: -8rem !important; 15054 } 15055 15056 .m-xl--7 { 15057 margin: -6rem !important; 15058 } 15059 15060 .mt-xl--7, 15061.my-xl--7 { 15062 margin-top: -6rem !important; 15063 } 15064 15065 .mr-xl--7, 15066.mx-xl--7 { 15067 margin-right: -6rem !important; 15068 } 15069 15070 .mb-xl--7, 15071.my-xl--7 { 15072 margin-bottom: -6rem !important; 15073 } 15074 15075 .ml-xl--7, 15076.mx-xl--7 { 15077 margin-left: -6rem !important; 15078 } 15079 15080 .m-xl--6 { 15081 margin: -4.5rem !important; 15082 } 15083 15084 .mt-xl--6, 15085.my-xl--6 { 15086 margin-top: -4.5rem !important; 15087 } 15088 15089 .mr-xl--6, 15090.mx-xl--6 { 15091 margin-right: -4.5rem !important; 15092 } 15093 15094 .mb-xl--6, 15095.my-xl--6 { 15096 margin-bottom: -4.5rem !important; 15097 } 15098 15099 .ml-xl--6, 15100.mx-xl--6 { 15101 margin-left: -4.5rem !important; 15102 } 15103 15104 .m-xl--5 { 15105 margin: -3rem !important; 15106 } 15107 15108 .mt-xl--5, 15109.my-xl--5 { 15110 margin-top: -3rem !important; 15111 } 15112 15113 .mr-xl--5, 15114.mx-xl--5 { 15115 margin-right: -3rem !important; 15116 } 15117 15118 .mb-xl--5, 15119.my-xl--5 { 15120 margin-bottom: -3rem !important; 15121 } 15122 15123 .ml-xl--5, 15124.mx-xl--5 { 15125 margin-left: -3rem !important; 15126 } 15127 15128 .m-xl--4 { 15129 margin: -1.5rem !important; 15130 } 15131 15132 .mt-xl--4, 15133.my-xl--4 { 15134 margin-top: -1.5rem !important; 15135 } 15136 15137 .mr-xl--4, 15138.mx-xl--4 { 15139 margin-right: -1.5rem !important; 15140 } 15141 15142 .mb-xl--4, 15143.my-xl--4 { 15144 margin-bottom: -1.5rem !important; 15145 } 15146 15147 .ml-xl--4, 15148.mx-xl--4 { 15149 margin-left: -1.5rem !important; 15150 } 15151 15152 .m-xl--3 { 15153 margin: -1rem !important; 15154 } 15155 15156 .mt-xl--3, 15157.my-xl--3 { 15158 margin-top: -1rem !important; 15159 } 15160 15161 .mr-xl--3, 15162.mx-xl--3 { 15163 margin-right: -1rem !important; 15164 } 15165 15166 .mb-xl--3, 15167.my-xl--3 { 15168 margin-bottom: -1rem !important; 15169 } 15170 15171 .ml-xl--3, 15172.mx-xl--3 { 15173 margin-left: -1rem !important; 15174 } 15175 15176 .m-xl--2 { 15177 margin: -0.5rem !important; 15178 } 15179 15180 .mt-xl--2, 15181.my-xl--2 { 15182 margin-top: -0.5rem !important; 15183 } 15184 15185 .mr-xl--2, 15186.mx-xl--2 { 15187 margin-right: -0.5rem !important; 15188 } 15189 15190 .mb-xl--2, 15191.my-xl--2 { 15192 margin-bottom: -0.5rem !important; 15193 } 15194 15195 .ml-xl--2, 15196.mx-xl--2 { 15197 margin-left: -0.5rem !important; 15198 } 15199 15200 .m-xl--1 { 15201 margin: -0.25rem !important; 15202 } 15203 15204 .mt-xl--1, 15205.my-xl--1 { 15206 margin-top: -0.25rem !important; 15207 } 15208 15209 .mr-xl--1, 15210.mx-xl--1 { 15211 margin-right: -0.25rem !important; 15212 } 15213 15214 .mb-xl--1, 15215.my-xl--1 { 15216 margin-bottom: -0.25rem !important; 15217 } 15218 15219 .ml-xl--1, 15220.mx-xl--1 { 15221 margin-left: -0.25rem !important; 15222 } 15223 15224 .m-xl-6 { 15225 margin: 4.5rem !important; 15226 } 15227 15228 .mt-xl-6, 15229.my-xl-6 { 15230 margin-top: 4.5rem !important; 15231 } 15232 15233 .mr-xl-6, 15234.mx-xl-6 { 15235 margin-right: 4.5rem !important; 15236 } 15237 15238 .mb-xl-6, 15239.my-xl-6 { 15240 margin-bottom: 4.5rem !important; 15241 } 15242 15243 .ml-xl-6, 15244.mx-xl-6 { 15245 margin-left: 4.5rem !important; 15246 } 15247 15248 .m-xl-7 { 15249 margin: 6rem !important; 15250 } 15251 15252 .mt-xl-7, 15253.my-xl-7 { 15254 margin-top: 6rem !important; 15255 } 15256 15257 .mr-xl-7, 15258.mx-xl-7 { 15259 margin-right: 6rem !important; 15260 } 15261 15262 .mb-xl-7, 15263.my-xl-7 { 15264 margin-bottom: 6rem !important; 15265 } 15266 15267 .ml-xl-7, 15268.mx-xl-7 { 15269 margin-left: 6rem !important; 15270 } 15271 15272 .m-xl-8 { 15273 margin: 8rem !important; 15274 } 15275 15276 .mt-xl-8, 15277.my-xl-8 { 15278 margin-top: 8rem !important; 15279 } 15280 15281 .mr-xl-8, 15282.mx-xl-8 { 15283 margin-right: 8rem !important; 15284 } 15285 15286 .mb-xl-8, 15287.my-xl-8 { 15288 margin-bottom: 8rem !important; 15289 } 15290 15291 .ml-xl-8, 15292.mx-xl-8 { 15293 margin-left: 8rem !important; 15294 } 15295 15296 .m-xl-9 { 15297 margin: 10rem !important; 15298 } 15299 15300 .mt-xl-9, 15301.my-xl-9 { 15302 margin-top: 10rem !important; 15303 } 15304 15305 .mr-xl-9, 15306.mx-xl-9 { 15307 margin-right: 10rem !important; 15308 } 15309 15310 .mb-xl-9, 15311.my-xl-9 { 15312 margin-bottom: 10rem !important; 15313 } 15314 15315 .ml-xl-9, 15316.mx-xl-9 { 15317 margin-left: 10rem !important; 15318 } 15319 15320 .p-xl-0 { 15321 padding: 0 !important; 15322 } 15323 15324 .pt-xl-0, 15325.py-xl-0 { 15326 padding-top: 0 !important; 15327 } 15328 15329 .pr-xl-0, 15330.px-xl-0 { 15331 padding-right: 0 !important; 15332 } 15333 15334 .pb-xl-0, 15335.py-xl-0 { 15336 padding-bottom: 0 !important; 15337 } 15338 15339 .pl-xl-0, 15340.px-xl-0 { 15341 padding-left: 0 !important; 15342 } 15343 15344 .p-xl-1 { 15345 padding: 0.25rem !important; 15346 } 15347 15348 .pt-xl-1, 15349.py-xl-1 { 15350 padding-top: 0.25rem !important; 15351 } 15352 15353 .pr-xl-1, 15354.px-xl-1 { 15355 padding-right: 0.25rem !important; 15356 } 15357 15358 .pb-xl-1, 15359.py-xl-1 { 15360 padding-bottom: 0.25rem !important; 15361 } 15362 15363 .pl-xl-1, 15364.px-xl-1 { 15365 padding-left: 0.25rem !important; 15366 } 15367 15368 .p-xl-2 { 15369 padding: 0.5rem !important; 15370 } 15371 15372 .pt-xl-2, 15373.py-xl-2 { 15374 padding-top: 0.5rem !important; 15375 } 15376 15377 .pr-xl-2, 15378.px-xl-2 { 15379 padding-right: 0.5rem !important; 15380 } 15381 15382 .pb-xl-2, 15383.py-xl-2 { 15384 padding-bottom: 0.5rem !important; 15385 } 15386 15387 .pl-xl-2, 15388.px-xl-2 { 15389 padding-left: 0.5rem !important; 15390 } 15391 15392 .p-xl-3 { 15393 padding: 1rem !important; 15394 } 15395 15396 .pt-xl-3, 15397.py-xl-3 { 15398 padding-top: 1rem !important; 15399 } 15400 15401 .pr-xl-3, 15402.px-xl-3 { 15403 padding-right: 1rem !important; 15404 } 15405 15406 .pb-xl-3, 15407.py-xl-3 { 15408 padding-bottom: 1rem !important; 15409 } 15410 15411 .pl-xl-3, 15412.px-xl-3 { 15413 padding-left: 1rem !important; 15414 } 15415 15416 .p-xl-4 { 15417 padding: 1.5rem !important; 15418 } 15419 15420 .pt-xl-4, 15421.py-xl-4 { 15422 padding-top: 1.5rem !important; 15423 } 15424 15425 .pr-xl-4, 15426.px-xl-4 { 15427 padding-right: 1.5rem !important; 15428 } 15429 15430 .pb-xl-4, 15431.py-xl-4 { 15432 padding-bottom: 1.5rem !important; 15433 } 15434 15435 .pl-xl-4, 15436.px-xl-4 { 15437 padding-left: 1.5rem !important; 15438 } 15439 15440 .p-xl-5 { 15441 padding: 3rem !important; 15442 } 15443 15444 .pt-xl-5, 15445.py-xl-5 { 15446 padding-top: 3rem !important; 15447 } 15448 15449 .pr-xl-5, 15450.px-xl-5 { 15451 padding-right: 3rem !important; 15452 } 15453 15454 .pb-xl-5, 15455.py-xl-5 { 15456 padding-bottom: 3rem !important; 15457 } 15458 15459 .pl-xl-5, 15460.px-xl-5 { 15461 padding-left: 3rem !important; 15462 } 15463 15464 .p-xl--9 { 15465 padding: -10rem !important; 15466 } 15467 15468 .pt-xl--9, 15469.py-xl--9 { 15470 padding-top: -10rem !important; 15471 } 15472 15473 .pr-xl--9, 15474.px-xl--9 { 15475 padding-right: -10rem !important; 15476 } 15477 15478 .pb-xl--9, 15479.py-xl--9 { 15480 padding-bottom: -10rem !important; 15481 } 15482 15483 .pl-xl--9, 15484.px-xl--9 { 15485 padding-left: -10rem !important; 15486 } 15487 15488 .p-xl--8 { 15489 padding: -8rem !important; 15490 } 15491 15492 .pt-xl--8, 15493.py-xl--8 { 15494 padding-top: -8rem !important; 15495 } 15496 15497 .pr-xl--8, 15498.px-xl--8 { 15499 padding-right: -8rem !important; 15500 } 15501 15502 .pb-xl--8, 15503.py-xl--8 { 15504 padding-bottom: -8rem !important; 15505 } 15506 15507 .pl-xl--8, 15508.px-xl--8 { 15509 padding-left: -8rem !important; 15510 } 15511 15512 .p-xl--7 { 15513 padding: -6rem !important; 15514 } 15515 15516 .pt-xl--7, 15517.py-xl--7 { 15518 padding-top: -6rem !important; 15519 } 15520 15521 .pr-xl--7, 15522.px-xl--7 { 15523 padding-right: -6rem !important; 15524 } 15525 15526 .pb-xl--7, 15527.py-xl--7 { 15528 padding-bottom: -6rem !important; 15529 } 15530 15531 .pl-xl--7, 15532.px-xl--7 { 15533 padding-left: -6rem !important; 15534 } 15535 15536 .p-xl--6 { 15537 padding: -4.5rem !important; 15538 } 15539 15540 .pt-xl--6, 15541.py-xl--6 { 15542 padding-top: -4.5rem !important; 15543 } 15544 15545 .pr-xl--6, 15546.px-xl--6 { 15547 padding-right: -4.5rem !important; 15548 } 15549 15550 .pb-xl--6, 15551.py-xl--6 { 15552 padding-bottom: -4.5rem !important; 15553 } 15554 15555 .pl-xl--6, 15556.px-xl--6 { 15557 padding-left: -4.5rem !important; 15558 } 15559 15560 .p-xl--5 { 15561 padding: -3rem !important; 15562 } 15563 15564 .pt-xl--5, 15565.py-xl--5 { 15566 padding-top: -3rem !important; 15567 } 15568 15569 .pr-xl--5, 15570.px-xl--5 { 15571 padding-right: -3rem !important; 15572 } 15573 15574 .pb-xl--5, 15575.py-xl--5 { 15576 padding-bottom: -3rem !important; 15577 } 15578 15579 .pl-xl--5, 15580.px-xl--5 { 15581 padding-left: -3rem !important; 15582 } 15583 15584 .p-xl--4 { 15585 padding: -1.5rem !important; 15586 } 15587 15588 .pt-xl--4, 15589.py-xl--4 { 15590 padding-top: -1.5rem !important; 15591 } 15592 15593 .pr-xl--4, 15594.px-xl--4 { 15595 padding-right: -1.5rem !important; 15596 } 15597 15598 .pb-xl--4, 15599.py-xl--4 { 15600 padding-bottom: -1.5rem !important; 15601 } 15602 15603 .pl-xl--4, 15604.px-xl--4 { 15605 padding-left: -1.5rem !important; 15606 } 15607 15608 .p-xl--3 { 15609 padding: -1rem !important; 15610 } 15611 15612 .pt-xl--3, 15613.py-xl--3 { 15614 padding-top: -1rem !important; 15615 } 15616 15617 .pr-xl--3, 15618.px-xl--3 { 15619 padding-right: -1rem !important; 15620 } 15621 15622 .pb-xl--3, 15623.py-xl--3 { 15624 padding-bottom: -1rem !important; 15625 } 15626 15627 .pl-xl--3, 15628.px-xl--3 { 15629 padding-left: -1rem !important; 15630 } 15631 15632 .p-xl--2 { 15633 padding: -0.5rem !important; 15634 } 15635 15636 .pt-xl--2, 15637.py-xl--2 { 15638 padding-top: -0.5rem !important; 15639 } 15640 15641 .pr-xl--2, 15642.px-xl--2 { 15643 padding-right: -0.5rem !important; 15644 } 15645 15646 .pb-xl--2, 15647.py-xl--2 { 15648 padding-bottom: -0.5rem !important; 15649 } 15650 15651 .pl-xl--2, 15652.px-xl--2 { 15653 padding-left: -0.5rem !important; 15654 } 15655 15656 .p-xl--1 { 15657 padding: -0.25rem !important; 15658 } 15659 15660 .pt-xl--1, 15661.py-xl--1 { 15662 padding-top: -0.25rem !important; 15663 } 15664 15665 .pr-xl--1, 15666.px-xl--1 { 15667 padding-right: -0.25rem !important; 15668 } 15669 15670 .pb-xl--1, 15671.py-xl--1 { 15672 padding-bottom: -0.25rem !important; 15673 } 15674 15675 .pl-xl--1, 15676.px-xl--1 { 15677 padding-left: -0.25rem !important; 15678 } 15679 15680 .p-xl-6 { 15681 padding: 4.5rem !important; 15682 } 15683 15684 .pt-xl-6, 15685.py-xl-6 { 15686 padding-top: 4.5rem !important; 15687 } 15688 15689 .pr-xl-6, 15690.px-xl-6 { 15691 padding-right: 4.5rem !important; 15692 } 15693 15694 .pb-xl-6, 15695.py-xl-6 { 15696 padding-bottom: 4.5rem !important; 15697 } 15698 15699 .pl-xl-6, 15700.px-xl-6 { 15701 padding-left: 4.5rem !important; 15702 } 15703 15704 .p-xl-7 { 15705 padding: 6rem !important; 15706 } 15707 15708 .pt-xl-7, 15709.py-xl-7 { 15710 padding-top: 6rem !important; 15711 } 15712 15713 .pr-xl-7, 15714.px-xl-7 { 15715 padding-right: 6rem !important; 15716 } 15717 15718 .pb-xl-7, 15719.py-xl-7 { 15720 padding-bottom: 6rem !important; 15721 } 15722 15723 .pl-xl-7, 15724.px-xl-7 { 15725 padding-left: 6rem !important; 15726 } 15727 15728 .p-xl-8 { 15729 padding: 8rem !important; 15730 } 15731 15732 .pt-xl-8, 15733.py-xl-8 { 15734 padding-top: 8rem !important; 15735 } 15736 15737 .pr-xl-8, 15738.px-xl-8 { 15739 padding-right: 8rem !important; 15740 } 15741 15742 .pb-xl-8, 15743.py-xl-8 { 15744 padding-bottom: 8rem !important; 15745 } 15746 15747 .pl-xl-8, 15748.px-xl-8 { 15749 padding-left: 8rem !important; 15750 } 15751 15752 .p-xl-9 { 15753 padding: 10rem !important; 15754 } 15755 15756 .pt-xl-9, 15757.py-xl-9 { 15758 padding-top: 10rem !important; 15759 } 15760 15761 .pr-xl-9, 15762.px-xl-9 { 15763 padding-right: 10rem !important; 15764 } 15765 15766 .pb-xl-9, 15767.py-xl-9 { 15768 padding-bottom: 10rem !important; 15769 } 15770 15771 .pl-xl-9, 15772.px-xl-9 { 15773 padding-left: 10rem !important; 15774 } 15775 15776 .m-xl-n1 { 15777 margin: -0.25rem !important; 15778 } 15779 15780 .mt-xl-n1, 15781.my-xl-n1 { 15782 margin-top: -0.25rem !important; 15783 } 15784 15785 .mr-xl-n1, 15786.mx-xl-n1 { 15787 margin-right: -0.25rem !important; 15788 } 15789 15790 .mb-xl-n1, 15791.my-xl-n1 { 15792 margin-bottom: -0.25rem !important; 15793 } 15794 15795 .ml-xl-n1, 15796.mx-xl-n1 { 15797 margin-left: -0.25rem !important; 15798 } 15799 15800 .m-xl-n2 { 15801 margin: -0.5rem !important; 15802 } 15803 15804 .mt-xl-n2, 15805.my-xl-n2 { 15806 margin-top: -0.5rem !important; 15807 } 15808 15809 .mr-xl-n2, 15810.mx-xl-n2 { 15811 margin-right: -0.5rem !important; 15812 } 15813 15814 .mb-xl-n2, 15815.my-xl-n2 { 15816 margin-bottom: -0.5rem !important; 15817 } 15818 15819 .ml-xl-n2, 15820.mx-xl-n2 { 15821 margin-left: -0.5rem !important; 15822 } 15823 15824 .m-xl-n3 { 15825 margin: -1rem !important; 15826 } 15827 15828 .mt-xl-n3, 15829.my-xl-n3 { 15830 margin-top: -1rem !important; 15831 } 15832 15833 .mr-xl-n3, 15834.mx-xl-n3 { 15835 margin-right: -1rem !important; 15836 } 15837 15838 .mb-xl-n3, 15839.my-xl-n3 { 15840 margin-bottom: -1rem !important; 15841 } 15842 15843 .ml-xl-n3, 15844.mx-xl-n3 { 15845 margin-left: -1rem !important; 15846 } 15847 15848 .m-xl-n4 { 15849 margin: -1.5rem !important; 15850 } 15851 15852 .mt-xl-n4, 15853.my-xl-n4 { 15854 margin-top: -1.5rem !important; 15855 } 15856 15857 .mr-xl-n4, 15858.mx-xl-n4 { 15859 margin-right: -1.5rem !important; 15860 } 15861 15862 .mb-xl-n4, 15863.my-xl-n4 { 15864 margin-bottom: -1.5rem !important; 15865 } 15866 15867 .ml-xl-n4, 15868.mx-xl-n4 { 15869 margin-left: -1.5rem !important; 15870 } 15871 15872 .m-xl-n5 { 15873 margin: -3rem !important; 15874 } 15875 15876 .mt-xl-n5, 15877.my-xl-n5 { 15878 margin-top: -3rem !important; 15879 } 15880 15881 .mr-xl-n5, 15882.mx-xl-n5 { 15883 margin-right: -3rem !important; 15884 } 15885 15886 .mb-xl-n5, 15887.my-xl-n5 { 15888 margin-bottom: -3rem !important; 15889 } 15890 15891 .ml-xl-n5, 15892.mx-xl-n5 { 15893 margin-left: -3rem !important; 15894 } 15895 15896 .m-xl-n-9 { 15897 margin: 10rem !important; 15898 } 15899 15900 .mt-xl-n-9, 15901.my-xl-n-9 { 15902 margin-top: 10rem !important; 15903 } 15904 15905 .mr-xl-n-9, 15906.mx-xl-n-9 { 15907 margin-right: 10rem !important; 15908 } 15909 15910 .mb-xl-n-9, 15911.my-xl-n-9 { 15912 margin-bottom: 10rem !important; 15913 } 15914 15915 .ml-xl-n-9, 15916.mx-xl-n-9 { 15917 margin-left: 10rem !important; 15918 } 15919 15920 .m-xl-n-8 { 15921 margin: 8rem !important; 15922 } 15923 15924 .mt-xl-n-8, 15925.my-xl-n-8 { 15926 margin-top: 8rem !important; 15927 } 15928 15929 .mr-xl-n-8, 15930.mx-xl-n-8 { 15931 margin-right: 8rem !important; 15932 } 15933 15934 .mb-xl-n-8, 15935.my-xl-n-8 { 15936 margin-bottom: 8rem !important; 15937 } 15938 15939 .ml-xl-n-8, 15940.mx-xl-n-8 { 15941 margin-left: 8rem !important; 15942 } 15943 15944 .m-xl-n-7 { 15945 margin: 6rem !important; 15946 } 15947 15948 .mt-xl-n-7, 15949.my-xl-n-7 { 15950 margin-top: 6rem !important; 15951 } 15952 15953 .mr-xl-n-7, 15954.mx-xl-n-7 { 15955 margin-right: 6rem !important; 15956 } 15957 15958 .mb-xl-n-7, 15959.my-xl-n-7 { 15960 margin-bottom: 6rem !important; 15961 } 15962 15963 .ml-xl-n-7, 15964.mx-xl-n-7 { 15965 margin-left: 6rem !important; 15966 } 15967 15968 .m-xl-n-6 { 15969 margin: 4.5rem !important; 15970 } 15971 15972 .mt-xl-n-6, 15973.my-xl-n-6 { 15974 margin-top: 4.5rem !important; 15975 } 15976 15977 .mr-xl-n-6, 15978.mx-xl-n-6 { 15979 margin-right: 4.5rem !important; 15980 } 15981 15982 .mb-xl-n-6, 15983.my-xl-n-6 { 15984 margin-bottom: 4.5rem !important; 15985 } 15986 15987 .ml-xl-n-6, 15988.mx-xl-n-6 { 15989 margin-left: 4.5rem !important; 15990 } 15991 15992 .m-xl-n-5 { 15993 margin: 3rem !important; 15994 } 15995 15996 .mt-xl-n-5, 15997.my-xl-n-5 { 15998 margin-top: 3rem !important; 15999 } 16000 16001 .mr-xl-n-5, 16002.mx-xl-n-5 { 16003 margin-right: 3rem !important; 16004 } 16005 16006 .mb-xl-n-5, 16007.my-xl-n-5 { 16008 margin-bottom: 3rem !important; 16009 } 16010 16011 .ml-xl-n-5, 16012.mx-xl-n-5 { 16013 margin-left: 3rem !important; 16014 } 16015 16016 .m-xl-n-4 { 16017 margin: 1.5rem !important; 16018 } 16019 16020 .mt-xl-n-4, 16021.my-xl-n-4 { 16022 margin-top: 1.5rem !important; 16023 } 16024 16025 .mr-xl-n-4, 16026.mx-xl-n-4 { 16027 margin-right: 1.5rem !important; 16028 } 16029 16030 .mb-xl-n-4, 16031.my-xl-n-4 { 16032 margin-bottom: 1.5rem !important; 16033 } 16034 16035 .ml-xl-n-4, 16036.mx-xl-n-4 { 16037 margin-left: 1.5rem !important; 16038 } 16039 16040 .m-xl-n-3 { 16041 margin: 1rem !important; 16042 } 16043 16044 .mt-xl-n-3, 16045.my-xl-n-3 { 16046 margin-top: 1rem !important; 16047 } 16048 16049 .mr-xl-n-3, 16050.mx-xl-n-3 { 16051 margin-right: 1rem !important; 16052 } 16053 16054 .mb-xl-n-3, 16055.my-xl-n-3 { 16056 margin-bottom: 1rem !important; 16057 } 16058 16059 .ml-xl-n-3, 16060.mx-xl-n-3 { 16061 margin-left: 1rem !important; 16062 } 16063 16064 .m-xl-n-2 { 16065 margin: 0.5rem !important; 16066 } 16067 16068 .mt-xl-n-2, 16069.my-xl-n-2 { 16070 margin-top: 0.5rem !important; 16071 } 16072 16073 .mr-xl-n-2, 16074.mx-xl-n-2 { 16075 margin-right: 0.5rem !important; 16076 } 16077 16078 .mb-xl-n-2, 16079.my-xl-n-2 { 16080 margin-bottom: 0.5rem !important; 16081 } 16082 16083 .ml-xl-n-2, 16084.mx-xl-n-2 { 16085 margin-left: 0.5rem !important; 16086 } 16087 16088 .m-xl-n-1 { 16089 margin: 0.25rem !important; 16090 } 16091 16092 .mt-xl-n-1, 16093.my-xl-n-1 { 16094 margin-top: 0.25rem !important; 16095 } 16096 16097 .mr-xl-n-1, 16098.mx-xl-n-1 { 16099 margin-right: 0.25rem !important; 16100 } 16101 16102 .mb-xl-n-1, 16103.my-xl-n-1 { 16104 margin-bottom: 0.25rem !important; 16105 } 16106 16107 .ml-xl-n-1, 16108.mx-xl-n-1 { 16109 margin-left: 0.25rem !important; 16110 } 16111 16112 .m-xl-n6 { 16113 margin: -4.5rem !important; 16114 } 16115 16116 .mt-xl-n6, 16117.my-xl-n6 { 16118 margin-top: -4.5rem !important; 16119 } 16120 16121 .mr-xl-n6, 16122.mx-xl-n6 { 16123 margin-right: -4.5rem !important; 16124 } 16125 16126 .mb-xl-n6, 16127.my-xl-n6 { 16128 margin-bottom: -4.5rem !important; 16129 } 16130 16131 .ml-xl-n6, 16132.mx-xl-n6 { 16133 margin-left: -4.5rem !important; 16134 } 16135 16136 .m-xl-n7 { 16137 margin: -6rem !important; 16138 } 16139 16140 .mt-xl-n7, 16141.my-xl-n7 { 16142 margin-top: -6rem !important; 16143 } 16144 16145 .mr-xl-n7, 16146.mx-xl-n7 { 16147 margin-right: -6rem !important; 16148 } 16149 16150 .mb-xl-n7, 16151.my-xl-n7 { 16152 margin-bottom: -6rem !important; 16153 } 16154 16155 .ml-xl-n7, 16156.mx-xl-n7 { 16157 margin-left: -6rem !important; 16158 } 16159 16160 .m-xl-n8 { 16161 margin: -8rem !important; 16162 } 16163 16164 .mt-xl-n8, 16165.my-xl-n8 { 16166 margin-top: -8rem !important; 16167 } 16168 16169 .mr-xl-n8, 16170.mx-xl-n8 { 16171 margin-right: -8rem !important; 16172 } 16173 16174 .mb-xl-n8, 16175.my-xl-n8 { 16176 margin-bottom: -8rem !important; 16177 } 16178 16179 .ml-xl-n8, 16180.mx-xl-n8 { 16181 margin-left: -8rem !important; 16182 } 16183 16184 .m-xl-n9 { 16185 margin: -10rem !important; 16186 } 16187 16188 .mt-xl-n9, 16189.my-xl-n9 { 16190 margin-top: -10rem !important; 16191 } 16192 16193 .mr-xl-n9, 16194.mx-xl-n9 { 16195 margin-right: -10rem !important; 16196 } 16197 16198 .mb-xl-n9, 16199.my-xl-n9 { 16200 margin-bottom: -10rem !important; 16201 } 16202 16203 .ml-xl-n9, 16204.mx-xl-n9 { 16205 margin-left: -10rem !important; 16206 } 16207 16208 .m-xl-auto { 16209 margin: auto !important; 16210 } 16211 16212 .mt-xl-auto, 16213.my-xl-auto { 16214 margin-top: auto !important; 16215 } 16216 16217 .mr-xl-auto, 16218.mx-xl-auto { 16219 margin-right: auto !important; 16220 } 16221 16222 .mb-xl-auto, 16223.my-xl-auto { 16224 margin-bottom: auto !important; 16225 } 16226 16227 .ml-xl-auto, 16228.mx-xl-auto { 16229 margin-left: auto !important; 16230 } 16231} 16232.stretched-link::after { 16233 position: absolute; 16234 top: 0; 16235 right: 0; 16236 bottom: 0; 16237 left: 0; 16238 z-index: 1; 16239 pointer-events: auto; 16240 content: ""; 16241 background-color: rgba(0, 0, 0, 0); 16242} 16243 16244.text-monospace { 16245 font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; 16246} 16247 16248.text-justify { 16249 text-align: justify !important; 16250} 16251 16252.text-wrap { 16253 white-space: normal !important; 16254} 16255 16256.text-nowrap { 16257 white-space: nowrap !important; 16258} 16259 16260.text-truncate { 16261 overflow: hidden; 16262 text-overflow: ellipsis; 16263 white-space: nowrap; 16264} 16265 16266.text-left { 16267 text-align: left !important; 16268} 16269 16270.text-right { 16271 text-align: right !important; 16272} 16273 16274.text-center { 16275 text-align: center !important; 16276} 16277 16278@media (min-width: 576px) { 16279 .text-sm-left { 16280 text-align: left !important; 16281 } 16282 16283 .text-sm-right { 16284 text-align: right !important; 16285 } 16286 16287 .text-sm-center { 16288 text-align: center !important; 16289 } 16290} 16291@media (min-width: 768px) { 16292 .text-md-left { 16293 text-align: left !important; 16294 } 16295 16296 .text-md-right { 16297 text-align: right !important; 16298 } 16299 16300 .text-md-center { 16301 text-align: center !important; 16302 } 16303} 16304@media (min-width: 992px) { 16305 .text-lg-left { 16306 text-align: left !important; 16307 } 16308 16309 .text-lg-right { 16310 text-align: right !important; 16311 } 16312 16313 .text-lg-center { 16314 text-align: center !important; 16315 } 16316} 16317@media (min-width: 1200px) { 16318 .text-xl-left { 16319 text-align: left !important; 16320 } 16321 16322 .text-xl-right { 16323 text-align: right !important; 16324 } 16325 16326 .text-xl-center { 16327 text-align: center !important; 16328 } 16329} 16330.text-lowercase { 16331 text-transform: lowercase !important; 16332} 16333 16334.text-uppercase { 16335 text-transform: uppercase !important; 16336} 16337 16338.text-capitalize { 16339 text-transform: capitalize !important; 16340} 16341 16342.font-weight-light { 16343 font-weight: 300 !important; 16344} 16345 16346.font-weight-lighter { 16347 font-weight: lighter !important; 16348} 16349 16350.font-weight-normal { 16351 font-weight: 400 !important; 16352} 16353 16354.font-weight-bold { 16355 font-weight: 600 !important; 16356} 16357 16358.font-weight-bolder { 16359 font-weight: bolder !important; 16360} 16361 16362.font-italic { 16363 font-style: italic !important; 16364} 16365 16366.text-white { 16367 color: #fff !important; 16368} 16369 16370.text-primary { 16371 color: #5e72e4 !important; 16372} 16373 16374a.text-primary:hover, a.text-primary:focus { 16375 color: #233dd2 !important; 16376} 16377 16378.text-secondary { 16379 color: #f4f5f7 !important; 16380} 16381 16382a.text-secondary:hover, a.text-secondary:focus { 16383 color: #c8cdd7 !important; 16384} 16385 16386.text-success { 16387 color: #2dce89 !important; 16388} 16389 16390a.text-success:hover, a.text-success:focus { 16391 color: #1f8f5f !important; 16392} 16393 16394.text-info { 16395 color: #11cdef !important; 16396} 16397 16398a.text-info:hover, a.text-info:focus { 16399 color: #0b90a8 !important; 16400} 16401 16402.text-warning { 16403 color: #fb6340 !important; 16404} 16405 16406a.text-warning:hover, a.text-warning:focus { 16407 color: #ea3005 !important; 16408} 16409 16410.text-danger { 16411 color: #f5365c !important; 16412} 16413 16414a.text-danger:hover, a.text-danger:focus { 16415 color: #d40b33 !important; 16416} 16417 16418.text-light { 16419 color: #adb5bd !important; 16420} 16421 16422a.text-light:hover, a.text-light:focus { 16423 color: #838f9b !important; 16424} 16425 16426.text-dark { 16427 color: #212529 !important; 16428} 16429 16430a.text-dark:hover, a.text-dark:focus { 16431 color: black !important; 16432} 16433 16434.text-default { 16435 color: #172b4d !important; 16436} 16437 16438a.text-default:hover, a.text-default:focus { 16439 color: #050a12 !important; 16440} 16441 16442.text-white { 16443 color: #fff !important; 16444} 16445 16446a.text-white:hover, a.text-white:focus { 16447 color: #d9d9d9 !important; 16448} 16449 16450.text-neutral { 16451 color: #fff !important; 16452} 16453 16454a.text-neutral:hover, a.text-neutral:focus { 16455 color: #d9d9d9 !important; 16456} 16457 16458.text-darker { 16459 color: black !important; 16460} 16461 16462a.text-darker:hover, a.text-darker:focus { 16463 color: black !important; 16464} 16465 16466.text-body { 16467 color: #525f7f !important; 16468} 16469 16470.text-muted { 16471 color: #8898aa !important; 16472} 16473 16474.text-black-50 { 16475 color: rgba(0, 0, 0, 0.5) !important; 16476} 16477 16478.text-white-50 { 16479 color: rgba(255, 255, 255, 0.5) !important; 16480} 16481 16482.text-hide { 16483 font: 0/0 a; 16484 color: transparent; 16485 text-shadow: none; 16486 background-color: transparent; 16487 border: 0; 16488} 16489 16490.text-decoration-none { 16491 text-decoration: none !important; 16492} 16493 16494.text-break { 16495 word-wrap: break-word !important; 16496} 16497 16498.text-reset { 16499 color: inherit !important; 16500} 16501 16502.visible { 16503 visibility: visible !important; 16504} 16505 16506.invisible { 16507 visibility: hidden !important; 16508} 16509 16510@media print { 16511 *, 16512*::before, 16513*::after { 16514 text-shadow: none !important; 16515 box-shadow: none !important; 16516 } 16517 16518 a:not(.btn):not(.qq-upload-button):not(.toggleAssistant):not(button) { 16519 text-decoration: underline; 16520 } 16521 16522 abbr[title]::after { 16523 content: " (" attr(title) ")"; 16524 } 16525 16526 pre { 16527 white-space: pre-wrap !important; 16528 } 16529 16530 pre, 16531blockquote { 16532 border: 0.0625rem solid #adb5bd; 16533 page-break-inside: avoid; 16534 } 16535 16536 thead { 16537 display: table-header-group; 16538 } 16539 16540 tr, 16541img { 16542 page-break-inside: avoid; 16543 } 16544 16545 p, 16546h2, 16547h3 { 16548 orphans: 3; 16549 widows: 3; 16550 } 16551 16552 h2, 16553h3 { 16554 page-break-after: avoid; 16555 } 16556 16557 @page { 16558 size: a3; 16559 } 16560 body { 16561 min-width: 992px !important; 16562 } 16563 16564 .container { 16565 min-width: 992px !important; 16566 } 16567 16568 .navbar { 16569 display: none; 16570 } 16571 16572 .badge { 16573 border: 0.0625rem solid #000; 16574 } 16575 16576 .table, #dokuwiki__content table { 16577 border-collapse: collapse !important; 16578 } 16579 16580 .table td, #dokuwiki__content table td, 16581.table th, 16582#dokuwiki__content table th { 16583 background-color: #fff !important; 16584 } 16585 16586 .table-bordered th, 16587.table-bordered td { 16588 border: 1px solid #dee2e6 !important; 16589 } 16590 16591 .table-dark { 16592 color: inherit; 16593 } 16594 16595 .table-dark th, 16596.table-dark td, 16597.table-dark thead th, 16598.table-dark tbody + tbody { 16599 border-color: #dee2e6; 16600 } 16601 16602 .table .thead-dark th, #dokuwiki__content table .thead-dark th { 16603 color: inherit; 16604 border-color: #dee2e6; 16605 } 16606} 16607/*! 16608 16609========================================================= 16610* {{ site.product.name }} {{ site.product.name_long }} - v{{ site.product.version }} 16611========================================================= 16612 16613* Product Page: {{ site.product.download }} 16614* Copyright {{ 'now' | date: "%Y" }} {{ site.author }} ({{ site.website.url }}) 16615* Licensed under MIT ({{ site.product.license }}) 16616 16617* Coded by www.creative-tim.com 16618 16619========================================================= 16620 16621* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 16622 16623*/ 16624iframe { 16625 border: 0; 16626} 16627 16628figcaption, 16629figure, 16630main { 16631 display: block; 16632} 16633 16634main { 16635 overflow: hidden; 16636} 16637 16638.section-nucleo-icons .icons-container { 16639 position: relative; 16640 max-width: 100%; 16641 height: 360px; 16642 margin: 0 auto; 16643 z-index: 1; 16644} 16645 16646.section-nucleo-icons { 16647 --icon-size: 5rem; 16648 --icon-sm-size: 3.75rem; 16649 --gutter: 7rem; 16650} 16651 16652.section-nucleo-icons .icons-container i { 16653 position: absolute; 16654 display: inline-flex; 16655 align-items: center; 16656 justify-content: center; 16657 border-radius: 50%; 16658 background: #fff; 16659 z-index: 1; 16660 transform: translate(-50%, -50%); 16661 box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07); 16662 transition: all 0.2s cubic-bezier(0.25, 0.65, 0.9, 0.75); 16663} 16664 16665.section-nucleo-icons .icons-container i.icon { 16666 width: var(--icon-size); 16667 height: var(--icon-size); 16668 font-size: 1.7em; 16669} 16670 16671.section-nucleo-icons .icons-container i.icon-sm { 16672 width: var(--icon-sm-size); 16673 height: var(--icon-sm-size); 16674 font-size: 1.5em; 16675} 16676 16677.section-nucleo-icons .icons-container i:nth-child(1) { 16678 font-size: 42px; 16679 color: #fb6340; 16680 z-index: 2; 16681} 16682 16683.section-nucleo-icons .icons-container:not(.on-screen) i { 16684 transform: translate(-50%, -50%); 16685 left: 50%; 16686 top: 50%; 16687} 16688 16689.section-nucleo-icons .icons-container:not(.on-screen) i:not(:nth-child(1)) { 16690 opacity: 0; 16691} 16692 16693.section-nucleo-icons .icons-container.on-screen i { 16694 opacity: 1; 16695} 16696 16697.section-nucleo-icons .icons-container.on-screen i:nth-child(1) { 16698 left: 50%; 16699 top: 50%; 16700 font-size: 42px; 16701 color: #fb6340; 16702} 16703 16704.section-nucleo-icons .icons-container.on-screen i:nth-child(2) { 16705 left: calc(50% + (var(--gutter) * 1.7)); 16706 top: 50%; 16707} 16708 16709.section-nucleo-icons .icons-container.on-screen i:nth-child(3) { 16710 left: calc(50% + var(--gutter)); 16711 top: calc(50% + var(--gutter)); 16712} 16713 16714.section-nucleo-icons .icons-container.on-screen i:nth-child(4) { 16715 left: calc(50% + var(--gutter)); 16716 top: calc(50% - var(--gutter)); 16717} 16718 16719.section-nucleo-icons .icons-container.on-screen i:nth-child(5) { 16720 left: calc(50% + (var(--gutter) * 3)); 16721 top: 50%; 16722} 16723 16724.section-nucleo-icons .icons-container.on-screen i:nth-child(6) { 16725 left: calc(50% + (var(--gutter) * 2.7)); 16726 top: calc(50% + (var(--gutter) * 1.5)); 16727} 16728 16729.section-nucleo-icons .icons-container.on-screen i:nth-child(7) { 16730 left: calc(50% + (var(--gutter) * 2.7)); 16731 top: calc(50% - (var(--gutter) * 1.5)); 16732} 16733 16734.section-nucleo-icons .icons-container.on-screen i:nth-child(8) { 16735 left: calc(50% - (var(--gutter) * 1.7)); 16736 top: 50%; 16737} 16738 16739.section-nucleo-icons .icons-container.on-screen i:nth-child(9) { 16740 left: calc(50% - var(--gutter)); 16741 top: calc(50% + var(--gutter)); 16742} 16743 16744.section-nucleo-icons .icons-container.on-screen i:nth-child(10) { 16745 left: calc(50% - var(--gutter)); 16746 top: calc(50% - var(--gutter)); 16747} 16748 16749.section-nucleo-icons .icons-container.on-screen i:nth-child(11) { 16750 left: calc(50% - (var(--gutter) * 4)); 16751 top: 50%; 16752} 16753 16754.section-nucleo-icons .icons-container.on-screen i:nth-child(12) { 16755 left: calc(50% - (var(--gutter) * 2.7)); 16756 top: calc(50% + (var(--gutter) * 1.5)); 16757} 16758 16759.section-nucleo-icons .icons-container.on-screen i:nth-child(13) { 16760 left: calc(50% - (var(--gutter) * 2.7)); 16761 top: calc(50% - (var(--gutter) * 1.5)); 16762} 16763 16764@media (max-width: 991.98px) { 16765 .section-nucleo-icons { 16766 overflow: hidden; 16767 } 16768} 16769.blur--hover { 16770 position: relative; 16771} 16772 16773.blur--hover .blur-item { 16774 transition: 1s cubic-bezier(0.19, 1, 0.22, 1); 16775 will-change: transform; 16776 filter: blur(0); 16777 opacity: 1; 16778} 16779 16780.blur--hover .blur-hidden { 16781 position: absolute; 16782 top: calc(50% + 7px); 16783 left: 50%; 16784 transform: translate(-50%, -50%); 16785 opacity: 0; 16786 transition: all 0.15s ease; 16787 z-index: 100; 16788} 16789 16790.blur--hover:hover .blur-item { 16791 opacity: 0.8; 16792 filter: blur(10px); 16793 transform: scale(0.95); 16794 z-index: 1; 16795} 16796 16797.blur--hover:hover .blur-hidden { 16798 opacity: 1; 16799 top: 50%; 16800} 16801 16802.info .info-title { 16803 margin: 25px 0 15px; 16804 font-weight: 600; 16805} 16806 16807.bg-blue { 16808 background-color: #5e72e4 !important; 16809} 16810 16811a.bg-blue:hover, a.bg-blue:focus, 16812button.bg-blue:hover, 16813button.bg-blue:focus { 16814 background-color: #324cdd !important; 16815} 16816 16817.bg-indigo { 16818 background-color: #5603ad !important; 16819} 16820 16821a.bg-indigo:hover, a.bg-indigo:focus, 16822button.bg-indigo:hover, 16823button.bg-indigo:focus { 16824 background-color: #3d027b !important; 16825} 16826 16827.bg-purple { 16828 background-color: #8965e0 !important; 16829} 16830 16831a.bg-purple:hover, a.bg-purple:focus, 16832button.bg-purple:hover, 16833button.bg-purple:focus { 16834 background-color: #683bd7 !important; 16835} 16836 16837.bg-pink { 16838 background-color: #f3a4b5 !important; 16839} 16840 16841a.bg-pink:hover, a.bg-pink:focus, 16842button.bg-pink:hover, 16843button.bg-pink:focus { 16844 background-color: #ed7790 !important; 16845} 16846 16847.bg-red { 16848 background-color: #f5365c !important; 16849} 16850 16851a.bg-red:hover, a.bg-red:focus, 16852button.bg-red:hover, 16853button.bg-red:focus { 16854 background-color: #ec0c38 !important; 16855} 16856 16857.bg-orange { 16858 background-color: #fb6340 !important; 16859} 16860 16861a.bg-orange:hover, a.bg-orange:focus, 16862button.bg-orange:hover, 16863button.bg-orange:focus { 16864 background-color: #fa3a0e !important; 16865} 16866 16867.bg-yellow { 16868 background-color: #ffd600 !important; 16869} 16870 16871a.bg-yellow:hover, a.bg-yellow:focus, 16872button.bg-yellow:hover, 16873button.bg-yellow:focus { 16874 background-color: #ccab00 !important; 16875} 16876 16877.bg-green { 16878 background-color: #2dce89 !important; 16879} 16880 16881a.bg-green:hover, a.bg-green:focus, 16882button.bg-green:hover, 16883button.bg-green:focus { 16884 background-color: #24a46d !important; 16885} 16886 16887.bg-teal { 16888 background-color: #11cdef !important; 16889} 16890 16891a.bg-teal:hover, a.bg-teal:focus, 16892button.bg-teal:hover, 16893button.bg-teal:focus { 16894 background-color: #0da5c0 !important; 16895} 16896 16897.bg-cyan { 16898 background-color: #2bffc6 !important; 16899} 16900 16901a.bg-cyan:hover, a.bg-cyan:focus, 16902button.bg-cyan:hover, 16903button.bg-cyan:focus { 16904 background-color: #00f7b5 !important; 16905} 16906 16907.bg-white { 16908 background-color: #fff !important; 16909} 16910 16911a.bg-white:hover, a.bg-white:focus, 16912button.bg-white:hover, 16913button.bg-white:focus { 16914 background-color: #e6e6e6 !important; 16915} 16916 16917.bg-gray { 16918 background-color: #8898aa !important; 16919} 16920 16921a.bg-gray:hover, a.bg-gray:focus, 16922button.bg-gray:hover, 16923button.bg-gray:focus { 16924 background-color: #6a7e95 !important; 16925} 16926 16927.bg-gray-dark { 16928 background-color: #32325d !important; 16929} 16930 16931a.bg-gray-dark:hover, a.bg-gray-dark:focus, 16932button.bg-gray-dark:hover, 16933button.bg-gray-dark:focus { 16934 background-color: #20203c !important; 16935} 16936 16937.bg-light { 16938 background-color: #ced4da !important; 16939} 16940 16941a.bg-light:hover, a.bg-light:focus, 16942button.bg-light:hover, 16943button.bg-light:focus { 16944 background-color: #b1bbc4 !important; 16945} 16946 16947.bg-lighter { 16948 background-color: #e9ecef !important; 16949} 16950 16951a.bg-lighter:hover, a.bg-lighter:focus, 16952button.bg-lighter:hover, 16953button.bg-lighter:focus { 16954 background-color: #cbd3da !important; 16955} 16956 16957.bg-gradient-primary { 16958 background: linear-gradient(35deg, #5e72e4 0, #825ee4 100%) !important; 16959} 16960 16961.bg-gradient-secondary { 16962 background: linear-gradient(35deg, #f4f5f7 0, #f4f4f7 100%) !important; 16963} 16964 16965.bg-gradient-success { 16966 background: linear-gradient(35deg, #2dce89 0, #2dcecc 100%) !important; 16967} 16968 16969.bg-gradient-info { 16970 background: linear-gradient(35deg, #11cdef 0, #1171ef 100%) !important; 16971} 16972 16973.bg-gradient-warning { 16974 background: linear-gradient(35deg, #fb6340 0, #fbb140 100%) !important; 16975} 16976 16977.bg-gradient-danger { 16978 background: linear-gradient(35deg, #f5365c 0, #f56036 100%) !important; 16979} 16980 16981.bg-gradient-light { 16982 background: linear-gradient(35deg, #adb5bd 0, #adaebd 100%) !important; 16983} 16984 16985.bg-gradient-dark { 16986 background: linear-gradient(35deg, #212529 0, #212229 100%) !important; 16987} 16988 16989.bg-gradient-default { 16990 background: linear-gradient(35deg, #172b4d 0, #1a174d 100%) !important; 16991} 16992 16993.bg-gradient-white { 16994 background: linear-gradient(35deg, #fff 0, white 100%) !important; 16995} 16996 16997.bg-gradient-neutral { 16998 background: linear-gradient(35deg, #fff 0, white 100%) !important; 16999} 17000 17001.bg-gradient-darker { 17002 background: linear-gradient(35deg, black 0, black 100%) !important; 17003} 17004 17005.bg-gradient-blue { 17006 background: linear-gradient(35deg, #5e72e4 0, #825ee4 100%) !important; 17007} 17008 17009.bg-gradient-indigo { 17010 background: linear-gradient(35deg, #5603ad 0, #9d03ad 100%) !important; 17011} 17012 17013.bg-gradient-purple { 17014 background: linear-gradient(35deg, #8965e0 0, #bc65e0 100%) !important; 17015} 17016 17017.bg-gradient-pink { 17018 background: linear-gradient(35deg, #f3a4b5 0, #f3b4a4 100%) !important; 17019} 17020 17021.bg-gradient-red { 17022 background: linear-gradient(35deg, #f5365c 0, #f56036 100%) !important; 17023} 17024 17025.bg-gradient-orange { 17026 background: linear-gradient(35deg, #fb6340 0, #fbb140 100%) !important; 17027} 17028 17029.bg-gradient-yellow { 17030 background: linear-gradient(35deg, #ffd600 0, #beff00 100%) !important; 17031} 17032 17033.bg-gradient-green { 17034 background: linear-gradient(35deg, #2dce89 0, #2dcecc 100%) !important; 17035} 17036 17037.bg-gradient-teal { 17038 background: linear-gradient(35deg, #11cdef 0, #1171ef 100%) !important; 17039} 17040 17041.bg-gradient-cyan { 17042 background: linear-gradient(35deg, #2bffc6 0, #2be0ff 100%) !important; 17043} 17044 17045.bg-gradient-white { 17046 background: linear-gradient(35deg, #fff 0, white 100%) !important; 17047} 17048 17049.bg-gradient-gray { 17050 background: linear-gradient(35deg, #8898aa 0, #888aaa 100%) !important; 17051} 17052 17053.bg-gradient-gray-dark { 17054 background: linear-gradient(35deg, #32325d 0, #44325d 100%) !important; 17055} 17056 17057.bg-gradient-light { 17058 background: linear-gradient(35deg, #ced4da 0, #cecfda 100%) !important; 17059} 17060 17061.bg-gradient-lighter { 17062 background: linear-gradient(35deg, #e9ecef 0, #e9eaef 100%) !important; 17063} 17064 17065.bg-translucent-primary { 17066 background-color: rgba(63, 87, 223, 0.6) !important; 17067} 17068 17069a.bg-translucent-primary:hover, a.bg-translucent-primary:focus, 17070button.bg-translucent-primary:hover, 17071button.bg-translucent-primary:focus { 17072 background-color: rgba(42, 68, 219, 0.6) !important; 17073} 17074 17075.bg-translucent-secondary { 17076 background-color: rgba(223, 226, 232, 0.6) !important; 17077} 17078 17079a.bg-translucent-secondary:hover, a.bg-translucent-secondary:focus, 17080button.bg-translucent-secondary:hover, 17081button.bg-translucent-secondary:focus { 17082 background-color: rgba(209, 213, 221, 0.6) !important; 17083} 17084 17085.bg-translucent-success { 17086 background-color: rgba(39, 177, 118, 0.6) !important; 17087} 17088 17089a.bg-translucent-success:hover, a.bg-translucent-success:focus, 17090button.bg-translucent-success:hover, 17091button.bg-translucent-success:focus { 17092 background-color: rgba(34, 156, 104, 0.6) !important; 17093} 17094 17095.bg-translucent-info { 17096 background-color: rgba(14, 177, 206, 0.6) !important; 17097} 17098 17099a.bg-translucent-info:hover, a.bg-translucent-info:focus, 17100button.bg-translucent-info:hover, 17101button.bg-translucent-info:focus { 17102 background-color: rgba(12, 156, 183, 0.6) !important; 17103} 17104 17105.bg-translucent-warning { 17106 background-color: rgba(250, 70, 29, 0.6) !important; 17107} 17108 17109a.bg-translucent-warning:hover, a.bg-translucent-warning:focus, 17110button.bg-translucent-warning:hover, 17111button.bg-translucent-warning:focus { 17112 background-color: rgba(249, 51, 5, 0.6) !important; 17113} 17114 17115.bg-translucent-danger { 17116 background-color: rgba(243, 20, 64, 0.6) !important; 17117} 17118 17119a.bg-translucent-danger:hover, a.bg-translucent-danger:focus, 17120button.bg-translucent-danger:hover, 17121button.bg-translucent-danger:focus { 17122 background-color: rgba(227, 11, 54, 0.6) !important; 17123} 17124 17125.bg-translucent-light { 17126 background-color: rgba(153, 163, 173, 0.6) !important; 17127} 17128 17129a.bg-translucent-light:hover, a.bg-translucent-light:focus, 17130button.bg-translucent-light:hover, 17131button.bg-translucent-light:focus { 17132 background-color: rgba(139, 150, 162, 0.6) !important; 17133} 17134 17135.bg-translucent-dark { 17136 background-color: rgba(17, 19, 21, 0.6) !important; 17137} 17138 17139a.bg-translucent-dark:hover, a.bg-translucent-dark:focus, 17140button.bg-translucent-dark:hover, 17141button.bg-translucent-dark:focus { 17142 background-color: rgba(6, 6, 7, 0.6) !important; 17143} 17144 17145.bg-translucent-default { 17146 background-color: rgba(15, 28, 50, 0.6) !important; 17147} 17148 17149a.bg-translucent-default:hover, a.bg-translucent-default:focus, 17150button.bg-translucent-default:hover, 17151button.bg-translucent-default:focus { 17152 background-color: rgba(9, 17, 30, 0.6) !important; 17153} 17154 17155.bg-translucent-white { 17156 background-color: rgba(237, 237, 237, 0.6) !important; 17157} 17158 17159a.bg-translucent-white:hover, a.bg-translucent-white:focus, 17160button.bg-translucent-white:hover, 17161button.bg-translucent-white:focus { 17162 background-color: rgba(224, 224, 224, 0.6) !important; 17163} 17164 17165.bg-translucent-neutral { 17166 background-color: rgba(237, 237, 237, 0.6) !important; 17167} 17168 17169a.bg-translucent-neutral:hover, a.bg-translucent-neutral:focus, 17170button.bg-translucent-neutral:hover, 17171button.bg-translucent-neutral:focus { 17172 background-color: rgba(224, 224, 224, 0.6) !important; 17173} 17174 17175.bg-translucent-darker { 17176 background-color: rgba(0, 0, 0, 0.6) !important; 17177} 17178 17179a.bg-translucent-darker:hover, a.bg-translucent-darker:focus, 17180button.bg-translucent-darker:hover, 17181button.bg-translucent-darker:focus { 17182 background-color: rgba(0, 0, 0, 0.6) !important; 17183} 17184 17185.section-primary { 17186 background-color: #fff !important; 17187} 17188 17189a.section-primary:hover, a.section-primary:focus, 17190button.section-primary:hover, 17191button.section-primary:focus { 17192 background-color: #e6e6e6 !important; 17193} 17194 17195.section-secondary { 17196 background-color: #f4f5f7 !important; 17197} 17198 17199a.section-secondary:hover, a.section-secondary:focus, 17200button.section-secondary:hover, 17201button.section-secondary:focus { 17202 background-color: #d6dae2 !important; 17203} 17204 17205.section-light { 17206 background-color: #ced4da !important; 17207} 17208 17209a.section-light:hover, a.section-light:focus, 17210button.section-light:hover, 17211button.section-light:focus { 17212 background-color: #b1bbc4 !important; 17213} 17214 17215.section-dark { 17216 background-color: #212529 !important; 17217} 17218 17219a.section-dark:hover, a.section-dark:focus, 17220button.section-dark:hover, 17221button.section-dark:focus { 17222 background-color: #0a0c0d !important; 17223} 17224 17225.section-darker { 17226 background-color: black !important; 17227} 17228 17229a.section-darker:hover, a.section-darker:focus, 17230button.section-darker:hover, 17231button.section-darker:focus { 17232 background-color: black !important; 17233} 17234 17235.bg-gradient-primary { 17236 background: linear-gradient(35deg, #5e72e4 0, #825ee4 100%) !important; 17237} 17238 17239.bg-gradient-secondary { 17240 background: linear-gradient(35deg, #f4f5f7 0, #f4f4f7 100%) !important; 17241} 17242 17243.bg-gradient-success { 17244 background: linear-gradient(35deg, #2dce89 0, #2dcecc 100%) !important; 17245} 17246 17247.bg-gradient-info { 17248 background: linear-gradient(35deg, #11cdef 0, #1171ef 100%) !important; 17249} 17250 17251.bg-gradient-warning { 17252 background: linear-gradient(35deg, #fb6340 0, #fbb140 100%) !important; 17253} 17254 17255.bg-gradient-danger { 17256 background: linear-gradient(35deg, #f5365c 0, #f56036 100%) !important; 17257} 17258 17259.bg-gradient-light { 17260 background: linear-gradient(35deg, #adb5bd 0, #adaebd 100%) !important; 17261} 17262 17263.bg-gradient-dark { 17264 background: linear-gradient(35deg, #212529 0, #212229 100%) !important; 17265} 17266 17267.bg-gradient-default { 17268 background: linear-gradient(35deg, #172b4d 0, #1a174d 100%) !important; 17269} 17270 17271.bg-gradient-white { 17272 background: linear-gradient(35deg, #fff 0, white 100%) !important; 17273} 17274 17275.bg-gradient-neutral { 17276 background: linear-gradient(35deg, #fff 0, white 100%) !important; 17277} 17278 17279.bg-gradient-darker { 17280 background: linear-gradient(35deg, black 0, black 100%) !important; 17281} 17282 17283.fill-primary { 17284 fill: #5e72e4; 17285} 17286 17287.stroke-primary { 17288 stroke: #5e72e4; 17289} 17290 17291.fill-secondary { 17292 fill: #f4f5f7; 17293} 17294 17295.stroke-secondary { 17296 stroke: #f4f5f7; 17297} 17298 17299.fill-success { 17300 fill: #2dce89; 17301} 17302 17303.stroke-success { 17304 stroke: #2dce89; 17305} 17306 17307.fill-info { 17308 fill: #11cdef; 17309} 17310 17311.stroke-info { 17312 stroke: #11cdef; 17313} 17314 17315.fill-warning { 17316 fill: #fb6340; 17317} 17318 17319.stroke-warning { 17320 stroke: #fb6340; 17321} 17322 17323.fill-danger { 17324 fill: #f5365c; 17325} 17326 17327.stroke-danger { 17328 stroke: #f5365c; 17329} 17330 17331.fill-light { 17332 fill: #adb5bd; 17333} 17334 17335.stroke-light { 17336 stroke: #adb5bd; 17337} 17338 17339.fill-dark { 17340 fill: #212529; 17341} 17342 17343.stroke-dark { 17344 stroke: #212529; 17345} 17346 17347.fill-default { 17348 fill: #172b4d; 17349} 17350 17351.stroke-default { 17352 stroke: #172b4d; 17353} 17354 17355.fill-white { 17356 fill: #fff; 17357} 17358 17359.stroke-white { 17360 stroke: #fff; 17361} 17362 17363.fill-neutral { 17364 fill: #fff; 17365} 17366 17367.stroke-neutral { 17368 stroke: #fff; 17369} 17370 17371.fill-darker { 17372 fill: black; 17373} 17374 17375.stroke-darker { 17376 stroke: black; 17377} 17378 17379.fill-opacity-8 { 17380 fill-opacity: 0.8; 17381} 17382 17383.floating { 17384 animation: floating 3s ease infinite; 17385 will-change: transform; 17386} 17387 17388.floating:hover { 17389 animation-play-state: paused; 17390} 17391 17392.floating-lg { 17393 animation: floating-lg 3s ease infinite; 17394} 17395 17396.floating-sm { 17397 animation: floating-sm 3s ease infinite; 17398} 17399 17400@keyframes floating-lg { 17401 0% { 17402 transform: translateY(0px); 17403 } 17404 50% { 17405 transform: translateY(15px); 17406 } 17407 100% { 17408 transform: translateY(0px); 17409 } 17410} 17411@keyframes floating { 17412 0% { 17413 transform: translateY(0px); 17414 } 17415 50% { 17416 transform: translateY(10px); 17417 } 17418 100% { 17419 transform: translateY(0px); 17420 } 17421} 17422@keyframes floating-sm { 17423 0% { 17424 transform: translateY(0px); 17425 } 17426 50% { 17427 transform: translateY(5px); 17428 } 17429 100% { 17430 transform: translateY(0px); 17431 } 17432} 17433.img-center { 17434 display: block; 17435 margin-left: auto; 17436 margin-right: auto; 17437} 17438 17439.floatfix:before, .floatfix:after { 17440 content: ""; 17441 display: table; 17442} 17443 17444.floatfix:after { 17445 clear: both; 17446} 17447 17448.overflow-visible { 17449 overflow: visible !important; 17450} 17451 17452.overflow-hidden { 17453 overflow: hidden !important; 17454} 17455 17456.opacity-1 { 17457 opacity: 0.1 !important; 17458} 17459 17460.opacity-2 { 17461 opacity: 0.2 !important; 17462} 17463 17464.opacity-3 { 17465 opacity: 0.3 !important; 17466} 17467 17468.opacity-4 { 17469 opacity: 0.4 !important; 17470} 17471 17472.opacity-5 { 17473 opacity: 0.5 !important; 17474} 17475 17476.opacity-6 { 17477 opacity: 0.6 !important; 17478} 17479 17480.opacity-7 { 17481 opacity: 0.7 !important; 17482} 17483 17484.opacity-8 { 17485 opacity: 0.8 !important; 17486} 17487 17488.opacity-9 { 17489 opacity: 0.9 !important; 17490} 17491 17492.opacity-10 { 17493 opacity: 1 !important; 17494} 17495 17496.top-0 { 17497 top: 0; 17498} 17499 17500.right-0 { 17501 right: 0; 17502} 17503 17504.bottom-0 { 17505 bottom: 0; 17506} 17507 17508.left-0 { 17509 left: 0; 17510} 17511 17512.top-1 { 17513 top: 0.25rem; 17514} 17515 17516.right-1 { 17517 right: 0.25rem; 17518} 17519 17520.bottom-1 { 17521 bottom: 0.25rem; 17522} 17523 17524.left-1 { 17525 left: 0.25rem; 17526} 17527 17528.top-2 { 17529 top: 0.5rem; 17530} 17531 17532.right-2 { 17533 right: 0.5rem; 17534} 17535 17536.bottom-2 { 17537 bottom: 0.5rem; 17538} 17539 17540.left-2 { 17541 left: 0.5rem; 17542} 17543 17544.top-3 { 17545 top: 1rem; 17546} 17547 17548.right-3 { 17549 right: 1rem; 17550} 17551 17552.bottom-3 { 17553 bottom: 1rem; 17554} 17555 17556.left-3 { 17557 left: 1rem; 17558} 17559 17560.top-4 { 17561 top: 1.5rem; 17562} 17563 17564.right-4 { 17565 right: 1.5rem; 17566} 17567 17568.bottom-4 { 17569 bottom: 1.5rem; 17570} 17571 17572.left-4 { 17573 left: 1.5rem; 17574} 17575 17576.top-5 { 17577 top: 3rem; 17578} 17579 17580.right-5 { 17581 right: 3rem; 17582} 17583 17584.bottom-5 { 17585 bottom: 3rem; 17586} 17587 17588.left-5 { 17589 left: 3rem; 17590} 17591 17592.top--9 { 17593 top: -10rem; 17594} 17595 17596.right--9 { 17597 right: -10rem; 17598} 17599 17600.bottom--9 { 17601 bottom: -10rem; 17602} 17603 17604.left--9 { 17605 left: -10rem; 17606} 17607 17608.top--8 { 17609 top: -8rem; 17610} 17611 17612.right--8 { 17613 right: -8rem; 17614} 17615 17616.bottom--8 { 17617 bottom: -8rem; 17618} 17619 17620.left--8 { 17621 left: -8rem; 17622} 17623 17624.top--7 { 17625 top: -6rem; 17626} 17627 17628.right--7 { 17629 right: -6rem; 17630} 17631 17632.bottom--7 { 17633 bottom: -6rem; 17634} 17635 17636.left--7 { 17637 left: -6rem; 17638} 17639 17640.top--6 { 17641 top: -4.5rem; 17642} 17643 17644.right--6 { 17645 right: -4.5rem; 17646} 17647 17648.bottom--6 { 17649 bottom: -4.5rem; 17650} 17651 17652.left--6 { 17653 left: -4.5rem; 17654} 17655 17656.top--5 { 17657 top: -3rem; 17658} 17659 17660.right--5 { 17661 right: -3rem; 17662} 17663 17664.bottom--5 { 17665 bottom: -3rem; 17666} 17667 17668.left--5 { 17669 left: -3rem; 17670} 17671 17672.top--4 { 17673 top: -1.5rem; 17674} 17675 17676.right--4 { 17677 right: -1.5rem; 17678} 17679 17680.bottom--4 { 17681 bottom: -1.5rem; 17682} 17683 17684.left--4 { 17685 left: -1.5rem; 17686} 17687 17688.top--3 { 17689 top: -1rem; 17690} 17691 17692.right--3 { 17693 right: -1rem; 17694} 17695 17696.bottom--3 { 17697 bottom: -1rem; 17698} 17699 17700.left--3 { 17701 left: -1rem; 17702} 17703 17704.top--2 { 17705 top: -0.5rem; 17706} 17707 17708.right--2 { 17709 right: -0.5rem; 17710} 17711 17712.bottom--2 { 17713 bottom: -0.5rem; 17714} 17715 17716.left--2 { 17717 left: -0.5rem; 17718} 17719 17720.top--1 { 17721 top: -0.25rem; 17722} 17723 17724.right--1 { 17725 right: -0.25rem; 17726} 17727 17728.bottom--1 { 17729 bottom: -0.25rem; 17730} 17731 17732.left--1 { 17733 left: -0.25rem; 17734} 17735 17736.top-6 { 17737 top: 4.5rem; 17738} 17739 17740.right-6 { 17741 right: 4.5rem; 17742} 17743 17744.bottom-6 { 17745 bottom: 4.5rem; 17746} 17747 17748.left-6 { 17749 left: 4.5rem; 17750} 17751 17752.top-7 { 17753 top: 6rem; 17754} 17755 17756.right-7 { 17757 right: 6rem; 17758} 17759 17760.bottom-7 { 17761 bottom: 6rem; 17762} 17763 17764.left-7 { 17765 left: 6rem; 17766} 17767 17768.top-8 { 17769 top: 8rem; 17770} 17771 17772.right-8 { 17773 right: 8rem; 17774} 17775 17776.bottom-8 { 17777 bottom: 8rem; 17778} 17779 17780.left-8 { 17781 left: 8rem; 17782} 17783 17784.top-9 { 17785 top: 10rem; 17786} 17787 17788.right-9 { 17789 right: 10rem; 17790} 17791 17792.bottom-9 { 17793 bottom: 10rem; 17794} 17795 17796.left-9 { 17797 left: 10rem; 17798} 17799 17800.center { 17801 left: 50%; 17802 transform: translateX(-50%); 17803} 17804 17805.h-100vh { 17806 height: 100vh !important; 17807} 17808 17809.row.row-grid > [class*=col-] + [class*=col-] { 17810 margin-top: 3rem; 17811} 17812 17813@media (min-width: 992px) { 17814 .row.row-grid > [class*=col-lg-] + [class*=col-lg-] { 17815 margin-top: 0; 17816 } 17817} 17818@media (min-width: 768px) { 17819 .row.row-grid > [class*=col-md-] + [class*=col-md-] { 17820 margin-top: 0; 17821 } 17822} 17823@media (min-width: 576px) { 17824 .row.row-grid > [class*=col-sm-] + [class*=col-sm-] { 17825 margin-top: 0; 17826 } 17827} 17828.row-grid + .row-grid { 17829 margin-top: 3rem; 17830} 17831 17832@media (min-width: 992px) { 17833 [class*=mt--], 17834[class*=mr--], 17835[class*=mb--], 17836[class*=ml--] { 17837 position: relative; 17838 z-index: 5; 17839 } 17840 17841 .mt--100 { 17842 margin-top: -100px !important; 17843 } 17844 17845 .mr--100 { 17846 margin-right: -100px !important; 17847 } 17848 17849 .mb--100 { 17850 margin-bottom: -100px !important; 17851 } 17852 17853 .ml--100 { 17854 margin-left: -100px !important; 17855 } 17856 17857 .mt--150 { 17858 margin-top: -150px !important; 17859 } 17860 17861 .mb--150 { 17862 margin-bottom: -150px !important; 17863 } 17864 17865 .mt--200 { 17866 margin-top: -200px !important; 17867 } 17868 17869 .mb--200 { 17870 margin-bottom: -200px !important; 17871 } 17872 17873 .mt--300 { 17874 margin-top: -300px !important; 17875 } 17876 17877 .mb--300 { 17878 margin-bottom: -300px !important; 17879 } 17880 17881 .pt-100 { 17882 padding-top: 100px !important; 17883 } 17884 17885 .pb-100 { 17886 padding-bottom: 100px !important; 17887 } 17888 17889 .pt-150 { 17890 padding-top: 150px !important; 17891 } 17892 17893 .pb-150 { 17894 padding-bottom: 150px !important; 17895 } 17896 17897 .pt-200 { 17898 padding-top: 200px !important; 17899 } 17900 17901 .pb-200 { 17902 padding-bottom: 200px !important; 17903 } 17904 17905 .pt-250 { 17906 padding-top: 250px !important; 17907 } 17908 17909 .pb-250 { 17910 padding-bottom: 250px !important; 17911 } 17912 17913 .pt-300 { 17914 padding-top: 300px !important; 17915 } 17916 17917 .pb-300 { 17918 padding-bottom: 300px !important; 17919 } 17920} 17921[class*=shadow] { 17922 transition: all 0.15s ease; 17923} 17924 17925.shadow-sm--hover:hover { 17926 box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; 17927} 17928 17929.shadow--hover:hover { 17930 box-shadow: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07) !important; 17931} 17932 17933.shadow-lg--hover:hover { 17934 box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; 17935} 17936 17937.shadow-none--hover:hover { 17938 box-shadow: none !important; 17939} 17940 17941.font-weight-300 { 17942 font-weight: 300 !important; 17943} 17944 17945.font-weight-400 { 17946 font-weight: 400 !important; 17947} 17948 17949.font-weight-500 { 17950 font-weight: 500 !important; 17951} 17952 17953.font-weight-600 { 17954 font-weight: 600 !important; 17955} 17956 17957.font-weight-700 { 17958 font-weight: 700 !important; 17959} 17960 17961.font-weight-800 { 17962 font-weight: 800 !important; 17963} 17964 17965.font-weight-900 { 17966 font-weight: 900 !important; 17967} 17968 17969.text-underline { 17970 text-decoration: underline; 17971} 17972 17973.text-through { 17974 text-decoration: line-through; 17975} 17976 17977.lh-100 { 17978 line-height: 1; 17979} 17980 17981.lh-110 { 17982 line-height: 1.1; 17983} 17984 17985.lh-120 { 17986 line-height: 1.2; 17987} 17988 17989.lh-130 { 17990 line-height: 1.3; 17991} 17992 17993.lh-140 { 17994 line-height: 1.4; 17995} 17996 17997.lh-150 { 17998 line-height: 1.5; 17999} 18000 18001.lh-160 { 18002 line-height: 1.6; 18003} 18004 18005.lh-170 { 18006 line-height: 1.7; 18007} 18008 18009.lh-180 { 18010 line-height: 1.8; 18011} 18012 18013.ls-1 { 18014 letter-spacing: 0.0625rem; 18015} 18016 18017.ls-15 { 18018 letter-spacing: 0.09375rem; 18019} 18020 18021.ls-2 { 18022 letter-spacing: 0.125rem; 18023} 18024 18025.text-blue { 18026 color: #5e72e4 !important; 18027} 18028 18029a.text-blue:hover, a.text-blue:focus { 18030 color: #233dd2 !important; 18031} 18032 18033.text-indigo { 18034 color: #5603ad !important; 18035} 18036 18037a.text-indigo:hover, a.text-indigo:focus { 18038 color: #310262 !important; 18039} 18040 18041.text-purple { 18042 color: #8965e0 !important; 18043} 18044 18045a.text-purple:hover, a.text-purple:focus { 18046 color: #5a2acf !important; 18047} 18048 18049.text-pink { 18050 color: #f3a4b5 !important; 18051} 18052 18053a.text-pink:hover, a.text-pink:focus { 18054 color: #ea607e !important; 18055} 18056 18057.text-red { 18058 color: #f5365c !important; 18059} 18060 18061a.text-red:hover, a.text-red:focus { 18062 color: #d40b33 !important; 18063} 18064 18065.text-orange { 18066 color: #fb6340 !important; 18067} 18068 18069a.text-orange:hover, a.text-orange:focus { 18070 color: #ea3005 !important; 18071} 18072 18073.text-yellow { 18074 color: #ffd600 !important; 18075} 18076 18077a.text-yellow:hover, a.text-yellow:focus { 18078 color: #b39600 !important; 18079} 18080 18081.text-green { 18082 color: #2dce89 !important; 18083} 18084 18085a.text-green:hover, a.text-green:focus { 18086 color: #1f8f5f !important; 18087} 18088 18089.text-teal { 18090 color: #11cdef !important; 18091} 18092 18093a.text-teal:hover, a.text-teal:focus { 18094 color: #0b90a8 !important; 18095} 18096 18097.text-cyan { 18098 color: #2bffc6 !important; 18099} 18100 18101a.text-cyan:hover, a.text-cyan:focus { 18102 color: #00dea2 !important; 18103} 18104 18105.text-white { 18106 color: #fff !important; 18107} 18108 18109a.text-white:hover, a.text-white:focus { 18110 color: #d9d9d9 !important; 18111} 18112 18113.text-gray { 18114 color: #8898aa !important; 18115} 18116 18117a.text-gray:hover, a.text-gray:focus { 18118 color: #607286 !important; 18119} 18120 18121.text-gray-dark { 18122 color: #32325d !important; 18123} 18124 18125a.text-gray-dark:hover, a.text-gray-dark:focus { 18126 color: #17172b !important; 18127} 18128 18129.text-light { 18130 color: #ced4da !important; 18131} 18132 18133a.text-light:hover, a.text-light:focus { 18134 color: #a2aeb9 !important; 18135} 18136 18137.text-lighter { 18138 color: #e9ecef !important; 18139} 18140 18141a.text-lighter:hover, a.text-lighter:focus { 18142 color: #bdc6cf !important; 18143} 18144 18145@media (min-width: 992px) { 18146 .transform-perspective-right { 18147 transform: scale(1) perspective(1040px) rotateY(-11deg) rotateX(2deg) rotate(2deg); 18148 } 18149 18150 .transform-perspective-left { 18151 transform: scale(1) perspective(2000px) rotateY(11deg) rotateX(2deg) rotate(-2deg); 18152 } 18153} 18154.alert { 18155 padding: 1rem 1.5rem; 18156 border: 0; 18157 font-size: 0.875rem; 18158 border-radius: 0.25rem; 18159} 18160 18161.alert .alert-inner--icon { 18162 font-size: 1.25rem; 18163 margin-right: 1.25rem; 18164 display: inline-block; 18165 vertical-align: middle; 18166} 18167 18168.alert .alert-inner--icon i.ni { 18169 position: relative; 18170 top: 1px; 18171} 18172 18173.alert .alert-inner--text { 18174 display: inline-block; 18175 vertical-align: middle; 18176} 18177 18178.alert:not(.alert-secondary) { 18179 color: #fff; 18180} 18181 18182[class*=alert-] .alert-link { 18183 color: #fff; 18184 border-bottom: 1px dotted rgba(255, 255, 255, 0.5); 18185} 18186 18187.alert-heading { 18188 font-weight: 600; 18189 font-size: 1.5rem; 18190 margin-top: 0.15rem; 18191} 18192 18193.alert-dismissible .close { 18194 top: 50%; 18195 right: 1.5rem; 18196 padding: 0; 18197 transform: translateY(-50%); 18198 color: rgba(255, 255, 255, 0.6); 18199 opacity: 1; 18200} 18201 18202.alert-dismissible .close:hover, .alert-dismissible .close:focus { 18203 color: rgba(255, 255, 255, 0.9); 18204 opacity: 1 !important; 18205} 18206 18207@media (max-width: 575.98px) { 18208 .alert-dismissible .close { 18209 top: 1rem; 18210 right: 0.5rem; 18211 } 18212} 18213.alert-dismissible .close > span:not(.sr-only) { 18214 font-size: 1.5rem; 18215 background-color: transparent; 18216 color: rgba(255, 255, 255, 0.6); 18217} 18218 18219.alert-dismissible .close:hover > span:not(.sr-only), .alert-dismissible .close:focus > span:not(.sr-only) { 18220 background-color: transparent; 18221 color: rgba(255, 255, 255, 0.9); 18222} 18223 18224.avatar { 18225 color: #fff; 18226 background-color: #adb5bd; 18227 display: inline-flex; 18228 align-items: center; 18229 justify-content: center; 18230 font-size: 1rem; 18231 border-radius: 50%; 18232 height: 48px; 18233 width: 48px; 18234} 18235 18236.avatar img { 18237 width: 100%; 18238 border-radius: 50%; 18239} 18240 18241.avatar + .avatar-content { 18242 display: inline-block; 18243 margin-left: 0.75rem; 18244} 18245 18246.avatar-lg { 18247 width: 58px; 18248 height: 58px; 18249 font-size: 0.875rem; 18250} 18251 18252.avatar-sm { 18253 width: 38px; 18254 height: 38px; 18255 font-size: 0.875rem; 18256} 18257 18258.avatar-group .avatar { 18259 position: relative; 18260 z-index: 2; 18261 border: 2px solid #fff; 18262} 18263 18264.avatar-group .avatar:hover { 18265 z-index: 3; 18266} 18267 18268.avatar-group .avatar + .avatar { 18269 margin-left: -1rem; 18270} 18271 18272.badge { 18273 text-transform: uppercase; 18274} 18275 18276.badge a { 18277 color: #FFF; 18278} 18279 18280.badge-pill { 18281 padding-right: 0.875em; 18282 padding-left: 0.875em; 18283} 18284 18285.badge-circle { 18286 text-align: center; 18287 display: inline-flex; 18288 align-items: center; 18289 justify-content: center; 18290 border-radius: 50%; 18291 width: 2rem; 18292 height: 2rem; 18293 font-size: 0.875rem; 18294} 18295 18296.badge-inline { 18297 margin-right: 0.625rem; 18298} 18299 18300.badge-inline + span { 18301 top: 2px; 18302 position: relative; 18303} 18304 18305.badge-inline + span > a { 18306 text-decoration: underline; 18307} 18308 18309.badge-md { 18310 padding: 0.65em 1em; 18311} 18312 18313.badge-lg { 18314 padding: 0.85em 1.375em; 18315} 18316 18317.badge-secondary { 18318 color: #32325d; 18319} 18320 18321.btn .badge:not(:first-child), #dw__login button .badge:not(:first-child), .qq-upload-button .badge:not(:first-child), .toggleAssistant .badge:not(:first-child), #tool__bar button .badge:not(:first-child), #dokuwiki__content .editButtons button .badge:not(:first-child), #dokuwiki__content #page__revisions button .badge:not(:first-child), #dokuwiki__content .secedit button .badge:not(:first-child), button .badge:not(:first-child) { 18322 margin-left: 0.5rem; 18323} 18324 18325.btn .badge:not(:last-child), #dw__login button .badge:not(:last-child), .qq-upload-button .badge:not(:last-child), .toggleAssistant .badge:not(:last-child), #tool__bar button .badge:not(:last-child), #dokuwiki__content .editButtons button .badge:not(:last-child), #dokuwiki__content #page__revisions button .badge:not(:last-child), #dokuwiki__content .secedit button .badge:not(:last-child), button .badge:not(:last-child) { 18326 margin-right: 0.5rem; 18327} 18328 18329.btn, #dw__login button, .qq-upload-button, .search-results-form .toggleAssistant, .search-results-form button, .toggleAssistant, .doku_form .no button, #tool__bar button, #dokuwiki__content .editButtons button, #dokuwiki__content #page__revisions button, #dokuwiki__content .secedit button, button { 18330 position: relative; 18331 text-transform: uppercase; 18332 will-change: transform; 18333 letter-spacing: 0.025em; 18334 font-size: 0.875rem; 18335} 18336 18337.btn:hover, #dw__login button:hover, .qq-upload-button:hover, .toggleAssistant:hover, .doku_form .no button:hover, #tool__bar button:hover, #dokuwiki__content .editButtons button:hover, #dokuwiki__content #page__revisions button:hover, #dokuwiki__content .secedit button:hover, button:hover { 18338 box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); 18339 transform: translateY(-1px); 18340} 18341 18342.btn:not(:last-child), #dw__login button:not(:last-child), .qq-upload-button:not(:last-child), .toggleAssistant:not(:last-child), .doku_form .no button:not(:last-child), #tool__bar button:not(:last-child), #dokuwiki__content .editButtons button:not(:last-child), #dokuwiki__content #page__revisions button:not(:last-child), #dokuwiki__content .secedit button:not(:last-child), button:not(:last-child) { 18343 margin-right: 0.5rem; 18344} 18345 18346.btn-group .btn, .btn-group #dw__login button, #dw__login .btn-group button, .btn-group .qq-upload-button, .btn-group .toggleAssistant, .btn-group #tool__bar button, #tool__bar .btn-group button, .btn-group #dokuwiki__content .editButtons button, #dokuwiki__content .editButtons .btn-group button, .btn-group #dokuwiki__content #page__revisions button, #dokuwiki__content #page__revisions .btn-group button, .btn-group #dokuwiki__content .secedit button, #dokuwiki__content .secedit .btn-group button, .btn-group button, 18347.input-group .btn, 18348.input-group #dw__login button, 18349#dw__login .input-group button, 18350.input-group .qq-upload-button, 18351.input-group .toggleAssistant, 18352.doku_form .no .btn, 18353.doku_form .no #dw__login button, 18354#dw__login .doku_form .no button, 18355.doku_form .no .qq-upload-button, 18356.doku_form .no .toggleAssistant, 18357.doku_form .no button, 18358.input-group #tool__bar button, 18359.doku_form .no #tool__bar button, 18360#tool__bar .input-group button, 18361#tool__bar .doku_form .no button, 18362.doku_form #tool__bar .no button, 18363.input-group #dokuwiki__content .editButtons button, 18364.doku_form .no #dokuwiki__content .editButtons button, 18365#dokuwiki__content .editButtons .input-group button, 18366#dokuwiki__content .editButtons .doku_form .no button, 18367.doku_form #dokuwiki__content .editButtons .no button, 18368.input-group #dokuwiki__content #page__revisions button, 18369.doku_form .no #dokuwiki__content #page__revisions button, 18370#dokuwiki__content #page__revisions .input-group button, 18371#dokuwiki__content #page__revisions .doku_form .no button, 18372.doku_form #dokuwiki__content #page__revisions .no button, 18373.input-group #dokuwiki__content .secedit button, 18374.doku_form .no #dokuwiki__content .secedit button, 18375#dokuwiki__content .secedit .input-group button, 18376#dokuwiki__content .secedit .doku_form .no button, 18377.doku_form #dokuwiki__content .secedit .no button, 18378.input-group button { 18379 margin-right: 0; 18380 transform: translateY(0); 18381} 18382 18383.btn-sm, #tool__bar button, #dokuwiki__content .editButtons button, #dokuwiki__content .secedit button, .btn-group-sm > .btn, #dw__login .btn-group-sm > button, .btn-group-sm > .qq-upload-button, .search-results-form .btn-group-sm > .toggleAssistant, .search-results-form .btn-group-sm > button, .btn-group-sm > .toggleAssistant, .doku_form .no .btn-group-sm > button, #dokuwiki__content #page__revisions .btn-group-sm > button, .btn-group-sm > button { 18384 font-size: 0.75rem; 18385} 18386 18387.btn-sm.btn-icon-only, #tool__bar button.btn-icon-only, #dokuwiki__content .editButtons button.btn-icon-only, #dokuwiki__content .secedit button.btn-icon-only, .btn-group-sm > .btn-icon-only.btn, #dw__login .btn-group-sm > button.btn-icon-only, .btn-group-sm > .btn-icon-only.qq-upload-button, .search-results-form .btn-group-sm > .btn-icon-only.toggleAssistant, .search-results-form .btn-group-sm > button.btn-icon-only, .btn-group-sm > .btn-icon-only.toggleAssistant, .doku_form .no .btn-group-sm > button.btn-icon-only, #dokuwiki__content #page__revisions .btn-group-sm > button.btn-icon-only, .btn-group-sm > button.btn-icon-only { 18388 width: 35px; 18389 height: 35px; 18390} 18391 18392.btn-sm .btn-inner--icon, #tool__bar button .btn-inner--icon, #dokuwiki__content .editButtons button .btn-inner--icon, #dokuwiki__content .secedit button .btn-inner--icon, .btn-group-sm > .btn .btn-inner--icon, #dw__login .btn-group-sm > button .btn-inner--icon, .btn-group-sm > .qq-upload-button .btn-inner--icon, .btn-group-sm > .toggleAssistant .btn-inner--icon, #dokuwiki__content #page__revisions .btn-group-sm > button .btn-inner--icon, .btn-group-sm > button .btn-inner--icon { 18393 font-size: 0.5rem; 18394} 18395 18396.btn-lg.btn-icon-only, .btn-group-lg > .btn-icon-only.btn, #dw__login .btn-group-lg > button.btn-icon-only, .btn-group-lg > .btn-icon-only.qq-upload-button, .search-results-form .btn-group-lg > .btn-icon-only.toggleAssistant, .search-results-form .btn-group-lg > button.btn-icon-only, .btn-group-lg > .btn-icon-only.toggleAssistant, .doku_form .no .btn-group-lg > button.btn-icon-only, #tool__bar .btn-group-lg > button.btn-icon-only, #dokuwiki__content .editButtons .btn-group-lg > button.btn-icon-only, #dokuwiki__content #page__revisions .btn-group-lg > button.btn-icon-only, #dokuwiki__content .secedit .btn-group-lg > button.btn-icon-only, .btn-group-lg > button.btn-icon-only { 18397 width: 52px; 18398 height: 52px; 18399} 18400 18401.btn-lg .btn-inner--icon, .btn-group-lg > .btn .btn-inner--icon, #dw__login .btn-group-lg > button .btn-inner--icon, .btn-group-lg > .qq-upload-button .btn-inner--icon, .btn-group-lg > .toggleAssistant .btn-inner--icon, #tool__bar .btn-group-lg > button .btn-inner--icon, #dokuwiki__content .editButtons .btn-group-lg > button .btn-inner--icon, #dokuwiki__content #page__revisions .btn-group-lg > button .btn-inner--icon, #dokuwiki__content .secedit .btn-group-lg > button .btn-inner--icon, .btn-group-lg > button .btn-inner--icon { 18402 font-size: 1.2rem; 18403 position: relative; 18404 top: 2px; 18405} 18406 18407[class*=btn-outline-] { 18408 border-width: 1px; 18409} 18410 18411.btn-outline-secondary { 18412 color: #637089; 18413} 18414 18415.btn-inner--icon i:not(.fa) { 18416 position: relative; 18417} 18418 18419.btn-link { 18420 font-weight: 600; 18421 box-shadow: none; 18422} 18423 18424.btn-link:hover { 18425 box-shadow: none; 18426 transform: none; 18427} 18428 18429.btn-link.text-secondary { 18430 color: #637089 !important; 18431} 18432 18433.btn-neutral, .qq-upload-button, .doku_form .no button, button { 18434 color: #5e72e4; 18435} 18436 18437.btn svg:not(:first-child), #dw__login button svg:not(:first-child), .qq-upload-button svg:not(:first-child), .toggleAssistant svg:not(:first-child), .doku_form .no button svg:not(:first-child), #tool__bar button svg:not(:first-child), #dokuwiki__content .editButtons button svg:not(:first-child), #dokuwiki__content #page__revisions button svg:not(:first-child), #dokuwiki__content .secedit button svg:not(:first-child), button svg:not(:first-child), 18438.btn i:not(:first-child), 18439#dw__login button i:not(:first-child), 18440.qq-upload-button i:not(:first-child), 18441.toggleAssistant i:not(:first-child), 18442.doku_form .no button i:not(:first-child), 18443#tool__bar button i:not(:first-child), 18444#dokuwiki__content .editButtons button i:not(:first-child), 18445#dokuwiki__content #page__revisions button i:not(:first-child), 18446#dokuwiki__content .secedit button i:not(:first-child), 18447button i:not(:first-child) { 18448 margin-left: 0.5rem; 18449} 18450 18451.btn svg:not(:last-child), #dw__login button svg:not(:last-child), .qq-upload-button svg:not(:last-child), .toggleAssistant svg:not(:last-child), .doku_form .no button svg:not(:last-child), #tool__bar button svg:not(:last-child), #dokuwiki__content .editButtons button svg:not(:last-child), #dokuwiki__content #page__revisions button svg:not(:last-child), #dokuwiki__content .secedit button svg:not(:last-child), button svg:not(:last-child), 18452.btn i:not(:last-child), 18453#dw__login button i:not(:last-child), 18454.qq-upload-button i:not(:last-child), 18455.toggleAssistant i:not(:last-child), 18456.doku_form .no button i:not(:last-child), 18457#tool__bar button i:not(:last-child), 18458#dokuwiki__content .editButtons button i:not(:last-child), 18459#dokuwiki__content #page__revisions button i:not(:last-child), 18460#dokuwiki__content .secedit button i:not(:last-child), 18461button i:not(:last-child) { 18462 margin-right: 0.5rem; 18463} 18464 18465.btn-icon-label { 18466 position: relative; 18467} 18468 18469.btn-icon-label .btn-inner--icon { 18470 position: absolute; 18471 height: 100%; 18472 line-height: 1; 18473 border-radius: 0; 18474 text-align: center; 18475 margin: 0; 18476 width: 3em; 18477 background-color: rgba(0, 0, 0, 0.1); 18478} 18479 18480.btn-icon-label .btn-inner--icon:not(:first-child) { 18481 right: 0; 18482 top: 0; 18483 border-top-right-radius: inherit; 18484 border-bottom-right-radius: inherit; 18485} 18486 18487.btn-icon-label .btn-inner--icon:not(:last-child) { 18488 left: 0; 18489 top: 0; 18490 border-top-left-radius: inherit; 18491 border-bottom-left-radius: inherit; 18492} 18493 18494.btn-icon-label .btn-inner--icon svg { 18495 position: relative; 18496 top: 50%; 18497 transform: translateY(-50%); 18498} 18499 18500.btn-icon-label .btn-inner--text:not(:first-child) { 18501 padding-left: 3em; 18502} 18503 18504.btn-icon-label .btn-inner--text:not(:last-child) { 18505 padding-right: 3em; 18506} 18507 18508.btn-icon .btn-inner--icon img { 18509 width: 20px; 18510} 18511 18512.btn-icon .btn-inner--text:not(:first-child) { 18513 margin-left: 0.75em; 18514} 18515 18516.btn-icon .btn-inner--text:not(:last-child) { 18517 margin-right: 0.75em; 18518} 18519 18520.btn-icon-only { 18521 width: 2.375rem; 18522 height: 2.375rem; 18523 padding: 0; 18524} 18525 18526a.btn-icon-only { 18527 line-height: 2.5; 18528} 18529 18530.btn-icon-only.btn-sm, #tool__bar button.btn-icon-only, #dokuwiki__content .editButtons button.btn-icon-only, #dokuwiki__content .secedit button.btn-icon-only, .btn-group-sm > .btn-icon-only.btn, #dw__login .btn-group-sm > button.btn-icon-only, .btn-group-sm > .btn-icon-only.qq-upload-button, .search-results-form .btn-group-sm > .btn-icon-only.toggleAssistant, .search-results-form .btn-group-sm > button.btn-icon-only, .btn-group-sm > .btn-icon-only.toggleAssistant, .doku_form .no .btn-group-sm > button.btn-icon-only, #dokuwiki__content #page__revisions .btn-group-sm > button.btn-icon-only, .btn-group-sm > button.btn-icon-only { 18531 width: 2rem; 18532 height: 2rem; 18533} 18534 18535.btn-facebook { 18536 color: #fff; 18537 background-color: #3b5999; 18538 border-color: #3b5999; 18539 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18540} 18541 18542.btn-facebook:hover { 18543 color: #fff; 18544 background-color: #3b5999; 18545 border-color: #3b5999; 18546} 18547 18548.btn-facebook:focus, .btn-facebook.focus { 18549 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(59, 89, 153, 0.5); 18550} 18551 18552.btn-facebook.disabled, .btn-facebook:disabled { 18553 color: #fff; 18554 background-color: #3b5999; 18555 border-color: #3b5999; 18556} 18557 18558.btn-facebook:not(:disabled):not(.disabled):active, .btn-facebook:not(:disabled):not(.disabled).active, .show > .btn-facebook.dropdown-toggle { 18559 color: #fff; 18560 background-color: #2d4474; 18561 border-color: #3b5999; 18562} 18563 18564.btn-facebook:not(:disabled):not(.disabled):active:focus, .btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .btn-facebook.dropdown-toggle:focus { 18565 box-shadow: none, 0 0 0 0 rgba(59, 89, 153, 0.5); 18566} 18567 18568.btn-twitter { 18569 color: #fff; 18570 background-color: #1da1f2; 18571 border-color: #1da1f2; 18572 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18573} 18574 18575.btn-twitter:hover { 18576 color: #fff; 18577 background-color: #1da1f2; 18578 border-color: #1da1f2; 18579} 18580 18581.btn-twitter:focus, .btn-twitter.focus { 18582 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(29, 161, 242, 0.5); 18583} 18584 18585.btn-twitter.disabled, .btn-twitter:disabled { 18586 color: #fff; 18587 background-color: #1da1f2; 18588 border-color: #1da1f2; 18589} 18590 18591.btn-twitter:not(:disabled):not(.disabled):active, .btn-twitter:not(:disabled):not(.disabled).active, .show > .btn-twitter.dropdown-toggle { 18592 color: #fff; 18593 background-color: #0c85d0; 18594 border-color: #1da1f2; 18595} 18596 18597.btn-twitter:not(:disabled):not(.disabled):active:focus, .btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .btn-twitter.dropdown-toggle:focus { 18598 box-shadow: none, 0 0 0 0 rgba(29, 161, 242, 0.5); 18599} 18600 18601.btn-google-plus { 18602 color: #fff; 18603 background-color: #dd4b39; 18604 border-color: #dd4b39; 18605 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18606} 18607 18608.btn-google-plus:hover { 18609 color: #fff; 18610 background-color: #dd4b39; 18611 border-color: #dd4b39; 18612} 18613 18614.btn-google-plus:focus, .btn-google-plus.focus { 18615 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(221, 75, 57, 0.5); 18616} 18617 18618.btn-google-plus.disabled, .btn-google-plus:disabled { 18619 color: #fff; 18620 background-color: #dd4b39; 18621 border-color: #dd4b39; 18622} 18623 18624.btn-google-plus:not(:disabled):not(.disabled):active, .btn-google-plus:not(:disabled):not(.disabled).active, .show > .btn-google-plus.dropdown-toggle { 18625 color: #fff; 18626 background-color: #c23321; 18627 border-color: #dd4b39; 18628} 18629 18630.btn-google-plus:not(:disabled):not(.disabled):active:focus, .btn-google-plus:not(:disabled):not(.disabled).active:focus, .show > .btn-google-plus.dropdown-toggle:focus { 18631 box-shadow: none, 0 0 0 0 rgba(221, 75, 57, 0.5); 18632} 18633 18634.btn-instagram { 18635 color: #fff; 18636 background-color: #e4405f; 18637 border-color: #e4405f; 18638 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18639} 18640 18641.btn-instagram:hover { 18642 color: #fff; 18643 background-color: #e4405f; 18644 border-color: #e4405f; 18645} 18646 18647.btn-instagram:focus, .btn-instagram.focus { 18648 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(228, 64, 95, 0.5); 18649} 18650 18651.btn-instagram.disabled, .btn-instagram:disabled { 18652 color: #fff; 18653 background-color: #e4405f; 18654 border-color: #e4405f; 18655} 18656 18657.btn-instagram:not(:disabled):not(.disabled):active, .btn-instagram:not(:disabled):not(.disabled).active, .show > .btn-instagram.dropdown-toggle { 18658 color: #fff; 18659 background-color: #d31e40; 18660 border-color: #e4405f; 18661} 18662 18663.btn-instagram:not(:disabled):not(.disabled):active:focus, .btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .btn-instagram.dropdown-toggle:focus { 18664 box-shadow: none, 0 0 0 0 rgba(228, 64, 95, 0.5); 18665} 18666 18667.btn-pinterest { 18668 color: #fff; 18669 background-color: #bd081c; 18670 border-color: #bd081c; 18671 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18672} 18673 18674.btn-pinterest:hover { 18675 color: #fff; 18676 background-color: #bd081c; 18677 border-color: #bd081c; 18678} 18679 18680.btn-pinterest:focus, .btn-pinterest.focus { 18681 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(189, 8, 28, 0.5); 18682} 18683 18684.btn-pinterest.disabled, .btn-pinterest:disabled { 18685 color: #fff; 18686 background-color: #bd081c; 18687 border-color: #bd081c; 18688} 18689 18690.btn-pinterest:not(:disabled):not(.disabled):active, .btn-pinterest:not(:disabled):not(.disabled).active, .show > .btn-pinterest.dropdown-toggle { 18691 color: #fff; 18692 background-color: #8c0615; 18693 border-color: #bd081c; 18694} 18695 18696.btn-pinterest:not(:disabled):not(.disabled):active:focus, .btn-pinterest:not(:disabled):not(.disabled).active:focus, .show > .btn-pinterest.dropdown-toggle:focus { 18697 box-shadow: none, 0 0 0 0 rgba(189, 8, 28, 0.5); 18698} 18699 18700.btn-youtube { 18701 color: #fff; 18702 background-color: #cd201f; 18703 border-color: #cd201f; 18704 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18705} 18706 18707.btn-youtube:hover { 18708 color: #fff; 18709 background-color: #cd201f; 18710 border-color: #cd201f; 18711} 18712 18713.btn-youtube:focus, .btn-youtube.focus { 18714 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(205, 32, 31, 0.5); 18715} 18716 18717.btn-youtube.disabled, .btn-youtube:disabled { 18718 color: #fff; 18719 background-color: #cd201f; 18720 border-color: #cd201f; 18721} 18722 18723.btn-youtube:not(:disabled):not(.disabled):active, .btn-youtube:not(:disabled):not(.disabled).active, .show > .btn-youtube.dropdown-toggle { 18724 color: #fff; 18725 background-color: #a11918; 18726 border-color: #cd201f; 18727} 18728 18729.btn-youtube:not(:disabled):not(.disabled):active:focus, .btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .btn-youtube.dropdown-toggle:focus { 18730 box-shadow: none, 0 0 0 0 rgba(205, 32, 31, 0.5); 18731} 18732 18733.btn-slack { 18734 color: #fff; 18735 background-color: #3aaf85; 18736 border-color: #3aaf85; 18737 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18738} 18739 18740.btn-slack:hover { 18741 color: #fff; 18742 background-color: #3aaf85; 18743 border-color: #3aaf85; 18744} 18745 18746.btn-slack:focus, .btn-slack.focus { 18747 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(58, 175, 133, 0.5); 18748} 18749 18750.btn-slack.disabled, .btn-slack:disabled { 18751 color: #fff; 18752 background-color: #3aaf85; 18753 border-color: #3aaf85; 18754} 18755 18756.btn-slack:not(:disabled):not(.disabled):active, .btn-slack:not(:disabled):not(.disabled).active, .show > .btn-slack.dropdown-toggle { 18757 color: #fff; 18758 background-color: #2d8968; 18759 border-color: #3aaf85; 18760} 18761 18762.btn-slack:not(:disabled):not(.disabled):active:focus, .btn-slack:not(:disabled):not(.disabled).active:focus, .show > .btn-slack.dropdown-toggle:focus { 18763 box-shadow: none, 0 0 0 0 rgba(58, 175, 133, 0.5); 18764} 18765 18766.btn-dribbble { 18767 color: #fff; 18768 background-color: #ea4c89; 18769 border-color: #ea4c89; 18770 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18771} 18772 18773.btn-dribbble:hover { 18774 color: #fff; 18775 background-color: #ea4c89; 18776 border-color: #ea4c89; 18777} 18778 18779.btn-dribbble:focus, .btn-dribbble.focus { 18780 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(234, 76, 137, 0.5); 18781} 18782 18783.btn-dribbble.disabled, .btn-dribbble:disabled { 18784 color: #fff; 18785 background-color: #ea4c89; 18786 border-color: #ea4c89; 18787} 18788 18789.btn-dribbble:not(:disabled):not(.disabled):active, .btn-dribbble:not(:disabled):not(.disabled).active, .show > .btn-dribbble.dropdown-toggle { 18790 color: #fff; 18791 background-color: #e51e6b; 18792 border-color: #ea4c89; 18793} 18794 18795.btn-dribbble:not(:disabled):not(.disabled):active:focus, .btn-dribbble:not(:disabled):not(.disabled).active:focus, .show > .btn-dribbble.dropdown-toggle:focus { 18796 box-shadow: none, 0 0 0 0 rgba(234, 76, 137, 0.5); 18797} 18798 18799.btn-github { 18800 color: #fff; 18801 background-color: #222222; 18802 border-color: #222222; 18803 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18804} 18805 18806.btn-github:hover { 18807 color: #fff; 18808 background-color: #222222; 18809 border-color: #222222; 18810} 18811 18812.btn-github:focus, .btn-github.focus { 18813 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(34, 34, 34, 0.5); 18814} 18815 18816.btn-github.disabled, .btn-github:disabled { 18817 color: #fff; 18818 background-color: #222222; 18819 border-color: #222222; 18820} 18821 18822.btn-github:not(:disabled):not(.disabled):active, .btn-github:not(:disabled):not(.disabled).active, .show > .btn-github.dropdown-toggle { 18823 color: #fff; 18824 background-color: #090909; 18825 border-color: #222222; 18826} 18827 18828.btn-github:not(:disabled):not(.disabled):active:focus, .btn-github:not(:disabled):not(.disabled).active:focus, .show > .btn-github.dropdown-toggle:focus { 18829 box-shadow: none, 0 0 0 0 rgba(34, 34, 34, 0.5); 18830} 18831 18832.card, #dw__login { 18833 position: relative; 18834} 18835 18836.card.card-plain, .card-plain#dw__login { 18837 background: transparent; 18838 box-shadow: none; 18839 border: none; 18840} 18841 18842.profile-page .card-profile { 18843 margin-top: -150px; 18844} 18845 18846.profile-page .card-profile .card-profile-image { 18847 position: relative; 18848} 18849 18850.profile-page .card-profile .card-profile-image img { 18851 max-width: 180px; 18852 border-radius: 0.25rem; 18853 transform: translate(-50%, -30%); 18854 position: absolute; 18855 left: 50%; 18856 transition: all 0.15s ease; 18857} 18858 18859.profile-page .card-profile .card-profile-image img:hover { 18860 transform: translate(-50%, -33%); 18861} 18862 18863.profile-page .card-profile .card-profile-stats { 18864 padding: 1rem 0; 18865} 18866 18867.profile-page .card-profile .card-profile-stats > div { 18868 text-align: center; 18869 margin-right: 1rem; 18870 padding: 0.875rem; 18871} 18872 18873.profile-page .card-profile .card-profile-stats > div:last-child { 18874 margin-right: 0; 18875} 18876 18877.profile-page .card-profile .card-profile-stats > div .heading { 18878 font-size: 1.1rem; 18879 font-weight: bold; 18880 display: block; 18881} 18882 18883.profile-page .card-profile .card-profile-stats > div .description { 18884 font-size: 0.875rem; 18885 color: #adb5bd; 18886} 18887 18888.profile-page .card-profile .card-profile-actions { 18889 padding: 0.875rem; 18890} 18891 18892@media (max-width: 575.98px) { 18893 .profile-page .card-profile .card-profile-actions { 18894 margin-top: 110px; 18895 } 18896} 18897@media (min-width: 576px) and (max-width: 991.98px) { 18898 .profile-page .card-profile .card-profile-stats { 18899 margin-top: 30px; 18900 } 18901} 18902.card .card-blockquote, #dw__login .card-blockquote { 18903 padding: 2rem; 18904 position: relative; 18905} 18906 18907.card .card-blockquote .svg-bg, #dw__login .card-blockquote .svg-bg { 18908 display: block; 18909 width: 100%; 18910 height: 95px; 18911 position: absolute; 18912 top: -94px; 18913 left: 0; 18914} 18915 18916.card-lift--hover:hover { 18917 transform: translateY(-20px); 18918 transition: all 0.15s ease; 18919} 18920 18921@media (prefers-reduced-motion: reduce) { 18922 .card-lift--hover:hover { 18923 transition: none; 18924 } 18925} 18926.close { 18927 transition: all 0.15s ease; 18928} 18929 18930.close > span:not(.sr-only) { 18931 background-color: transparent; 18932 color: rgba(0, 0, 0, 0.6); 18933 line-height: 17px; 18934 height: 1.25rem; 18935 width: 1.25rem; 18936 border-radius: 50%; 18937 font-size: 1.25rem; 18938 display: block; 18939 transition: all 0.15s ease; 18940} 18941 18942.close:hover, .close:focus { 18943 background-color: transparent; 18944 color: rgba(0, 0, 0, 0.9); 18945 outline: none; 18946} 18947 18948.close:hover span:not(.sr-only), .close:focus span:not(.sr-only) { 18949 background-color: transparent; 18950} 18951 18952.custom-control-label::before { 18953 border: 1px solid #cad1d7; 18954 transition: all 0.3s ease; 18955} 18956 18957.custom-control-label span { 18958 position: relative; 18959 top: 2px; 18960} 18961 18962.custom-control { 18963 padding-left: 1.7rem !important; 18964} 18965 18966.custom-control-label { 18967 margin-bottom: 0; 18968} 18969 18970.custom-control-label:before, .custom-control-label:after { 18971 left: -1.75rem; 18972} 18973 18974.custom-control-input:active ~ .custom-control-label::before { 18975 border-color: #5e72e4; 18976} 18977 18978.custom-control-alternative .custom-control-label::before { 18979 border: 0; 18980 box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02); 18981} 18982 18983.custom-control-alternative .custom-control-input:checked ~ .custom-control-label::before { 18984 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 18985} 18986 18987.custom-control-alternative .custom-control-input:active ~ .custom-control-label::before, .custom-control-alternative .custom-control-input:focus ~ .custom-control-label::before { 18988 box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02); 18989} 18990 18991.custom-checkbox .custom-control-input ~ .custom-control-label { 18992 cursor: pointer; 18993 font-size: 0.875rem; 18994} 18995 18996.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { 18997 border-color: #5e72e4; 18998} 18999 19000.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { 19001 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>"); 19002} 19003 19004.custom-checkbox .custom-control-input:disabled ~ .custom-control-label::before { 19005 border-color: #e9ecef; 19006} 19007 19008.custom-checkbox .custom-control-input:disabled:checked::before { 19009 border-color: rgba(94, 114, 228, 0.5); 19010} 19011 19012.custom-radio .custom-control-input ~ .custom-control-label { 19013 cursor: pointer; 19014 font-size: 0.875rem; 19015} 19016 19017.custom-radio .custom-control-input:checked ~ .custom-control-label::before { 19018 border-color: #5e72e4; 19019} 19020 19021.custom-radio .custom-control-input:checked ~ .custom-control-label::after { 19022 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'><circle r='3' fill='#fff'/></svg>"); 19023} 19024 19025.custom-radio .custom-control-input:disabled ~ .custom-control-label::before { 19026 border-color: #e9ecef; 19027} 19028 19029.custom-radio .custom-control-input:disabled:checked::before { 19030 border-color: rgba(94, 114, 228, 0.5); 19031} 19032 19033.custom-toggle { 19034 position: relative; 19035 display: inline-block; 19036 width: 50px; 19037 height: 1.5rem; 19038} 19039 19040.custom-toggle input { 19041 display: none; 19042} 19043 19044.custom-toggle input:checked + .custom-toggle-slider { 19045 border: 1px solid #5e72e4; 19046} 19047 19048.custom-toggle input:checked + .custom-toggle-slider:before { 19049 background: #5e72e4; 19050 transform: translateX(1.625rem); 19051} 19052 19053.custom-toggle input:disabled + .custom-toggle-slider { 19054 border: 1px solid #e9ecef; 19055} 19056 19057.custom-toggle input:disabled:checked + .custom-toggle-slider { 19058 border: 1px solid #e9ecef; 19059} 19060 19061.custom-toggle input:disabled:checked + .custom-toggle-slider:before { 19062 background-color: #8a98eb; 19063} 19064 19065.custom-toggle-slider { 19066 position: absolute; 19067 cursor: pointer; 19068 top: 0; 19069 left: 0; 19070 right: 0; 19071 bottom: 0; 19072 border: 1px solid #cad1d7; 19073 border-radius: 34px !important; 19074 background-color: transparent; 19075} 19076 19077.custom-toggle-slider:before { 19078 position: absolute; 19079 content: ""; 19080 height: 18px; 19081 width: 18px; 19082 left: 2px; 19083 bottom: 2px; 19084 border-radius: 50% !important; 19085 background-color: #ddd; 19086 transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55); 19087} 19088 19089.dropdown, 19090.dropup, 19091.dropright, 19092.dropleft { 19093 display: inline-block; 19094} 19095 19096.dropdown-menu { 19097 min-width: 12rem; 19098} 19099 19100.dropdown-menu .dropdown-item { 19101 padding: 1rem; 19102 font-size: 0.875rem; 19103} 19104 19105.dropdown-menu .dropdown-item > i, 19106.dropdown-menu .dropdown-item > svg { 19107 margin-right: 1rem; 19108 font-size: 1rem; 19109 vertical-align: -17%; 19110} 19111 19112.dropdown-header { 19113 padding-left: 1rem; 19114 padding-right: 1rem; 19115 color: #f6f9fc; 19116 font-size: 0.625rem; 19117 text-transform: uppercase; 19118 font-weight: 700; 19119} 19120 19121.dropdown-menu a.media > div:first-child { 19122 line-height: 1; 19123} 19124 19125.dropdown-menu a.media p { 19126 color: #8898aa; 19127} 19128 19129.dropdown-menu a.media:hover .heading, .dropdown-menu a.media:hover p { 19130 color: #172b4d !important; 19131} 19132 19133.dropdown-menu-sm { 19134 min-width: 100px; 19135 border: 0.3rem; 19136} 19137 19138.dropdown-menu-lg { 19139 min-width: 260px; 19140 border-radius: 0.3rem; 19141} 19142 19143.dropdown-menu-xl { 19144 min-width: 450px; 19145 border-radius: 0.3rem; 19146} 19147 19148.footer { 19149 background: #f4f5f7; 19150 padding: 1.5rem 0; 19151} 19152 19153.footer .col-footer .heading { 19154 color: #8898aa; 19155 letter-spacing: 0; 19156 font-size: 0.875rem; 19157 text-transform: uppercase; 19158 font-weight: 600; 19159 margin-bottom: 1rem; 19160} 19161 19162.footer .nav .nav-item .nav-link, .footer .leftsidebar .leftsidebar ul .nav-item .nav-link, .leftsidebar .leftsidebar .footer ul .nav-item .nav-link, 19163.footer .footer-link { 19164 color: #8898aa !important; 19165} 19166 19167.footer .nav .nav-item .nav-link:hover, .footer .leftsidebar .leftsidebar ul .nav-item .nav-link:hover, .leftsidebar .leftsidebar .footer ul .nav-item .nav-link:hover, 19168.footer .footer-link:hover { 19169 color: #525f7f !important; 19170} 19171 19172.footer .list-unstyled li a { 19173 display: inline-block; 19174 padding: 0.125rem 0; 19175 color: #8898aa; 19176 font-size: 0.85rem; 19177} 19178 19179.footer .list-unstyled li a:hover { 19180 color: #525f7f; 19181} 19182 19183.footer .copyright { 19184 font-size: 0.875rem; 19185} 19186 19187.footer .dropdown .btn:not(:disabled):not(.disabled):active:focus, .footer .dropdown #dw__login button:not(:disabled):not(.disabled):active:focus, #dw__login .footer .dropdown button:not(:disabled):not(.disabled):active:focus, .footer .dropdown .qq-upload-button:not(:disabled):not(.disabled):active:focus, .footer .dropdown .toggleAssistant:not(:disabled):not(.disabled):active:focus, .footer .dropdown #tool__bar button:not(:disabled):not(.disabled):active:focus, #tool__bar .footer .dropdown button:not(:disabled):not(.disabled):active:focus, .footer .dropdown #dokuwiki__content .editButtons button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .editButtons .footer .dropdown button:not(:disabled):not(.disabled):active:focus, .footer .dropdown #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content #page__revisions .footer .dropdown button:not(:disabled):not(.disabled):active:focus, .footer .dropdown #dokuwiki__content .secedit button:not(:disabled):not(.disabled):active:focus, #dokuwiki__content .secedit .footer .dropdown button:not(:disabled):not(.disabled):active:focus, .footer .dropdown button:not(:disabled):not(.disabled):active:focus, 19188.footer .dropdown .btn:not(:disabled):not(.disabled).active:focus, 19189.footer .dropdown #dw__login button:not(:disabled):not(.disabled).active:focus, 19190#dw__login .footer .dropdown button:not(:disabled):not(.disabled).active:focus, 19191.footer .dropdown .qq-upload-button:not(:disabled):not(.disabled).active:focus, 19192.footer .dropdown .toggleAssistant:not(:disabled):not(.disabled).active:focus, 19193.footer .dropdown #tool__bar button:not(:disabled):not(.disabled).active:focus, 19194#tool__bar .footer .dropdown button:not(:disabled):not(.disabled).active:focus, 19195.footer .dropdown #dokuwiki__content .editButtons button:not(:disabled):not(.disabled).active:focus, 19196#dokuwiki__content .editButtons .footer .dropdown button:not(:disabled):not(.disabled).active:focus, 19197.footer .dropdown #dokuwiki__content #page__revisions button:not(:disabled):not(.disabled).active:focus, 19198#dokuwiki__content #page__revisions .footer .dropdown button:not(:disabled):not(.disabled).active:focus, 19199.footer .dropdown #dokuwiki__content .secedit button:not(:disabled):not(.disabled).active:focus, 19200#dokuwiki__content .secedit .footer .dropdown button:not(:disabled):not(.disabled).active:focus, 19201.footer .dropdown button:not(:disabled):not(.disabled).active:focus { 19202 box-shadow: none; 19203} 19204 19205.footer-dark .col-footer .heading { 19206 color: #fff; 19207} 19208 19209.footer.has-cards { 19210 overflow: hidden; 19211 padding-top: 500px; 19212 margin-top: -420px; 19213 position: relative; 19214 background: transparent; 19215 pointer-events: none; 19216} 19217 19218.footer.has-cards:before { 19219 content: ""; 19220 position: absolute; 19221 left: 0; 19222 right: 0; 19223 top: 600px; 19224 height: 2000px; 19225 background: #f4f5f7; 19226 transform: skew(0, -8deg); 19227} 19228 19229.footer.has-cards .container { 19230 pointer-events: auto; 19231 position: relative; 19232} 19233 19234.nav-footer .nav-link { 19235 font-size: 0.875rem; 19236} 19237 19238.nav-footer .nav-item:last-child .nav-link { 19239 padding-right: 0; 19240} 19241 19242/* Form controls */ 19243label { 19244 font-size: 0.875rem; 19245} 19246 19247.form-control, #dw__login input, #config__manager td input.edit, .search-results-form fieldset input, .doku_form .no #qsearch__in, textarea { 19248 font-size: 1.0rem; 19249 transition: all 0.15s ease; 19250} 19251 19252.form-control:focus::placeholder, #dw__login input:focus::placeholder, #config__manager td input.edit:focus::placeholder, .search-results-form fieldset input:focus::placeholder, .doku_form .no #qsearch__in:focus::placeholder, textarea:focus::placeholder { 19253 color: #adb5bd; 19254} 19255 19256.form-control.is-valid, #dw__login input.is-valid, #config__manager td input.is-valid.edit, .search-results-form fieldset input.is-valid, .doku_form .no .is-valid#qsearch__in, textarea.is-valid, .form-control.is-invalid, #dw__login input.is-invalid, #config__manager td input.is-invalid.edit, .search-results-form fieldset input.is-invalid, .doku_form .no .is-invalid#qsearch__in, textarea.is-invalid { 19257 background-image: none; 19258} 19259 19260/* Textareas */ 19261textarea[resize=none] { 19262 resize: none !important; 19263} 19264 19265textarea[resize=both] { 19266 resize: both !important; 19267} 19268 19269textarea[resize=vertical] { 19270 resize: vertical !important; 19271} 19272 19273textarea[resize=horizontal] { 19274 resize: horizontal !important; 19275} 19276 19277/* Alternative styles */ 19278.form-control-muted { 19279 background-color: #EDF0F5; 19280 border-color: #EDF0F5; 19281 box-shadow: none; 19282} 19283 19284.form-control-muted:focus { 19285 background-color: #EDF0F5; 19286} 19287 19288.form-control-alternative { 19289 box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02); 19290 border: 0; 19291 transition: box-shadow 0.15s ease; 19292} 19293 19294.form-control-alternative:focus { 19295 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 19296} 19297 19298.form-control-lg { 19299 font-size: 1rem; 19300} 19301 19302.has-success, 19303.has-danger { 19304 position: relative; 19305} 19306 19307.has-success:after, 19308.has-danger:after { 19309 width: 19px; 19310 height: 19px; 19311 line-height: 19px; 19312 text-align: center; 19313 font-family: "NucleoIcons"; 19314 display: inline-block; 19315 position: absolute; 19316 right: 15px; 19317 top: 2px; 19318 transform: translateY(50%); 19319 border-radius: 50%; 19320 font-size: 9px; 19321 opacity: 1; 19322} 19323 19324.has-success .form-control-alternative.is-valid:focus, .has-success .form-control-alternative.is-invalid:focus, 19325.has-danger .form-control-alternative.is-valid:focus, 19326.has-danger .form-control-alternative.is-invalid:focus { 19327 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !important; 19328} 19329 19330.has-success:after { 19331 content: ""; 19332 color: daken(#2dce89, 18%); 19333 background-color: #69deac; 19334} 19335 19336.has-success .form-control, .has-success #dw__login input, #dw__login .has-success input, .has-success #config__manager td input.edit, #config__manager td .has-success input.edit, .has-success .search-results-form fieldset input, .search-results-form fieldset .has-success input, .has-success .doku_form .no #qsearch__in, .doku_form .no .has-success #qsearch__in, .has-success textarea { 19337 background-color: #fff; 19338} 19339 19340.has-success .form-control:focus, .has-success #dw__login input:focus, #dw__login .has-success input:focus, .has-success #config__manager td input.edit:focus, #config__manager td .has-success input.edit:focus, .has-success .search-results-form fieldset input:focus, .search-results-form fieldset .has-success input:focus, .has-success .doku_form .no #qsearch__in:focus, .doku_form .no .has-success #qsearch__in:focus, .has-success textarea:focus { 19341 border-color: rgba(50, 151, 211, 0.25); 19342} 19343 19344.has-success .form-control::placeholder, .has-success #dw__login input::placeholder, #dw__login .has-success input::placeholder, .has-success #config__manager td input.edit::placeholder, #config__manager td .has-success input.edit::placeholder, .has-success .search-results-form fieldset input::placeholder, .search-results-form fieldset .has-success input::placeholder, .has-success .doku_form .no #qsearch__in::placeholder, .doku_form .no .has-success #qsearch__in::placeholder, .has-success textarea::placeholder { 19345 color: #2dce89; 19346} 19347 19348.has-danger:after { 19349 content: ""; 19350 color: daken(#fb6340, 18%); 19351 background-color: #fda08b; 19352} 19353 19354.has-danger .form-control, .has-danger #dw__login input, #dw__login .has-danger input, .has-danger #config__manager td input.edit, #config__manager td .has-danger input.edit, .has-danger .search-results-form fieldset input, .search-results-form fieldset .has-danger input, .has-danger .doku_form .no #qsearch__in, .doku_form .no .has-danger #qsearch__in, .has-danger textarea { 19355 background-color: #fff; 19356} 19357 19358.has-danger .form-control:focus, .has-danger #dw__login input:focus, #dw__login .has-danger input:focus, .has-danger #config__manager td input.edit:focus, #config__manager td .has-danger input.edit:focus, .has-danger .search-results-form fieldset input:focus, .search-results-form fieldset .has-danger input:focus, .has-danger .doku_form .no #qsearch__in:focus, .doku_form .no .has-danger #qsearch__in:focus, .has-danger textarea:focus { 19359 border-color: rgba(50, 151, 211, 0.25); 19360} 19361 19362.has-danger .form-control::placeholder, .has-danger #dw__login input::placeholder, #dw__login .has-danger input::placeholder, .has-danger #config__manager td input.edit::placeholder, #config__manager td .has-danger input.edit::placeholder, .has-danger .search-results-form fieldset input::placeholder, .search-results-form fieldset .has-danger input::placeholder, .has-danger .doku_form .no #qsearch__in::placeholder, .doku_form .no .has-danger #qsearch__in::placeholder, .has-danger textarea::placeholder { 19363 color: #fb6340; 19364} 19365 19366@media (min-width: 992px) { 19367 .container-lg { 19368 max-width: 1160px; 19369 } 19370} 19371.icon { 19372 width: 3rem; 19373 height: 3rem; 19374} 19375 19376.icon i, .icon svg { 19377 font-size: 2.25rem; 19378} 19379 19380.icon + .icon-text { 19381 padding-left: 1rem; 19382 width: calc(100% - 3rem - 1); 19383} 19384 19385.icon-xl { 19386 width: 5rem; 19387 height: 5rem; 19388} 19389 19390.icon-xl i, .icon-xl svg { 19391 font-size: 4.25rem; 19392} 19393 19394.icon-xl + .icon-text { 19395 width: calc(100% - 5rem - 1); 19396} 19397 19398.icon-lg { 19399 width: 4rem; 19400 height: 4rem; 19401} 19402 19403.icon-lg i, .icon-lg svg { 19404 font-size: 3.25rem; 19405} 19406 19407.icon-lg + .icon-text { 19408 width: calc(100% - 4rem - 1); 19409} 19410 19411.icon-sm { 19412 width: 2rem; 19413 height: 2rem; 19414} 19415 19416.icon-sm i, .icon-sm svg { 19417 font-size: 1.25rem; 19418} 19419 19420.icon-sm + .icon-text { 19421 width: calc(100% - 2rem - 1); 19422} 19423 19424.icon-xs { 19425 width: 1.25rem; 19426 height: 1.25rem; 19427} 19428 19429.icon-xs i, .icon-xs svg { 19430 font-size: 0.5rem !important; 19431} 19432 19433.icon-xs + .icon-text { 19434 width: calc(100% - 1.25rem - 1); 19435} 19436 19437.icon-shape { 19438 padding: 12px; 19439 text-align: center; 19440 display: inline-flex; 19441 align-items: center; 19442 justify-content: center; 19443 border-radius: 50%; 19444} 19445 19446.icon-shape i, .icon-shape svg { 19447 font-size: 1.25rem; 19448} 19449 19450.icon-shape.icon-lg i, .icon-shape.icon-lg svg { 19451 font-size: 1.625rem; 19452} 19453 19454.icon-shape.icon-sm i, .icon-shape.icon-sm svg { 19455 font-size: 0.875rem; 19456} 19457 19458.icon-shape svg { 19459 width: 30px; 19460 height: 30px; 19461} 19462 19463.icon-shape-primary { 19464 color: #2643e9; 19465 background-color: rgba(138, 152, 235, 0.5); 19466} 19467 19468.icon-shape-secondary { 19469 color: #d3d9e5; 19470 background-color: rgba(255, 255, 255, 0.5); 19471} 19472 19473.icon-shape-success { 19474 color: #1aae6f; 19475 background-color: rgba(84, 218, 161, 0.5); 19476} 19477 19478.icon-shape-info { 19479 color: #03acca; 19480 background-color: rgba(65, 215, 242, 0.5); 19481} 19482 19483.icon-shape-warning { 19484 color: #ff3709; 19485 background-color: rgba(252, 140, 114, 0.5); 19486} 19487 19488.icon-shape-danger { 19489 color: #f80031; 19490 background-color: rgba(247, 103, 131, 0.5); 19491} 19492 19493.icon-shape-light { 19494 color: #879cb0; 19495 background-color: rgba(201, 207, 212, 0.5); 19496} 19497 19498.icon-shape-dark { 19499 color: #090c0e; 19500 background-color: rgba(56, 63, 69, 0.5); 19501} 19502 19503.icon-shape-default { 19504 color: #091428; 19505 background-color: rgba(35, 65, 116, 0.5); 19506} 19507 19508.icon-shape-white { 19509 color: #e8e3e3; 19510 background-color: rgba(255, 255, 255, 0.5); 19511} 19512 19513.icon-shape-neutral { 19514 color: #e8e3e3; 19515 background-color: rgba(255, 255, 255, 0.5); 19516} 19517 19518.icon-shape-darker { 19519 color: black; 19520 background-color: rgba(23, 26, 28, 0.5); 19521} 19522 19523.input-group, .doku_form .no { 19524 box-shadow: none; 19525 border-radius: 0.25rem; 19526 transition: all 0.15s ease; 19527} 19528 19529.input-group .form-control, .input-group #dw__login input, #dw__login .input-group input, .input-group #config__manager td input.edit, #config__manager td .input-group input.edit, .input-group .search-results-form fieldset input, .search-results-form fieldset .input-group input, .doku_form .no .form-control, .doku_form .no #dw__login input, #dw__login .doku_form .no input, .doku_form .no #config__manager td input.edit, #config__manager td .doku_form .no input.edit, .doku_form .no .search-results-form fieldset input, .search-results-form fieldset .doku_form .no input, .doku_form .no #qsearch__in, .input-group textarea, .doku_form .no textarea { 19530 box-shadow: none; 19531} 19532 19533.input-group .form-control:not(:first-child), .input-group #dw__login input:not(:first-child), #dw__login .input-group input:not(:first-child), .input-group #config__manager td input.edit:not(:first-child), #config__manager td .input-group input.edit:not(:first-child), .input-group .search-results-form fieldset input:not(:first-child), .search-results-form fieldset .input-group input:not(:first-child), .doku_form .no .form-control:not(:first-child), .doku_form .no #dw__login input:not(:first-child), #dw__login .doku_form .no input:not(:first-child), .doku_form .no #config__manager td input.edit:not(:first-child), #config__manager td .doku_form .no input.edit:not(:first-child), .doku_form .no .search-results-form fieldset input:not(:first-child), .search-results-form fieldset .doku_form .no input:not(:first-child), .doku_form .no #qsearch__in:not(:first-child), .input-group textarea:not(:first-child), .doku_form .no textarea:not(:first-child) { 19534 border-left: 0; 19535 padding-left: 0; 19536} 19537 19538.input-group .form-control:not(:last-child), .input-group #dw__login input:not(:last-child), #dw__login .input-group input:not(:last-child), .input-group #config__manager td input.edit:not(:last-child), #config__manager td .input-group input.edit:not(:last-child), .input-group .search-results-form fieldset input:not(:last-child), .search-results-form fieldset .input-group input:not(:last-child), .doku_form .no .form-control:not(:last-child), .doku_form .no #dw__login input:not(:last-child), #dw__login .doku_form .no input:not(:last-child), .doku_form .no #config__manager td input.edit:not(:last-child), #config__manager td .doku_form .no input.edit:not(:last-child), .doku_form .no .search-results-form fieldset input:not(:last-child), .search-results-form fieldset .doku_form .no input:not(:last-child), .doku_form .no #qsearch__in:not(:last-child), .input-group textarea:not(:last-child), .doku_form .no textarea:not(:last-child) { 19539 border-right: 0; 19540 padding-right: 0; 19541} 19542 19543.input-group .form-control:focus, .input-group #dw__login input:focus, #dw__login .input-group input:focus, .input-group #config__manager td input.edit:focus, #config__manager td .input-group input.edit:focus, .input-group .search-results-form fieldset input:focus, .search-results-form fieldset .input-group input:focus, .doku_form .no .form-control:focus, .doku_form .no #dw__login input:focus, #dw__login .doku_form .no input:focus, .doku_form .no #config__manager td input.edit:focus, #config__manager td .doku_form .no input.edit:focus, .doku_form .no .search-results-form fieldset input:focus, .search-results-form fieldset .doku_form .no input:focus, .doku_form .no #qsearch__in:focus, .input-group textarea:focus, .doku_form .no textarea:focus { 19544 box-shadow: none; 19545} 19546 19547.input-group .input-group-prepend, .doku_form .no .input-group-prepend { 19548 margin-right: 0; 19549} 19550 19551.input-group .input-group-prepend .input-group-text, .doku_form .no .input-group-prepend .input-group-text { 19552 border-right: none; 19553} 19554 19555.input-group-text { 19556 transition: all 0.15s ease; 19557} 19558 19559.input-group-alternative { 19560 box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02); 19561 border: 0; 19562 transition: box-shadow 0.15s ease; 19563} 19564 19565.input-group-alternative .form-control, .input-group-alternative #dw__login input, #dw__login .input-group-alternative input, .input-group-alternative #config__manager td input.edit, #config__manager td .input-group-alternative input.edit, .input-group-alternative .search-results-form fieldset input, .search-results-form fieldset .input-group-alternative input, .input-group-alternative .doku_form .no #qsearch__in, .doku_form .no .input-group-alternative #qsearch__in, .input-group-alternative textarea, 19566.input-group-alternative .input-group-text { 19567 border: 0; 19568 box-shadow: none; 19569} 19570 19571.focused .input-group-alternative { 19572 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !important; 19573} 19574 19575.focused .input-group, .focused .doku_form .no, .doku_form .focused .no { 19576 box-shadow: none; 19577} 19578 19579.focused .input-group-text { 19580 color: #8898aa; 19581 background-color: #fff; 19582 border-color: #5e72e4; 19583} 19584 19585.focused .form-control, .focused #dw__login input, #dw__login .focused input, .focused #config__manager td input.edit, #config__manager td .focused input.edit, .focused .search-results-form fieldset input, .search-results-form fieldset .focused input, .focused .doku_form .no #qsearch__in, .doku_form .no .focused #qsearch__in, .focused textarea { 19586 border-color: #5e72e4; 19587} 19588 19589.list-group-space .list-group-item { 19590 margin-bottom: 1.5rem; 19591 border-radius: 0.25rem; 19592} 19593 19594.list-group-img { 19595 width: 3rem; 19596 height: 3rem; 19597 border-radius: 50%; 19598 vertical-align: top; 19599 margin: -0.1rem 1.2rem 0 -0.2rem; 19600} 19601 19602.list-group-content { 19603 -webkit-box-flex: 1; 19604 -ms-flex: 1; 19605 flex: 1; 19606 min-width: 0; 19607} 19608 19609.list-group-content > p { 19610 color: #adb5bd; 19611 line-height: 1.5; 19612 margin: 0.2rem 0 0; 19613} 19614 19615.list-group-heading { 19616 font-size: 1rem; 19617 color: #32325d; 19618} 19619 19620.list-group-heading > small { 19621 float: right; 19622 color: #adb5bd; 19623 font-weight: 500; 19624} 19625 19626.modal-content { 19627 border: 0; 19628 border-radius: 0.3rem; 19629} 19630 19631.modal-fluid .modal-dialog { 19632 margin-top: 0; 19633 margin-bottom: 0; 19634} 19635 19636.modal-fluid .modal-content { 19637 border-radius: 0; 19638} 19639 19640.modal-primary .modal-title { 19641 color: #fff; 19642} 19643 19644.modal-primary .modal-header, 19645.modal-primary .modal-footer { 19646 border-color: rgba(255, 255, 255, 0.075); 19647} 19648 19649.modal-primary .modal-content { 19650 background-color: #5e72e4; 19651 color: #fff; 19652} 19653 19654.modal-primary .modal-content .heading { 19655 color: #fff; 19656} 19657 19658.modal-primary .close > span:not(.sr-only) { 19659 color: #fff; 19660} 19661 19662.modal-secondary .modal-title { 19663 color: #212529; 19664} 19665 19666.modal-secondary .modal-header, 19667.modal-secondary .modal-footer { 19668 border-color: rgba(33, 37, 41, 0.075); 19669} 19670 19671.modal-secondary .modal-content { 19672 background-color: #f4f5f7; 19673 color: #212529; 19674} 19675 19676.modal-secondary .modal-content .heading { 19677 color: #212529; 19678} 19679 19680.modal-secondary .close > span:not(.sr-only) { 19681 color: #fff; 19682} 19683 19684.modal-success .modal-title { 19685 color: #fff; 19686} 19687 19688.modal-success .modal-header, 19689.modal-success .modal-footer { 19690 border-color: rgba(255, 255, 255, 0.075); 19691} 19692 19693.modal-success .modal-content { 19694 background-color: #2dce89; 19695 color: #fff; 19696} 19697 19698.modal-success .modal-content .heading { 19699 color: #fff; 19700} 19701 19702.modal-success .close > span:not(.sr-only) { 19703 color: #fff; 19704} 19705 19706.modal-info .modal-title { 19707 color: #fff; 19708} 19709 19710.modal-info .modal-header, 19711.modal-info .modal-footer { 19712 border-color: rgba(255, 255, 255, 0.075); 19713} 19714 19715.modal-info .modal-content { 19716 background-color: #11cdef; 19717 color: #fff; 19718} 19719 19720.modal-info .modal-content .heading { 19721 color: #fff; 19722} 19723 19724.modal-info .close > span:not(.sr-only) { 19725 color: #fff; 19726} 19727 19728.modal-warning .modal-title { 19729 color: #fff; 19730} 19731 19732.modal-warning .modal-header, 19733.modal-warning .modal-footer { 19734 border-color: rgba(255, 255, 255, 0.075); 19735} 19736 19737.modal-warning .modal-content { 19738 background-color: #fb6340; 19739 color: #fff; 19740} 19741 19742.modal-warning .modal-content .heading { 19743 color: #fff; 19744} 19745 19746.modal-warning .close > span:not(.sr-only) { 19747 color: #fff; 19748} 19749 19750.modal-danger .modal-title { 19751 color: #fff; 19752} 19753 19754.modal-danger .modal-header, 19755.modal-danger .modal-footer { 19756 border-color: rgba(255, 255, 255, 0.075); 19757} 19758 19759.modal-danger .modal-content { 19760 background-color: #f5365c; 19761 color: #fff; 19762} 19763 19764.modal-danger .modal-content .heading { 19765 color: #fff; 19766} 19767 19768.modal-danger .close > span:not(.sr-only) { 19769 color: #fff; 19770} 19771 19772.modal-light .modal-title { 19773 color: #fff; 19774} 19775 19776.modal-light .modal-header, 19777.modal-light .modal-footer { 19778 border-color: rgba(255, 255, 255, 0.075); 19779} 19780 19781.modal-light .modal-content { 19782 background-color: #adb5bd; 19783 color: #fff; 19784} 19785 19786.modal-light .modal-content .heading { 19787 color: #fff; 19788} 19789 19790.modal-light .close > span:not(.sr-only) { 19791 color: #fff; 19792} 19793 19794.modal-dark .modal-title { 19795 color: #fff; 19796} 19797 19798.modal-dark .modal-header, 19799.modal-dark .modal-footer { 19800 border-color: rgba(255, 255, 255, 0.075); 19801} 19802 19803.modal-dark .modal-content { 19804 background-color: #212529; 19805 color: #fff; 19806} 19807 19808.modal-dark .modal-content .heading { 19809 color: #fff; 19810} 19811 19812.modal-dark .close > span:not(.sr-only) { 19813 color: #fff; 19814} 19815 19816.modal-default .modal-title { 19817 color: #fff; 19818} 19819 19820.modal-default .modal-header, 19821.modal-default .modal-footer { 19822 border-color: rgba(255, 255, 255, 0.075); 19823} 19824 19825.modal-default .modal-content { 19826 background-color: #172b4d; 19827 color: #fff; 19828} 19829 19830.modal-default .modal-content .heading { 19831 color: #fff; 19832} 19833 19834.modal-default .close > span:not(.sr-only) { 19835 color: #fff; 19836} 19837 19838.modal-white .modal-title { 19839 color: #212529; 19840} 19841 19842.modal-white .modal-header, 19843.modal-white .modal-footer { 19844 border-color: rgba(33, 37, 41, 0.075); 19845} 19846 19847.modal-white .modal-content { 19848 background-color: #fff; 19849 color: #212529; 19850} 19851 19852.modal-white .modal-content .heading { 19853 color: #212529; 19854} 19855 19856.modal-white .close > span:not(.sr-only) { 19857 color: #fff; 19858} 19859 19860.modal-neutral .modal-title { 19861 color: #212529; 19862} 19863 19864.modal-neutral .modal-header, 19865.modal-neutral .modal-footer { 19866 border-color: rgba(33, 37, 41, 0.075); 19867} 19868 19869.modal-neutral .modal-content { 19870 background-color: #fff; 19871 color: #212529; 19872} 19873 19874.modal-neutral .modal-content .heading { 19875 color: #212529; 19876} 19877 19878.modal-neutral .close > span:not(.sr-only) { 19879 color: #fff; 19880} 19881 19882.modal-darker .modal-title { 19883 color: #fff; 19884} 19885 19886.modal-darker .modal-header, 19887.modal-darker .modal-footer { 19888 border-color: rgba(255, 255, 255, 0.075); 19889} 19890 19891.modal-darker .modal-content { 19892 background-color: black; 19893 color: #fff; 19894} 19895 19896.modal-darker .modal-content .heading { 19897 color: #fff; 19898} 19899 19900.modal-darker .close > span:not(.sr-only) { 19901 color: #fff; 19902} 19903 19904.nav-link { 19905 color: #525f7f; 19906} 19907 19908.nav-link:hover, .nav-link.active { 19909 color: #5e72e4; 19910} 19911 19912.nav-link i:not(.fa) { 19913 position: relative; 19914 top: 2px; 19915} 19916 19917.nav-pills .nav-item:not(:last-child) { 19918 padding-right: 1rem; 19919} 19920 19921.nav-pills .nav-link { 19922 padding: 0.75rem 1rem; 19923 color: #5e72e4; 19924 font-weight: 500; 19925 font-size: 0.875rem; 19926 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 19927 background-color: #fff; 19928 transition: all 0.15s ease; 19929} 19930 19931.nav-pills .nav-link:hover { 19932 color: #485fe0; 19933} 19934 19935.nav-pills .nav-link.active, 19936.nav-pills .show > .nav-link { 19937 color: #fff; 19938 background-color: #5e72e4; 19939} 19940 19941@media (max-width: 575.98px) { 19942 .nav-pills .nav-item { 19943 margin-bottom: 1rem; 19944 } 19945} 19946@media (max-width: 767.98px) { 19947 .nav-pills:not(.nav-pills-circle) .nav-item { 19948 padding-right: 0; 19949 } 19950} 19951.nav-pills-circle .nav-link { 19952 text-align: center; 19953 height: 60px; 19954 width: 60px; 19955 padding: 0; 19956 line-height: 60px; 19957 border-radius: 50%; 19958} 19959 19960.nav-pills-circle .nav-link-icon i, .nav-pills-circle .nav-link-icon svg { 19961 font-size: 1rem; 19962} 19963 19964.nav-wrapper { 19965 padding: 1rem 0; 19966 border-top-left-radius: 0.25rem; 19967 border-top-right-radius: 0.25rem; 19968} 19969 19970.nav-wrapper + .card, .nav-wrapper + #dw__login { 19971 border-top-left-radius: 0; 19972 border-top-right-radius: 0; 19973 border-bottom-right-radius: 0.25rem; 19974 border-bottom-left-radius: 0.25rem; 19975} 19976 19977.navbar.navbar-absolute { 19978 position: absolute; 19979 z-index: 1050; 19980 width: 100%; 19981} 19982 19983.navbar-nav .nav-link { 19984 font-size: 0.9rem; 19985 font-family: "Open Sans", sans-serif; 19986 font-weight: 400; 19987 text-transform: normal; 19988 letter-spacing: 0; 19989 transition: all 0.15s linear; 19990} 19991 19992@media (prefers-reduced-motion: reduce) { 19993 .navbar-nav .nav-link { 19994 transition: none; 19995 } 19996} 19997.navbar-nav .nav-link .nav-link-inner--text { 19998 margin-left: 0.25rem; 19999} 20000 20001.navbar-brand { 20002 font-size: 0.875rem; 20003 font-weight: 600; 20004 text-transform: uppercase; 20005 font-size: 0.875rem; 20006 letter-spacing: 0.05px; 20007} 20008 20009.navbar-brand img { 20010 height: 30px; 20011} 20012 20013.navbar-dark .navbar-brand { 20014 color: #fff; 20015} 20016 20017.navbar-light .navbar-brand { 20018 color: #32325d; 20019} 20020 20021.navbar-nav .nav-item .media:not(:last-child) { 20022 margin-bottom: 1.5rem; 20023} 20024 20025@media (min-width: 992px) { 20026 .navbar-nav .nav-item { 20027 margin-right: 0.5rem; 20028 } 20029 20030 .navbar-nav .nav-item [data-toggle=dropdown]::after { 20031 transition: all 0.15s ease; 20032 } 20033 20034 .navbar-nav .nav-item.show [data-toggle=dropdown]::after { 20035 transform: rotate(180deg); 20036 } 20037 20038 .navbar-nav .nav-link { 20039 padding-top: 1rem; 20040 padding-bottom: 1rem; 20041 border-radius: 0.25rem; 20042 } 20043 20044 .navbar-nav .nav-link i { 20045 margin-right: 0.625rem; 20046 } 20047 20048 .navbar-nav .nav-link-icon { 20049 padding-left: 0.5rem !important; 20050 padding-right: 0.5rem !important; 20051 font-size: 1rem; 20052 border-radius: 0.25rem; 20053 } 20054 20055 .navbar-nav .nav-link-icon i { 20056 margin-right: 0; 20057 } 20058 20059 .navbar-nav .dropdown-menu { 20060 opacity: 0; 20061 pointer-events: none; 20062 margin: 0; 20063 } 20064 20065 .navbar-nav .dropdown-menu:before { 20066 background: #fff; 20067 box-shadow: none; 20068 content: ""; 20069 display: block; 20070 height: 16px; 20071 width: 16px; 20072 left: 5px; 20073 position: absolute; 20074 bottom: 100%; 20075 transform: rotate(-45deg) translateY(1rem); 20076 z-index: -5; 20077 border-radius: 0.2rem; 20078 } 20079 20080 .navbar-nav .dropdown-menu-right:before { 20081 right: 20px; 20082 left: auto; 20083 } 20084 20085 .navbar-nav:not(.navbar-nav-hover) .dropdown-menu.show { 20086 opacity: 1; 20087 pointer-events: auto; 20088 animation: show-navbar-dropdown 0.25s ease forwards; 20089 } 20090 20091 .navbar-nav:not(.navbar-nav-hover) .dropdown-menu.close { 20092 display: block; 20093 animation: hide-navbar-dropdown 0.15s ease backwards; 20094 } 20095 20096 .navbar-nav.navbar-nav-hover .dropdown-menu { 20097 opacity: 0; 20098 display: block; 20099 pointer-events: none; 20100 transform: translate(0, 10px) perspective(200px) rotateX(-2deg); 20101 transition: visibility 0.25s, opacity 0.25s, transform 0.25s; 20102 animation: none; 20103 } 20104 20105 .navbar-nav.navbar-nav-hover .nav-item.dropdown:hover > .dropdown-menu { 20106 display: block; 20107 opacity: 1; 20108 pointer-events: auto; 20109 visibility: visible; 20110 transform: translate(0, 0); 20111 animation: none; 20112 } 20113 20114 .navbar-nav.navbar-nav-hover .nav-item.dropdown > .dropdown-menu .dropdown-item.open + .dropdown-menu { 20115 display: block; 20116 opacity: 1; 20117 pointer-events: auto; 20118 visibility: visible; 20119 transform: translate(0, 0); 20120 animation: none; 20121 } 20122 20123 .navbar-nav.navbar-nav-hover .nav-item.dropdown > .dropdown-menu .dropdown-item + .dropdown-menu { 20124 margin-left: 10px; 20125 } 20126 20127 .navbar-nav.navbar-nav-hover .nav-item.dropdown > .dropdown-menu .dropdown-item + .dropdown-menu:before { 20128 left: -16px; 20129 top: 4px; 20130 } 20131 20132 .navbar-nav .dropdown-menu-inner { 20133 position: relative; 20134 padding: 1rem; 20135 } 20136} 20137.navbar-transparent { 20138 position: absolute; 20139 top: 0; 20140 width: 100%; 20141 z-index: 100; 20142 background-color: transparent !important; 20143 border: 0; 20144 box-shadow: none; 20145} 20146 20147.navbar-transparent .navbar-brand { 20148 color: white; 20149} 20150 20151.navbar-transparent .navbar-toggler { 20152 color: white; 20153} 20154 20155.navbar-transparent .navbar-toggler-icon { 20156 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='rgba(255, 255, 255, 0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>"); 20157} 20158 20159.bg-white .navbar-toggler-icon { 20160 background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'><path stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>"); 20161} 20162 20163@media (min-width: 768px) { 20164 .navbar-transparent .navbar-nav .nav-link { 20165 color: rgba(255, 255, 255, 0.95); 20166 } 20167 20168 .navbar-transparent .navbar-nav .nav-link:hover, .navbar-transparent .navbar-nav .nav-link:focus { 20169 color: rgba(255, 255, 255, 0.65); 20170 } 20171 20172 .navbar-transparent .navbar-nav .nav-link.disabled { 20173 color: rgba(255, 255, 255, 0.25); 20174 } 20175 20176 .navbar-transparent .navbar-nav .show > .nav-link, 20177.navbar-transparent .navbar-nav .active > .nav-link, 20178.navbar-transparent .navbar-nav .nav-link.show, 20179.navbar-transparent .navbar-nav .nav-link.active { 20180 color: rgba(255, 255, 255, 0.65); 20181 } 20182 20183 .navbar-transparent .navbar-brand { 20184 color: rgba(255, 255, 255, 0.95); 20185 } 20186 20187 .navbar-transparent .navbar-brand:hover, .navbar-transparent .navbar-brand:focus { 20188 color: rgba(255, 255, 255, 0.95); 20189 } 20190} 20191.navbar-collapse-header { 20192 display: none; 20193} 20194 20195@media (max-width: 991.98px) { 20196 .navbar-nav .nav-link { 20197 padding: 0.625rem 0; 20198 color: #172b4d !important; 20199 } 20200 20201 .navbar-nav .dropdown-menu { 20202 box-shadow: none; 20203 min-width: auto; 20204 } 20205 20206 .navbar-nav .dropdown-menu .media svg { 20207 width: 30px; 20208 } 20209 20210 .navbar-collapse { 20211 width: calc(100% - 1.4rem); 20212 position: absolute; 20213 top: 0; 20214 left: 0; 20215 right: 0; 20216 z-index: 1050; 20217 margin: 0.7rem; 20218 overflow-y: auto; 20219 height: auto !important; 20220 opacity: 0; 20221 } 20222 20223 .navbar-collapse .navbar-toggler { 20224 width: 20px; 20225 height: 20px; 20226 position: relative; 20227 cursor: pointer; 20228 display: inline-block; 20229 padding: 0; 20230 } 20231 20232 .navbar-collapse .navbar-toggler span { 20233 display: block; 20234 position: absolute; 20235 width: 100%; 20236 height: 2px; 20237 border-radius: 2px; 20238 opacity: 1; 20239 background: #283448; 20240 } 20241 20242 .navbar-collapse .navbar-toggler :nth-child(1) { 20243 transform: rotate(135deg); 20244 } 20245 20246 .navbar-collapse .navbar-toggler :nth-child(2) { 20247 transform: rotate(-135deg); 20248 } 20249 20250 .navbar-collapse .navbar-collapse-header { 20251 display: block; 20252 padding-bottom: 1rem; 20253 margin-bottom: 1rem; 20254 border-bottom: 1px solid rgba(0, 0, 0, 0.1); 20255 } 20256 20257 .navbar-collapse .collapse-brand img { 20258 height: 36px; 20259 } 20260 20261 .navbar-collapse .collapse-close { 20262 text-align: right; 20263 } 20264 20265 .navbar-collapse.collapsing, 20266.navbar-collapse.show { 20267 padding: 1.5rem; 20268 border-radius: 0.25rem; 20269 background: #FFF; 20270 box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1); 20271 animation: show-navbar-collapse 0.2s ease forwards; 20272 } 20273 20274 .navbar-collapse.collapsing-out { 20275 animation: hide-navbar-collapse 0.2s ease forwards; 20276 } 20277} 20278@keyframes show-navbar-collapse { 20279 0% { 20280 opacity: 0; 20281 transform: scale(0.95); 20282 transform-origin: 100% 0; 20283 } 20284 100% { 20285 opacity: 1; 20286 transform: scale(1); 20287 } 20288} 20289@keyframes hide-navbar-collapse { 20290 from { 20291 opacity: 1; 20292 transform: scale(1); 20293 transform-origin: 100% 0; 20294 } 20295 to { 20296 opacity: 0; 20297 transform: scale(0.95); 20298 } 20299} 20300@keyframes show-navbar-dropdown { 20301 0% { 20302 opacity: 0; 20303 transform: translate(0, 10px) perspective(200px) rotateX(-2deg); 20304 transition: visibility 0.25s, opacity 0.25s, transform 0.25s; 20305 } 20306 100% { 20307 transform: translate(0, 0); 20308 opacity: 1; 20309 } 20310} 20311@keyframes hide-navbar-dropdown { 20312 from { 20313 opacity: 1; 20314 } 20315 to { 20316 opacity: 0; 20317 transform: translate(0, 10px); 20318 } 20319} 20320.page-item.active .page-link { 20321 box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); 20322} 20323 20324.page-item .page-link, 20325.page-item span { 20326 display: flex; 20327 align-items: center; 20328 justify-content: center; 20329 padding: 0; 20330 margin: 0 3px; 20331 border-radius: 50% !important; 20332 width: 36px; 20333 height: 36px; 20334 font-size: 0.875rem; 20335} 20336 20337.pagination-lg .page-item .page-link, 20338.pagination-lg .page-item span { 20339 width: 46px; 20340 height: 46px; 20341 line-height: 46px; 20342} 20343 20344.pagination-sm .page-item .page-link, 20345.pagination-sm .page-item span { 20346 width: 30px; 20347 height: 30px; 20348 line-height: 30px; 20349} 20350 20351.popover { 20352 border: 0; 20353} 20354 20355.popover-header { 20356 font-weight: 600; 20357} 20358 20359.popover-primary { 20360 background-color: #5e72e4; 20361} 20362 20363.popover-primary .popover-header { 20364 background-color: #5e72e4; 20365 color: #fff; 20366} 20367 20368.popover-primary .popover-body { 20369 color: #fff; 20370} 20371 20372.popover-primary .popover-header { 20373 border-color: rgba(255, 255, 255, 0.2); 20374} 20375 20376.popover-primary.bs-popover-top .arrow::after, .popover-primary.bs-popover-auto[x-placement^=top] .arrow::after { 20377 border-top-color: #5e72e4; 20378} 20379 20380.popover-primary.bs-popover-right .arrow::after, .popover-primary.bs-popover-auto[x-placement^=right] .arrow::after { 20381 border-right-color: #5e72e4; 20382} 20383 20384.popover-primary.bs-popover-bottom .arrow::after, .popover-primary.bs-popover-auto[x-placement^=bottom] .arrow::after { 20385 border-bottom-color: #5e72e4; 20386} 20387 20388.popover-primary.bs-popover-left .arrow::after, .popover-primary.bs-popover-auto[x-placement^=left] .arrow::after { 20389 border-left-color: #5e72e4; 20390} 20391 20392.popover-secondary { 20393 background-color: #f4f5f7; 20394} 20395 20396.popover-secondary .popover-header { 20397 background-color: #f4f5f7; 20398 color: #212529; 20399} 20400 20401.popover-secondary .popover-body { 20402 color: #212529; 20403} 20404 20405.popover-secondary .popover-header { 20406 border-color: rgba(33, 37, 41, 0.2); 20407} 20408 20409.popover-secondary.bs-popover-top .arrow::after, .popover-secondary.bs-popover-auto[x-placement^=top] .arrow::after { 20410 border-top-color: #f4f5f7; 20411} 20412 20413.popover-secondary.bs-popover-right .arrow::after, .popover-secondary.bs-popover-auto[x-placement^=right] .arrow::after { 20414 border-right-color: #f4f5f7; 20415} 20416 20417.popover-secondary.bs-popover-bottom .arrow::after, .popover-secondary.bs-popover-auto[x-placement^=bottom] .arrow::after { 20418 border-bottom-color: #f4f5f7; 20419} 20420 20421.popover-secondary.bs-popover-left .arrow::after, .popover-secondary.bs-popover-auto[x-placement^=left] .arrow::after { 20422 border-left-color: #f4f5f7; 20423} 20424 20425.popover-success { 20426 background-color: #2dce89; 20427} 20428 20429.popover-success .popover-header { 20430 background-color: #2dce89; 20431 color: #fff; 20432} 20433 20434.popover-success .popover-body { 20435 color: #fff; 20436} 20437 20438.popover-success .popover-header { 20439 border-color: rgba(255, 255, 255, 0.2); 20440} 20441 20442.popover-success.bs-popover-top .arrow::after, .popover-success.bs-popover-auto[x-placement^=top] .arrow::after { 20443 border-top-color: #2dce89; 20444} 20445 20446.popover-success.bs-popover-right .arrow::after, .popover-success.bs-popover-auto[x-placement^=right] .arrow::after { 20447 border-right-color: #2dce89; 20448} 20449 20450.popover-success.bs-popover-bottom .arrow::after, .popover-success.bs-popover-auto[x-placement^=bottom] .arrow::after { 20451 border-bottom-color: #2dce89; 20452} 20453 20454.popover-success.bs-popover-left .arrow::after, .popover-success.bs-popover-auto[x-placement^=left] .arrow::after { 20455 border-left-color: #2dce89; 20456} 20457 20458.popover-info { 20459 background-color: #11cdef; 20460} 20461 20462.popover-info .popover-header { 20463 background-color: #11cdef; 20464 color: #fff; 20465} 20466 20467.popover-info .popover-body { 20468 color: #fff; 20469} 20470 20471.popover-info .popover-header { 20472 border-color: rgba(255, 255, 255, 0.2); 20473} 20474 20475.popover-info.bs-popover-top .arrow::after, .popover-info.bs-popover-auto[x-placement^=top] .arrow::after { 20476 border-top-color: #11cdef; 20477} 20478 20479.popover-info.bs-popover-right .arrow::after, .popover-info.bs-popover-auto[x-placement^=right] .arrow::after { 20480 border-right-color: #11cdef; 20481} 20482 20483.popover-info.bs-popover-bottom .arrow::after, .popover-info.bs-popover-auto[x-placement^=bottom] .arrow::after { 20484 border-bottom-color: #11cdef; 20485} 20486 20487.popover-info.bs-popover-left .arrow::after, .popover-info.bs-popover-auto[x-placement^=left] .arrow::after { 20488 border-left-color: #11cdef; 20489} 20490 20491.popover-warning { 20492 background-color: #fb6340; 20493} 20494 20495.popover-warning .popover-header { 20496 background-color: #fb6340; 20497 color: #fff; 20498} 20499 20500.popover-warning .popover-body { 20501 color: #fff; 20502} 20503 20504.popover-warning .popover-header { 20505 border-color: rgba(255, 255, 255, 0.2); 20506} 20507 20508.popover-warning.bs-popover-top .arrow::after, .popover-warning.bs-popover-auto[x-placement^=top] .arrow::after { 20509 border-top-color: #fb6340; 20510} 20511 20512.popover-warning.bs-popover-right .arrow::after, .popover-warning.bs-popover-auto[x-placement^=right] .arrow::after { 20513 border-right-color: #fb6340; 20514} 20515 20516.popover-warning.bs-popover-bottom .arrow::after, .popover-warning.bs-popover-auto[x-placement^=bottom] .arrow::after { 20517 border-bottom-color: #fb6340; 20518} 20519 20520.popover-warning.bs-popover-left .arrow::after, .popover-warning.bs-popover-auto[x-placement^=left] .arrow::after { 20521 border-left-color: #fb6340; 20522} 20523 20524.popover-danger { 20525 background-color: #f5365c; 20526} 20527 20528.popover-danger .popover-header { 20529 background-color: #f5365c; 20530 color: #fff; 20531} 20532 20533.popover-danger .popover-body { 20534 color: #fff; 20535} 20536 20537.popover-danger .popover-header { 20538 border-color: rgba(255, 255, 255, 0.2); 20539} 20540 20541.popover-danger.bs-popover-top .arrow::after, .popover-danger.bs-popover-auto[x-placement^=top] .arrow::after { 20542 border-top-color: #f5365c; 20543} 20544 20545.popover-danger.bs-popover-right .arrow::after, .popover-danger.bs-popover-auto[x-placement^=right] .arrow::after { 20546 border-right-color: #f5365c; 20547} 20548 20549.popover-danger.bs-popover-bottom .arrow::after, .popover-danger.bs-popover-auto[x-placement^=bottom] .arrow::after { 20550 border-bottom-color: #f5365c; 20551} 20552 20553.popover-danger.bs-popover-left .arrow::after, .popover-danger.bs-popover-auto[x-placement^=left] .arrow::after { 20554 border-left-color: #f5365c; 20555} 20556 20557.popover-light { 20558 background-color: #adb5bd; 20559} 20560 20561.popover-light .popover-header { 20562 background-color: #adb5bd; 20563 color: #fff; 20564} 20565 20566.popover-light .popover-body { 20567 color: #fff; 20568} 20569 20570.popover-light .popover-header { 20571 border-color: rgba(255, 255, 255, 0.2); 20572} 20573 20574.popover-light.bs-popover-top .arrow::after, .popover-light.bs-popover-auto[x-placement^=top] .arrow::after { 20575 border-top-color: #adb5bd; 20576} 20577 20578.popover-light.bs-popover-right .arrow::after, .popover-light.bs-popover-auto[x-placement^=right] .arrow::after { 20579 border-right-color: #adb5bd; 20580} 20581 20582.popover-light.bs-popover-bottom .arrow::after, .popover-light.bs-popover-auto[x-placement^=bottom] .arrow::after { 20583 border-bottom-color: #adb5bd; 20584} 20585 20586.popover-light.bs-popover-left .arrow::after, .popover-light.bs-popover-auto[x-placement^=left] .arrow::after { 20587 border-left-color: #adb5bd; 20588} 20589 20590.popover-dark { 20591 background-color: #212529; 20592} 20593 20594.popover-dark .popover-header { 20595 background-color: #212529; 20596 color: #fff; 20597} 20598 20599.popover-dark .popover-body { 20600 color: #fff; 20601} 20602 20603.popover-dark .popover-header { 20604 border-color: rgba(255, 255, 255, 0.2); 20605} 20606 20607.popover-dark.bs-popover-top .arrow::after, .popover-dark.bs-popover-auto[x-placement^=top] .arrow::after { 20608 border-top-color: #212529; 20609} 20610 20611.popover-dark.bs-popover-right .arrow::after, .popover-dark.bs-popover-auto[x-placement^=right] .arrow::after { 20612 border-right-color: #212529; 20613} 20614 20615.popover-dark.bs-popover-bottom .arrow::after, .popover-dark.bs-popover-auto[x-placement^=bottom] .arrow::after { 20616 border-bottom-color: #212529; 20617} 20618 20619.popover-dark.bs-popover-left .arrow::after, .popover-dark.bs-popover-auto[x-placement^=left] .arrow::after { 20620 border-left-color: #212529; 20621} 20622 20623.popover-default { 20624 background-color: #172b4d; 20625} 20626 20627.popover-default .popover-header { 20628 background-color: #172b4d; 20629 color: #fff; 20630} 20631 20632.popover-default .popover-body { 20633 color: #fff; 20634} 20635 20636.popover-default .popover-header { 20637 border-color: rgba(255, 255, 255, 0.2); 20638} 20639 20640.popover-default.bs-popover-top .arrow::after, .popover-default.bs-popover-auto[x-placement^=top] .arrow::after { 20641 border-top-color: #172b4d; 20642} 20643 20644.popover-default.bs-popover-right .arrow::after, .popover-default.bs-popover-auto[x-placement^=right] .arrow::after { 20645 border-right-color: #172b4d; 20646} 20647 20648.popover-default.bs-popover-bottom .arrow::after, .popover-default.bs-popover-auto[x-placement^=bottom] .arrow::after { 20649 border-bottom-color: #172b4d; 20650} 20651 20652.popover-default.bs-popover-left .arrow::after, .popover-default.bs-popover-auto[x-placement^=left] .arrow::after { 20653 border-left-color: #172b4d; 20654} 20655 20656.popover-white { 20657 background-color: #fff; 20658} 20659 20660.popover-white .popover-header { 20661 background-color: #fff; 20662 color: #212529; 20663} 20664 20665.popover-white .popover-body { 20666 color: #212529; 20667} 20668 20669.popover-white .popover-header { 20670 border-color: rgba(33, 37, 41, 0.2); 20671} 20672 20673.popover-white.bs-popover-top .arrow::after, .popover-white.bs-popover-auto[x-placement^=top] .arrow::after { 20674 border-top-color: #fff; 20675} 20676 20677.popover-white.bs-popover-right .arrow::after, .popover-white.bs-popover-auto[x-placement^=right] .arrow::after { 20678 border-right-color: #fff; 20679} 20680 20681.popover-white.bs-popover-bottom .arrow::after, .popover-white.bs-popover-auto[x-placement^=bottom] .arrow::after { 20682 border-bottom-color: #fff; 20683} 20684 20685.popover-white.bs-popover-left .arrow::after, .popover-white.bs-popover-auto[x-placement^=left] .arrow::after { 20686 border-left-color: #fff; 20687} 20688 20689.popover-neutral { 20690 background-color: #fff; 20691} 20692 20693.popover-neutral .popover-header { 20694 background-color: #fff; 20695 color: #212529; 20696} 20697 20698.popover-neutral .popover-body { 20699 color: #212529; 20700} 20701 20702.popover-neutral .popover-header { 20703 border-color: rgba(33, 37, 41, 0.2); 20704} 20705 20706.popover-neutral.bs-popover-top .arrow::after, .popover-neutral.bs-popover-auto[x-placement^=top] .arrow::after { 20707 border-top-color: #fff; 20708} 20709 20710.popover-neutral.bs-popover-right .arrow::after, .popover-neutral.bs-popover-auto[x-placement^=right] .arrow::after { 20711 border-right-color: #fff; 20712} 20713 20714.popover-neutral.bs-popover-bottom .arrow::after, .popover-neutral.bs-popover-auto[x-placement^=bottom] .arrow::after { 20715 border-bottom-color: #fff; 20716} 20717 20718.popover-neutral.bs-popover-left .arrow::after, .popover-neutral.bs-popover-auto[x-placement^=left] .arrow::after { 20719 border-left-color: #fff; 20720} 20721 20722.popover-darker { 20723 background-color: black; 20724} 20725 20726.popover-darker .popover-header { 20727 background-color: black; 20728 color: #fff; 20729} 20730 20731.popover-darker .popover-body { 20732 color: #fff; 20733} 20734 20735.popover-darker .popover-header { 20736 border-color: rgba(255, 255, 255, 0.2); 20737} 20738 20739.popover-darker.bs-popover-top .arrow::after, .popover-darker.bs-popover-auto[x-placement^=top] .arrow::after { 20740 border-top-color: black; 20741} 20742 20743.popover-darker.bs-popover-right .arrow::after, .popover-darker.bs-popover-auto[x-placement^=right] .arrow::after { 20744 border-right-color: black; 20745} 20746 20747.popover-darker.bs-popover-bottom .arrow::after, .popover-darker.bs-popover-auto[x-placement^=bottom] .arrow::after { 20748 border-bottom-color: black; 20749} 20750 20751.popover-darker.bs-popover-left .arrow::after, .popover-darker.bs-popover-auto[x-placement^=left] .arrow::after { 20752 border-left-color: black; 20753} 20754 20755.progress-wrapper { 20756 position: relative; 20757 padding-top: 1.5rem; 20758} 20759 20760.progress { 20761 height: 8px; 20762 margin-bottom: 1rem; 20763 overflow: hidden; 20764 border-radius: 0.2rem; 20765 background-color: #e9ecef; 20766 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 20767 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 20768} 20769 20770.progress .sr-only { 20771 width: auto; 20772 height: 20px; 20773 margin: 0 0 0 30px; 20774 left: 0; 20775 clip: auto; 20776 line-height: 20px; 20777 font-size: 13px; 20778} 20779 20780.progress-heading { 20781 font-size: 14px; 20782 font-weight: 500; 20783 margin: 0 0 2px; 20784 padding: 0; 20785} 20786 20787.progress-bar { 20788 box-shadow: none; 20789 border-radius: 0; 20790 height: auto; 20791} 20792 20793.progress-label span { 20794 display: inline-block; 20795 color: #172b4d; 20796 font-size: 0.625rem; 20797 font-weight: 600; 20798 text-transform: uppercase; 20799 padding: 0.25rem 0rem; 20800} 20801 20802.progress-percentage { 20803 text-align: right; 20804} 20805 20806.progress-percentage span { 20807 display: inline-block; 20808 color: #8898aa; 20809 font-size: 0.875rem; 20810 font-weight: 600; 20811} 20812 20813.index-page .progress-wrapper { 20814 padding-top: 1rem; 20815} 20816 20817.index-page .progress-wrapper .progress-label { 20818 position: absolute; 20819 top: auto; 20820 bottom: 10px; 20821} 20822 20823.index-page .progress-wrapper .progress { 20824 margin-bottom: 0; 20825} 20826 20827.section { 20828 position: relative; 20829 padding-top: 4rem; 20830 padding-bottom: 4rem; 20831} 20832 20833.section-xl { 20834 padding-top: 8rem; 20835 padding-bottom: 8rem; 20836} 20837 20838.section-lg { 20839 padding-top: 6rem; 20840 padding-bottom: 6rem; 20841} 20842 20843.section-sm { 20844 padding-top: 2rem; 20845 padding-bottom: 2rem; 20846} 20847 20848@media (min-width: 768px) { 20849 .section-hero { 20850 min-height: 500px; 20851 } 20852} 20853.section-shaped { 20854 position: relative; 20855 overflow: hidden; 20856} 20857 20858.section-shaped.section-hero:before { 20859 top: 680px; 20860} 20861 20862.section-shaped .stars-and-coded { 20863 margin-top: 8rem; 20864} 20865 20866.section-shaped .shape { 20867 position: absolute; 20868 top: 0; 20869 z-index: -1; 20870 width: 100%; 20871 height: 100%; 20872} 20873 20874.section-shaped .shape span { 20875 position: absolute; 20876} 20877 20878.section-shaped .shape + .container { 20879 position: relative; 20880 height: 100%; 20881} 20882 20883.section-shaped .shape.shape-skew + .container { 20884 padding-top: 0; 20885} 20886 20887.section-shaped .shape.shape-skew + .container .col { 20888 margin-top: -100px; 20889} 20890 20891.section-shaped .shape.shape-skew + .shape-container { 20892 padding-top: 18rem; 20893 padding-bottom: 19rem; 20894} 20895 20896.section-shaped .shape-skew { 20897 transform: skewY(-4deg); 20898 transform-origin: 0; 20899} 20900 20901.section-shaped .shape-skew span { 20902 transform: skew(4deg); 20903} 20904 20905.section-shaped .shape-primary { 20906 background: linear-gradient(150deg, #281483 15%, #8f6ed5 70%, #d782d9 94%); 20907} 20908 20909.section-shaped .shape-primary :nth-child(1) { 20910 background: #53f; 20911} 20912 20913.section-shaped .shape-primary :nth-child(2) { 20914 background: #4553ff; 20915} 20916 20917.section-shaped .shape-primary :nth-child(3) { 20918 background: #4f40ff; 20919} 20920 20921.section-shaped .shape-primary :nth-child(4) { 20922 background: #25ddf5; 20923} 20924 20925.section-shaped .shape-primary :nth-child(5) { 20926 background: #1fa2ff; 20927} 20928 20929.section-shaped .shape-default { 20930 background: linear-gradient(150deg, #7795f8 15%, #6772e5 70%, #555abf 94%); 20931} 20932 20933.section-shaped .shape-default :nth-child(1) { 20934 background: #7795f8; 20935} 20936 20937.section-shaped .shape-default :nth-child(2) { 20938 background: #7b9aff; 20939} 20940 20941.section-shaped .shape-default :nth-child(3) { 20942 background: #6f8ff8; 20943} 20944 20945.section-shaped .shape-default :nth-child(4) { 20946 background: #76eea7; 20947} 20948 20949.section-shaped .shape-default :nth-child(5) { 20950 background: #6adaff; 20951} 20952 20953.section-shaped .shape-light { 20954 background: linear-gradient(150deg, shapes-light-color("step-1-gradient-bg") 15%, shapes-light-color("step-2-gradient-bg") 70%, shapes-light-color("step-3-gradient-bg") 94%); 20955} 20956 20957.section-shaped .shape-light :nth-child(1) { 20958 background: shapes-light-color("span-1-bg"); 20959} 20960 20961.section-shaped .shape-light :nth-child(2) { 20962 background: shapes-light-color("span-2-bg"); 20963} 20964 20965.section-shaped .shape-light :nth-child(3) { 20966 background: shapes-light-color("span-3-bg"); 20967} 20968 20969.section-shaped .shape-light :nth-child(4) { 20970 background: shapes-light-color("span-4-bg"); 20971} 20972 20973.section-shaped .shape-light :nth-child(5) { 20974 background: shapes-light-color("span-5-bg"); 20975} 20976 20977.section-shaped .shape-dark { 20978 background: linear-gradient(150deg, #32325d 15%, #32325d 70%, #32325d 94%); 20979} 20980 20981.section-shaped .shape-dark :nth-child(1) { 20982 background: #2e2e57; 20983} 20984 20985.section-shaped .shape-dark :nth-child(2) { 20986 background: #2b2b58; 20987} 20988 20989.section-shaped .shape-dark :nth-child(3) { 20990 background: #25254d; 20991} 20992 20993.section-shaped .shape-dark :nth-child(4) { 20994 background: #d782d9; 20995} 20996 20997.section-shaped .shape-dark :nth-child(5) { 20998 background: #008169; 20999} 21000 21001.section-shaped .shape-style-1 span { 21002 height: 120px; 21003 width: 120px; 21004 border-radius: 50%; 21005} 21006 21007.section-shaped .shape-style-1 .span-200 { 21008 height: 200px; 21009 width: 200px; 21010} 21011 21012.section-shaped .shape-style-1 .span-150 { 21013 height: 150px; 21014 width: 150px; 21015} 21016 21017.section-shaped .shape-style-1 .span-100 { 21018 height: 100px; 21019 width: 100px; 21020} 21021 21022.section-shaped .shape-style-1 .span-75 { 21023 height: 75px; 21024 width: 75px; 21025} 21026 21027.section-shaped .shape-style-1 .span-50 { 21028 height: 50px; 21029 width: 50px; 21030} 21031 21032.section-shaped .shape-style-1 :nth-child(1) { 21033 left: -4%; 21034 bottom: auto; 21035 background: rgba(255, 255, 255, 0.1); 21036} 21037 21038.section-shaped .shape-style-1 :nth-child(2) { 21039 right: 4%; 21040 top: 10%; 21041 background: rgba(255, 255, 255, 0.1); 21042} 21043 21044.section-shaped .shape-style-1 :nth-child(3) { 21045 top: 280px; 21046 right: 5.66666%; 21047 background: rgba(255, 255, 255, 0.3); 21048} 21049 21050.section-shaped .shape-style-1 :nth-child(4) { 21051 top: 320px; 21052 right: 7%; 21053 background: rgba(255, 255, 255, 0.15); 21054} 21055 21056.section-shaped .shape-style-1 :nth-child(5) { 21057 top: 38%; 21058 left: 1%; 21059 right: auto; 21060 background: rgba(255, 255, 255, 0.05); 21061} 21062 21063.section-shaped .shape-style-1 :nth-child(6) { 21064 width: 200px; 21065 height: 200px; 21066 top: 44%; 21067 left: 10%; 21068 right: auto; 21069 background: rgba(255, 255, 255, 0.15); 21070} 21071 21072.section-shaped .shape-style-1 :nth-child(7) { 21073 bottom: 50%; 21074 right: 36%; 21075 background: rgba(255, 255, 255, 0.04); 21076} 21077 21078.section-shaped .shape-style-1 :nth-child(8) { 21079 bottom: 70px; 21080 right: 2%; 21081 background: rgba(255, 255, 255, 0.2); 21082} 21083 21084.section-shaped .shape-style-1 :nth-child(9) { 21085 bottom: 1%; 21086 right: 2%; 21087 background: rgba(255, 255, 255, 0.1); 21088} 21089 21090.section-shaped .shape-style-1 :nth-child(10) { 21091 bottom: 1%; 21092 left: 1%; 21093 right: auto; 21094 background: rgba(255, 255, 255, 0.05); 21095} 21096 21097@media (max-width: 991.98px) { 21098 .section-shaped .shape-style-1 span { 21099 height: 120px; 21100 } 21101} 21102@media (max-width: 767.98px) { 21103 .section-shaped .shape-style-1 span { 21104 height: 90px; 21105 } 21106} 21107.section-shaped .shape-style-1.shape-primary { 21108 background: linear-gradient(150deg, #281483 15%, #8f6ed5 70%, #d782d9 94%); 21109} 21110 21111.section-shaped .shape-style-1.shape-default { 21112 background: linear-gradient(150deg, #7795f8 15%, #6772e5 70%, #555abf 94%); 21113} 21114 21115.section-shaped .shape-style-1.shape-light { 21116 background: linear-gradient(150deg, shapes-light-color("step-1-gradient-bg") 15%, shapes-light-color("step-2-gradient-bg") 70%, shapes-light-color("step-3-gradient-bg") 94%); 21117} 21118 21119.section-shaped .shape-style-1.shape-dark { 21120 background: linear-gradient(150deg, #32325d 15%, #32325d 70%, #32325d 94%); 21121} 21122 21123.section-shaped .shape-style-2 span { 21124 height: 190px; 21125} 21126 21127.section-shaped .shape-style-2 .span-sm { 21128 height: 100px; 21129} 21130 21131.section-shaped .shape-style-2 :nth-child(1) { 21132 width: 33.33333%; 21133 top: 0; 21134 left: -16.66666%; 21135} 21136 21137.section-shaped .shape-style-2 :nth-child(2) { 21138 width: 33.33333%; 21139 top: 0; 21140 left: 16.66666%; 21141 right: auto; 21142} 21143 21144.section-shaped .shape-style-2 :nth-child(3) { 21145 width: 33.33333%; 21146 left: 49.99999%; 21147 bottom: auto; 21148} 21149 21150.section-shaped .shape-style-2 :nth-child(4) { 21151 width: 33.33333%; 21152 top: 55%; 21153 right: -16.66666%; 21154} 21155 21156.section-shaped .shape-style-2 :nth-child(5) { 21157 width: 33.33333%; 21158 bottom: 0; 21159} 21160 21161@media (max-width: 991.98px) { 21162 .section-shaped .shape-style-2 span { 21163 height: 120px; 21164 } 21165} 21166@media (max-width: 767.98px) { 21167 .section-shaped .shape-style-2 span { 21168 height: 90px; 21169 } 21170} 21171.section-shaped .shape-style-3 span { 21172 height: 140px; 21173} 21174 21175.section-shaped .shape-style-3 .span-sm { 21176 height: 100px; 21177} 21178 21179.section-shaped .shape-style-3 :nth-child(1) { 21180 width: 66%; 21181 left: -16.66666%; 21182 bottom: auto; 21183} 21184 21185.section-shaped .shape-style-3 :nth-child(2) { 21186 width: 40%; 21187 top: 54%; 21188 right: -16.66666%; 21189} 21190 21191.section-shaped .shape-style-3 :nth-child(3) { 21192 width: 33.33333%; 21193 top: 34%; 21194 left: -16.66666%; 21195 right: auto; 21196} 21197 21198.section-shaped .shape-style-3 :nth-child(4) { 21199 width: 60%; 21200 bottom: 0; 21201 right: -16.66666%; 21202 opacity: 0.6; 21203} 21204 21205.section-shaped .shape-style-3 :nth-child(5) { 21206 width: 33.33333%; 21207 bottom: 0; 21208} 21209 21210@media (max-width: 991.98px) { 21211 .section-shaped .shape-style-3 span { 21212 height: 120px; 21213 } 21214} 21215@media (max-width: 767.98px) { 21216 .section-shaped .shape-style-3 span { 21217 height: 90px; 21218 } 21219} 21220.device-ill { 21221 pointer-events: none; 21222 position: absolute; 21223 display: flex; 21224 width: 1287px; 21225 left: 50%; 21226 margin-left: -644px; 21227 transform: scale(0.5) rotate(-12deg) translateX(50px); 21228 transform-origin: 50% 20%; 21229 will-change: transform; 21230} 21231 21232.device-ill div { 21233 display: flex; 21234 justify-content: center; 21235 align-items: center; 21236 border-radius: 0.25rem; 21237 padding: 0.875rem; 21238 background: #fff; 21239 box-shadow: inset 0 4px 7px 1px #fff, inset 0 -5px 20px rgba(173, 186, 204, 0.25), 0 2px 6px rgba(0, 21, 64, 0.14), 0 10px 20px rgba(0, 21, 64, 0.05); 21240} 21241 21242.device-ill .tablet-landscape { 21243 width: 512px; 21244 height: 352px; 21245 margin: 115px 50px 0; 21246} 21247 21248@media (min-width: 670px) { 21249 .device-ill { 21250 flex-wrap: wrap; 21251 width: 512px; 21252 margin-left: -50px; 21253 top: 215px; 21254 transform: rotate(-12deg); 21255 transform-origin: 100% 0; 21256 } 21257 21258 .device-ill [class^=tablet] { 21259 margin: 0; 21260 } 21261 21262 .device-ill .tablet-landscape { 21263 width: 512px; 21264 height: 352px; 21265 } 21266} 21267@media (min-width: 880px) { 21268 .device-ill { 21269 width: 829px; 21270 margin-left: -10px; 21271 top: 20px; 21272 } 21273 21274 .device-ill .tablet-landscape { 21275 align-self: flex-end; 21276 margin-right: 50px; 21277 } 21278 21279 .device-ill .phone-big { 21280 display: flex; 21281 width: 267px; 21282 height: 553px; 21283 } 21284} 21285.section-profile-cover { 21286 height: 580px; 21287 background-size: cover; 21288 background-position: center center; 21289} 21290 21291@media (max-width: 991.98px) { 21292 .section-profile-cover { 21293 height: 400px; 21294 } 21295} 21296.section-components > .form-control + .form-control, #dw__login .section-components > input + .form-control, #dw__login .section-components > .form-control + input, #dw__login .section-components > input + input, #config__manager td .section-components > input.edit + .form-control, #config__manager td .section-components > .form-control + input.edit, #config__manager td .section-components > input.edit + input.edit, .search-results-form fieldset .section-components > input + .form-control, .search-results-form fieldset #config__manager td .section-components > input + input.edit, #config__manager td .search-results-form fieldset .section-components > input + input.edit, .search-results-form fieldset .section-components > .form-control + input, .search-results-form fieldset #config__manager td .section-components > input.edit + input, #config__manager td .search-results-form fieldset .section-components > input.edit + input, .search-results-form fieldset .section-components > input + input, .doku_form .no .section-components > #qsearch__in + .form-control, .doku_form .no #dw__login .section-components > #qsearch__in + input, #dw__login .doku_form .no .section-components > #qsearch__in + input, .doku_form .no #config__manager td .section-components > #qsearch__in + input.edit, #config__manager td .doku_form .no .section-components > #qsearch__in + input.edit, .doku_form .no .search-results-form fieldset .section-components > #qsearch__in + input, .search-results-form fieldset .doku_form .no .section-components > #qsearch__in + input, .doku_form .no .section-components > .form-control + #qsearch__in, .doku_form .no #dw__login .section-components > input + #qsearch__in, #dw__login .doku_form .no .section-components > input + #qsearch__in, .doku_form .no #config__manager td .section-components > input.edit + #qsearch__in, #config__manager td .doku_form .no .section-components > input.edit + #qsearch__in, .doku_form .no .search-results-form fieldset .section-components > input + #qsearch__in, .search-results-form fieldset .doku_form .no .section-components > input + #qsearch__in, .doku_form .no .section-components > #qsearch__in + #qsearch__in, .section-components > textarea + .form-control, #dw__login .section-components > textarea + input, #config__manager td .section-components > textarea + input.edit, .search-results-form fieldset .section-components > textarea + input, .doku_form .no .section-components > textarea + #qsearch__in, .section-components > .form-control + textarea, #dw__login .section-components > input + textarea, #config__manager td .section-components > input.edit + textarea, .search-results-form fieldset .section-components > input + textarea, .doku_form .no .section-components > #qsearch__in + textarea, .section-components > textarea + textarea { 21297 margin-top: 0.5rem; 21298} 21299 21300.section-components > .nav + .nav, .leftsidebar .leftsidebar .section-components > ul + .nav, .leftsidebar .leftsidebar .section-components > .nav + ul, .leftsidebar .leftsidebar .section-components > ul + ul, 21301.section-components > .alert + .alert, 21302.section-components > .navbar + .navbar, 21303.section-components > .progress + .progress, 21304.section-components > .progress + .btn, 21305.section-components .badge, 21306.section-components .btn, 21307.section-components #dw__login button, 21308#dw__login .section-components button, 21309.section-components .qq-upload-button, 21310.section-components .toggleAssistant, 21311.section-components .doku_form .no button, 21312.doku_form .no .section-components button, 21313.section-components #tool__bar button, 21314#tool__bar .section-components button, 21315.section-components #dokuwiki__content .editButtons button, 21316#dokuwiki__content .editButtons .section-components button, 21317.section-components #dokuwiki__content #page__revisions button, 21318#dokuwiki__content #page__revisions .section-components button, 21319.section-components #dokuwiki__content .secedit button, 21320#dokuwiki__content .secedit .section-components button, 21321.section-components button { 21322 margin-top: 0.5rem; 21323 margin-bottom: 0.5rem; 21324} 21325 21326.section-components .btn-group { 21327 margin-top: 0.5rem; 21328 margin-bottom: 0.5rem; 21329} 21330 21331.section-components .btn-group .btn, .section-components .btn-group #dw__login button, #dw__login .section-components .btn-group button, .section-components .btn-group .qq-upload-button, .section-components .btn-group .toggleAssistant, .section-components .btn-group #tool__bar button, #tool__bar .section-components .btn-group button, .section-components .btn-group #dokuwiki__content .editButtons button, #dokuwiki__content .editButtons .section-components .btn-group button, .section-components .btn-group #dokuwiki__content #page__revisions button, #dokuwiki__content #page__revisions .section-components .btn-group button, .section-components .btn-group #dokuwiki__content .secedit button, #dokuwiki__content .secedit .section-components .btn-group button, .section-components .btn-group button { 21332 margin: 0; 21333} 21334 21335.section-components .alert { 21336 margin: 0; 21337} 21338 21339.section-components .alert + .alert { 21340 margin-top: 1.25rem; 21341} 21342 21343.section-components .badge { 21344 margin-right: 0.1rem; 21345} 21346 21347.section-components .modal-footer .btn, .section-components .modal-footer #dw__login button, #dw__login .section-components .modal-footer button, .section-components .modal-footer .qq-upload-button, .section-components .modal-footer .toggleAssistant, .section-components .modal-footer #tool__bar button, #tool__bar .section-components .modal-footer button, .section-components .modal-footer #dokuwiki__content .editButtons button, #dokuwiki__content .editButtons .section-components .modal-footer button, .section-components .modal-footer #dokuwiki__content #page__revisions button, #dokuwiki__content #page__revisions .section-components .modal-footer button, .section-components .modal-footer #dokuwiki__content .secedit button, #dokuwiki__content .secedit .section-components .modal-footer button, .section-components .modal-footer button { 21348 margin: 0; 21349} 21350 21351/* .floating-cards { 21352 perspective:1500px; 21353 position:relative; 21354 align-items:center 21355} 21356 21357.floating-cards > div { 21358 position:absolute; 21359 -ms-flex-negative:0; 21360 flex-shrink:0; 21361 border-radius:8px; 21362 overflow:hidden 21363} 21364.floating-cards .shine { 21365 position:absolute; 21366 left:0; 21367 right:0; 21368 top:0; 21369 bottom:0; 21370 pointer-events:none 21371} 21372*/ 21373.separator { 21374 position: absolute; 21375 top: auto; 21376 left: 0; 21377 right: 0; 21378 width: 100%; 21379 height: 150px; 21380 z-index: 1; 21381 transform: translateZ(0); 21382 overflow: hidden; 21383 pointer-events: none; 21384} 21385 21386.separator svg { 21387 position: absolute; 21388 pointer-events: none; 21389} 21390 21391.separator-top { 21392 top: 0; 21393 bottom: auto; 21394} 21395 21396.separator-top svg { 21397 top: 0; 21398} 21399 21400.separator-bottom { 21401 top: auto; 21402 bottom: 0; 21403} 21404 21405.separator-bottom svg { 21406 bottom: 0; 21407} 21408 21409.separator-inverse { 21410 transform: rotate(180deg); 21411} 21412 21413.separator-skew { 21414 height: 80px; 21415} 21416 21417@media (max-width: 991.98px) { 21418 .separator-skew { 21419 z-index: 0; 21420 } 21421} 21422.mt-md, 21423.my-md { 21424 margin-top: 4rem !important; 21425} 21426 21427.mr-md, 21428.mx-md { 21429 margin-right: 4rem !important; 21430} 21431 21432.mb-md, 21433.my-md { 21434 margin-bottom: 4rem !important; 21435} 21436 21437.ml-md, 21438.mx-md { 21439 margin-left: 4rem !important; 21440} 21441 21442.m-lg { 21443 margin: 6rem !important; 21444} 21445 21446.mt-lg, 21447.my-lg { 21448 margin-top: 6rem !important; 21449} 21450 21451.mr-lg, 21452.mx-lg { 21453 margin-right: 6rem !important; 21454} 21455 21456.mb-lg, 21457.my-lg { 21458 margin-bottom: 6rem !important; 21459} 21460 21461.ml-lg, 21462.mx-lg { 21463 margin-left: 6rem !important; 21464} 21465 21466.m-xl { 21467 margin: 8rem !important; 21468} 21469 21470.mt-xl, 21471.my-xl { 21472 margin-top: 8rem !important; 21473} 21474 21475.mr-xl, 21476.mx-xl { 21477 margin-right: 8rem !important; 21478} 21479 21480.mb-xl, 21481.my-xl { 21482 margin-bottom: 8rem !important; 21483} 21484 21485.ml-xl, 21486.mx-xl { 21487 margin-left: 8rem !important; 21488} 21489 21490.pt-lg, 21491.py-lg { 21492 padding-top: 6rem !important; 21493} 21494 21495.pr-lg, 21496.px-lg { 21497 padding-right: 6rem !important; 21498} 21499 21500.pb-lg, 21501.py-lg { 21502 padding-bottom: 6rem !important; 21503} 21504 21505.pl-lg, 21506.px-lg { 21507 padding-left: 6rem !important; 21508} 21509 21510.p-xl { 21511 padding: 8rem !important; 21512} 21513 21514.pt-xl, 21515.py-xl { 21516 padding-top: 8rem !important; 21517} 21518 21519.pr-xl, 21520.px-xl { 21521 padding-right: 8rem !important; 21522} 21523 21524.pb-xl, 21525.py-xl { 21526 padding-bottom: 8rem !important; 21527} 21528 21529.pl-xl, 21530.px-xl { 21531 padding-left: 8rem !important; 21532} 21533 21534.m-auto { 21535 margin: auto !important; 21536} 21537 21538.mt-auto, 21539.my-auto { 21540 margin-top: auto !important; 21541} 21542 21543.mr-auto, 21544.mx-auto { 21545 margin-right: auto !important; 21546} 21547 21548.mb-auto, 21549.my-auto { 21550 margin-bottom: auto !important; 21551} 21552 21553.ml-auto, 21554.mx-auto { 21555 margin-left: auto !important; 21556} 21557 21558p { 21559 font-size: 1rem; 21560 font-weight: 400; 21561 line-height: 1.55; 21562} 21563 21564.lead { 21565 font-size: 1.25rem; 21566 font-weight: 300; 21567 line-height: 1.7; 21568 margin-top: 1.5rem; 21569} 21570 21571.lead + .btn-wrapper { 21572 margin-top: 3rem; 21573} 21574 21575.description { 21576 font-size: 0.875rem; 21577} 21578 21579.heading { 21580 letter-spacing: 0.025em; 21581 font-size: 0.95rem; 21582 text-transform: uppercase; 21583 font-weight: 400; 21584} 21585 21586.heading-title { 21587 letter-spacing: 0.025em; 21588 font-size: 1.375rem; 21589 font-weight: 600; 21590 text-transform: uppercase; 21591} 21592 21593.heading-section { 21594 letter-spacing: 0.025em; 21595 font-size: 1.375rem; 21596 font-weight: 600; 21597 text-transform: uppercase; 21598} 21599 21600.heading-section img { 21601 display: block; 21602 width: 72px; 21603 height: 72px; 21604 margin-bottom: 1.5rem; 21605} 21606 21607.heading-section.text-center img { 21608 margin-left: auto; 21609 margin-right: auto; 21610} 21611 21612.display-1 span, 21613.display-2 span, 21614.display-3 span, 21615.display-4 span { 21616 display: block; 21617 font-weight: 300; 21618} 21619 21620article h4:not(:first-child), 21621article h5:not(:first-child) { 21622 margin-top: 3rem; 21623} 21624 21625article h4, article h5 { 21626 margin-bottom: 1.5rem; 21627} 21628 21629article figure { 21630 margin: 3rem 0; 21631} 21632 21633article h5 + figure { 21634 margin-top: 0; 21635} 21636 21637/* flatpickr v4.5.7, @license MIT */ 21638.flatpickr-calendar { 21639 background: transparent; 21640 opacity: 0; 21641 display: none; 21642 text-align: center; 21643 visibility: hidden; 21644 padding: 0; 21645 -webkit-animation: none; 21646 animation: none; 21647 direction: ltr; 21648 border: 0; 21649 font-size: 14px; 21650 line-height: 24px; 21651 border-radius: 5px; 21652 position: absolute; 21653 width: 307.875px; 21654 -webkit-box-sizing: border-box; 21655 box-sizing: border-box; 21656 -ms-touch-action: manipulation; 21657 touch-action: manipulation; 21658 background: #fff; 21659 -webkit-box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); 21660 box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08); 21661} 21662 21663.flatpickr-calendar.open, 21664.flatpickr-calendar.inline { 21665 opacity: 1; 21666 max-height: 640px; 21667 visibility: visible; 21668} 21669 21670.flatpickr-calendar.open { 21671 display: inline-block; 21672 z-index: 99999; 21673} 21674 21675.flatpickr-calendar.animate.open { 21676 -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); 21677 animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1); 21678 box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); 21679} 21680 21681.flatpickr-calendar.inline { 21682 display: block; 21683 position: relative; 21684 top: 2px; 21685} 21686 21687.flatpickr-calendar.static { 21688 position: absolute; 21689 top: calc(100% + 2px); 21690} 21691 21692.flatpickr-calendar.static.open { 21693 z-index: 999; 21694 display: block; 21695} 21696 21697.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7) { 21698 -webkit-box-shadow: none !important; 21699 box-shadow: none !important; 21700} 21701 21702.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1) { 21703 -webkit-box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; 21704 box-shadow: -2px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; 21705} 21706 21707.flatpickr-calendar .hasWeeks .dayContainer, 21708.flatpickr-calendar .hasTime .dayContainer { 21709 border-bottom: 0; 21710 border-bottom-right-radius: 0; 21711 border-bottom-left-radius: 0; 21712} 21713 21714.flatpickr-calendar .hasWeeks .dayContainer { 21715 border-left: 0; 21716} 21717 21718.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time { 21719 height: 40px; 21720 border-top: 1px solid #e6e6e6; 21721} 21722 21723.flatpickr-calendar.noCalendar.hasTime .flatpickr-time { 21724 height: auto; 21725} 21726 21727.flatpickr-calendar:before { 21728 background: #fff; 21729 box-shadow: none; 21730 content: ""; 21731 display: block; 21732 height: 16px; 21733 width: 16px; 21734 left: 5px; 21735 position: absolute; 21736 bottom: 100%; 21737 transform: rotate(-45deg) translateY(1rem); 21738 z-index: -5; 21739 border-radius: 0.2rem; 21740} 21741 21742.flatpickr-calendar.rightMost:before, 21743.flatpickr-calendar.rightMost:after { 21744 left: auto; 21745 right: 22px; 21746} 21747 21748.flatpickr-calendar:before { 21749 border-width: 5px; 21750 margin: 0 -5px; 21751} 21752 21753.flatpickr-calendar:after { 21754 border-width: 4px; 21755 margin: 0 -4px; 21756} 21757 21758.flatpickr-calendar.arrowTop:before, 21759.flatpickr-calendar.arrowTop:after { 21760 bottom: 100%; 21761} 21762 21763.flatpickr-calendar.arrowTop:before { 21764 border-bottom-color: #e6e6e6; 21765} 21766 21767.flatpickr-calendar.arrowTop:after { 21768 border-bottom-color: #fff; 21769} 21770 21771.flatpickr-calendar.arrowBottom:before, 21772.flatpickr-calendar.arrowBottom:after { 21773 top: 100%; 21774} 21775 21776.flatpickr-calendar.arrowBottom:before { 21777 border-top-color: #e6e6e6; 21778} 21779 21780.flatpickr-calendar.arrowBottom:after { 21781 border-top-color: #fff; 21782} 21783 21784.flatpickr-calendar:focus { 21785 outline: 0; 21786} 21787 21788.flatpickr-wrapper { 21789 position: relative; 21790 display: inline-block; 21791} 21792 21793.flatpickr-months { 21794 display: -webkit-box; 21795 display: -webkit-flex; 21796 display: -ms-flexbox; 21797 display: flex; 21798} 21799 21800.flatpickr-months .flatpickr-month { 21801 background: transparent; 21802 color: rgba(0, 0, 0, 0.9); 21803 fill: rgba(0, 0, 0, 0.9); 21804 height: 28px; 21805 line-height: 1; 21806 text-align: center; 21807 position: relative; 21808 -webkit-user-select: none; 21809 -moz-user-select: none; 21810 -ms-user-select: none; 21811 user-select: none; 21812 overflow: hidden; 21813 -webkit-box-flex: 1; 21814 -webkit-flex: 1; 21815 -ms-flex: 1; 21816 flex: 1; 21817} 21818 21819.flatpickr-months .flatpickr-prev-month, 21820.flatpickr-months .flatpickr-next-month { 21821 text-decoration: none; 21822 cursor: pointer; 21823 position: absolute; 21824 top: 0px; 21825 line-height: 16px; 21826 height: 28px; 21827 padding: 10px; 21828 z-index: 3; 21829 color: rgba(0, 0, 0, 0.9); 21830 fill: rgba(0, 0, 0, 0.9); 21831} 21832 21833.flatpickr-months .flatpickr-prev-month.disabled, 21834.flatpickr-months .flatpickr-next-month.disabled { 21835 display: none; 21836} 21837 21838.flatpickr-months .flatpickr-prev-month i, 21839.flatpickr-months .flatpickr-next-month i { 21840 position: relative; 21841} 21842 21843.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month, 21844.flatpickr-months .flatpickr-next-month.flatpickr-prev-month { 21845 /* 21846 /*rtl:begin:ignore*/ 21847 /* 21848 */ 21849 left: 0; 21850 /* 21851 /*rtl:end:ignore*/ 21852 /* 21853 */ 21854} 21855 21856/* 21857 /*rtl:begin:ignore*/ 21858/* 21859 /*rtl:end:ignore*/ 21860.flatpickr-months .flatpickr-prev-month.flatpickr-next-month, 21861.flatpickr-months .flatpickr-next-month.flatpickr-next-month { 21862 /* 21863 /*rtl:begin:ignore*/ 21864 /* 21865 */ 21866 right: 0; 21867 /* 21868 /*rtl:end:ignore*/ 21869 /* 21870 */ 21871} 21872 21873/* 21874 /*rtl:begin:ignore*/ 21875/* 21876 /*rtl:end:ignore*/ 21877.flatpickr-months .flatpickr-prev-month:hover, 21878.flatpickr-months .flatpickr-next-month:hover { 21879 color: #959ea9; 21880} 21881 21882.flatpickr-months .flatpickr-prev-month:hover svg, 21883.flatpickr-months .flatpickr-next-month:hover svg { 21884 fill: #f64747; 21885} 21886 21887.flatpickr-months .flatpickr-prev-month svg, 21888.flatpickr-months .flatpickr-next-month svg { 21889 width: 14px; 21890 height: 14px; 21891} 21892 21893.flatpickr-months .flatpickr-prev-month svg path, 21894.flatpickr-months .flatpickr-next-month svg path { 21895 -webkit-transition: fill 0.1s; 21896 transition: fill 0.1s; 21897 fill: inherit; 21898} 21899 21900.numInputWrapper { 21901 position: relative; 21902 height: auto; 21903} 21904 21905.numInputWrapper input, 21906.numInputWrapper span { 21907 display: inline-block; 21908} 21909 21910.numInputWrapper input { 21911 width: 100%; 21912} 21913 21914.numInputWrapper input::-ms-clear { 21915 display: none; 21916} 21917 21918.numInputWrapper input::-webkit-outer-spin-button, 21919.numInputWrapper input::-webkit-inner-spin-button { 21920 margin: 0; 21921 -webkit-appearance: none; 21922} 21923 21924.numInputWrapper span { 21925 position: absolute; 21926 right: 0; 21927 width: 14px; 21928 padding: 0 4px 0 2px; 21929 height: 50%; 21930 line-height: 50%; 21931 opacity: 0; 21932 cursor: pointer; 21933 border: 1px solid rgba(57, 57, 57, 0.15); 21934 -webkit-box-sizing: border-box; 21935 box-sizing: border-box; 21936} 21937 21938.numInputWrapper span:hover { 21939 background: rgba(0, 0, 0, 0.1); 21940} 21941 21942.numInputWrapper span:active { 21943 background: rgba(0, 0, 0, 0.2); 21944} 21945 21946.numInputWrapper span:after { 21947 display: block; 21948 content: ""; 21949 position: absolute; 21950} 21951 21952.numInputWrapper span.arrowUp { 21953 top: -3px; 21954 border-bottom: 0; 21955} 21956 21957.numInputWrapper span.arrowUp:after { 21958 border-left: 4px solid transparent; 21959 border-right: 4px solid transparent; 21960 border-bottom: 4px solid rgba(57, 57, 57, 0.6); 21961 top: 26%; 21962} 21963 21964.numInputWrapper span.arrowDown { 21965 top: 37%; 21966} 21967 21968.numInputWrapper span.arrowDown:after { 21969 border-left: 4px solid transparent; 21970 border-right: 4px solid transparent; 21971 border-top: 4px solid rgba(57, 57, 57, 0.6); 21972 top: 40%; 21973} 21974 21975.numInputWrapper span svg { 21976 width: inherit; 21977 height: auto; 21978} 21979 21980.numInputWrapper span svg path { 21981 fill: rgba(0, 0, 0, 0.5); 21982} 21983 21984.numInputWrapper:hover { 21985 background: rgba(0, 0, 0, 0.05); 21986} 21987 21988.numInputWrapper:hover span { 21989 opacity: 1; 21990} 21991 21992.flatpickr-current-month { 21993 font-size: 135%; 21994 line-height: inherit; 21995 font-weight: 300; 21996 color: inherit; 21997 position: absolute; 21998 width: 75%; 21999 left: 12.5%; 22000 padding: 6.16px 0 0 0; 22001 line-height: 1; 22002 height: 28px; 22003 display: inline-block; 22004 text-align: center; 22005 -webkit-transform: translate3d(0px, 0px, 0px); 22006 transform: translate3d(0px, 0px, 0px); 22007 line-height: 20px; 22008} 22009 22010.flatpickr-current-month span.cur-month { 22011 font-family: inherit; 22012 font-weight: 700; 22013 color: inherit; 22014 display: inline-block; 22015 margin-left: 0.5ch; 22016 padding: 0; 22017} 22018 22019.flatpickr-current-month span.cur-month:hover { 22020 background: rgba(0, 0, 0, 0.05); 22021} 22022 22023.flatpickr-current-month .numInputWrapper { 22024 width: 6ch; 22025 width: 7ch\0 ; 22026 display: inline-block; 22027} 22028 22029.flatpickr-current-month .numInputWrapper span.arrowUp:after { 22030 border-bottom-color: rgba(0, 0, 0, 0.9); 22031} 22032 22033.flatpickr-current-month .numInputWrapper span.arrowDown:after { 22034 border-top-color: rgba(0, 0, 0, 0.9); 22035} 22036 22037.flatpickr-current-month input.cur-year { 22038 background: transparent; 22039 -webkit-box-sizing: border-box; 22040 box-sizing: border-box; 22041 color: inherit; 22042 cursor: text; 22043 padding: 0 0 0 0.5ch; 22044 margin: 0; 22045 display: inline-block; 22046 font-size: inherit; 22047 font-family: inherit; 22048 font-weight: 300; 22049 line-height: inherit; 22050 height: auto; 22051 border: 0; 22052 border-radius: 0; 22053 vertical-align: initial; 22054 -webkit-appearance: textfield; 22055 -moz-appearance: textfield; 22056 appearance: textfield; 22057} 22058 22059.flatpickr-current-month input.cur-year:focus { 22060 outline: 0; 22061} 22062 22063.flatpickr-current-month input.cur-year[disabled], 22064.flatpickr-current-month input.cur-year[disabled]:hover { 22065 font-size: 100%; 22066 color: rgba(0, 0, 0, 0.5); 22067 background: transparent; 22068 pointer-events: none; 22069} 22070 22071.flatpickr-weekdays { 22072 background: transparent; 22073 text-align: center; 22074 overflow: hidden; 22075 width: 100%; 22076 display: -webkit-box; 22077 display: -webkit-flex; 22078 display: -ms-flexbox; 22079 display: flex; 22080 -webkit-box-align: center; 22081 -webkit-align-items: center; 22082 -ms-flex-align: center; 22083 align-items: center; 22084 height: 28px; 22085} 22086 22087.flatpickr-weekdays .flatpickr-weekdaycontainer { 22088 display: -webkit-box; 22089 display: -webkit-flex; 22090 display: -ms-flexbox; 22091 display: flex; 22092 -webkit-box-flex: 1; 22093 -webkit-flex: 1; 22094 -ms-flex: 1; 22095 flex: 1; 22096} 22097 22098span.flatpickr-weekday { 22099 cursor: default; 22100 font-size: 90%; 22101 background: transparent; 22102 color: rgba(0, 0, 0, 0.54); 22103 line-height: 1; 22104 margin: 0; 22105 text-align: center; 22106 display: block; 22107 -webkit-box-flex: 1; 22108 -webkit-flex: 1; 22109 -ms-flex: 1; 22110 flex: 1; 22111 font-weight: bolder; 22112} 22113 22114.dayContainer, 22115.flatpickr-weeks { 22116 padding: 1px 0 0 0; 22117} 22118 22119.flatpickr-days { 22120 position: relative; 22121 overflow: hidden; 22122 display: -webkit-box; 22123 display: -webkit-flex; 22124 display: -ms-flexbox; 22125 display: flex; 22126 -webkit-box-align: start; 22127 -webkit-align-items: flex-start; 22128 -ms-flex-align: start; 22129 align-items: flex-start; 22130 width: 307.875px; 22131} 22132 22133.flatpickr-days:focus { 22134 outline: 0; 22135} 22136 22137.dayContainer { 22138 padding: 0; 22139 outline: 0; 22140 text-align: left; 22141 width: 307.875px; 22142 min-width: 307.875px; 22143 max-width: 307.875px; 22144 -webkit-box-sizing: border-box; 22145 box-sizing: border-box; 22146 display: inline-block; 22147 display: -ms-flexbox; 22148 display: -webkit-box; 22149 display: -webkit-flex; 22150 display: flex; 22151 -webkit-flex-wrap: wrap; 22152 flex-wrap: wrap; 22153 -ms-flex-wrap: wrap; 22154 -ms-flex-pack: justify; 22155 -webkit-justify-content: space-around; 22156 justify-content: space-around; 22157 -webkit-transform: translate3d(0px, 0px, 0px); 22158 transform: translate3d(0px, 0px, 0px); 22159 opacity: 1; 22160} 22161 22162.dayContainer + .dayContainer { 22163 -webkit-box-shadow: -1px 0 0 #e6e6e6; 22164 box-shadow: -1px 0 0 #e6e6e6; 22165} 22166 22167.flatpickr-day { 22168 background: none; 22169 border: 1px solid transparent; 22170 border-radius: 150px; 22171 -webkit-box-sizing: border-box; 22172 box-sizing: border-box; 22173 color: #393939; 22174 cursor: pointer; 22175 font-weight: 400; 22176 width: 14.2857143%; 22177 -webkit-flex-basis: 14.2857143%; 22178 -ms-flex-preferred-size: 14.2857143%; 22179 flex-basis: 14.2857143%; 22180 max-width: 39px; 22181 height: 39px; 22182 line-height: 39px; 22183 margin: 0; 22184 display: inline-block; 22185 position: relative; 22186 -webkit-box-pack: center; 22187 -webkit-justify-content: center; 22188 -ms-flex-pack: center; 22189 justify-content: center; 22190 text-align: center; 22191} 22192 22193.flatpickr-day.inRange, 22194.flatpickr-day.prevMonthDay.inRange, 22195.flatpickr-day.nextMonthDay.inRange, 22196.flatpickr-day.today.inRange, 22197.flatpickr-day.prevMonthDay.today.inRange, 22198.flatpickr-day.nextMonthDay.today.inRange, 22199.flatpickr-day:hover, 22200.flatpickr-day.prevMonthDay:hover, 22201.flatpickr-day.nextMonthDay:hover, 22202.flatpickr-day:focus, 22203.flatpickr-day.prevMonthDay:focus, 22204.flatpickr-day.nextMonthDay:focus { 22205 cursor: pointer; 22206 outline: 0; 22207 background: #e6e6e6; 22208 border-color: #e6e6e6; 22209} 22210 22211.flatpickr-day.today { 22212 border-color: #959ea9; 22213 box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08); 22214} 22215 22216.flatpickr-day.today:hover, 22217.flatpickr-day.today:focus { 22218 border-color: #959ea9; 22219 background: #959ea9; 22220 color: #fff; 22221} 22222 22223.flatpickr-day.selected, 22224.flatpickr-day.startRange, 22225.flatpickr-day.endRange, 22226.flatpickr-day.selected.inRange, 22227.flatpickr-day.startRange.inRange, 22228.flatpickr-day.endRange.inRange, 22229.flatpickr-day.selected:focus, 22230.flatpickr-day.startRange:focus, 22231.flatpickr-day.endRange:focus, 22232.flatpickr-day.selected:hover, 22233.flatpickr-day.startRange:hover, 22234.flatpickr-day.endRange:hover, 22235.flatpickr-day.selected.prevMonthDay, 22236.flatpickr-day.startRange.prevMonthDay, 22237.flatpickr-day.endRange.prevMonthDay, 22238.flatpickr-day.selected.nextMonthDay, 22239.flatpickr-day.startRange.nextMonthDay, 22240.flatpickr-day.endRange.nextMonthDay { 22241 background: #569ff7; 22242 -webkit-box-shadow: none; 22243 box-shadow: none; 22244 color: #fff; 22245 border-color: #569ff7; 22246} 22247 22248.flatpickr-day.selected.startRange, 22249.flatpickr-day.startRange.startRange, 22250.flatpickr-day.endRange.startRange { 22251 border-radius: 50px 0 0 50px; 22252} 22253 22254.flatpickr-day.selected.endRange, 22255.flatpickr-day.startRange.endRange, 22256.flatpickr-day.endRange.endRange { 22257 border-radius: 0 50px 50px 0; 22258} 22259 22260.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), 22261.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), 22262.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) { 22263 -webkit-box-shadow: -10px 0 0 #569ff7; 22264 box-shadow: -10px 0 0 #569ff7; 22265} 22266 22267.flatpickr-day.selected.startRange.endRange, 22268.flatpickr-day.startRange.startRange.endRange, 22269.flatpickr-day.endRange.startRange.endRange { 22270 border-radius: 50px; 22271} 22272 22273.flatpickr-day.inRange { 22274 border-radius: 0; 22275 -webkit-box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; 22276 box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6; 22277} 22278 22279.flatpickr-day.disabled, 22280.flatpickr-day.disabled:hover, 22281.flatpickr-day.prevMonthDay, 22282.flatpickr-day.nextMonthDay, 22283.flatpickr-day.notAllowed, 22284.flatpickr-day.notAllowed.prevMonthDay, 22285.flatpickr-day.notAllowed.nextMonthDay { 22286 color: rgba(57, 57, 57, 0.3); 22287 background: transparent; 22288 border-color: transparent; 22289 cursor: default; 22290} 22291 22292.flatpickr-day.disabled, 22293.flatpickr-day.disabled:hover { 22294 cursor: not-allowed; 22295 color: rgba(57, 57, 57, 0.1); 22296} 22297 22298.flatpickr-day.week.selected { 22299 border-radius: 0; 22300 -webkit-box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; 22301 box-shadow: -5px 0 0 #569ff7, 5px 0 0 #569ff7; 22302} 22303 22304.flatpickr-day.hidden { 22305 visibility: hidden; 22306} 22307 22308.rangeMode .flatpickr-day { 22309 margin-top: 1px; 22310} 22311 22312.flatpickr-weekwrapper { 22313 display: inline-block; 22314 float: left; 22315} 22316 22317.flatpickr-weekwrapper .flatpickr-weeks { 22318 padding: 0 12px; 22319 -webkit-box-shadow: 1px 0 0 #e6e6e6; 22320 box-shadow: 1px 0 0 #e6e6e6; 22321} 22322 22323.flatpickr-weekwrapper .flatpickr-weekday { 22324 float: none; 22325 width: 100%; 22326 line-height: 28px; 22327} 22328 22329.flatpickr-weekwrapper span.flatpickr-day, 22330.flatpickr-weekwrapper span.flatpickr-day:hover { 22331 display: block; 22332 width: 100%; 22333 max-width: none; 22334 color: rgba(57, 57, 57, 0.3); 22335 background: transparent; 22336 cursor: default; 22337 border: none; 22338} 22339 22340.flatpickr-innerContainer { 22341 display: block; 22342 display: -webkit-box; 22343 display: -webkit-flex; 22344 display: -ms-flexbox; 22345 display: flex; 22346 -webkit-box-sizing: border-box; 22347 box-sizing: border-box; 22348 overflow: hidden; 22349} 22350 22351.flatpickr-rContainer { 22352 display: inline-block; 22353 padding: 0; 22354 -webkit-box-sizing: border-box; 22355 box-sizing: border-box; 22356} 22357 22358.flatpickr-time { 22359 text-align: center; 22360 outline: 0; 22361 display: block; 22362 height: 0; 22363 line-height: 40px; 22364 max-height: 40px; 22365 -webkit-box-sizing: border-box; 22366 box-sizing: border-box; 22367 overflow: hidden; 22368 display: -webkit-box; 22369 display: -webkit-flex; 22370 display: -ms-flexbox; 22371 display: flex; 22372} 22373 22374.flatpickr-time:after { 22375 content: ""; 22376 display: table; 22377 clear: both; 22378} 22379 22380.flatpickr-time .numInputWrapper { 22381 -webkit-box-flex: 1; 22382 -webkit-flex: 1; 22383 -ms-flex: 1; 22384 flex: 1; 22385 width: 40%; 22386 height: 40px; 22387 float: left; 22388} 22389 22390.flatpickr-time .numInputWrapper span.arrowUp:after { 22391 border-bottom-color: #393939; 22392} 22393 22394.flatpickr-time .numInputWrapper span.arrowDown:after { 22395 border-top-color: #393939; 22396} 22397 22398.flatpickr-time.hasSeconds .numInputWrapper { 22399 width: 26%; 22400} 22401 22402.flatpickr-time.time24hr .numInputWrapper { 22403 width: 49%; 22404} 22405 22406.flatpickr-time input { 22407 background: transparent; 22408 -webkit-box-shadow: none; 22409 box-shadow: none; 22410 border: 0; 22411 border-radius: 0; 22412 text-align: center; 22413 margin: 0; 22414 padding: 0; 22415 height: inherit; 22416 line-height: inherit; 22417 color: #393939; 22418 font-size: 14px; 22419 position: relative; 22420 -webkit-box-sizing: border-box; 22421 box-sizing: border-box; 22422 -webkit-appearance: textfield; 22423 -moz-appearance: textfield; 22424 appearance: textfield; 22425} 22426 22427.flatpickr-time input.flatpickr-hour { 22428 font-weight: bold; 22429} 22430 22431.flatpickr-time input.flatpickr-minute, 22432.flatpickr-time input.flatpickr-second { 22433 font-weight: 400; 22434} 22435 22436.flatpickr-time input:focus { 22437 outline: 0; 22438 border: 0; 22439} 22440 22441.flatpickr-time .flatpickr-time-separator, 22442.flatpickr-time .flatpickr-am-pm { 22443 height: inherit; 22444 display: inline-block; 22445 float: left; 22446 line-height: inherit; 22447 color: #393939; 22448 font-weight: bold; 22449 width: 2%; 22450 -webkit-user-select: none; 22451 -moz-user-select: none; 22452 -ms-user-select: none; 22453 user-select: none; 22454 -webkit-align-self: center; 22455 -ms-flex-item-align: center; 22456 align-self: center; 22457} 22458 22459.flatpickr-time .flatpickr-am-pm { 22460 outline: 0; 22461 width: 18%; 22462 cursor: pointer; 22463 text-align: center; 22464 font-weight: 400; 22465} 22466 22467.flatpickr-time input:hover, 22468.flatpickr-time .flatpickr-am-pm:hover, 22469.flatpickr-time input:focus, 22470.flatpickr-time .flatpickr-am-pm:focus { 22471 background: #eee; 22472} 22473 22474.flatpickr-input[readonly] { 22475 cursor: pointer; 22476} 22477 22478.flatpickr-calendar.open { 22479 margin-left: -38px; 22480 margin-top: 4px; 22481} 22482 22483.flatpickr-calendar.arrowBottom { 22484 margin-top: -20px; 22485} 22486 22487.flatpickr-calendar .flatpickr-innerContainer { 22488 margin-top: 15px !important; 22489} 22490 22491.flatpickr-calendar .numInputWrapper span { 22492 border: none; 22493 border-bottom: 1px solid rgba(57, 57, 57, 0.15); 22494} 22495 22496.flatpickr-calendar .numInputWrapper:hover .arrowUp, 22497.flatpickr-calendar .numInputWrapper:hover .arrowDown { 22498 margin-top: 3px; 22499} 22500 22501.flatpickr-calendar .flatpickr-day.today, .flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange { 22502 background: #5e72e4 !important; 22503 color: #fff; 22504 border: none; 22505} 22506 22507.flatpickr-calendar .flatpickr-day.inRange { 22508 background: rgba(94, 114, 228, 0.28); 22509 border: none; 22510 -webkit-box-shadow: -5px 0 0 #D7DCF8, 5px 0 0 #D7DCF8; 22511 box-shadow: -5px 0 0 #D7DCF8, 5px 0 0 #D7DCF8; 22512} 22513 22514.flatpickr-calendar .flatpickr-day:not(.selected):hover, .flatpickr-calendar .flatpickr-day:not(.selected):focus { 22515 background: rgba(94, 114, 228, 0.28); 22516 border: none; 22517} 22518 22519.flatpickr-calendar .flatpickr-time input:hover, 22520.flatpickr-calendar .flatpickr-time .flatpickr-am-pm:hover, 22521.flatpickr-calendar .flatpickr-time input:focus, 22522.flatpickr-calendar .flatpickr-time .flatpickr-am-pm:focus { 22523 background: rgba(94, 114, 228, 0.28); 22524} 22525 22526.flatpickr.form-control, #dw__login input.flatpickr, #config__manager td input.flatpickr.edit, .search-results-form fieldset input.flatpickr, .doku_form .no .flatpickr#qsearch__in, textarea.flatpickr { 22527 background: #fff; 22528} 22529 22530@-webkit-keyframes fpFadeInDown { 22531 from { 22532 opacity: 0; 22533 -webkit-transform: translate3d(0, -20px, 0); 22534 transform: translate3d(0, -20px, 0); 22535 } 22536 to { 22537 opacity: 1; 22538 -webkit-transform: translate3d(0, 0, 0); 22539 transform: translate3d(0, 0, 0); 22540 } 22541} 22542@keyframes fpFadeInDown { 22543 from { 22544 opacity: 0; 22545 -webkit-transform: translate3d(0, -20px, 0); 22546 transform: translate3d(0, -20px, 0); 22547 } 22548 to { 22549 opacity: 1; 22550 -webkit-transform: translate3d(0, 0, 0); 22551 transform: translate3d(0, 0, 0); 22552 } 22553} 22554.datepicker { 22555 border-radius: 0.25rem; 22556 direction: ltr; 22557} 22558 22559.datepicker-inline { 22560 width: 220px; 22561} 22562 22563.datepicker-rtl { 22564 direction: rtl; 22565} 22566 22567.datepicker-rtl.dropdown-menu { 22568 left: auto; 22569} 22570 22571.datepicker-rtl table tr td span { 22572 float: right; 22573} 22574 22575.datepicker-dropdown { 22576 top: 0; 22577 left: 0; 22578 padding: 20px 22px; 22579 box-shadow: 0 50px 100px rgba(50, 50, 93, 0.1), 0 15px 35px rgba(50, 50, 93, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1); 22580} 22581 22582.datepicker-dropdown.datepicker-orient-left:before { 22583 left: 6px; 22584} 22585 22586.datepicker-dropdown.datepicker-orient-left:after { 22587 left: 7px; 22588} 22589 22590.datepicker-dropdown.datepicker-orient-right:before { 22591 right: 6px; 22592} 22593 22594.datepicker-dropdown.datepicker-orient-right:after { 22595 right: 7px; 22596} 22597 22598.datepicker-dropdown.datepicker-orient-bottom:before { 22599 top: -7px; 22600} 22601 22602.datepicker-dropdown.datepicker-orient-bottom:after { 22603 top: -6px; 22604} 22605 22606.datepicker-dropdown.datepicker-orient-top:before { 22607 bottom: -7px; 22608 border-bottom: 0; 22609 border-top: 7px solid white; 22610} 22611 22612.datepicker-dropdown.datepicker-orient-top:after { 22613 bottom: -6px; 22614 border-bottom: 0; 22615 border-top: 6px solid #fff; 22616} 22617 22618.datepicker table { 22619 margin: 0; 22620 -webkit-touch-callout: none; 22621 user-select: none; 22622} 22623 22624.datepicker table tr td { 22625 border-radius: 50%; 22626} 22627 22628.datepicker table tr th { 22629 border-radius: 0.25rem; 22630 font-weight: 500; 22631} 22632 22633.datepicker table tr td, 22634.datepicker table tr th { 22635 transition: all 0.15s ease; 22636 width: 36px; 22637 height: 36px; 22638 border: none; 22639 text-align: center; 22640 font-size: 0.875rem; 22641} 22642 22643.table-striped .datepicker table tr td, 22644.table-striped .datepicker table tr th { 22645 background-color: transparent; 22646} 22647 22648.datepicker table tr td.old, .datepicker table tr td.new { 22649 color: #adb5bd; 22650} 22651 22652.datepicker table tr td.day:hover, .datepicker table tr td.focused { 22653 background: white; 22654 cursor: pointer; 22655} 22656 22657.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover { 22658 background: none; 22659 color: #dee2e6; 22660 cursor: default; 22661} 22662 22663.datepicker table tr td.highlighted { 22664 border-radius: 0; 22665} 22666 22667.datepicker table tr td.highlighted.focused { 22668 background: #5e72e4; 22669} 22670 22671.datepicker table tr td.highlighted.disabled, .datepicker table tr td.highlighted.disabled:active { 22672 background: #5e72e4; 22673 color: #ced4da; 22674} 22675 22676.datepicker table tr td.today { 22677 background: white; 22678} 22679 22680.datepicker table tr td.today.focused { 22681 background: white; 22682} 22683 22684.datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:active { 22685 background: white; 22686 color: #8898aa; 22687} 22688 22689.datepicker table tr td.range { 22690 background: #5e72e4; 22691 color: #fff; 22692 border-radius: 0; 22693} 22694 22695.datepicker table tr td.range.focused { 22696 background: #3b53de; 22697} 22698 22699.datepicker table tr td.range.disabled, .datepicker table tr td.range.disabled:active, .datepicker table tr td.range.day.disabled:hover { 22700 background: #324cdd; 22701 color: #8a98eb; 22702} 22703 22704.datepicker table tr td.range.highlighted.focused { 22705 background: #cbd3da; 22706} 22707 22708.datepicker table tr td.range.highlighted.disabled, .datepicker table tr td.range.highlighted.disabled:active { 22709 background: #e9ecef; 22710 color: #dee2e6; 22711} 22712 22713.datepicker table tr td.range.today.disabled, .datepicker table tr td.range.today.disabled:active { 22714 background: #5e72e4; 22715 color: #fff; 22716} 22717 22718.datepicker table tr td.day.range-start { 22719 border-top-right-radius: 0; 22720 border-bottom-right-radius: 0; 22721} 22722 22723.datepicker table tr td.day.range-end { 22724 border-top-left-radius: 0; 22725 border-bottom-left-radius: 0; 22726} 22727 22728.datepicker table tr td.day.range-start.range-end { 22729 border-radius: 50%; 22730} 22731 22732.datepicker table tr td.selected, .datepicker table tr td.selected.highlighted, .datepicker table tr td.selected:hover, .datepicker table tr td.selected.highlighted:hover, .datepicker table tr td.day.range:hover { 22733 background: #5e72e4; 22734 color: #fff; 22735} 22736 22737.datepicker table tr td.active, .datepicker table tr td.active.highlighted, .datepicker table tr td.active:hover, .datepicker table tr td.active.highlighted:hover { 22738 background: #5e72e4; 22739 color: #fff; 22740 box-shadow: none; 22741} 22742 22743.datepicker table tr td span { 22744 display: block; 22745 width: 23%; 22746 height: 54px; 22747 line-height: 54px; 22748 float: left; 22749 margin: 1%; 22750 cursor: pointer; 22751 border-radius: 4px; 22752} 22753 22754.datepicker table tr td span:hover, .datepicker table tr td span.focused { 22755 background: #e9ecef; 22756} 22757 22758.datepicker table tr td span.disabled, .datepicker table tr td span.disabled:hover { 22759 background: none; 22760 color: #dee2e6; 22761 cursor: default; 22762} 22763 22764.datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover { 22765 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); 22766} 22767 22768.datepicker table tr td span.old, .datepicker table tr td span.new { 22769 color: #8898aa; 22770} 22771 22772.datepicker .datepicker-switch { 22773 width: 145px; 22774} 22775 22776.datepicker .datepicker-switch, 22777.datepicker .prev, 22778.datepicker .next, 22779.datepicker tfoot tr th { 22780 cursor: pointer; 22781} 22782 22783.datepicker .datepicker-switch:hover, 22784.datepicker .prev:hover, 22785.datepicker .next:hover, 22786.datepicker tfoot tr th:hover { 22787 background: #e9ecef; 22788} 22789 22790.datepicker .prev.disabled, 22791.datepicker .next.disabled { 22792 visibility: hidden; 22793} 22794 22795.datepicker .cw { 22796 font-size: 10px; 22797 width: 12px; 22798 padding: 0 2px 0 5px; 22799 vertical-align: middle; 22800} 22801 22802.noUi-target, 22803.noUi-target * { 22804 -webkit-touch-callout: none; 22805 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 22806 -webkit-user-select: none; 22807 touch-action: none; 22808 user-select: none; 22809 box-sizing: border-box; 22810} 22811 22812.noUi-target { 22813 position: relative; 22814 direction: ltr; 22815} 22816 22817.noUi-base, 22818.noUi-connects { 22819 width: 100%; 22820 height: 100%; 22821 position: relative; 22822 z-index: 1; 22823} 22824 22825/* Wrapper for all connect elements. 22826 */ 22827.noUi-connects { 22828 overflow: hidden; 22829 z-index: 0; 22830} 22831 22832.noUi-connect, 22833.noUi-origin { 22834 will-change: transform; 22835 position: absolute; 22836 z-index: 1; 22837 top: 0; 22838 left: 0; 22839 -ms-transform-origin: 0 0; 22840 -webkit-transform-origin: 0 0; 22841 -webkit-transform-style: preserve-3d; 22842 transform-origin: 0 0; 22843 transform-style: flat; 22844} 22845 22846.noUi-connect { 22847 height: 100%; 22848 width: 100%; 22849} 22850 22851.noUi-origin { 22852 height: 10%; 22853 width: 10%; 22854} 22855 22856html:not([dir=rtl]) .noUi-horizontal .noUi-origin { 22857 left: auto; 22858 right: 0; 22859} 22860 22861.noUi-vertical .noUi-origin { 22862 width: 0; 22863} 22864 22865.noUi-horizontal .noUi-origin { 22866 height: 0; 22867} 22868 22869.noUi-handle { 22870 -webkit-backface-visibility: hidden; 22871 backface-visibility: hidden; 22872 position: absolute; 22873} 22874 22875.noUi-touch-area { 22876 height: 100%; 22877 width: 100%; 22878} 22879 22880.noUi-state-tap .noUi-connect, 22881.noUi-state-tap .noUi-origin { 22882 -webkit-transition: transform 0.3s; 22883 transition: transform 0.3s; 22884} 22885 22886.noUi-state-drag * { 22887 cursor: inherit !important; 22888} 22889 22890.noUi-horizontal { 22891 height: 5px; 22892} 22893 22894.noUi-horizontal .noUi-handle { 22895 width: 34px; 22896 height: 28px; 22897 left: -17px; 22898 top: -6px; 22899} 22900 22901.noUi-vertical { 22902 width: 5px; 22903} 22904 22905.noUi-vertical .noUi-handle { 22906 width: 28px; 22907 height: 34px; 22908 left: -6px; 22909 top: -17px; 22910} 22911 22912html:not([dir=rtl]) .noUi-horizontal .noUi-handle { 22913 right: -17px; 22914 left: auto; 22915} 22916 22917.noUi-connects { 22918 border-radius: 3px; 22919} 22920 22921.noUi-connect { 22922 background: #5e72e4; 22923} 22924 22925.noUi-draggable { 22926 cursor: ew-resize; 22927} 22928 22929.noUi-vertical .noUi-draggable { 22930 cursor: ns-resize; 22931} 22932 22933.noUi-handle { 22934 border: 1px solid #D9D9D9; 22935 border-radius: 3px; 22936 background: #FFF; 22937 cursor: default; 22938 box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB; 22939 outline: none; 22940} 22941 22942.noUi-active { 22943 outline: none; 22944} 22945 22946/* Disabled state; 22947 */ 22948[disabled] .noUi-connect { 22949 background: #B8B8B8; 22950} 22951 22952[disabled].noUi-target, 22953[disabled].noUi-handle, 22954[disabled] .noUi-handle { 22955 cursor: not-allowed; 22956} 22957 22958/* Base; 22959 * 22960 */ 22961.noUi-pips, 22962.noUi-pips * { 22963 -moz-box-sizing: border-box; 22964 box-sizing: border-box; 22965} 22966 22967.noUi-pips { 22968 position: absolute; 22969 color: #999; 22970} 22971 22972/* Values; 22973 * 22974 */ 22975.noUi-value { 22976 position: absolute; 22977 white-space: nowrap; 22978 text-align: center; 22979} 22980 22981.noUi-value-sub { 22982 color: #ccc; 22983 font-size: 10px; 22984} 22985 22986/* Markings; 22987 * 22988 */ 22989.noUi-marker { 22990 position: absolute; 22991 background: #CCC; 22992} 22993 22994.noUi-marker-sub { 22995 background: #AAA; 22996} 22997 22998.noUi-marker-large { 22999 background: #AAA; 23000} 23001 23002/* Horizontal layout; 23003 * 23004 */ 23005.noUi-pips-horizontal { 23006 padding: 10px 0; 23007 height: 80px; 23008 top: 100%; 23009 left: 0; 23010 width: 100%; 23011} 23012 23013.noUi-value-horizontal { 23014 -webkit-transform: translate(-50%, 50%); 23015 transform: translate(-50%, 50%); 23016} 23017 23018.noUi-rtl .noUi-value-horizontal { 23019 -webkit-transform: translate(50%, 50%); 23020 transform: translate(50%, 50%); 23021} 23022 23023.noUi-marker-horizontal.noUi-marker { 23024 margin-left: -1px; 23025 width: 2px; 23026 height: 5px; 23027} 23028 23029.noUi-marker-horizontal.noUi-marker-sub { 23030 height: 10px; 23031} 23032 23033.noUi-marker-horizontal.noUi-marker-large { 23034 height: 15px; 23035} 23036 23037/* Vertical layout; 23038 * 23039 */ 23040.noUi-pips-vertical { 23041 padding: 0 10px; 23042 height: 100%; 23043 top: 0; 23044 left: 100%; 23045} 23046 23047.noUi-value-vertical { 23048 -webkit-transform: translate(0, -50%); 23049 transform: translate(0, -50%, 0); 23050 padding-left: 25px; 23051} 23052 23053.noUi-rtl .noUi-value-vertical { 23054 -webkit-transform: translate(0, 50%); 23055 transform: translate(0, 50%); 23056} 23057 23058.noUi-marker-vertical.noUi-marker { 23059 width: 5px; 23060 height: 2px; 23061 margin-top: -1px; 23062} 23063 23064.noUi-marker-vertical.noUi-marker-sub { 23065 width: 10px; 23066} 23067 23068.noUi-marker-vertical.noUi-marker-large { 23069 width: 15px; 23070} 23071 23072.noUi-tooltip { 23073 display: block; 23074 position: absolute; 23075 border: 1px solid #D9D9D9; 23076 border-radius: 3px; 23077 background: #fff; 23078 color: #000; 23079 padding: 5px; 23080 text-align: center; 23081 white-space: nowrap; 23082} 23083 23084.noUi-horizontal .noUi-tooltip { 23085 -webkit-transform: translate(-50%, 0); 23086 transform: translate(-50%, 0); 23087 left: 50%; 23088 bottom: 120%; 23089} 23090 23091.noUi-vertical .noUi-tooltip { 23092 -webkit-transform: translate(0, -50%); 23093 transform: translate(0, -50%); 23094 top: 50%; 23095 right: 120%; 23096} 23097 23098.noUi-target { 23099 background: #eceeef; 23100 border-radius: 5px; 23101 border: 0; 23102 box-shadow: inset 0 1px 2px rgba(90, 97, 105, 0.1); 23103 margin: 15px 0; 23104 cursor: pointer; 23105} 23106 23107.noUi-horizontal { 23108 height: 5px; 23109} 23110 23111html:not([dir=rtl]) .noUi-horizontal .noUi-handle { 23112 right: -10px; 23113} 23114 23115.noUi-vertical { 23116 width: 5px; 23117} 23118 23119.noUi-connect { 23120 background: #5e72e4; 23121 box-shadow: none; 23122} 23123 23124.noUi-horizontal .noUi-handle, 23125.noUi-vertical .noUi-handle { 23126 top: -5px; 23127 width: 15px; 23128 height: 15px; 23129 border-radius: 100%; 23130 box-shadow: none; 23131 cursor: pointer; 23132 background-color: #5e72e4; 23133 border: 0; 23134 transition: box-shadow 0.15s, transform 0.15s; 23135} 23136 23137.noUi-horizontal .noUi-handle.noUi-active, 23138.noUi-vertical .noUi-handle.noUi-active { 23139 transform: scale(1.2); 23140} 23141 23142.input-slider--cyan .noUi-connect { 23143 background: #2bffc6; 23144} 23145 23146.input-slider--cyan.noUi-horizontal .noUi-handle, 23147.input-slider--cyan.noUi-vertical .noUi-handle { 23148 background-color: #2bffc6; 23149} 23150 23151.input-slider--red .noUi-connect { 23152 background: #f5365c; 23153} 23154 23155.input-slider--red.noUi-horizontal .noUi-handle, 23156.input-slider--red.noUi-vertical .noUi-handle { 23157 background-color: #f5365c; 23158} 23159 23160.input-slider--green .noUi-connect { 23161 background: #2dce89; 23162} 23163 23164.input-slider--green.noUi-horizontal .noUi-handle, 23165.input-slider--green.noUi-vertical .noUi-handle { 23166 background-color: #2dce89; 23167} 23168 23169.input-slider--yellow .noUi-connect { 23170 background: #ffd600; 23171} 23172 23173.input-slider--yellow.noUi-horizontal .noUi-handle, 23174.input-slider--yellow.noUi-vertical .noUi-handle { 23175 background-color: #ffd600; 23176} 23177 23178.input-slider--pink .noUi-connect { 23179 background: #f3a4b5; 23180} 23181 23182.input-slider--pink.noUi-horizontal .noUi-handle, 23183.input-slider--pink.noUi-vertical .noUi-handle { 23184 background-color: #f3a4b5; 23185} 23186 23187/* Disabled state */ 23188[disabled] .noUi-connect, 23189[disabled].noUi-connect { 23190 background: #b2b2b2; 23191} 23192 23193[disabled] .noUi-handle, 23194[disabled].noUi-origin { 23195 cursor: not-allowed; 23196} 23197 23198/* Range slider value labels */ 23199.range-slider-value { 23200 font-size: 0.75rem; 23201 font-weight: 500; 23202 background-color: rgba(33, 37, 41, 0.7); 23203 color: #fff; 23204 border-radius: 10px; 23205 padding: 0.4em 0.8em 0.3em 0.85em; 23206} 23207 23208.range-slider-wrapper .upper-info { 23209 font-weight: 400; 23210 margin-bottom: 5px; 23211} 23212 23213.input-slider-value-output { 23214 background: #333; 23215 color: #fff; 23216 padding: 4px 8px; 23217 position: relative; 23218 top: 12px; 23219 font-size: 11px; 23220 border-radius: 2px; 23221} 23222 23223.input-slider-value-output:after { 23224 bottom: 100%; 23225 left: 10px; 23226 border: solid transparent; 23227 content: " "; 23228 height: 0; 23229 width: 0; 23230 position: absolute; 23231 pointer-events: none; 23232 border-color: rgba(136, 183, 213, 0); 23233 border-bottom-color: #333; 23234 border-width: 4px; 23235 margin-left: -4px; 23236} 23237 23238.input-slider-value-output.left:after { 23239 left: 10px; 23240 right: auto; 23241} 23242 23243.input-slider-value-output.right:after { 23244 right: 10px; 23245 left: auto; 23246} 23247 23248.headroom { 23249 will-change: transform; 23250 background-color: inherit; 23251 transition: all 0.15s ease; 23252} 23253 23254@media (prefers-reduced-motion: reduce) { 23255 .headroom { 23256 transition: none; 23257 } 23258} 23259.headroom--pinned { 23260 transform: translateY(0%); 23261} 23262 23263.headroom--unpinned { 23264 transform: translateY(-100%); 23265} 23266 23267.headroom--not-top { 23268 padding-top: 0.5rem; 23269 padding-bottom: 0.5rem; 23270 background-color: #172b4d !important; 23271 box-shadow: 0 1px 10px rgba(130, 130, 134, 0.1); 23272} 23273 23274.ct-clipboard { 23275 position: relative; 23276 display: none; 23277 float: right; 23278} 23279 23280.ct-clipboard + .highlight { 23281 margin-top: 0; 23282} 23283 23284.btn-clipboard { 23285 position: absolute; 23286 top: 1rem; 23287 right: 1rem; 23288 z-index: 10; 23289 display: block; 23290 padding: 0.25rem 0.5rem; 23291 font-size: 75%; 23292 cursor: pointer; 23293 background-color: transparent; 23294 border: 0; 23295 border-radius: 0.25rem; 23296 color: #fff; 23297 background-color: #5e72e4; 23298} 23299 23300.btn-clipboard:hover { 23301 color: #fff; 23302 background-color: #324cdd; 23303} 23304 23305@media (min-width: 768px) { 23306 .ct-clipboard { 23307 display: block; 23308 } 23309} 23310.ct-example-row .row > .col span, 23311.ct-example-row .row > [class^=col-] span { 23312 display: block; 23313 padding: 0.75rem; 23314 color: #393f49; 23315 background-color: white; 23316 box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 4px 16px; 23317 font-size: 0.875rem; 23318 border-radius: 0.25rem; 23319 margin: 1rem 0; 23320} 23321 23322.ct-example-row .no-gutters > .col span, 23323.ct-example-row .no-gutters > [class^=col-] span { 23324 border-radius: 0; 23325} 23326 23327.ct-example-row .flex-items-top, 23328.ct-example-row .flex-items-middle, 23329.ct-example-row .flex-items-bottom { 23330 min-height: 6rem; 23331 background-color: rgba(255, 0, 0, 0.1); 23332} 23333 23334.ct-example-row-flex-cols .row { 23335 min-height: 10rem; 23336 background-color: rgba(255, 0, 0, 0.1); 23337} 23338 23339.ct-example-row-flex-cols .row + .row { 23340 margin-top: 1rem; 23341} 23342 23343.ct-highlight { 23344 background-color: rgba(94, 114, 228, 0.15); 23345 border: 1px solid rgba(94, 114, 228, 0.15); 23346} 23347 23348.example-container { 23349 width: 800px; 23350 width: 100%; 23351 padding-right: 15px; 23352 padding-left: 15px; 23353 margin-right: auto; 23354 margin-left: auto; 23355} 23356 23357.example-row { 23358 display: flex; 23359 flex-wrap: wrap; 23360 margin-right: -15px; 23361 margin-left: -15px; 23362} 23363 23364.example-content-main { 23365 position: relative; 23366 width: 100%; 23367 padding-right: 15px; 23368 padding-left: 15px; 23369} 23370 23371@media (min-width: 576px) { 23372 .example-content-main { 23373 flex: 0 0 50%; 23374 max-width: 50%; 23375 } 23376} 23377@media (min-width: 992px) { 23378 .example-content-main { 23379 flex: 0 0 66.6666666667%; 23380 max-width: 66.6666666667%; 23381 } 23382} 23383.example-content-secondary { 23384 position: relative; 23385 width: 100%; 23386 padding-right: 15px; 23387 padding-left: 15px; 23388} 23389 23390@media (min-width: 576px) { 23391 .example-content-secondary { 23392 flex: 0 0 50%; 23393 max-width: 50%; 23394 } 23395} 23396@media (min-width: 992px) { 23397 .example-content-secondary { 23398 flex: 0 0 33.3333333333%; 23399 max-width: 33.3333333333%; 23400 } 23401} 23402.ct-example-container { 23403 min-width: 16rem; 23404 max-width: 25rem; 23405 margin-right: auto; 23406 margin-left: auto; 23407} 23408 23409.ct-example-container-header { 23410 height: 3rem; 23411 margin-bottom: 0.5rem; 23412 background-color: white; 23413 border-radius: 0.25rem; 23414} 23415 23416.ct-example-container-sidebar { 23417 float: right; 23418 width: 4rem; 23419 height: 8rem; 23420 background-color: #cbd2f6; 23421 border-radius: 0.25rem; 23422} 23423 23424.ct-example-container-body { 23425 height: 8rem; 23426 margin-right: 4.5rem; 23427 background-color: #cbd2f6; 23428 border-radius: 0.25rem; 23429} 23430 23431.ct-example-container-fluid { 23432 max-width: none; 23433} 23434 23435.ct-example { 23436 position: relative; 23437 margin: 1rem -15px 0; 23438} 23439 23440.ct-example::after { 23441 display: block; 23442 clear: both; 23443 content: ""; 23444} 23445 23446@media (min-width: 576px) { 23447 .ct-example { 23448 margin-right: 0; 23449 margin-left: 0; 23450 } 23451} 23452.ct-example + .highlight, 23453.ct-example + .clipboard + .highlight { 23454 margin-top: 0; 23455} 23456 23457.ct-example + p { 23458 margin-top: 2rem; 23459} 23460 23461.ct-example .pos-f-t { 23462 position: relative; 23463 margin: -1rem; 23464} 23465 23466@media (min-width: 576px) { 23467 .ct-example .pos-f-t { 23468 margin: -1.5rem; 23469 } 23470} 23471.ct-example .custom-file-input:lang(es) ~ .custom-file-label::after { 23472 content: "Elegir"; 23473} 23474 23475.ct-example > .form-control + .form-control, #dw__login .ct-example > input + .form-control, #dw__login .ct-example > .form-control + input, #dw__login .ct-example > input + input, #config__manager td .ct-example > input.edit + .form-control, #config__manager td .ct-example > .form-control + input.edit, #config__manager td .ct-example > input.edit + input.edit, .search-results-form fieldset .ct-example > input + .form-control, .search-results-form fieldset #config__manager td .ct-example > input + input.edit, #config__manager td .search-results-form fieldset .ct-example > input + input.edit, .search-results-form fieldset .ct-example > .form-control + input, .search-results-form fieldset #config__manager td .ct-example > input.edit + input, #config__manager td .search-results-form fieldset .ct-example > input.edit + input, .search-results-form fieldset .ct-example > input + input, .doku_form .no .ct-example > #qsearch__in + .form-control, .doku_form .no #dw__login .ct-example > #qsearch__in + input, #dw__login .doku_form .no .ct-example > #qsearch__in + input, .doku_form .no #config__manager td .ct-example > #qsearch__in + input.edit, #config__manager td .doku_form .no .ct-example > #qsearch__in + input.edit, .doku_form .no .search-results-form fieldset .ct-example > #qsearch__in + input, .search-results-form fieldset .doku_form .no .ct-example > #qsearch__in + input, .doku_form .no .ct-example > .form-control + #qsearch__in, .doku_form .no #dw__login .ct-example > input + #qsearch__in, #dw__login .doku_form .no .ct-example > input + #qsearch__in, .doku_form .no #config__manager td .ct-example > input.edit + #qsearch__in, #config__manager td .doku_form .no .ct-example > input.edit + #qsearch__in, .doku_form .no .search-results-form fieldset .ct-example > input + #qsearch__in, .search-results-form fieldset .doku_form .no .ct-example > input + #qsearch__in, .doku_form .no .ct-example > #qsearch__in + #qsearch__in, .ct-example > textarea + .form-control, #dw__login .ct-example > textarea + input, #config__manager td .ct-example > textarea + input.edit, .search-results-form fieldset .ct-example > textarea + input, .doku_form .no .ct-example > textarea + #qsearch__in, .ct-example > .form-control + textarea, #dw__login .ct-example > input + textarea, #config__manager td .ct-example > input.edit + textarea, .search-results-form fieldset .ct-example > input + textarea, .doku_form .no .ct-example > #qsearch__in + textarea, .ct-example > textarea + textarea { 23476 margin-top: 0.5rem; 23477} 23478 23479.ct-example > .nav + .nav, .leftsidebar .leftsidebar .ct-example > ul + .nav, .leftsidebar .leftsidebar .ct-example > .nav + ul, .leftsidebar .leftsidebar .ct-example > ul + ul, 23480.ct-example > .alert + .alert, 23481.ct-example > .navbar + .navbar, 23482.ct-example > .progress + .progress, 23483.ct-example > .progress + .btn, 23484.ct-example .badge, 23485.ct-example .btn, 23486.ct-example #dw__login button, 23487#dw__login .ct-example button, 23488.ct-example .qq-upload-button, 23489.ct-example .toggleAssistant, 23490.ct-example .doku_form .no button, 23491.doku_form .no .ct-example button, 23492.ct-example #tool__bar button, 23493#tool__bar .ct-example button, 23494.ct-example #dokuwiki__content .editButtons button, 23495#dokuwiki__content .editButtons .ct-example button, 23496.ct-example #dokuwiki__content #page__revisions button, 23497#dokuwiki__content #page__revisions .ct-example button, 23498.ct-example #dokuwiki__content .secedit button, 23499#dokuwiki__content .secedit .ct-example button, 23500.ct-example button { 23501 margin-top: 0.5rem; 23502 margin-bottom: 0.5rem; 23503} 23504 23505.ct-example .btn-group { 23506 margin-top: 0.5rem; 23507 margin-bottom: 0.5rem; 23508} 23509 23510.ct-example .btn-group .btn, .ct-example .btn-group #dw__login button, #dw__login .ct-example .btn-group button, .ct-example .btn-group .qq-upload-button, .ct-example .btn-group .toggleAssistant, .ct-example .btn-group #tool__bar button, #tool__bar .ct-example .btn-group button, .ct-example .btn-group #dokuwiki__content .editButtons button, #dokuwiki__content .editButtons .ct-example .btn-group button, .ct-example .btn-group #dokuwiki__content #page__revisions button, #dokuwiki__content #page__revisions .ct-example .btn-group button, .ct-example .btn-group #dokuwiki__content .secedit button, #dokuwiki__content .secedit .ct-example .btn-group button, .ct-example .btn-group button { 23511 margin: 0; 23512} 23513 23514.ct-example .alert { 23515 margin: 0; 23516} 23517 23518.ct-example .alert + .alert { 23519 margin-top: 1.25rem; 23520} 23521 23522.ct-example .badge { 23523 margin-right: 0.5rem; 23524} 23525 23526.ct-example > .dropdown-menu:first-child { 23527 position: static; 23528 display: block; 23529} 23530 23531.ct-example > .form-group:last-child, .doku_form .ct-example > .no:last-child { 23532 margin-bottom: 0; 23533} 23534 23535.ct-example > .close { 23536 float: none; 23537} 23538 23539.ct-example-type .table .type-info, .ct-example-type #dokuwiki__content table .type-info, #dokuwiki__content .ct-example-type table .type-info { 23540 color: #999; 23541 vertical-align: middle; 23542} 23543 23544.ct-example-type .table td, .ct-example-type #dokuwiki__content table td, #dokuwiki__content .ct-example-type table td { 23545 padding: 1rem 0; 23546 border-color: #eee; 23547} 23548 23549.ct-example-type .table tr:first-child td, .ct-example-type #dokuwiki__content table tr:first-child td, #dokuwiki__content .ct-example-type table tr:first-child td { 23550 border-top: 0; 23551} 23552 23553.ct-example-type h1, 23554.ct-example-type h2, 23555.ct-example-type h3, 23556.ct-example-type h4, 23557.ct-example-type h5, 23558.ct-example-type h6 { 23559 margin-top: 0; 23560 margin-bottom: 0; 23561} 23562 23563.ct-example-bg-classes p { 23564 padding: 1rem; 23565} 23566 23567.ct-example > img + img { 23568 margin-left: 0.5rem; 23569} 23570 23571.ct-example > .btn-group { 23572 margin-top: 0.25rem; 23573 margin-bottom: 0.25rem; 23574} 23575 23576.ct-example > .btn-toolbar + .btn-toolbar { 23577 margin-top: 0.5rem; 23578} 23579 23580.ct-example-control-sizing select, 23581.ct-example-control-sizing input[type=text] + input[type=text] { 23582 margin-top: 0.5rem; 23583} 23584 23585.ct-example-form .input-group, .ct-example-form .doku_form .no, .doku_form .ct-example-form .no { 23586 margin-bottom: 0.5rem; 23587} 23588 23589.ct-example > textarea.form-control, .doku_form .no .ct-example > textarea#qsearch__in, .ct-example > textarea { 23590 resize: vertical; 23591} 23592 23593.ct-example > .list-group { 23594 max-width: 400px; 23595} 23596 23597.ct-example .fixed-top, 23598.ct-example .sticky-top { 23599 position: static; 23600 margin: -1rem -1rem 1rem; 23601} 23602 23603.ct-example .fixed-bottom { 23604 position: static; 23605 margin: 1rem -1rem -1rem; 23606} 23607 23608@media (min-width: 576px) { 23609 .ct-example .fixed-top, 23610.ct-example .sticky-top { 23611 margin: -1.5rem -1.5rem 1rem; 23612 } 23613 23614 .ct-example .fixed-bottom { 23615 margin: 1rem -1.5rem -1.5rem; 23616 } 23617} 23618.ct-example .pagination { 23619 margin-top: 0.5rem; 23620 margin-bottom: 0.5rem; 23621} 23622 23623.modal { 23624 z-index: 1072; 23625} 23626 23627.modal .tooltip, 23628.modal .popover { 23629 z-index: 1073; 23630} 23631 23632.modal-backdrop { 23633 z-index: 1071; 23634} 23635 23636.ct-example-modal { 23637 background-color: #fafafa; 23638} 23639 23640.ct-example-modal .modal { 23641 position: relative; 23642 top: auto; 23643 right: auto; 23644 bottom: auto; 23645 left: auto; 23646 z-index: 1; 23647 display: block; 23648} 23649 23650.ct-example-modal .modal-dialog { 23651 left: auto; 23652 margin-right: auto; 23653 margin-left: auto; 23654} 23655 23656.ct-example-tabs .nav-tabs { 23657 margin-bottom: 1rem; 23658} 23659 23660.ct-example-popover-static { 23661 padding-bottom: 1.5rem; 23662 background-color: #f9f9f9; 23663} 23664 23665.ct-example-popover-static .popover { 23666 position: relative; 23667 display: block; 23668 float: left; 23669 width: 260px; 23670 margin: 1.25rem; 23671} 23672 23673.tooltip-demo a { 23674 white-space: nowrap; 23675} 23676 23677.ct-example-tooltip-static .tooltip { 23678 position: relative; 23679 display: inline-block; 23680 margin: 10px 20px; 23681 opacity: 1; 23682} 23683 23684.scrollspy-example { 23685 position: relative; 23686 height: 200px; 23687 margin-top: 0.5rem; 23688 overflow: auto; 23689} 23690 23691.scrollspy-example-2 { 23692 position: relative; 23693 height: 350px; 23694 overflow: auto; 23695} 23696 23697.ct-example-border-utils [class^=border] { 23698 display: inline-block; 23699 width: 5rem; 23700 height: 5rem; 23701 margin: 0.25rem; 23702 background-color: #f5f5f5; 23703} 23704 23705.ct-example-border-utils-0 [class^=border] { 23706 border: 1px solid #e9ecef; 23707} 23708 23709.highlight { 23710 padding: 0; 23711 margin-top: 1rem; 23712 -ms-overflow-style: -ms-autohiding-scrollbar; 23713} 23714 23715@media (min-width: 576px) { 23716 .highlight { 23717 padding: 0; 23718 } 23719} 23720.ct-content .highlight { 23721 margin-right: -15px; 23722 margin-left: -15px; 23723} 23724 23725@media (min-width: 576px) { 23726 .ct-content .highlight { 23727 margin-right: 0; 23728 margin-left: 0; 23729 } 23730} 23731.ct-example { 23732 margin-bottom: 2rem; 23733 padding-bottom: 2rem; 23734 border-bottom: 1px solid #e9ecef; 23735} 23736 23737.ct-example .tab-content .tab-example-result { 23738 background-color: #f5f7f9; 23739 border: 1px solid #e6ecf1; 23740 padding: 1.25rem; 23741 border-radius: 0.25rem; 23742} 23743 23744.ct-example .nav-tabs-code { 23745 margin-bottom: 0.375rem; 23746} 23747 23748.ct-example .nav-tabs-code .nav-link { 23749 font-size: 0.875rem; 23750} 23751 23752.ct-example .nav-tabs-code .nav-link:active, .ct-example .nav-tabs-code .nav-link.active { 23753 color: #5e72e4; 23754} 23755 23756.icon-examples { 23757 margin-top: 1rem; 23758} 23759 23760.btn-icon-clipboard { 23761 margin: 0px; 23762 padding: 24px; 23763 font-size: 16px; 23764 font-weight: 400; 23765 line-height: 1.25; 23766 color: #393f49; 23767 background-color: #f8f9fa; 23768 border-radius: 4px; 23769 border: 0px none; 23770 text-align: left; 23771 font-family: inherit; 23772 display: inline-block; 23773 vertical-align: middle; 23774 text-decoration: none; 23775 -moz-appearance: none; 23776 cursor: pointer; 23777 width: 100%; 23778 margin: 0.5rem 0; 23779} 23780 23781.btn-icon-clipboard:hover { 23782 background-color: white; 23783 box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 4px 16px; 23784} 23785 23786.btn-icon-clipboard > div { 23787 align-items: center; 23788 display: flex; 23789} 23790 23791.btn-icon-clipboard i { 23792 box-sizing: content-box; 23793 color: #393f49; 23794 vertical-align: middle; 23795 font-size: 1.5rem; 23796} 23797 23798.btn-icon-clipboard span { 23799 display: inline-block; 23800 font-size: 0.875rem; 23801 line-height: 1.5; 23802 color: #393f49; 23803 margin-left: 16px; 23804 overflow: hidden; 23805 white-space: nowrap; 23806 text-overflow: ellipsis; 23807 vertical-align: middle; 23808} 23809 23810.docs { 23811 background: #FFF; 23812} 23813 23814.docs h6 { 23815 font-size: 1rem; 23816 font-weight: 600; 23817} 23818 23819.ct-content { 23820 order: 1; 23821} 23822 23823.ct-content > h2[id], 23824.ct-content > h3[id], 23825.ct-content > h4[id] { 23826 pointer-events: none; 23827} 23828 23829.ct-content > h2[id] > div, 23830.ct-content > h2[id] > a, 23831.ct-content > h3[id] > div, 23832.ct-content > h3[id] > a, 23833.ct-content > h4[id] > div, 23834.ct-content > h4[id] > a { 23835 pointer-events: auto; 23836} 23837 23838.ct-content > h2[id]::before, 23839.ct-content > h3[id]::before, 23840.ct-content > h4[id]::before { 23841 display: block; 23842 height: 6rem; 23843 margin-top: -6rem; 23844 visibility: hidden; 23845 content: ""; 23846} 23847 23848.ct-content > table { 23849 width: 100%; 23850 max-width: 100%; 23851 margin-bottom: 1rem; 23852} 23853 23854@media (max-width: 991.98px) { 23855 .ct-content > table { 23856 display: block; 23857 overflow-x: auto; 23858 -ms-overflow-style: -ms-autohiding-scrollbar; 23859 } 23860 23861 .ct-content > table.table-bordered { 23862 border: 0; 23863 } 23864} 23865.ct-content > table > thead > tr > th, 23866.ct-content > table > thead > tr > td, 23867.ct-content > table > tbody > tr > th, 23868.ct-content > table > tbody > tr > td, 23869.ct-content > table > tfoot > tr > th, 23870.ct-content > table > tfoot > tr > td { 23871 padding: 1rem; 23872 vertical-align: top; 23873 border: 1px solid #dee2e6; 23874} 23875 23876.ct-content > table > thead > tr > th > p:last-child, 23877.ct-content > table > thead > tr > td > p:last-child, 23878.ct-content > table > tbody > tr > th > p:last-child, 23879.ct-content > table > tbody > tr > td > p:last-child, 23880.ct-content > table > tfoot > tr > th > p:last-child, 23881.ct-content > table > tfoot > tr > td > p:last-child { 23882 margin-bottom: 0; 23883} 23884 23885.ct-content > table td:first-child > code { 23886 white-space: nowrap; 23887} 23888 23889.ct-content > h2:not(:first-child) { 23890 margin-top: 3rem; 23891 font-size: 1.5rem; 23892 font-weight: 600; 23893} 23894 23895.ct-content > h3 { 23896 margin-top: 2.5rem; 23897 font-size: 1.25rem; 23898 font-weight: 600; 23899} 23900 23901.ct-content > ul li, 23902.ct-content > ol li { 23903 margin-bottom: 0.25rem; 23904} 23905 23906@media (min-width: 992px) { 23907 .ct-content > ul, 23908.ct-content > ol, 23909.ct-content > p { 23910 max-width: 80%; 23911 } 23912} 23913.ct-page-title { 23914 padding-left: 1.25rem; 23915 border-left: 2px solid #5e72e4; 23916 margin-bottom: 1.5rem; 23917} 23918 23919.ct-title { 23920 margin-top: 1rem; 23921 margin-bottom: 0.5rem; 23922 font-weight: 300; 23923} 23924 23925@media (min-width: 576px) { 23926 .ct-title { 23927 font-size: 1.5rem; 23928 font-weight: 600; 23929 } 23930} 23931.ct-lead { 23932 color: #3b454e; 23933 font-weight: 500; 23934} 23935 23936@media (min-width: 576px) { 23937 .ct-lead { 23938 max-width: 80%; 23939 margin-bottom: 1rem; 23940 font-size: 0.875rem; 23941 } 23942} 23943.ct-text-purple { 23944 color: #5e72e4; 23945} 23946 23947.ct-text-purple-bright { 23948 color: #9da9f2; 23949} 23950 23951.ct-tabs-example .nav-link i { 23952 margin-right: 5px; 23953} 23954 23955.color-swatch { 23956 margin: 1rem 0; 23957 border-radius: 0.25rem; 23958 background-color: #F4F5F7; 23959} 23960 23961.color-swatch:after { 23962 content: " "; 23963 display: table; 23964 clear: both; 23965} 23966 23967.color-swatch-header { 23968 position: relative; 23969 height: 0; 23970 padding-bottom: 50%; 23971 border-radius: 0.25rem 0.25rem 0 0; 23972 border: 1px solid transparent; 23973} 23974 23975.color-swatch-header.is-light { 23976 border-color: #C1C7D0; 23977} 23978 23979.color-swatch-header .pass-fail { 23980 position: absolute; 23981 width: 100%; 23982 bottom: 0; 23983} 23984 23985.color-swatch-header .pass-fail-item-wrap { 23986 position: relative; 23987 float: left; 23988 left: 50%; 23989 -webkit-transform: translateX(-50%); 23990 -ms-transform: translateX(-50%); 23991 transform: translateX(-50%); 23992} 23993 23994.color-swatch-header .pass-fail-item-group { 23995 display: inline-block; 23996 padding: 0 5px; 23997} 23998 23999.color-swatch-header .pass-fail-item { 24000 float: left; 24001 display: inline-block; 24002 text-align: center; 24003 padding: 2px; 24004} 24005 24006.color-swatch-header .pass-fail-item.white .example { 24007 color: #fff; 24008} 24009 24010.color-swatch-header .pass-fail-item.small .example { 24011 font-size: 10px; 24012} 24013 24014.color-swatch-header .pass-fail-item .lozenge { 24015 font-size: 11px; 24016 text-transform: uppercase; 24017 font-weight: 600; 24018 background: #000; 24019 color: #fff; 24020 padding: 2px 4px; 24021 line-height: 10px; 24022 border-radius: 4px; 24023 letter-spacing: 0.05em; 24024} 24025 24026.color-swatch-body { 24027 position: relative; 24028 left: 50%; 24029 float: left; 24030 padding: 10px 0; 24031 -webkit-transform: translateX(-50%); 24032 -ms-transform: translateX(-50%); 24033 transform: translateX(-50%); 24034} 24035 24036.color-swatch-body .prop-item-wrap { 24037 float: left; 24038 padding: 0 15px; 24039 min-width: 65px; 24040} 24041 24042.color-swatch-body .prop-item { 24043 padding: 15px 0; 24044} 24045 24046.color-swatch-body .prop-item .label { 24047 font-size: 11px; 24048 color: #62748C; 24049 text-transform: uppercase; 24050 line-height: 16px; 24051} 24052 24053.color-swatch-body .prop-item .value { 24054 font-size: 14px; 24055} 24056 24057.table-colors { 24058 font-weight: 600; 24059 font-size: 16px; 24060 width: 100%; 24061} 24062 24063.table-colors td, 24064.table-colors:first-child td, 24065.table-colors td:first-child, 24066.table-colors:first-child td:first-child, 24067.table-colors td:last-child, 24068.table-colors:first-child td:last-child { 24069 background: rgba(255, 255, 255, 0.9); 24070 border-bottom: 1px solid rgba(0, 0, 0, 0.1); 24071 padding: 10px; 24072} 24073 24074.table-colors tr:last-child td, 24075.table-colors:first-child tr:last-child td { 24076 border-bottom: none; 24077} 24078 24079.table-colors td:nth-child(1), 24080.table-colors:first-child td:nth-child(1) { 24081 line-height: 40px; 24082} 24083 24084.table-colors .swatch, 24085.table-colors:first-child .swatch { 24086 float: left; 24087 height: 40px; 24088 width: 40px; 24089 margin-right: 20px; 24090 display: inline-block; 24091 border-radius: 4px; 24092 border: 1px solid transparent; 24093} 24094 24095.table-colors .swatch.is-light, 24096.table-colors:first-child .swatch.is-light { 24097 border-color: #C1C7D0; 24098} 24099 24100.table-colors .lozenge, 24101.table-colors:first-child .lozenge { 24102 float: left; 24103 margin: 5px 10px 0 0; 24104 font-size: 10px; 24105 display: inline-block; 24106 text-transform: uppercase; 24107 font-weight: 600; 24108 background: #97A0AF; 24109 color: #042A53; 24110 padding: 2px 4px; 24111 line-height: 10px; 24112 border-radius: 4px; 24113 letter-spacing: 0.05em; 24114} 24115 24116#tags-component.tab-pane .choices__inner { 24117 height: 60px; 24118} 24119 24120.highlight pre { 24121 overflow: auto; 24122 margin: 0; 24123 padding: 1.25rem; 24124 font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace; 24125 font-size: 1em; 24126 line-height: 1.4; 24127 text-align: left; 24128 white-space: pre; 24129 word-spacing: normal; 24130 word-break: normal; 24131 -moz-tab-size: 4; 24132 -o-tab-size: 4; 24133 tab-size: 4; 24134 -webkit-hyphens: none; 24135 hyphens: none; 24136 color: #5e6687; 24137 border-radius: 0.25rem; 24138 background: #f5f7ff; 24139 direction: ltr; 24140 -ms-hyphens: none; 24141} 24142 24143.highlight pre code { 24144 font-size: 87.5%; 24145 word-break: break-word; 24146 color: #5e6687; 24147} 24148 24149.highlight pre pre code { 24150 font-size: inherit; 24151 word-break: normal; 24152 color: inherit; 24153} 24154 24155.highlight pre code, .highlight pre kbd, .highlight pre pre, .highlight pre samp { 24156 font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 24157 font-size: 1em; 24158} 24159 24160.highlight pre .nt { 24161 color: #3d8fd1; 24162} 24163 24164.highlight pre .na { 24165 color: #c76b29; 24166} 24167 24168.highlight pre .s, 24169.highlight pre .token.control, 24170.highlight pre .token.directive, 24171.highlight pre .token.keyword, 24172.highlight pre .token.unit { 24173 color: #ac9739; 24174} 24175 24176.highlight pre .token.punctuation { 24177 color: #5e6687; 24178} 24179 24180.btn-clipboard { 24181 top: 3.5rem; 24182} 24183 24184.offline-doc .page-header { 24185 height: 100vh; 24186 display: flex; 24187 justify-content: center; 24188 align-items: center; 24189} 24190 24191.ct-footer { 24192 font-size: 85%; 24193 text-align: center; 24194 background-color: #f7f7f7; 24195} 24196 24197.ct-footer a { 24198 font-weight: 500; 24199 color: #525f7f; 24200} 24201 24202.ct-footer a:hover, .ct-footer a:focus { 24203 color: #5e72e4; 24204} 24205 24206.ct-footer p { 24207 margin-bottom: 0; 24208} 24209 24210@media (min-width: 576px) { 24211 .ct-footer { 24212 text-align: left; 24213 } 24214} 24215.ct-footer-links { 24216 padding-left: 0; 24217 margin-bottom: 1rem; 24218} 24219 24220.ct-footer-links li { 24221 display: inline-block; 24222} 24223 24224.ct-footer-links li + li { 24225 margin-left: 1rem; 24226} 24227 24228.ct-navbar { 24229 background-color: #5e72e4; 24230 box-shadow: rgba(116, 129, 141, 0.1) 0px 1px 1px 0px; 24231 padding-top: 0.5rem; 24232 padding-bottom: 0.5rem; 24233} 24234 24235@media (max-width: 991.98px) { 24236 .ct-navbar { 24237 padding-right: 0.5rem; 24238 padding-left: 0.5rem; 24239 } 24240 24241 .ct-navbar .navbar-nav-scroll { 24242 max-width: 100%; 24243 height: 2.5rem; 24244 margin-top: 0.25rem; 24245 overflow: hidden; 24246 font-size: 0.875rem; 24247 } 24248 24249 .ct-navbar .navbar-nav-scroll .navbar-nav { 24250 padding-bottom: 2rem; 24251 overflow-x: auto; 24252 white-space: nowrap; 24253 -webkit-overflow-scrolling: touch; 24254 } 24255} 24256@media (min-width: 768px) { 24257 @supports (position: sticky) { 24258 .ct-navbar { 24259 position: sticky; 24260 top: 0; 24261 z-index: 1071; 24262 } 24263 } 24264} 24265.ct-navbar .navbar-nav .nav-link { 24266 padding-right: 0.5rem; 24267 padding-left: 0.5rem; 24268 color: rgba(255, 255, 255, 0.9) !important; 24269} 24270 24271.ct-navbar .navbar-nav .nav-link.active, .ct-navbar .navbar-nav .nav-link:hover { 24272 color: #fff !important; 24273 background-color: transparent !important; 24274} 24275 24276.ct-navbar .navbar-nav .nav-link.active { 24277 font-weight: 500; 24278} 24279 24280.ct-navbar .navbar-nav-svg { 24281 display: inline-block; 24282 width: 1rem; 24283 height: 1rem; 24284 vertical-align: text-top; 24285} 24286 24287.ct-navbar .dropdown-menu { 24288 font-size: 0.875rem; 24289} 24290 24291.ct-navbar .dropdown-item.active { 24292 font-weight: 500; 24293 color: #212529; 24294 background-color: transparent; 24295 background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23292b2c' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3E%3C/svg%3E"); 24296 background-repeat: no-repeat; 24297 background-position: 0.4rem 0.87rem; 24298 background-size: 0.75rem 0.75rem; 24299 padding-left: 25px; 24300} 24301 24302.github-corner { 24303 position: fixed; 24304 right: 0; 24305 z-index: 1080; 24306} 24307 24308.github-corner:hover .octo-arm { 24309 animation: octocat-wave 560ms ease-in-out; 24310} 24311 24312.github-corner svg { 24313 fill: #fff; 24314 color: #5e72e4; 24315} 24316 24317@keyframes octocat-wave { 24318 0%, 100% { 24319 transform: rotate(0); 24320 } 24321 20%, 60% { 24322 transform: rotate(-25deg); 24323 } 24324 40%, 80% { 24325 transform: rotate(10deg); 24326 } 24327} 24328code[class*=language-], 24329pre[class*=language-] { 24330 font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace; 24331 font-size: 14px; 24332 line-height: 1.375; 24333 direction: ltr; 24334 text-align: left; 24335 white-space: pre; 24336 word-spacing: normal; 24337 word-break: normal; 24338 -moz-tab-size: 4; 24339 -o-tab-size: 4; 24340 tab-size: 4; 24341 -webkit-hyphens: none; 24342 -moz-hyphens: none; 24343 -ms-hyphens: none; 24344 hyphens: none; 24345 background: #f5f7ff; 24346 color: #5e6687; 24347 border-radius: 0.25rem; 24348} 24349 24350pre[class*=language-]::-moz-selection, 24351pre[class*=language-] ::-moz-selection, 24352code[class*=language-]::-moz-selection, 24353code[class*=language-] ::-moz-selection { 24354 text-shadow: none; 24355 background: #dfe2f1; 24356} 24357 24358pre[class*=language-]::selection, 24359pre[class*=language-] ::selection, 24360code[class*=language-]::selection, 24361code[class*=language-] ::selection { 24362 text-shadow: none; 24363 background: #dfe2f1; 24364} 24365 24366/* Code blocks */ 24367pre[class*=language-] { 24368 padding: 1.25rem; 24369 margin: 0; 24370 overflow: auto; 24371} 24372 24373/* Inline code */ 24374:not(pre) > code[class*=language-] { 24375 padding: 0.1em; 24376 border-radius: 0.3em; 24377} 24378 24379.token.comment, 24380.token.prolog, 24381.token.doctype, 24382.token.cdata { 24383 color: #898ea4; 24384} 24385 24386.token.punctuation { 24387 color: #5e6687; 24388} 24389 24390.token.namespace { 24391 opacity: 0.7; 24392} 24393 24394.token.operator, 24395.token.boolean, 24396.token.number { 24397 color: #c76b29; 24398} 24399 24400.token.property { 24401 color: #c08b30; 24402} 24403 24404.token.tag { 24405 color: #3d8fd1; 24406} 24407 24408.token.string { 24409 color: #22a2c9; 24410} 24411 24412.token.selector { 24413 color: #6679cc; 24414} 24415 24416.token.attr-name { 24417 color: #c76b29; 24418} 24419 24420.token.entity, 24421.token.url, 24422.language-css .token.string, 24423.style .token.string { 24424 color: #22a2c9; 24425} 24426 24427.token.attr-value, 24428.token.keyword, 24429.token.control, 24430.token.directive, 24431.token.unit { 24432 color: #ac9739; 24433} 24434 24435.token.statement, 24436.token.regex, 24437.token.atrule { 24438 color: #22a2c9; 24439} 24440 24441.token.placeholder, 24442.token.variable { 24443 color: #3d8fd1; 24444} 24445 24446.token.deleted { 24447 text-decoration: line-through; 24448} 24449 24450.token.inserted { 24451 border-bottom: 1px dotted #202746; 24452 text-decoration: none; 24453} 24454 24455.token.italic { 24456 font-style: italic; 24457} 24458 24459.token.important, 24460.token.bold { 24461 font-weight: bold; 24462} 24463 24464.token.important { 24465 color: #c94922; 24466} 24467 24468.token.entity { 24469 cursor: help; 24470} 24471 24472pre > code.highlight { 24473 outline: 0.4em solid #c94922; 24474 outline-offset: 0.4em; 24475} 24476 24477/* overrides color-values for the Line Numbers plugin 24478 * http://prismjs.com/plugins/line-numbers/ 24479 */ 24480.line-numbers .line-numbers-rows { 24481 border-right-color: #dfe2f1; 24482} 24483 24484.line-numbers-rows > span:before { 24485 color: #979db4; 24486} 24487 24488/* overrides color-values for the Line Highlight plugin 24489 * http://prismjs.com/plugins/line-highlight/ 24490 */ 24491.line-highlight { 24492 background: rgba(107, 115, 148, 0.2); 24493 background: -webkit-linear-gradient(left, rgba(107, 115, 148, 0.2) 70%, rgba(107, 115, 148, 0)); 24494 background: linear-gradient(to right, rgba(107, 115, 148, 0.2) 70%, rgba(107, 115, 148, 0)); 24495} 24496 24497.ct-toc { 24498 order: 2; 24499 padding-top: 2rem; 24500 padding-bottom: 1.5rem; 24501 font-size: 0.875rem; 24502} 24503 24504@supports (position: sticky) { 24505 .ct-toc { 24506 position: sticky; 24507 top: 4rem; 24508 height: calc(100vh - 4rem); 24509 overflow-y: auto; 24510 } 24511} 24512.section-nav { 24513 padding-left: 0; 24514 border-left: 1px solid #eee; 24515} 24516 24517.section-nav ul { 24518 padding-left: 1rem; 24519} 24520 24521.section-nav ul ul { 24522 display: none; 24523} 24524 24525.toc-entry { 24526 display: block; 24527 font-size: 1rem; 24528} 24529 24530.toc-entry a { 24531 display: block; 24532 padding: 0.125rem 1.5rem; 24533 color: #99979c; 24534 font-size: 90%; 24535} 24536 24537.toc-entry a:hover { 24538 color: #5e72e4; 24539 text-decoration: none; 24540} 24541 24542.ct-sidebar { 24543 order: 0; 24544 border-bottom: 1px solid #e6ecf1; 24545 background-color: #f5f7f9; 24546} 24547 24548@media (min-width: 768px) { 24549 .ct-sidebar { 24550 border-right: 1px solid #e6ecf1; 24551 } 24552 24553 @supports (position: sticky) { 24554 .ct-sidebar { 24555 position: sticky; 24556 top: 4rem; 24557 z-index: 1000; 24558 height: calc(100vh - 4rem); 24559 } 24560 } 24561} 24562@media (min-width: 1200px) { 24563 .ct-sidebar { 24564 flex: 0 1 320px; 24565 } 24566} 24567.ct-links { 24568 padding-top: 2rem; 24569 padding-bottom: 1rem; 24570 margin-right: -15px; 24571 margin-left: -15px; 24572} 24573 24574@media (min-width: 768px) { 24575 @supports (position: sticky) { 24576 .ct-links { 24577 max-height: calc(100vh - 5rem); 24578 overflow-y: auto; 24579 } 24580 } 24581} 24582@media (min-width: 768px) { 24583 .ct-links { 24584 display: block !important; 24585 } 24586} 24587.ct-search { 24588 position: relative; 24589 padding: 1rem 15px; 24590 margin-right: -15px; 24591 margin-left: -15px; 24592 border-bottom: 1px solid rgba(0, 0, 0, 0.05); 24593} 24594 24595.ct-search .form-control:focus, .ct-search #dw__login input:focus, #dw__login .ct-search input:focus, .ct-search #config__manager td input.edit:focus, #config__manager td .ct-search input.edit:focus, .ct-search .search-results-form fieldset input:focus, .search-results-form fieldset .ct-search input:focus, .ct-search .doku_form .no #qsearch__in:focus, .doku_form .no .ct-search #qsearch__in:focus, .ct-search textarea:focus { 24596 border-color: #9da9f2; 24597 box-shadow: 0 0 0 3px rgba(157, 169, 242, 0.25); 24598} 24599 24600.ct-search-docs-toggle { 24601 line-height: 1; 24602 color: #212529; 24603} 24604 24605.ct-sidenav, .leftsidebar .leftsidebar ul { 24606 display: none; 24607} 24608 24609.ct-toc-link { 24610 display: block; 24611 padding: 0.25rem 1.5rem; 24612 font-weight: 600; 24613 font-size: 1.1rem; 24614 color: #0d2b3e; 24615} 24616 24617.ct-toc-link:hover { 24618 color: rgba(0, 0, 0, 0.85); 24619 text-decoration: none; 24620} 24621 24622.ct-toc-item.active { 24623 margin-bottom: 1rem; 24624} 24625 24626.ct-toc-item.active:not(:first-child) { 24627 margin-top: 1rem; 24628} 24629 24630.ct-toc-item.active > .ct-toc-link { 24631 color: rgba(0, 0, 0, 0.85); 24632} 24633 24634.ct-toc-item.active > .ct-toc-link:hover { 24635 background-color: transparent; 24636} 24637 24638.ct-toc-item.active > .ct-sidenav, .leftsidebar .leftsidebar .ct-toc-item.active > ul { 24639 display: block; 24640} 24641 24642.ct-sidebar .nav > li > a, .ct-sidebar .leftsidebar .leftsidebar ul > li > a, .leftsidebar .leftsidebar .ct-sidebar ul > li > a { 24643 display: block; 24644 padding: 0.25rem 1.5rem; 24645 font-size: 84%; 24646 color: #4c555a; 24647} 24648 24649.ct-sidebar .nav > li > a:hover, .ct-sidebar .leftsidebar .leftsidebar ul > li > a:hover, .leftsidebar .leftsidebar .ct-sidebar ul > li > a:hover { 24650 color: rgba(0, 0, 0, 0.85); 24651 text-decoration: none; 24652 background-color: transparent; 24653} 24654 24655.ct-sidebar .nav > .active > a, .ct-sidebar .leftsidebar .leftsidebar ul > .active > a, .leftsidebar .leftsidebar .ct-sidebar ul > .active > a { 24656 font-weight: 500; 24657 color: #0099e5; 24658 background-color: transparent; 24659 padding-left: 2rem; 24660 position: relative; 24661} 24662 24663.ct-sidebar .nav > .active > a:before, .ct-sidebar .leftsidebar .leftsidebar ul > .active > a:before, .leftsidebar .leftsidebar .ct-sidebar ul > .active > a:before { 24664 content: ""; 24665 position: absolute; 24666 height: 16px; 24667 width: 2px; 24668 background-color: #0099e5; 24669 top: 50%; 24670 left: 1.5rem; 24671 transform: translateY(-50%); 24672} 24673 24674.ct-sidebar .nav > .active:hover > a, .ct-sidebar .leftsidebar .leftsidebar ul > .active:hover > a, .leftsidebar .leftsidebar .ct-sidebar ul > .active:hover > a { 24675 color: #0099e5; 24676} 24677 24678.scrollbar-inner { 24679 height: 100%; 24680} 24681 24682.scrollbar-inner:not(:hover) .scroll-element { 24683 opacity: 0; 24684} 24685 24686.scrollbar-inner .scroll-element { 24687 transition: opacity 300ms; 24688 margin-right: 2px; 24689} 24690 24691.scrollbar-inner .scroll-element .scroll-bar, 24692.scrollbar-inner .scroll-element .scroll-element_track { 24693 transition: background-color 300ms; 24694} 24695 24696.scrollbar-inner .scroll-element .scroll-element_track { 24697 background-color: transparent; 24698} 24699 24700.scrollbar-inner .scroll-element.scroll-y { 24701 width: 3px; 24702 right: 0; 24703} 24704 24705.scrollbar-inner .scroll-element.scroll-x { 24706 height: 3px; 24707 bottom: 0; 24708} 24709 24710/*# sourceMappingURL=agd.css.map */ 24711legend { 24712 font-style: normal; 24713} 24714 24715input, 24716select { 24717 background-color: white !important; 24718 border-radius: 0.25rem; 24719 border-color: #99979c; 24720} 24721 24722::-moz-selection { 24723 text-shadow: none; 24724 background: #dfe2f1; 24725} 24726 24727::selection { 24728 text-shadow: none; 24729 background: #dfe2f1; 24730} 24731 24732.breadcrumb { 24733 flex-direction: column; 24734} 24735 24736#dokuwiki__content p { 24737 font-weight: 400; 24738} 24739#dokuwiki__content h1::before, 24740#dokuwiki__content h2::before, 24741#dokuwiki__content h3::before, 24742#dokuwiki__content h4::before, 24743#dokuwiki__content h5::before, 24744#dokuwiki__content h6::before { 24745 content: ""; 24746 display: block; 24747 height: 6rem; 24748 margin-top: -6rem; 24749 visibility: hidden; 24750} 24751#dokuwiki__content .secedit button { 24752 margin-bottom: 1em; 24753 float: right; 24754} 24755#dokuwiki__content .wikilink2 { 24756 color: #dc3545; 24757} 24758#dokuwiki__content .editButtons button { 24759 margin-top: 1em; 24760 margin-bottom: 1em; 24761} 24762#dokuwiki__content :not(pre) > code { 24763 background-color: inherit; 24764 padding: 0.1em; 24765 border-radius: 0.3em; 24766} 24767#dokuwiki__content img.icon { 24768 width: 1rem; 24769 height: 1rem; 24770} 24771#dokuwiki__content .table-responsive, #dokuwiki__content table { 24772 border-width: 0rem; 24773} 24774#dokuwiki__content pre { 24775 font-family: Consolas, Menlo, Monaco, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", "Courier New", Courier, monospace; 24776 font-size: 1.0em; 24777 line-height: 1.4; 24778 direction: ltr; 24779 text-align: left; 24780 white-space: pre; 24781 word-spacing: normal; 24782 word-break: normal; 24783 -moz-tab-size: 4; 24784 -o-tab-size: 4; 24785 tab-size: 4; 24786 -webkit-hyphens: none; 24787 -moz-hyphens: none; 24788 -ms-hyphens: none; 24789 hyphens: none; 24790 background: #f5f7ff; 24791 color: #5e6687; 24792 border: 0; 24793 border-radius: 0.55rem; 24794 padding: 1.25rem; 24795 margin: 0; 24796 margin-bottom: 1rem; 24797 margin-top: 1rem; 24798 overflow: auto; 24799} 24800#dokuwiki__content .mf_pdf { 24801 display: inline; 24802} 24803 24804.argon-doku-page-menu { 24805 display: flex; 24806 align-items: flex-end; 24807 justify-content: flex-end; 24808 margin: 1.75rem 0 0.5rem; 24809} 24810.argon-doku-page-menu li { 24811 display: inline; 24812 fill: #6c757d; 24813} 24814.argon-doku-page-menu li :hover { 24815 fill: #525f7f; 24816} 24817.argon-doku-page-menu li:nth-of-type(1) { 24818 margin-left: 0em; 24819} 24820 24821#tool__bar button { 24822 margin-bottom: 2em; 24823} 24824 24825textarea { 24826 width: 95% !important; 24827 max-width: 100% !important; 24828} 24829 24830.editBar .summary { 24831 display: block !important; 24832} 24833 24834.ct-toc #dw__toc { 24835 float: inherit; 24836 margin: inherit; 24837 width: inherit; 24838 background-color: inherit; 24839 color: inherit; 24840 box-sizing: border-box; 24841 margin-right: 0em; 24842 padding-left: 0; 24843 border-left: 1px solid #eee; 24844} 24845.ct-toc #dw__toc h3 { 24846 display: none; 24847} 24848.ct-toc #dw__toc a { 24849 display: block; 24850 padding: 0.125rem 1rem; 24851 color: #99979c; 24852 font-size: 100%; 24853} 24854.ct-toc #dw__toc a:hover { 24855 color: #5e72e4; 24856 text-decoration: none; 24857} 24858.ct-toc #dw__toc ol, 24859.ct-toc #dw__toc ul, 24860.ct-toc #dw__toc dl { 24861 margin-top: 0; 24862 margin-bottom: 1rem; 24863} 24864.ct-toc #dw__toc ul { 24865 margin-bottom: 0.5rem; 24866} 24867.ct-toc #dw__toc ul { 24868 list-style: disc outside; 24869 list-style-position: outside; 24870 list-style-image: none; 24871 list-style-type: disc; 24872} 24873 24874.header-title a { 24875 color: white; 24876 font-weight: 600; 24877 font-size: 1.8rem; 24878} 24879 24880.argon-doku-navbar-icon { 24881 fill: white; 24882} 24883.argon-doku-navbar-icon :hover { 24884 fill: #e6e6e6; 24885} 24886 24887.doku_form .no { 24888 margin: 0rem; 24889 height: 1.5rem; 24890 padding: 0rem; 24891} 24892.doku_form .no #qsearch__in { 24893 width: 10rem; 24894 height: 1.5rem; 24895 margin: 0rem; 24896 margin-right: 1rem; 24897 margin-left: 1rem; 24898 border-radius: 0.25rem !important; 24899 overflow: hidden; 24900 border: none; 24901} 24902.doku_form .no button { 24903 margin: 0rem; 24904 overflow: hidden; 24905 height: 92%; 24906} 24907 24908.search-results-form button { 24909 margin-left: 3rem; 24910} 24911.search-results-form .toggleAssistant { 24912 display: block; 24913 float: none !important; 24914 margin-top: 2rem; 24915 margin-bottom: 2rem; 24916} 24917.search-results-form fieldset input { 24918 display: inline-block; 24919} 24920 24921.dokuwiki .ui-admin ul li { 24922 list-style-type: none; 24923} 24924.dokuwiki .ui-admin ul .admin_tasks svg { 24925 margin-right: 1rem; 24926 width: 1px; 24927 height: 1px; 24928} 24929.dokuwiki .tabs li { 24930 list-style-type: disclosure-closed; 24931} 24932.dokuwiki div.ui-admin ul li { 24933 margin: 0rem; 24934 vertical-align: middle !important; 24935} 24936.dokuwiki div.ui-admin ul li a { 24937 vertical-align: middle; 24938} 24939.dokuwiki div.ui-admin ul li a span.icon svg { 24940 margin-right: 1rem; 24941 width: inherit; 24942 height: inherit; 24943 vertical-align: middle !important; 24944} 24945.dokuwiki div.ui-admin ul li a span.icon svg path { 24946 fill: #32325d; 24947} 24948.dokuwiki div.ui-admin ul li a span.prompt { 24949 font-size: 1rem; 24950 font-weight: normal; 24951 vertical-align: middle !important; 24952} 24953 24954#config__manager td input.edit { 24955 width: 30em; 24956 padding: 0rem 0.75rem; 24957 background-color: white !important; 24958} 24959 24960#config__manager tr.default .input, 24961#config__manager tr.default input, 24962#config__manager tr.default textarea, 24963#config__manager tr.default select, 24964#config__manager .selectiondefault { 24965 background-color: inherit; 24966} 24967 24968.dokuwiki #dw__register fieldset, 24969#dw__profiledelete fieldset { 24970 width: 100%; 24971 border: 0rem; 24972 padding: 0rem; 24973 text-align: left !important; 24974} 24975.dokuwiki #dw__register fieldset legend, 24976#dw__profiledelete fieldset legend { 24977 font-style: normal; 24978} 24979.dokuwiki #dw__register fieldset label, 24980#dw__profiledelete fieldset label { 24981 font-size: 1rem; 24982 font-weight: normal; 24983 width: 95%; 24984 text-align: left !important; 24985} 24986.dokuwiki #dw__register fieldset label input, 24987#dw__profiledelete fieldset label input { 24988 float: right; 24989 background-color: white !important; 24990 border-radius: 0.25rem; 24991 border-color: #99979c; 24992 border-width: thin; 24993} 24994.dokuwiki #dw__register label.block, 24995#dw__profiledelete label.block { 24996 display: inline-block !important; 24997} 24998 24999#dw__login { 25000 width: 100%; 25001 float: left; 25002 left: 0%; 25003 margin: 0%; 25004} 25005#dw__login label { 25006 width: 90%; 25007} 25008#dw__login span { 25009 float: left; 25010 font-size: 1.15rem; 25011} 25012#dw__login input { 25013 display: block; 25014 float: right; 25015 width: 90%; 25016 height: 1.15rem; 25017 top: 50%; 25018} 25019#dw__login .simple { 25020 width: 50%; 25021 margin-left: unset !important; 25022} 25023#dw__login #remember__me { 25024 margin-top: 1rem; 25025} 25026.leftsidebar li { 25027 list-style-type: none; 25028 display: block; 25029 font-size: 1.0rem; 25030 padding: 0.25rem; 25031 color: #4c555a; 25032 font-weight: 400; 25033} 25034.leftsidebar a:link, 25035.leftsidebar a:visited { 25036 text-decoration: none; 25037 color: #4c555a; 25038} 25039.leftsidebar a:hover { 25040 color: #212529; 25041} 25042 25043.ct-sidebar .nav > li > a, .ct-sidebar .leftsidebar .leftsidebar ul > li > a, .leftsidebar .leftsidebar .ct-sidebar ul > li > a { 25044 font-size: 1.0rem; 25045} 25046 25047.footer-card { 25048 background-color: #f4f5f7; 25049 text-align: center; 25050} 25051.footer-card .footer-search { 25052 margin-left: auto; 25053 margin-right: auto; 25054} 25055.footer-card .argon-doku-footer-fullmenu { 25056 margin-left: auto; 25057 margin-right: auto; 25058} 25059.footer-card .argon-doku-footer-fullmenu li { 25060 display: inline; 25061 fill: #6c757d; 25062} 25063.footer-card .argon-doku-footer-fullmenu li :hover { 25064 fill: #525f7f; 25065} 25066.footer-card .argon-doku-footer-fullmenu li:nth-of-type(1) { 25067 margin-left: 0em; 25068} 25069 25070/*# sourceMappingURL=doku.css.map */ 25071