File size: 77,237 Bytes
a01128b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 |
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<title>
Van Andel Institute
</title>
<!-- Address bar color in mobile browser -->
<meta content="#ff6600" name="theme-color">
<!-- Facebook Pixel Code -->
<noscript>
<img height="1" src="rick.jpg" style="display:none" width="1">
</noscript>
<!-- End Facebook Pixel Code -->
<!-- Global site tag (gtag.js) - AdWords: 851670808 -->
<meta content name="title">
<meta content property="og:title">
<meta content property="og:description">
<meta content name="description">
<meta content property="og:image">
<meta content="" property="og:url">
<link href rel="image_src">
<link rel="stylesheet" type="text/css">
<meta content="AymqwRC7u88Y4JPvfIF2F37QKylC04248hLCdJAsh8xgOfe/dVJPV3XS3wLFca1ZMVOtnBfVjaCMTVudWM//5g4AAAB7eyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1RoaXJkUGFydHkiOnRydWV9" http-equiv="origin-trial">
<meta content="AymqwRC7u88Y4JPvfIF2F37QKylC04248hLCdJAsh8xgOfe/dVJPV3XS3wLFca1ZMVOtnBfVjaCMTVudWM//5g4AAAB7eyJvcmlnaW4iOiJodHRwczovL3d3dy5nb29nbGV0YWdtYW5hZ2VyLmNvbTo0NDMiLCJmZWF0dXJlIjoiUHJpdmFjeVNhbmRib3hBZHNBUElzIiwiZXhwaXJ5IjoxNjk1MTY3OTk5LCJpc1RoaXJkUGFydHkiOnRydWV9" http-equiv="origin-trial">
</head>
<body>
<!-- Start 4Site Template Body Wrapper -->
<div id="main-content-wrapper">
<div id="main-content">
<div id="main-content-inner">
<p>
<a>
<img alt class="logo" data-ratio-lock="true" data-unit="px" height="100" src="rick.jpg" width="200">
</a>
</p>
<form action="/page/4140/data/2" class="en__component en__component--page" id="pb_4140" method="post" name="pb_Event_Volunteer_Application">
<input class="en__hiddenFields" name="hidden" type="hidden" value>
<input name="sessionId" type="hidden" value="7051be5ab9514018990dd8d68634b53d-use2-prd-web4">
<ul class="en__errorList">
</ul>
<div class="en__component en__component--row en__component--row--1">
<div class="en__component en__component en__component--column">
<div class="en__component en__component--copyblock" style="
">
<p style="clear: both;">
<span style="font-size:20px;">
With the help of Michiganders everywhere, we can enhance the health and lives of generations to come.
</span>
</p>
<p style="clear: both;">
<span style="font-size:20px;">
Join us in furthering groundbreaking biomedical research and science by hosting a
<strong>
Purple Community
</strong>
fundraising event in your area.
</span>
<span style="font-size:20px;">
<strong>
Sign up below and our team will be in touch to help make it possible!
</strong>
</span>
</p>
<p>
</p>
</div>
<div class="en__component en__component--formblock" style>
<div class="en__field en__field--text en__field--28892 en__field--firstName en__mandatory">
<label class="en__field__label" for="en__field_supporter_firstName" style>
First Name*
</label>
<div class="en__field__element en__field__element--text">
<input class="en__field__input en__field__input--text" id="en__field_supporter_firstName" name="supporter.firstName" type="text" value>
</div>
</div>
<div class="en__field en__field--text en__field--28893 en__field--lastName en__mandatory">
<label class="en__field__label" for="en__field_supporter_lastName" style>
Last Name*
</label>
<div class="en__field__element en__field__element--text">
<input class="en__field__input en__field__input--text" id="en__field_supporter_lastName" name="supporter.lastName" type="text" value>
</div>
</div>
<div class="en__field en__field--telephone en__field--28894 en__field--phoneNumber en__mandatory">
<label class="en__field__label" for="en__field_supporter_phoneNumber" style>
Phone Number*
</label>
<div class="en__field__element en__field__element--telephone">
<input autocomplete="tel" class="en__field__input en__field__input--telephone" id="en__field_supporter_phoneNumber" name="supporter.phoneNumber" type="tel" value>
</div>
</div>
<div class="en__field en__field--email en__field--28896 en__field--emailAddress en__mandatory">
<label class="en__field__label" for="en__field_supporter_emailAddress" style>
Email Address*
</label>
<div class="en__field__element en__field__element--email">
<input autocomplete="email" class="en__field__input en__field__input--email" id="en__field_supporter_emailAddress" name="supporter.emailAddress" type="email" value>
</div>
</div>
<input class="en__field__input--hidden" name="supporter.sendOffset" type="hidden" value="-07:00">
<div class="en__field en__field--textarea en__field--28895 en__field--comments">
<label class="en__field__label" for="en__field_transaction_comments" style>
What event do you want to do? Please fill out the details here and we'll be in touch!
</label>
<div class="en__field__element en__field__element--textarea">
<textarea class="en__field__input en__field__input--textarea" id="en__field_transaction_comments" maxlength="2000" name="transaction.comments"></textarea>
</div>
</div>
<div class="en__submit">
<button style>
Submit
</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- End 4Site Template Body Wrapper -->
<!-- Start 4Site Template CSS -->
<link rel="stylesheet">
<!-- End 4Site Template CSS -->
<!-- Start 4Site Template JS -->
<!-- End 4Site Template JS -->
<!-- Start 4Site Custom CSS To Make Multi Step Donation Form Fancy -->
<style>
.en__field__element--range,.en__field__element--rating,.en__field__helpText,.en__field__input--checkbox,.en__field__input--radio,.en__field__label{vertical-align:middle}.en__component--hubgadget span,.en__imageSelectField__control,.en__rangeFieldLabels__label--current{text-align:center}.en__errorList{margin:0;padding:0}.en__component{position:relative}.en__component--row{display:flex;flex-wrap:wrap;box-sizing:border-box}.en__component--row.en__component--advrow{display:flex;flex-wrap:nowrap;box-sizing:border-box}.en__component--column{position:static;flex:1 0 auto;box-sizing:border-box;width:100%;min-width:300px}.en__component--column.en__component--advcolumn{width:auto;min-width:0;flex:1 0 0%;flex:1 0 0}.en__component--row--2 .en__component--column{width:50%}@media only screen and (max-width:600px),only screen and (max-device-width:600px){.en__component--row,.en__component--row.en__component--advrow{display:block}.en__component--column.en__component--advcolumn,.en__component--row--2 .en__component--column{width:100%}}.en__component--hubgadget{box-shadow:0 0 3px 1px rgba(0,0,0,.33);border-radius:6px;background:#fff;margin:12px;border:1px solid #ccc;padding:12px}.en__component--hubgadget--inactive{display:none}.en__component--hubgadget img{display:block;margin:auto}.en__component--hubgadget span{font-weight:700;display:block;margin-top:12px}.en__component--hubgadget>img{height:56px}.en-noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.en__captcha,.en__field{padding-bottom:18px}.en__field__label{display:inline-block;width:180px}.en__field__helpText{display:none;font-size:.85em}.en__field__helpText,.en__field__label{padding:6px 0}.en__field__label--positionabove+.en__field__helpText{display:block}.en__field__element--calendar,.en__field__element--checkbox,.en__field__element--email,.en__field__element--number,.en__field__element--password,.en__field__element--radio,.en__field__element--range,.en__field__element--rating,.en__field__element--select,.en__field__element--splitselect,.en__field__element--splittext,.en__field__element--telephone,.en__field__element--text,.en__field__element--textarea,.en__field__element--tripleselect,.en__field__element--tripletext,.en__field__item{display:inline-block}.en__field__input--calendar,.en__field__input--email,.en__field__input--number,.en__field__input--other,.en__field__input--password,.en__field__input--select,.en__field__input--splitselect,.en__field__input--splittext,.en__field__input--telephone,.en__field__input--text,.en__field__input--textarea,.en__field__input--tripleselect,.en__field__input--tripletext{padding:6px;box-sizing:border-box}.en__field__input--calendar,.en__field__input--email,.en__field__input--number,.en__field__input--password,.en__field__input--range,.en__field__input--telephone,.en__field__input--text,.en__field__input--textarea,.en__rangeFieldLabels{width:250px}.en__field__input--select{min-width:250px}.en__field__input--other{width:100px;margin:-1px 0 0 5px}.en__field__input--splittext,.en__field__input--tripletext{width:50px}.en__field__input--textarea{height:100px}.en__field__item{padding:6px 0}.en__field__element--layoutvertical .en__field__item,.en__field__label--positionabove{display:block}.en__field__label--item{width:auto;padding:0}.en__field__input--radio{margin-top:-1px}.en__field--checkbox .en__field__label,.en__field--radio .en__field__label,.en__field--textarea .en__field__label{vertical-align:top}.en__field__element--layoutvertical .en__field__label--item{padding:0;vertical-align:middle}.en__field__element--labelsleft .en__field__label--item{float:left;margin-right:4px}.en__field__item.en__field__item--hidden,.en__hidden{display:none}.en__field__element--imgselect .en__field__item{padding-right:12px}.en__imageSelectField{cursor:pointer}.en__rangeFieldLabels{display:flex;justify-content:space-between}.en__rangeFieldLabels__label{width:30%;overflow-wrap:break-word}.en__rangeFieldLabels__label--max{text-align:right}.en__field__element--range input[type=range]::-moz-range-thumb{cursor:pointer}.en__field__element--range input[type=range]::-webkit-slider-thumb{cursor:pointer}.en__field__element--range input[type=range]::-ms-thumb{cursor:pointer}.en__pagination{padding:6px;text-align:center}.en__field__element--rating .en__field__item{padding:6px}.en__ratingField input{display:none}.en__ratingField__image{cursor:pointer}.en__ratingField--on .en__ratingField__image--on,.en__ratingField__image--off{display:block}.en__ratingField--on .en__ratingField__image--off,.en__ratingField__image--on{display:none}.en__submit button{cursor:pointer}.en__button{display:inline-block;background:#F5F5F5;padding:12px;border:1px solid #ccc;color:initial;text-decoration:none;cursor:pointer}.en__button--disabled,.en__button[disabled]{cursor:default;opacity:.3}.en__button--active{background:#ccc}.en__button.en__button--ajax--done,.en__button.en__button--ajax--inprogress{color:transparent;user-select:none;cursor:auto}.en__memselector__label,.en__ticket__minus,.en__ticket__plus{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}.en__button--ajax--inprogress{background:url(../images/en_loading.gif) center center no-repeat;background-size:30px 30px}.en__button--ajax--done{background:url(../images/en__end--30.png) center center no-repeat;background-size:30px 30px}.en__orderSummary{display:table;width:100%;table-layout:fixed;padding:7px}.en__orderSummary__additional,.en__orderSummary__headers,.en__orderSummary__item,.en__orderSummary__total{display:table-row}.en__orderSummary__data,.en__orderSummary__header{display:table-cell;padding:7px}.en__orderSummary__data--promo{word-break:break-word}.en__ticketBlock{border:1px solid #D2D2D2;background-color:#F6F6F6}.en__tickets{width:100%;box-sizing:border-box;padding:0 14px;display:table;table-layout:fixed}.en__additional,.en__ticket{display:table-row}.en__ticket--DSBL{display:none}.en__ticket__field{border-bottom:1px solid #D2D2D2;vertical-align:top}.en__ticket:last-child .en__ticket__field{border:0}.en__additional__amount,.en__additional__label,.en__ticketSummary__checkout,.en__ticket__field{padding:14px}.en__additional__amount,.en__additional__label,.en__additional__promo,.en__ticketSummary__checkout,.en__ticket__field{display:table-cell}.en__additional__amount,.en__additional__label,.en__ticket__currency,.en__ticket__name,.en__ticket__price{font-size:1.5em;font-weight:700}.en__ticket__currency,.en__ticket__minus,.en__ticket__plus,.en__ticket__price,.en__ticket__quantity{display:inline-block}.en__ticket__field--quantity{width:13em}.en__additional__amount,.en__ticket__field--cost{width:10em}.en__additional__amount,.en__ticket__field--cost,.en__ticket__field--quantity,.en__ticket__quantity,.en__ticket__remaining{text-align:center}.en__ticket__selector{display:inline-block}.en__ticket__quantity{width:3em;line-height:2.5em;font-size:1.5em;vertical-align:middle;border:1px solid #D2D2D2;border-radius:3px;padding:0}.en__ticket__quantity--invalid{border:1px solid #EE3324}.en__ticket__minus,.en__ticket__plus{height:2.5em;width:2.5em;vertical-align:middle;border:1px solid #D2D2D2;cursor:pointer;border-radius:3px;-webkit-touch-callout:none;-khtml-user-select:none;user-select:none}.en__ticket__plus{background:url(../images/en_plus.png) center center no-repeat #fff;margin-left:5px}.en__ticket__minus{background:url(../images/en_minus.png) center center no-repeat #fff;margin-right:5px}.en__ticket__soldout,.en__ticket__waitList{padding:.5em 2em;border-radius:3px;color:#fff;font-size:1em;display:inline-block}.en__ticket__soldout{background-color:#999}.en__ticket__waitList{background-color:#3E9BD6;cursor:pointer}.en__additional__amount,.en__additional__label{display:table-cell;padding:10px}.en__additional__input{padding:.6em 0;width:4em;margin-right:12px;text-align:center;border:1px solid #D2D2D2;border-radius:3px}.en__additional__promo{text-align:center}.en__additional__code{text-align:center;width:8em;padding:.6em 0;border:1px solid #D2D2D2;border-radius:3px}.en__ticketRecurring,.en__ticketSummary{border-top:1px solid #D2D2D2;display:flex;justify-content:flex-end}.en__ticketRecurring__select,.en__ticketSummary__checkout{text-transform:uppercase;font-size:1.5em;background-color:#EE3324;display:inline-block;padding:14px 28px;text-align:center;color:#fff;vertical-align:middle;cursor:pointer;width:11em;border:0;font-family:inherit}.en__eventOccurrencesDateSelector__clear,.en__occurrenceSummary__change{text-decoration:underline;color:#3C9AFC;cursor:pointer}.en__ticketBlock--recurring .en__ticketSummary{display:none}.en__ticketBlock--recurring .en__ticketRecurring,.en__ticketBlock--recurring.en__ticketBlock--recurring--selected .en__occurrenceSummary,.en__ticketBlock--recurring.en__ticketBlock--recurring--selected .en__ticketSummary{display:flex}.en__ticketBlock--recurring.en__ticketBlock--recurring--selected .en__ticketRecurring,.en__ticketRecurring{display:none}.en__occurrenceSummary{display:none;flex-direction:column;justify-content:center;align-items:end;padding:0 17px}.en__occurrenceSummary__description{font-size:1em;font-weight:700}.en__eventOccurrences{padding:14px 0;display:none}.en__eventOccurrences.en__eventOccurrences--selecting{display:block}.en__eventOccurrences__title{padding-bottom:14px}.en__eventOccurrences__header{display:flex;justify-content:space-between;padding-bottom:14px}.en__eventOccurrencesDateSelector{display:flex;align-items:center}.en__eventOccurrencesDateSelector:not(.en__eventOccurrencesDateSelector--selected) .en__eventOccurrencesDateSelector__clear{display:none}.en__eventOccurrencesDateSelector__label{padding-left:30px;margin-right:6px;background:url(../images/calendar.svg) center left no-repeat;display:block;line-height:24px;height:24px}.en__eventOccurrencesDateSelector__clear{margin-left:6px}.en__eventOccurrence{display:flex;justify-content:space-between;align-items:center;padding:14px;background-color:#F6F6F6;border-radius:6px;margin-bottom:14px}.en__eventOccurrence--filtered,.en__eventOccurrence--paginated--after,.en__eventOccurrence--paginated--before,.en__eventOccurrence__radio{display:none}.en__eventOccurrence__description{font-size:1.5em;font-weight:700}.en__eventOccurrence__select{text-transform:uppercase;font-size:1.3em;background-color:#EE3324;padding:0;color:#fff;cursor:pointer;border:0;font-family:inherit}.en__eventOccurrence__select>label{display:block;padding:7px 14px;cursor:pointer}.en__eventOccurrencesPagination{display:flex;justify-content:center;align-items:center}.en__eventOccurrencesPagination--disabled{display:none}.en__eventOccurrencesPagination__display{margin:0 16px}.en__eventOccurrencesPagination__control{height:16px;width:16px;background-repeat:no-repeat;background-position:center center;cursor:pointer}.en__eventOccurrencesPagination__control--back{background-image:url(../images/en_prev.png)}.en__eventOccurrencesPagination__control--forward{background-image:url(../images/en_next.png)}.en__eventOccurrencesPagination--end .en__eventOccurrencesPagination__control--forward,.en__eventOccurrencesPagination--start .en__eventOccurrencesPagination__control--back{opacity:.3;cursor:default}.en__eventOccurrences__empty{display:none;text-align:center}.en__eventOccurrences--empty .en__eventOccurrences__empty{display:block}.en__eventOccurrences--empty .en__eventOccurrencesPagination{display:none}.en__lightbox{display:none;position:fixed;width:100%;background:rgba(0,0,0,.8);z-index:99999;height:100%;top:0;left:0}.en__lightbox__box{margin:0 auto;position:absolute;top:20%;left:0;right:0;bottom:0;width:35em}.en__lightbox__header{background-color:#3E9BD6;padding:1em;color:#fff;border-top-left-radius:3px;border-top-right-radius:3px;position:relative}.en__lightbox__title{font-size:1.5em}.en__lightbox__close{position:absolute;top:0;right:1em;font-size:1em;bottom:0;margin:auto;height:2em}.en__lightbox__body{background-color:#fff;border-bottom-left-radius:3px;border-bottom-right-radius:3px;padding:1.5em;text-align:center}.en__lightbox__action,.en__lightbox__action--close,.en__lightbox__action--submit{background-color:#EE3324}.en__waitlist{text-align:left;display:inline-block}.en__waitlist__text{margin-bottom:1.5em;text-align:left}.en__waitlist__label{width:12em;display:inline-block}.en__waitlist__field{margin-bottom:.5em}.en__waitlist__input{padding:.6em;border:1px solid #D2D2D2;border-radius:3px;width:18em;font-size:1em}.en__waitlist__input--ticketId{display:none}.en__waitlist__input--quantity{width:5em}.en__waitlist__actions{text-align:right;margin-top:1em}.en__lightbox{text-align:left}.en__lightbox__action{color:#fff;display:inline-block;padding:.2em 1em;border-radius:3px;cursor:pointer;font-size:1.5em}.en__lightbox__action--cancel{background-color:#999;margin-right:1em}.en__waitlist--thankyou{display:none}.en__component--eventtickets .en__orderSummary__headers,.en__component--eventtickets .en__orderSummary__total{font-weight:700}.en__component--eventtickets .en__orderSummary__data,.en__component--eventtickets .en__orderSummary__header{text-align:center}.en__component--eventtickets .en__orderSummary__data--totalLabel,.en__component--eventtickets .en__orderSummary__data--type,.en__component--eventtickets .en__orderSummary__header--type{text-align:left}.en__registrants{padding:0 14px}.en__registrants__ticketHead{font-size:1.5em;font-weight:700;padding-bottom:14px}.en__registrants__group{display:flex;flex-wrap:wrap}.en__registrants__registrant{padding:0 14px}.en__registrants__registrantHead{font-size:1.3em}.en__registrants__registrantDetails{padding:14px 0}.en__registrants__registrantField{margin-bottom:7px}.en__registrants__registrantLabel{display:inline-block;min-width:14em;margin-bottom:7px;margin-right:7px}.en__registrants__registrantInput{padding:.6em;border:1px solid #D2D2D2;border-radius:3px}.en__shares{display:flex;justify-content:center}.en__share{margin-right:18px}.en__share--facebook.en__share--small{margin-top:1px}.en__share--gplus.en__share--small{margin-top:2px}.en__share__button{height:50px;width:50px;display:block}.en__share__button--twitter{background:url(../images/en_share--twitter.png) center center no-repeat}.en__share__button--facebook{background:url(../images/en_share--facebook.png) center center no-repeat}.en__share__button--gplus{background:url(../images/en_share--gplus.png) center center no-repeat}.en__share__button--small.en__share__button--twitter{background:url(../images/en_twitter--small.png) center 1px no-repeat;width:65px}.en__socialShare__image,.en__socialShares{width:100%;height:100%}.en__share__button--large.en__share__button--twitter{background:url(../images/en_twitter--large.png) center top no-repeat}.en__socialShares{display:flex;justify-content:center;align-items:center;flex-wrap:wrap}.en__contact--closed .en__contactSubject,.en__contact--dummy,.en__contactDetails__background,.en__contact__image.en__brokenImage img,.en__contacts--hideCheck .en__contactDetails__select,.en__contacts--hideContact,.en__contacts--hideMessage .en__contactMessage,.en__contacts--hideMessage .en__contactSections,.en__contacts--hideSubject .en__contactSubject,.en__contacts--hideSubject.en__contacts--hideMessage .en__contact__toggle,.en__singleMessage--hideMessage .en__contactMessage,.en__singleMessage--hideSubject .en__contactSubject,.en__singleMessage--hideSubject.en__singleMessage--hideMessage{display:none}.en__socialShare{padding:6px}.en__component--contactblock{background-color:#f0f0f0;padding:10px}.en__contact{margin-bottom:10px;position:relative}.en__contact:last-child{margin-bottom:0}.en__contact__detail{background-color:#fff;padding:10px}.en__contact__image{flex-grow:0;flex-shrink:0;margin-right:10px;width:60px;height:60px}.en__contact__image img{height:100%;width:100%}.en__contact__image.en__brokenImage{background:url(../images/en_contactPlaceholder.png) top center no-repeat}.en__contact__main{flex-grow:1}.en__contact__description p{margin:0}.en__contact--closed .en__contactMessage,.en__contact--closed .en__contactSections{height:0;overflow:hidden;padding:0}.en__contactMessage,.en__contactSubject{padding-top:10px}.en__contactDetails{display:flex;align-items:center}.en__contactDetail{display:inline-block}.en__contactSubject__field{width:100%}.en__contactMessage__htmlDisplay iframe,.en__contactMessage__plainText{width:100%;box-sizing:border-box}.en__contactMessage__htmlDisplay{background:#fff}.en__contactMessage__plainText{font-family:inherit;font-size:inherit;padding:6px;height:200px}.en__contactDetails__select{margin:10px}.en__contactDetails__rows{margin-right:35px}.en__contactDetails__row--1{font-weight:700;font-size:1.1em}.en__contact__toggle{cursor:pointer;width:60px;height:15px;background:url(../images/en_open.png) center center no-repeat #fff;margin:0 auto;border-bottom-left-radius:5px;border-bottom-right-radius:5px}.en__contact--open .en__contact__toggle{background:url(../images/en_close.png) center center no-repeat #fff}.en__singleMessage{background:#fff;padding:0 10px 10px;box-sizing:border-box}.en__singleMessage .en__contactSubject{padding-top:10px}.en__contactDetails__background{width:45px;height:45px;background:url(../images/en_background.png) center center no-repeat #f0f0f0;position:absolute;top:0;right:0;cursor:pointer}.en__contact--showBackground .en__contactDetails__background{background:url(../images/en_message.png) center center no-repeat #f0f0f0}.en__contacts--singleMessageMode .en__contact--showBackground .en__contactDetails__background{background:url(../images/en_backgroundClose.png) center center no-repeat #f0f0f0}.en__contact--open .en__contactDetails__background,.en__contacts--singleMessageMode .en__contactDetails__background{display:block}.en__contactBackground{display:none;padding:20px;border-top:1px solid #f0f0f0;margin-top:10px;position:relative}.en__contact--showBackground .en__contactMessage,.en__contact--showBackground .en__contactSection,.en__contact--showBackground .en__contactSubject{display:none}.en__contact--showBackground .en__contactDetails{min-height:35px}.en__contact__actions{text-align:right}.en__contact__actions .en__button:not(:last-child){margin-right:10px}.en__contact--open.en__contact--showBackground .en__contactBackground,.en__contacts--singleMessageMode .en__contact--showBackground .en__contactBackground{display:block}.en__contactBackground__text{margin-top:5px}.en__contactBackground__text pre{font-family:inherit;white-space:pre-wrap;margin:0}.en__contactBackground__cycle{width:25px;height:16px;position:absolute;top:0;margin-top:-8px;cursor:pointer}.en__contactBackground__cycle--next{background:url(../images/en_next.png) center right no-repeat #fff;right:0}.en__contactBackground__cycle--prev{background:url(../images/en_prev.png) center left no-repeat #fff;left:0}.en__contact:first-child .en__contactBackground__cycle--prev,.en__contact:last-child .en__contactBackground__cycle--next,.en__contactSection--hidden{display:none}.en__contactSection__content--editable .en__contactMessage__plainText{height:initial}.en__contactSection__content--uneditable,.en__contactSection__label{padding-top:10px}.en__contactSection__content--uneditable .en__contactMessage__plainText{background:0 0;border:none;height:auto;cursor:default;resize:none;outline:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;padding:0}.en__component--tweetcontactblock{background-color:transparent}.en__component--tweetcontactblock .en__contacts{display:flex;justify-content:space-around;flex-wrap:wrap}.en__tweetContact{background-color:#f0f0f0;padding:10px;width:400px;position:relative;margin-bottom:10px}.en__tweet,.en__tweetBackgroundText,.en__tweetButton,.en__tweetDisabled,.en__twitterTarget{background-color:#fff;padding:10px}.en__tweetBackgroundText,.en__tweetButton{padding-top:0}.en__twitterTarget__select{display:none;margin:0 10px 0 0}.en__contacts--singleTweetMode .en__twitterTarget__select{display:block}.en__twitterTarget{display:flex;align-items:center}.en__twitterTarget p{margin:0;line-height:1.3em}.en__twitterTarget__image{height:60px;width:60px;flex-grow:0;margin-right:10px}.en__twitterTarget__image:before{content:' ';display:block;position:absolute;height:60px;width:60px;background:url(../images/en_twitter_fallback.png) center center no-repeat #f0f0f0}.en__tweet textarea{border:1px solid #ccc;font-family:inherit;font-size:inherit;padding:10px;width:100%;height:100px;box-sizing:border-box;resize:none}.en__tweetButton{text-align:right}.en__tweetButton a{text-decoration:none;font-weight:700;font-size:1.5em;color:#fff;padding:5px 10px;display:block}.en__tweetButton__send,.en__tweetButton__sent{background-color:#CC0001;border:0;border-radius:5px;padding:0;text-align:center;display:inline-block}.en__tweetButton__send{cursor:pointer}.en__tweetButton__sent{display:none;background-color:#3C3}.en__tweetButton--sent .en__tweetButton__sent{display:inline-block}.en__tweetBackgroundText,.en__tweetButton--sent .en__tweetButton__send{display:none}.en__tweetContact .en__tweetBackgroundToggle{width:45px;height:45px;background:url(../images/en_background.png) center center no-repeat #f0f0f0;position:absolute;top:0;right:0;cursor:pointer;margin:10px 10px 0 0}.en__tweetBackgroundText pre{font-family:inherit;white-space:pre-wrap;margin:0;padding-top:10px;border-top:1px solid #f0f0f0}.en__tweetContact--showBackground .en__tweetBackgroundToggle{background:url(../images/en_backgroundClose.png) center center no-repeat #f0f0f0}.en__tweetContact--showBackground .en__tweetBackgroundText{display:block}.en__component.en__component--ecardblock{max-width:880px}.en__component.en__component--ecardblock.ui-draggable{max-width:initial}.en__component--ecardblock h2{margin:20px 0 10px}.en__ecarditems__list{font-size:0}.en__ecarditems__thumb{display:inline-block;margin:0 20px 20px 0;width:200px;height:200px;cursor:pointer}.en__ecarditems__thumb img{border:1px solid #ff4351;opacity:.5;width:200px;height:200px;margin:0}.en__ecarditems__thumb.thumb--active img{opacity:1!important}.en__ecarditems__thumb:not(.thumb--active) img{border-color:transparent!important}.en__ecarditems__thumb:hover img{box-shadow:1px 1px 5px 3px #ccc;border-color:default!important}.en__ecarditems__action{text-align:center}.en__ecarditems__button{cursor:pointer;font-size:16px;color:#fff;background:#ff4351;padding:5px 10px;margin:0;border:0;border-radius:4px}.en__ecarditems__addrecipient{display:inline-block;position:absolute;right:0;bottom:0;font-weight:700;width:32px;height:32px;font-size:20px!important;padding:0!important;font-family:arial!important}.en__ecarditems__button::-moz-focus-inner{padding:0!important;border:0!important}.en__ecardmessage__default{width:100%;min-height:200px;border:1px solid #bbb;padding:10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.en__ecardrecipients__detail{display:-webkit-box;display:flex;flex-wrap:wrap;justify-content:space-between}.en__ecarditems__preview.preview--show,.en__ecardrecipients__futureDelivery label{display:block}.en__ecardrecipients__email,.en__ecardrecipients__name{flex:initial;width:50%;position:relative}.en__ecardrecipients__email label,.en__ecardrecipients__name label{margin:0 10px 0 0}.en__ecardrecipients__email input,.en__ecardrecipients__name input{padding:6px 10px;margin:0 32px 0 0;width:57%}.en__ecardrecipients__email input.invalid,.en__ecardrecipients__name input.invalid{border:1px solid red}.en__ecardrecipients__list{min-height:200px;border:1px solid #bbb;padding:10px;margin:20px 0 0;background:#fff}.en__ecardrecipients__futureDelivery{margin:20px 0 0}.en__ecardrecipients__recipient{display:flex;flex-wrap:wrap;box-sizing:border-box;padding:5px 0}.en__ecardrecipients__recipient .ecardrecipient__email,.en__ecardrecipients__recipient .ecardrecipient__name{display:inline;border:none;padding:0;width:47.5%}.en__ecardrecipients__recipient .ecardrecipient__remove{display:inline;width:5%;text-align:right;padding:0}.en__ecardrecipients__recipient .ecardrecipient__remove button{border:none;background:0 0;padding:0;cursor:pointer;font-weight:700}.en__ecarditems__preview{display:none;position:fixed;width:100%;height:100%;top:0;left:0;font-size:initial;z-index:999}.en__ecarditems__prevbg{position:absolute;width:100%;height:100%;top:0;left:0;background:rgba(0,0,0,.5)}.en__ecarditems__prevwrap{left:50%;top:50%;width:600px;height:800px;position:absolute;z-index:9}.en__ecarditems__preview.overflow--height .en__ecarditems__prevwrap{height:100%!important;top:0!important;margin-top:0!important}.en__ecarditems__preview.overflow--width .en__ecarditems__prevwrap{width:100%!important;left:0!important;margin-left:0!important}.en__ecarditems__prevwrap iframe{width:100%;height:100%;background:#fff}.en__ecarditems__prevclose{border:none;background:0 0;padding:0;position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font-family:Arial,sans-serif;color:#000}.en__hubOverlay,.en__overlay{overflow-y:auto;z-index:[PHONE REDACTED];bottom:0;left:0}.ecard__mandatory__error{border:1px solid red}.en__hubOverlay{position:fixed;top:0;right:0;background:rgba(0,0,0,.25);padding:24px}.en__hubOverlay--closed{display:none}.en__hubOverlay__popup{position:relative;margin:auto;border-radius:6px;box-shadow:0 0 6px 3px rgba(0,0,0,.2)}.en__hubOverlay__loading{display:none;opacity:.8;position:absolute;top:0;bottom:0;left:0;right:0;background:url(../images/en_loading.gif) center center no-repeat #fff}.en__hubOverlay__loading--active{display:block}.en__hubOverlay--supporterdetails .en__hubOverlay__popup,.en__hubOverlay--supportersubscriptions .en__hubOverlay__popup{max-width:600px}.en__hubOverlay--pledge .en__hubOverlay__popup{max-width:1100px}.en__hubOverlay--pledgeRoi .en__hubOverlay__popup{max-width:600px}.en__hubOverlay--membership>.en__hubOverlay__popup{max-width:800px}.en__hubOverlay--membershipHistory>.en__hubOverlay__popup{max-width:600px}.en__hubOverlay--memCardUpdate>.en__hubOverlay__popup{max-width:930px}.en__hubOverlay--membershipRenew>.en__hubOverlay__popup,.en__hubOverlay--txngiving>.en__hubOverlay__popup{max-width:600px}.en__hubOverlay__header{background:#f5f5f5;border-bottom:solid 1px #ccc;border-radius:6px 6px 0 0;position:relative;min-height:32px}.en__hubOverlay__header h2{margin:0;padding:9px 32px 6px 24px;font-size:14px;color:#333}.en__hubOverlay__header a{display:block;position:absolute;top:0;right:0;bottom:0;width:32px;background:url(../images/en_huboverlay_close.png) center center no-repeat;overflow:hidden;text-indent:-999px}.en__hubOverlay__content{background:#fff;border-radius:0 0 6px 6px;padding:24px}.en__supporterHubLogin{width:420px;margin:auto;border:1px solid #ccc;border-radius:6px;overflow:hidden}.en__supporterHubLogin__header{background:#f5f5f5;border-bottom:1px solid #ccc;padding:12px}.en__supporterHubLogin__body{padding:24px;background:#fff}.en__supporterHubLogin__emailAddress{display:flex;justify-content:space-between}.en__supporterHubLogin__body .en__field__label{margin-right:10px;flex-grow:1;width:initial}.en__supporterHubLogin__body .en__field__input--email,.en__supporterHubLogin__body .en__field__input--number,.en__supporterHubLogin__body .en__field__input--telephone,.en__supporterHubLogin__body .en__field__input--text{flex-grow:1}.en__hubgadget__response{display:none;margin:10px 0;padding:0 10px}.en__hubgadget__response--success{border:1px dashed #3C3}.en__hubgadget__response--failure{border:1px dashed #CC0001}.en__hubgadget__response--warn{border:1px dashed #fcac00;display:block}.en__hubgadget__response--active{display:block}.en__hubPledge__currency{display:inline-block}.en__myImpact__hubCopies{margin:0}.en__myImpact__hubCopy{background:#f5f5f5;padding:0 12px;margin-top:6px;cursor:pointer}.en__myImpact__hubCopyEmpty{background:#f5f5f5;margin-top:6px;display:block;border-radius:3px;padding:12px}.en__myImpact__hubCopy span{display:block;background:url(../images/en_search.png) right center no-repeat;border-radius:3px;padding:12px 0}.en__hubCopy__action{background:#3e9bd6;color:#fff;display:inline-block;float:right;padding:8px 12px;border-radius:5px;font-size:20px;margin:0 0 24px}.en__hubCopy__content{clear:both}.en__hubOverlay__impact .en__hubOverlay__header h2{font-size:20px;color:#2774a8}.en__hubOverlay__impact .en__hubOverlay__content>div{background:url(../images/en_thumbsup.png) no-repeat;padding:0 0 0 160px}.en__hubOverlay__impact .en__hubOverlay__content.hubdetail>div{background:0 0;padding:0}.en__hubOverlay__impact .en__myImpact__header iframe{border:none}.en__p2phub__sites{margin:0 0 24px}.en__p2phub__site{font-size:15px;background:#f5f5f5;padding:0 12px;margin-top:6px}.en__p2phub__site a{color:#000!important;text-decoration:none!important;display:block;border-radius:3px;padding:12px 0}.en__p2phub__site .en__p2phub__login{background:url(../images/en_lockopen-24.png) right center no-repeat}@media (max-width:768px){.en__hubOverlay__impact .en__hubOverlay__content>div{background:0 0;padding:0}}.en__hubMembership__card__update,.en__hubUpdateCC__toggle{background:url(../images/en_edit.png) center center no-repeat}.en__hubPledge__state{display:flex}.en__hubPledge__icon{margin-right:24px}@media (max-width:768px){.en__hubPledge__icon{display:none}}.en__hubPledge__columns{display:flex;justify-content:space-between;flex-wrap:wrap}.en__hubPledge__panels{flex-grow:1}.en__hubPledge__buttons{display:flex;justify-content:space-between}.en__hubPledge__buttons .en__submit:only-child{margin-left:auto}.en__component--copyblock--copyFailure{display:none}.en__hubPledge__state--failed .en__component--copyblock--copyFailure{display:block}.en__hubPledge__validationFail .en__field__element{border:1px solid #CC0001}.en__pg,.en__pgHeader{border-bottom:1px solid #ccc}.en__hubUpdateCC__number{display:flex;align-items:top}.en__hubUpdateCC__toggle{cursor:pointer;width:24px;margin-bottom:18px;margin-left:24px}.en__hubUpdateCC{display:none}.en__hubPledge__state--ccEnabled .en__hubUpdateCC{display:block}.en__hubUpdateCC--enabled .en__hubUpdateCC__toggle{opacity:.5;cursor:initial}.en__hubUpdateCC__additional{-webkit-transition:max-height 1s;transition:max-height 1s;max-height:0;overflow:hidden}.en__hubPledge__list{list-style:none;padding:0;margin:0}.en__hubPledge__list__item{border:1px solid #ccc;font-size:.85em;margin:6px 0;padding:6px}.en__hubPledge__list__item:hover{background:#f5f5f5;cursor:pointer}.en__hubPledge__list__actions{display:flex;justify-content:space-between}.pboGadgetPL__list .en__hubPledge__list__actions{padding-top:12px;display:block;text-align:right}.en__hubPledge__roi__list ol{list-style:none;padding:0;margin:0}.en__hubPledge__roi__list li{border:1px solid #ccc;font-size:.85em;margin:6px 0;padding:6px}.en__hubPledge__roi__list li:hover{background:#f5f5f5;cursor:pointer}.en__hubPledge__roi__actions{display:flex;justify-content:space-between}.en__hubPledge__roi--list .en__hubPledge__roi__actions{padding-top:12px;display:block;text-align:right}.en__hubPledge__roi--update .en__hubPledge__roi__amount{padding-bottom:12px}.en__hubPledge__roi--update .en__hubPledge__roi__add{padding:12px;text-align:center}.en__hubPledge__roi--update .en__hubPledge__roi__list label{display:flex;align-items:center}.en__hubPledge__roi--update .en__hubPledge__roi__list input{margin:0 12px}.en__hubPledge__roi--confirmation .en__hubPledge__roi__next{margin:1rem 0}.en__hubMembership__viewMemberships{display:inline-block}.en__hubMembership__viewMemberships p{color:#999;text-align:center;margin:0;font-size:.8em}.en__hubMembership__membership{margin:12px 0;border:1px solid #ccc}.en__hubMembership__membership__summary{display:flex;overflow:hidden;max-height:100px;transition:max-height .1s ease-in-out}.en__hubMembership__membership__full{max-height:0;transition:max-height,.2s ease-in-out;overflow:hidden;padding:0 12px}.en__hubMembership__membership__summary__name{flex-grow:1;padding:9px 12px}.en__hubMembership__membership__summary__status{padding:9px 12px;width:80px}.en__hubMembership__membership__summary__date{padding:9px 12px;width:120px}.en__hubMembership__membership__summary__edit{padding:0;width:48px}.open .en__hubMembership__membership__full{max-height:1000px}.en__hubMembership__membership__header{padding:9px 0}.en__hubMembership__membership__details{display:flex;box-sizing:border-box;padding:12px 0;margin:0 -6px;flex-wrap:wrap}.en__hubMembership__membership__details>div{flex:1 0 50%;min-width:300px}.en__hubMembership__membership__detail{display:flex;flex-wrap:wrap}.en__hubMembership__membership__detail__label{font-weight:700;width:180px;padding:6px}.en__hubMembership__membership__detail__value{flex-grow:1;padding:6px}.en__hubMembership__recurring{padding:9px 0}.en__hubMemCardUpdate__page--success{display:none}.en__hubMemCardUpdate--success .en__hubMemCardUpdate__page--success{display:block}.en__hubMemCardUpdate--success .en__hubMemCardUpdate__page--initial{display:none}.en__hubMemCardUpdate__actions{display:flex;justify-content:space-between}.en__hubMemCardUpdate__forms{display:flex;flex-wrap:wrap;justify-content:space-between}.en__hubMemCardUpdate__form--left{margin-right:10px}.en__hubMembership__card{background:#f5f5f5;display:inline-block;padding:12px;position:relative;width:320px;font-size:.85em}.en__hubMembership__card dl{padding:0;margin:0;display:flex;flex-wrap:wrap}.en__hubMembership__card dt{flex:1 0 50%;box-sizing:border-box;padding:6px 12px;margin:0;font-weight:700}.en__hubMembership__card dd{flex:1 0 50%;box-sizing:border-box;padding:6px 12px;margin:0}.en__hubMembership__card__update{width:24px;height:24px;cursor:pointer;text-indent:-99999px;position:absolute;top:12px;right:12px}.en__hubMembershipRenew__actions{text-align:right}.en__hubMembershipHistory table{width:100%}.en__hubMembershipHistory th{text-align:left}.en__hubTxnGiving__header{margin-bottom:24px}.en__hubTxnGiving__transactions__list ol{list-style:none;padding:0;margin:0}.en__hubTxnGiving__transactions__list li{border:1px solid #ccc;font-size:.85em;margin:6px 0;padding:6px}.en__hubTxnGiving__transactions__header{display:table;width:100%}.en__hubTxnGiving__transactions__date{display:table-cell;width:33%;padding-right:12px}.en__hubTxnGiving__transactions__total{display:table-cell;text-align:right}.en__component--premiumgiftblock{display:none;border:1px solid #ccc;border-radius:6px;margin-bottom:12px}.en__pgHeader{border-top-left-radius:6px;border-top-right-radius:6px;background-color:#f5f5f5;overflow:hidden;padding:12px 18px}.en__pg__body,.en__pg__detail,.en__pg__display,.en__pg__select{padding:12px}.en__pg:last-child{border-bottom:0}.en__pg__select input{cursor:pointer;margin:0}.en__pg__image{display:none}.en__pg__image--selected{display:block}.en__pg--selected .en__pg__image--selected{outline:#00b2d9 solid 3px}.en__pg__imageSelector{text-align:center;margin-top:6px}.en__pg__imageSelector input,.en__pg__imageSelector--hidden{display:none}.en__pg__imageSelector label{width:12px;height:12px;display:inline-block;cursor:pointer}.en__pg__imageSelector input:checked+.en__pg__imageRadio{background-color:#ccc;border-color:#ccc}.en__pg__imageRadio{display:inline-block;height:6px;width:6px;border-radius:6px;border:1px solid #9E9E9E;cursor:pointer}.en__pg__body{display:flex;flex-wrap:wrap}.en__memselector,.en__memtypelist,.en__memtypeselect__descriptions{padding:0;list-style-type:none}.en__pg__optionTypes{display:flex}.en__pg__optionType{margin:12px 12px 0 0}.en__pg__optionType label{margin-right:6px}.en__memtypelist__item{border:1px solid #ccc;margin-bottom:12px}.en__memtypeselect .en__memactions{justify-content:space-between}.en__memselector{display:flex;flex-wrap:wrap}.en__memselector__item{border:1px solid #ccc;margin:6px;display:flex;align-items:center}.en__memselector__label,.en__memselector__radio{display:block;cursor:pointer}.en__memselector__radio{margin:0 0 0 12px;outline:0}.en__memselector__label{padding:12px;user-select:none}.en__memtypeselect__description{display:none}.en__memtypeselect__description--active{display:block}.en__memtype{display:flex;flex-wrap:wrap}.en__memimage{max-width:300px;flex-grow:0;flex-shrink:0;font-size:0;padding:12px}.en__memimage img{max-width:100%;max-height:100%;display:block;margin:auto}.en__memtype__details{flex-grow:1;flex-shrink:0;flex-basis:0;padding:12px;min-width:350px}.en__memactions{display:flex}.en__memaction{margin:6px}.en__component--callcontactblock .en__contact__description,.en__member{margin-bottom:10px}.en__component--memordersummary .en__orderSummary__item--total .en__orderSummary__data:first-child{text-align:right}.en__hubOverlay--memtyperenew .en__hubOverlay__popup{max-width:600px}.en__hubOverlay--memtyperenew .en__field__element{display:block}.en__hubOverlay--memtyperenew .en__field__input{width:100%}.en__memtyperenew__message{border-style:dashed;border-width:1px;padding:0 10px;display:none}.en__memtyperenew__actions{display:flex;justify-content:center}.en__memtyperenew__or{background:url(../images/dot.jpg) center center repeat-x;text-align:center}.en__memtyperenew__orText{background-color:#fff;display:inline-block;padding:10px}.en__memtyperenew__page:not(.en__memtyperenew__page--active){display:none}.en__members{list-style-type:none;padding:0}.en__member{border:1px solid #ccc;padding:0;background-color:#fff;position:relative}.en__member__row{display:flex;justify-content:space-between;align-items:center;background:url(../images/en_background.png) left 10px center no-repeat;padding:0 20px 0 52px;min-height:52px}.en__member__toggle{display:none;width:16px;height:16px;background:url(../images/en_close.png) center center no-repeat}.en__member__openButton{display:none;position:absolute;margin:auto;top:0;left:0;bottom:0;right:0;background-color:#fff;border:1px solid #ccc;border-radius:5px;height:3em;padding:0 10px;cursor:pointer;width:160px}.en__member--closed .en__member__openButton,.en__member--closed .en__member__toggle,.en__member--open .en__member__toggle{display:block}.en__member--validationFailed .en__member__openButton{border:1px solid #CC0001}.en__member__details{padding:10px}.en__member--open .en__member__row{cursor:pointer}.en__member--closed{border:0}.en__member--closed .en__member__details,.en__overlay{display:none}.en__member--closed .en__member__row{background-color:#ccc;opacity:.3}.en__member--closed .en__member__toggle{background:url(../images/en_open.png) center center no-repeat}.en__overlay{position:fixed;top:0;right:0;background:rgba(0,0,0,.25);padding:24px}.en__overlay__popup{position:relative;margin:auto;border-radius:6px;box-shadow:0 0 6px 3px rgba(0,0,0,.2);max-width:800px}.en__overlay__loading{opacity:.8;position:absolute;top:0;bottom:0;left:0;right:0;background:url(../images/en_loading.gif) center center no-repeat #fff;border-radius:6px}.en__overlay__message{padding:12px}.en__overlay__message--success{border:1px dashed #3C3}.en__overlay__message--error{border:1px dashed #CC0001}.en__overlay__message--warn{border:1px dashed #fcac00;display:block}.en__overlay__header{background:#f5f5f5;border-bottom:solid 1px #ccc;border-radius:6px 6px 0 0;position:relative;min-height:32px}.en__overlay__header h2{margin:0;padding:9px 32px 6px 24px;font-size:14px;color:#333}.en__overlay__header a{display:block;position:absolute;top:0;right:0;bottom:0;width:32px;background:url(../images/en_huboverlay_close.png) center center no-repeat;overflow:hidden;text-indent:-999px}.en__overlay__content{background:#fff;border-radius:0 0 6px 6px;overflow:hidden}.en__component--callcontactblock .en__contacts{background-color:#f0f0f0;padding:10px}.en__component--callcontactblock .en__component--callcontactblock__officehours,.en__component--callcontactblock .en__contacts{display:none}.en__component--callcontactblock.en__component--callcontactblock--inofficehours .en__contacts,.en__component--callcontactblock.en__component--callcontactblock--outofoffice .en__component--callcontactblock__officehours{display:block}.en__component--callcontactblock .en__contact__detail{display:flex}.en__c2c__step{display:none;margin:24px}.en__c2c__actions{display:flex;justify-content:space-between;margin-top:24px}.en__contact--call__fullQueue{margin-top:10px}.en__c2c__survey__form .en__status--error,.en__c2c__survey__thankyou{display:none}.en__c2c__survey__rate{display:flex;justify-content:space-between;max-width:300px;margin:12px 0}.en__c2c__survey__rate .en__button{opacity:.5}.en__c2c__survey__rate .en__button.active{opacity:1}.en__component--svblock .en__field__label--positionabove{width:auto}.en__component--svblock--displayInOrder .en__field--survey{display:none}.en__component--svblock--displayInOrder .en__field--survey--surveyActive,.en__component--svblock--displayInOrder .en__field--survey--surveyDone,.en__component--svblock--displayInOrder .en__field--survey.en__field--validationFailed,.en__component--svblock--displayInOrder .en__field--survey:first-child{display:block}.en__component--svblock--numbered{counter-reset:surveyFieldNumbering}.en__component--svblock--numbered .en__field>.en__field__label:before{counter-increment:surveyFieldNumbering;content:counter(surveyFieldNumbering) '. '}.en__iban{display:grid;align-items:center}.en__iban .en__field__iban,.en__iban .en__field__input--text{grid-column-start:1;-ms-grid-column:1;grid-column-end:2;grid-row-start:1;-ms-grid-row:1;grid-row-end:2}.en__iban .en__field__iban{padding:6px}.en__stripeButtons__preview{max-width:750px;display:block;background:#32325d;border-radius:5px;text-align:center;position:relative}.en__stripeButtons__preview .en__stripeButtons__previewWrap{display:inline-block;height:22px;position:relative;top:50%}.en__stripeButtons__preview .en__stripeButtons__previewText{display:inline;color:#fff;vertical-align:top;font:500 16px/21px -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;position:relative;top:-11px}.en__stripeButtons__preview.light .en__stripeButtons__previewText,.en__stripeButtons__preview.light-outline .en__stripeButtons__previewText{color:#39325c}.en__stripeButtons__preview .en__stripeButtons__previewIcon{background:url(../images/gateways/buttons/stripe-icon.png) 0 center no-repeat;width:22px;height:22px;display:inline-block;margin:0 0 0 5px;position:relative;top:-11px}.en__stripeButtons__preview.light{background:#fff}.en__stripeButtons__preview.light-outline{background:#fff;border:1px solid #d7d7d7}.en__paypalTouch__preview{max-width:750px;display:block;background:#ffc439;border-radius:5px;text-align:center;position:relative}.en__paypalTouch__preview .en__paypalTouch__previewWrap{display:inline}.en__paypalTouch__preview .en__paypalTouch__previewIcon{background:url(../images/gateways/buttons/paypal-icon-svg.svg) 0 center no-repeat;width:16px;height:100%;display:inline-block;background-size:13px}.en__paypalTouch__preview .en__paypalTouch__previewIcon2{background:url(../images/gateways/buttons/paypal-text-svg.svg) 0 center no-repeat;width:60px;height:100%;display:inline-block;background-size:60px}.en__paypalTouch__preview.blue{background:#0070ba}.en__paypalTouch__preview.blue .en__paypalTouch__previewIcon{background:url(../images/gateways/buttons/paypal-icon-white-svg.svg) 0 center no-repeat;background-size:13px}.en__paypalTouch__preview.blue .en__paypalTouch__previewIcon2{background:url(../images/gateways/buttons/paypal-text-white-svg.svg) 0 center no-repeat;background-size:60px}.en__paypalTouch__preview.white{background:#fff;border:1px solid #555}.en__paypalTouch__preview.black{background:#2C2E2F}.en__paypalTouch__preview.black .en__paypalTouch__previewIcon{background:url(../images/gateways/buttons/paypal-icon-white-svg.svg) 0 center no-repeat;background-size:13px}.en__paypalTouch__preview.black .en__paypalTouch__previewIcon2{background:url(../images/gateways/buttons/paypal-text-white-svg.svg) 0 center no-repeat;background-size:60px}.en__chariot__preview{max-width:750px;display:block;border-radius:4px;text-align:center;position:relative}.en__chariot__preview .en__chariot__previewWrap{display:inline-block;height:22px;position:relative;top:50%}.en__chariot__preview .en__chariot__previewText{display:inline;color:#fff;vertical-align:top;font:500 16px/24px "Myriad Pro Bold",sans-serif;position:relative;top:-11px}.en__chariot__preview .en__chariot__previewIcon{background:url(../images/gateways/buttons/chariot-icon.svg) 0 center no-repeat;width:20px;height:100%;display:inline-block;position:relative;top:-11px;fill:#fff;margin:0 10px 0 0}.en__chariot__preview.default{background:#004676}.en__chariot__preview.light{background:#fff;border:2px solid #35bbf4}.en__chariot__preview.light .en__chariot__previewIcon{background:url(../images/gateways/buttons/chariot-icon-lightblue.svg) 0 center no-repeat}.en__chariot__preview.light .en__chariot__previewText{color:#35bbf4}.en__chariot__preview.lightBlue{background:#35bbf4}.en__chariot__preview.gradient{background:rgba(0,0,0,0);background-image:linear-gradient(to right,#181c1d,#004676,#00c2ff)}#en__digitalWallet{font-size:0;display:flex;flex-wrap:wrap}#en__digitalWallet .en__digitalWallet__button{display:inline-block;vertical-align:top;position:relative}#en__digitalWallet .en__digitalWallet__container{max-width:750px;max-height:55px}#en__upsellModal{align-items:center;background-color:rgba(0,0,0,.8);bottom:0;display:flex;height:100%;justify-content:center;left:0;overflow-x:hidden;overflow-y:scroll;position:fixed;top:0;width:100vw;z-index:[PHONE REDACTED]}#en__upsellModal .en__upsellModal__container{grid-gap:0;background-color:#fff;border:1px solid #333;border-radius:var(--button_border-radius);display:grid;grid-template-columns:minmax(0,480px) 1fr;margin:auto;max-width:960px;overflow:hidden;position:relative}#en__upsellModal .en__upsellModal__background{background-position:50%;background-repeat:no-repeat;background-size:cover}#en__upsellModal .en__upsellModal__content{min-width:375px;padding:30px}#en__upsellModal.image-right .en__upsellModal__container{grid-template-columns:1fr minmax(0,480px)!important}#en__upsellModal.image-right .en__upsellModal__background{grid-column:2;grid-row:1}#en__upsellModal.image-right .en__upsellModal__content{grid-column:1;grid-row:1}#en__upsellModal #en__upsellModal__close{cursor:pointer;display:block;height:25px;opacity:.3;position:absolute;right:10px;top:5px;transition:opacity .3s ease;width:25px}#en__upsellModal #en__upsellModal__close:after,#en__upsellModal #en__upsellModal__close:before{background-color:#333;content:" ";height:26px;left:10px;position:absolute;width:3px}#en__upsellModal #en__upsellModal__close:after{transform:rotate(-45deg)}#en__upsellModal #en__upsellModal__close:before{transform:rotate(45deg)}#en__upsellModal #en__upsellModal__yes{margin-bottom:12px}#en__upsellModal #en__upsellModal__no button,#en__upsellModal #en__upsellModal__yes button{align-items:center;display:flex;justify-content:center;position:relative;text-decoration:none;width:100%}#en__upsellModal.en__upsellModal__zoomin .en__upsellModal__withanim{opacity:0;transition:all .2s ease-in-out;transform:scale(.8)}#en__upsellModal.en__upsellModal__zoomin.en__upsellModal__ready .en__upsellModal__withanim{opacity:1;transform:scale(1)}#en__upsellModal.en__upsellModal__zoomin.en__upsellModal__removing .en__upsellModal__withanim{transform:scale(.8);opacity:0}
/*****************************
* 4Site - Engaging Networks - Page Template v1.0.1
* Repository: https://github.com/4SiteStudios/Engaging-Networks-Page-Template
****************************/
/**************************************************************
>>> TABLE OF CONTENTS
***************************************************************
# Base Styles
# General Overrides of EN Styles
# Flexible Images
# Inputs
## General
## Textarea
## Select
## Focus State
## Radio & Checkboxes
## Buttons
# Error Messages
## Input Errors
## Page Errors
# Loading Spinner
# Components
## Form Block: Personal Information
## Copy Block: Personal Information Title
## Form Block: Address
## Copy Block: Address Title
## Form Block: Payment Information
## Copy Block: Payment Information Title
## Form Block: Recurring Payment
## Form Block: Donation Amount
## Copy Block: Advocacy
## Contact Block Component: Msg Details
***************************************************************/
/************************************
* Base Styles
***********************************/
body {
background-color: #ffffff;
margin: 0;
color: #2a2a2a;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 100%;
line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6,
strong {
font-weight: 500;
}
#main-content-wrapper {
margin: 0 auto;
max-width: 41.25rem;
width: 100%;
}
#main-content {
background-color: #ffffff;
padding: 2.1875rem 0 4.375rem 0;
}
#main-content-inner {
margin: 0 auto;
padding: 0 1.875rem;
}
@media (min-width: 41.25em) {
body {
background-color: #eeeeee;
}
#main-content {
margin: 2.1875rem;
border-radius: 0.4375rem;
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
}
}
/************************************
* General overrides of EN styles
***********************************/
#main-content-inner > p:first-of-type {
text-align: center;
}
#main-content .en__component--column,
#main-content .en__field__element {
min-width: 100% !important;
}
#main-content .en__field__item {
width: 100%;
}
#main-content .en__field__label {
max-width: 100%;
width: auto;
}
/**
* Flexible images
*/
#main-content img {
max-width: 100%;
height: auto !important;
}
/************************************
* Inputs
***********************************/
/* General */
#main-content input[type="date"],
#main-content input[type="datetime"],
#main-content input[type="datetime-local"],
#main-content input[type="email"],
#main-content input[type="month"],
#main-content input[type="number"],
#main-content input[type="password"],
#main-content input[type="range"],
#main-content input[type="search"],
#main-content input[type="tel"],
#main-content input[type="text"],
#main-content input[type="time"],
#main-content input[type="url"],
#main-content input[type="week"],
#main-content textarea {
max-width: 100%;
width: 100%;
min-width: initial;
display: block;
-webkit-box-sizing: border-box;
box-sizing: border-box;
height: 2.4375rem;
margin: 0 0 1rem;
padding: 0.5rem;
border: 1px solid #cacaca;
border-radius: 0.1875rem;
background-color: #fefefe;
-webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
font-family: inherit;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
color: #0a0a0a;
-webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
#main-content textarea {
height: 20rem;
resize: vertical;
}
#main-content select {
height: 2.4375rem;
width: 100%;
margin: 0 0 1rem;
padding: 0.5rem;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 1px solid #cacaca;
border-radius: 0.1875rem;
background-color: #fefefe;
font-family: inherit;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
color: #0a0a0a;
background-image: url("data:image/svg+xml;utf8,");
background-origin: content-box;
background-position: right center;
background-position: right -1rem center;
background-repeat: no-repeat;
background-size: 0.5625rem 0.375rem;
padding-right: 1.5rem;
-webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
/* Focus state */
#main-content input[type="date"]:focus,
#main-content input[type="datetime"]:focus,
#main-content input[type="datetime-local"]:focus,
#main-content input[type="email"]:focus,
#main-content input[type="month"]:focus,
#main-content input[type="number"]:focus,
#main-content input[type="password"]:focus,
#main-content input[type="range"]:focus,
#main-content input[type="search"]:focus,
#main-content input[type="tel"]:focus,
#main-content input[type="text"]:focus,
#main-content input[type="time"]:focus,
#main-content input[type="url"]:focus,
#main-content input[type="week"]:focus,
#main-content select:focus,
#main-content textarea:focus {
outline: none;
border: 1px solid #8a8a8a;
background-color: #fefefe;
-webkit-box-shadow: 0 0 0.3125rem #cacaca;
box-shadow: 0 0 0.3125rem #cacaca;
-webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
/* Radio & Checkbox Inputs */
#main-content .en__field__input--radio,
#main-content .en__field__input--checkbox {
border: 0;
clip: rect(0 0 0 0);
-webkit-clip-path: inset(50%);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
}
#main-content .en__field__input--radio+.en__field__label,
#main-content .en__field__input--checkbox+.en__field__label {
position: relative;
margin-left: 2rem;
cursor: pointer;
}
#main-content .en__field__input--radio+.en__field__label:before,
#main-content .en__field__input--checkbox+.en__field__label:before {
content: "";
position: absolute;
left: -2rem;
height: 1.5rem;
width: 1.5rem;
margin-right: .5em;
display: inline-block;
vertical-align: middle;
border: 1px solid #c3c3c3;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 0 5px #fff;
box-shadow: inset 0 0 0 5px #fff;
cursor: pointer;
-webkit-transition-duration: .25s;
transition-duration: .25s;
-webkit-transition-property: border-color, background-color;
transition-property: border-color, background-color;
}
#main-content .en__field__input--checkbox+.en__field__label:before {
border-radius: 10%;
-webkit-box-shadow: none;
box-shadow: none;
}
#main-content .en__field__input--radio:checked+.en__field__label:before,
#main-content .en__field__input--checkbox:checked+.en__field__label:before {
border-color: #2ba6cb;
background-color: #2ba6cb;
}
#main-content .en__field__input--checkbox:checked+.en__field__label:before {
content: "\a0\2713";
border-color: #2ba6cb;
background-color: #2ba6cb;
color: #ffffff;
}
#main-content .en__field__input--radio:focus + .en__field__label:before,
#main-content .en__field__input--checkbox:focus + .en__field__label:before {
outline: #8a8a8a auto 0.3125rem;
}
/* Buttons */
#main-content button {
display: block;
width: 100%;
margin: 0 0 1rem 0;
font-family: inherit;
padding: 0.85rem 1rem;
-webkit-appearance: none;
border: 1px solid transparent;
border-radius: 0.1875rem;
-webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
transition: background-color 0.25s ease-out, color 0.25s ease-out;
font-size: 1rem;
text-align: center;
cursor: pointer;
background-color: #2ba6cb;
color: #fefefe;
}
#main-content .en__submit {
width: 100%;
margin-top: 2rem;
}
#main-content button:hover,
#main-content button:focus {
background-color: #258dad;
}
#main-content button[disabled],
#main-content button[disabled]:hover,
#main-content button[disabled]:focus {
background-color: #1779ba;
color: #fefefe;
}
#main-content button[disabled] {
opacity: 0.25;
cursor: not-allowed;
}
/* Split Text: 2Up */
@media (min-width: 41.25em) {
#main-content .en__field__element--splittext > .en__field__item {
width: 48.75%;
}
#main-content .en__field__element--splittext > .en__field__item:first-child {
margin-right: 0.25rem;
}
#main-content .en__field__element--splittext > .en__field__item:last-child {
margin-left: 0.25rem;
}
}
/* Split Triple Text: 3Up */
@media (min-width: 41.25em) {
#main-content .en__field__element--tripletext > .en__field__item {
width: 31.75%;
}
#main-content .en__field__element--tripletext > .en__field__item:nth-of-type(2) {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
}
/* Split Select: 2Up */
@media (min-width: 41.25em) {
#main-content .en__field__element--splitselect > .en__field__item {
width: 48.75%;
}
#main-content .en__field__element--splitselect > .en__field__item:nth-of-type(1) {
margin-right: 0.25rem;
}
#main-content .en__field__element--splitselect > .en__field__item:nth-of-type(2) {
margin-left: 0.25rem;
}
}
/* Split Triple Select: 3Up */
@media (min-width: 41.25em) {
#main-content .en__field__element--tripleselect > .en__field__item {
width: 31.75%;
}
#main-content .en__field__element--tripleselect > .en__field__item:nth-of-type(2) {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
}
/* Sample Radio: 3Up */
@media (min-width: 41.25em) {
#main-content .en__field--sample-radio > .en__field__element--radio > .en__field__item {
width: 31.75%;
}
#main-content .en__field--sample-radio > .en__field__element--radio > .en__field__item:nth-of-type(2n) {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
}
/************************************
* Loading spinner for submit button
***********************************/
.loader {
display: inline-block;
position: relative;
width: 0.75rem;
height: 0.75rem;
margin-top: -0.1875rem;
vertical-align: middle;
}
.loader-quart {
border-radius: 50%;
border: 0.375rem solid rgba(255, 255, 255, 0.4);
}
.loader-quart:after {
content: '';
position: absolute;
top: -0.375rem;
right: -0.375rem;
bottom: -0.375rem;
left: -0.375rem;
border-radius: 3.125rem;
border: 0.375rem solid transparent;
border-top-color: #ffffff;
-webkit-animation: spin 1s linear infinite;
animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
tranform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
tranform: rotate(360deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
tranform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
tranform: rotate(360deg);
}
}
/************************************
* Error Messages
***********************************/
/* Input Errors */
#main-content .en__component .en__field--text {
position: relative;
}
#main-content .en__component .en__field__error {
position: absolute;
top: -1.25rem;
padding: 0.25rem 0.25rem;
color: #b71c1c;
font-size: 0.75rem;
border-radius: 0.1875rem;
background-color: #f4ddda;
}
/* Page Errors */
.en__errorHeader {
margin-left: -1.875rem;
margin-right: -1.875rem;
padding: 0.5rem 2rem;
color: #b71c1c;
font-weight: 700;
text-align: center;
background-color: #f4ddda;
}
.en__errorList > .en__error {
margin-left: -1.875rem;
margin-right: -1.875rem;
padding: 0.5rem 2rem;
list-style: none;
color: #b71c1c;
text-align: center;
background-color: #f4ddda;
}
/************************************
* Components
***********************************/
/**
* Form Block Component: Personal Information
*/
@media (min-width: 41.25em) {
/* Safari 5.1 Windows */
#main-content .en__component--formblock.personal-information > .en__field {
display: inline-block;
width: 48%;
}
#main-content .en__component--formblock.personal-information>.en__field:nth-child(3) {
width: 100%;
}
/* Modern Browsers */
#main-content .en__component--formblock.personal-information {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#main-content .en__component--formblock.personal-information > .en__field {
-ms-flex-preferred-size: 48%;
flex-basis: 48%;
}
#main-content .en__component--formblock.personal-information>.en__field:nth-child(3) {
-ms-flex-preferred-size: 100%;
flex-basis: 100%;
}
#main-content .en__component--formblock.personal-information>.en__field:nth-child(1) {
margin-right: 0.5rem;
}
#main-content .en__component--formblock.personal-information>.en__field:nth-child(2) {
margin-left: 0.5rem;
}
}
/**
* Copy Block Component: Personel Information Title
*/
#main-content .en__component--copyblock.personal-information-title > h2 {
margin-left: 2rem;
}
#main-content .en__component--copyblock.personal-information-title > h2:before {
content: "";
display: inline-block;
vertical-align: baseline;
margin-left: -2rem;
margin-right: 0.5rem;
height: 1.75rem;
width: 1.75rem;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABe0lEQVRYR+2W4TEEQRCFv4sAGZABESACMkAEZIAMiAAZEAEiIANCIALqq9s9e1e7Nd2zVfbPddXV1NZ1v37zeqanZ0xss4nzsyZQo8ABcAK4bjcl/ARegIdmDVc2S+AUuCugnwH3UQYZAu72Iwi8A6hK0TIEboDzIuLc4Ra4iPhmCFjj/Qgo8NqckaJ7hsAXsFFEnDvouxXxzRD4iQB2fELYIacGdE1gcgUmvwV2N1twxGzJds2iZQ7hLvBWRJw77AHvEd8MAfEiZQg3IQGzBHwP3NlQQ/oGVCr0DtQQMMYEKrFKwuQ+0SHp2/JkFWjj+l5GW68tOGW1BEyy2heqsKJBm81LqMSWwG/Xrim9CrhaIg9jUZESAe/yEXCc0vXP+RHwZ1/otSEC7tTRq535KvMvwrwVjmoqs2R9BK6Ay7EZB+LFvu7+t0ogM3bVclwa17oElP25FjUZd9iWo0vAw+KB+w97ag92l0Bm5htLcjEzlq7h2ETF+MkJ/AKQCTkh5Nk4+QAAAABJRU5ErkJggg==');
background-position: 0 0;
background-repeat: no-repeat;
}
/**
* Form Block Component: Address
*/
#main-content .en__component--formblock.address > .en__field--select {
width: 100%;
}
@media (min-width: 41.25em) {
/* Safari 5.1 Windows */
#main-content .en__component--formblock.address > .en__field {
display: inline-block;
width: 48%;
}
/* Modern Browsers */
#main-content .en__component--formblock.address {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#main-content .en__component--formblock.address > .en__field {
-ms-flex-preferred-size: 48%;
flex-basis: 48%;
}
#main-content .en__component--formblock.address > .en__field:nth-child(odd) {
margin-right: 0.5rem;
}
#main-content .en__component--formblock.address > .en__field:nth-child(even) {
margin-left: 0.5rem;
}
}
/**
* Copy Block Component: Address Title
*/
#main-content .en__component--copyblock.address-title > h2 {
margin-left: 2rem;
}
#main-content .en__component--copyblock.address-title > h2:before {
content: "";
display: inline-block;
vertical-align: bottom;
margin-left: -2rem;
margin-right: 0.5rem;
height: 2rem;
width: 1.75rem;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAB6UlEQVRYR6WX/TFlQRDFz4uADKwIEAEbASJABIgAEVgRIAJEgAgQATIgAupXdUeN2Zme7rld9f66fbrP9PdbKC77kjYlrU8/LDxPv1tJdxGTi4DyjqRzSX86mDdJx5Ig0xUvgX+SDrvWfiuAgYgpHgIjzpPTC0lHFoMeAcJ+UzGA4asp73ymHnC0V9HdtdLRI0A+VzKjn5K2MselP4g8SFrKPmBjtRUFiwDVflkANwznSRUSTwWuGQWLACHOQ9rNZ+a0xF5L4kH/iUWA3l7LEJ7Xt6KALfAhAl+Fdq9eSuMuvGXUZcBoMRc+QmBOCuBZ9WURoJ2Y+e6hYhTh49S+oRooKxmwJwq1Nhzqgtoc+JD0tzOI7iUtF089mCZnKAJsvddGkREd5gLthfBqllW116dJyEQMEUC5nAVG0Tc/vWR3Q5gAC4YbYI6wktmoVekNFysNXlIsomr4m71ZWOay2fZ6K/Q4z1jpTelFACDrl8oeETqGeTKLAOByKHnINIdPDvZEYDQK3dd7ayARjkTB9foogUhHmJU/koKEOZV00imAM0noucRbA8kYM57pmB+quaP3aeqxM1wSJdArSFfhzUlBwtb+rESO1h8OIxEAXKYiHPrEYJQA+Pzw8Bwq1ZqYQwCDaf9zHwzJN9UKWyGqF8gUAAAAAElFTkSuQmCC');
background-position: 0 0;
background-repeat: no-repeat;
}
/**
* Form Block Component: Payment Information
*/
#main-content .en__component--formblock.payment-information > .en__field--ccexpire > .en__field__element--splitselect > .en__field__item {
padding: 0;
width: 40%;
}
@media (min-width: 41.25em) {
/* Safari 5.1 Windows */
#main-content .en__component--formblock.payment-information > .en__field {
display: inline-block;
width: 48%;
}
/* Modern Browsers */
#main-content .en__component--formblock.payment-information {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#main-content .en__component--formblock.payment-information > .en__field {
-ms-flex-preferred-size: 48%;
flex-basis: 48%;
}
#main-content .en__component--formblock.payment-information > .en__field:nth-child(odd) {
margin-right: 0.5rem;
}
#main-content .en__component--formblock.payment-information > .en__field:nth-child(even) {
margin-left: 0.5rem;
}
}
/**
* Copy Block Component: Payment Information Title
*/
#main-content .en__component--copyblock.payment-information-title > h2 {
margin-left: 2rem;
}
#main-content .en__component--copyblock.payment-information-title > h2:before {
content: "";
display: inline-block;
vertical-align: baseline;
margin-left: -2rem;
margin-right: 0.5rem;
height: 1.75rem;
width: 2rem;
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAtElEQVRYR+2WwQ3CMAxFXyfoCGUEOgkrsAEjEDZghG5URmg26AYgR40ERVVQgpwe7FsOzn/6tmw3VI6msj4GEB24AyfgoFSSCRiAmwCI+EVJeC0TAGagBXrgoQRyBEZgEoDnIqrdkEHXAN4dUCr/p4wBmAO7csAGkTkQHVgvp9Q7d4JuLqOU4L+2pwHs5x6oeZJ56XwHXHNbuTAvHKUSAnEGusIPf033y1nutKffF6ABVHfgBWDaOs5lsuVZAAAAAElFTkSuQmCC');
background-position: 0 0;
background-repeat: no-repeat;
}
/**
* Form Block Component: Recurring Payment
*/
#main-content .en__component--formblock.recurring-payment > .en__field--recurrfreq {
display: none;
}
#main-content .en__component--formblock.recurring-payment > .en__field--recurrpay .en__field__item {
height: 2.5rem;
width: auto;
}
#main-content .en__component--formblock.recurring-payment > .en__field--recurrpay .en__field__item:nth-child(1) {
margin-right: 0.5rem;
}
#main-content .en__component--formblock.recurring-payment > .en__field--recurrpay .en__field__item:nth-child(2) {
margin-left: 0.5rem;
}
@media (min-width: 31.25em) {
#main-content .en__component--formblock.recurring-payment {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
}
#main-content .en__component--formblock.recurring-payment>.en__field {
-webkit-box-flex: 1;
-ms-flex: auto;
flex: auto;
}
}
/**
* Form Block Component: Donation Amount
*/
/* Safari 5.1 Windows */
#main-content .en__component--formblock.donation-amt .en__field__item.en__field__item--hidden {
display: inline-block;
}
/* Modern Browsers */
#main-content .en__component--formblock.donation-amt .en__field__item.en__field__item--other {
display: inline-flex;
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item {
height: 2.5rem;
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item {
width: 32%;
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item--other {
width: calc(32% - 32px);
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item--other-radio {
width: auto;
}
@media (min-width: 31.25em) {
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item {
width: 32%;
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item--other {
width: calc(32% - 32px);
}
#main-content .en__component--formblock.donation-amt .en__field__element--radio > .en__field__item--other-radio {
width: auto;
}
#main-content .en__component--formblock.recurring-payment > .en__field__element--radio > .en__field__item {
height: 2.5rem;
}
#main-content .en__component--formblock.recurring-payment > .en__field--recurrday .en__field__input--text {
margin-bottom: 0;
}
}
/**
* Copy Block Component: Advocacy
* Contact Block Component: Message Details
* Toggle message area display
*/
#main-content .en__component--copyblock.view-message .btn--view-message {
padding-left: 0;
background-color: #ffffff;
color: inherit;
font-size: 1.5rem;
text-align: left;
}
#main-content .en__component--copyblock.view-message .btn--view-message:before {
content: '\2b';
display: inline-block;
margin-right: 0.5rem;
}
#main-content .en__component--copyblock.view-message .btn--view-message.active:before {
content: '\2212';
display: inline-block;
margin-right: 0.5rem;
}
#main-content .en__component--contactblock.msgDetails .en__field__input--checkbox+.en__field__label:before {
top: -0.5rem;
}
#main-content .en__component--contactblock.msgDetails {
display: none;
}
#main-content .en__component--contactblock.msgDetails.show {
display: block;
margin-bottom: 2rem;
}
/**
* Form Block Component: Select Fields
* Overrides EN Default Styling to ensure mobile friendly widths
*/
.en__field__input--select{
min-width: initial;
}
@media (min-width: 41.25em){
html{
background: url("") no-repeat right top fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
}
body{
background-color: initial;
}
#main-content-wrapper {
margin: initial;
}
/* Add red star for required */
.en__mandatory label.en__field__label:not(.en__field__label--item)::after{
content: "*";
color: red;
}
.en__ticket__selector {display: flex;}
#main-content input[type="text"].en__ticket__quantity {
width: 50%;
max-width: unset;
}
.en__ticket.en__ticket--ENBL {
display: flex;
flex-direction: row;
}
</style>
<!-- End 4Site Custom CSS To Make Multi Step Donation Form Fancy -->
</body>
</html>
|