/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1.5;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* end eric meyer's reset */
.clear:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clear {
  display: inline-block;
}
/* hide IE mac \*/
* html .clear {
  height: 1%;
}
.clear {
  display: block;
}
/* */
* {
  box-sizing: border-box;
}
html,
body {
  font-size: 62.5%;
  height: 100%;
}
body {
  font-size: 1.6rem;
  font-family: "proxima-nova", "Proxima Nova", "Verdana", "Helvetica", Arial, sans-serif;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "proxima-nova", "Proxima Nova", "Verdana", "Helvetica", Arial, sans-serif;
  line-height: 1;
  font-weight: bold;
}
@media screen and (min-width: 640px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.2;
  }
}
h1 {
  font-size: 5.5rem;
}
img {
  height: auto;
  max-width: 100%;
}
strong {
  font-weight: bold;
}
em {
  font-style: oblique;
}
.hidden {
  display: none;
}
.visually-hidden {
  color: transparent;
  font: 0/0;
  height: 0;
  overflow: hidden;
  width: 0;
}
.circle-spinner {
  animation-name: loader-spin;
  animation-duration: 2500ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  border: dotted 0.1rem #aaa;
  border-color: #1D2B36;
  border-radius: 50%;
  height: 2.2rem;
  margin: 2rem auto;
  width: 2.2rem;
}
.circle-spinner.large {
  width: 5rem;
  height: 5rem;
  border-width: 0.4rem;
}
@keyframes loader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bladeFade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.spinner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.spinner .blade {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4%;
  height: 8%;
  width: 100%;
}
.spinner .blade > div {
  width: 25%;
  margin: 0 0 0 auto;
  height: 100%;
  background: #aaa;
  border-radius: 1000px;
  opacity: 1;
  animation-duration: 2500ms;
  animation-name: bladeFade;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.spinner .blade.d02 {
  transform: rotate(-30deg);
}
.spinner .blade.d02 > div {
  animation-delay: -208.33333333ms;
}
.spinner .blade.d03 {
  transform: rotate(-60deg);
}
.spinner .blade.d03 > div {
  animation-delay: -416.66666667ms;
}
.spinner .blade.d04 {
  transform: rotate(-90deg);
}
.spinner .blade.d04 > div {
  animation-delay: -625ms;
}
.spinner .blade.d05 {
  transform: rotate(-120deg);
}
.spinner .blade.d05 > div {
  animation-delay: -833.33333333ms;
}
.spinner .blade.d06 {
  transform: rotate(-150deg);
}
.spinner .blade.d06 > div {
  animation-delay: -1041.66666667ms;
}
.spinner .blade.d07 {
  transform: rotate(-180deg);
}
.spinner .blade.d07 > div {
  animation-delay: -1250ms;
}
.spinner .blade.d08 {
  transform: rotate(-210deg);
}
.spinner .blade.d08 > div {
  animation-delay: -1458.33333333ms;
}
.spinner .blade.d09 {
  transform: rotate(-240deg);
}
.spinner .blade.d09 > div {
  animation-delay: -1666.66666667ms;
}
.spinner .blade.d10 {
  transform: rotate(-270deg);
}
.spinner .blade.d10 > div {
  animation-delay: -1875ms;
}
.spinner .blade.d11 {
  transform: rotate(-300deg);
}
.spinner .blade.d11 > div {
  animation-delay: -2083.33333333ms;
}
.spinner .blade.d12 {
  transform: rotate(-330deg);
}
.spinner .blade.d12 > div {
  animation-delay: -2291.66666667ms;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
  animation-name: fadeIn;
}
.copy {
  margin: 0 auto;
  max-width: 72ch;
}
.inline {
  display: inline;
  margin: 0;
  padding: 0;
}
.inline li {
  display: inline;
}
ul.piped li,
ol.piped li {
  margin: 0;
  padding: 0;
}
ul.piped li::before,
ol.piped li::before {
  content: '|\00a0';
  display: inline-block;
}
ul.piped li:first-child::before,
ol.piped li:first-child::before {
  content: '';
  display: none;
}
h1 {
  font-size: 30px;
}
@media screen and (min-width: 640px) {
  h1 {
    font-size: 40px;
  }
}
.stickybar {
  background-color: #f8fafe;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  left: 0;
  right: 0;
  position: fixed;
  top: -5rem;
  transition: top 300ms;
  z-index: 10;
}
.stickybar-fftf-logo {
  background: url('https://s3.fightforthefuture.org/img/brand/512X66_large_black_color.png?1473544884689') no-repeat center center;
  background-size: contain;
  display: none;
  font: 0/0 transparent;
  height: 4rem;
  margin: 0.5rem 0.5rem 0.5rem 2rem;
  width: 23rem;
}
@media screen and (min-width: 960px) {
  .stickybar-fftf-logo {
    display: block;
  }
}
.stickybar-take-action {
  background-color: #f5315f;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 2rem;
  font-variant: small-caps;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 200ms;
  width: 100%;
}
@media screen and (min-width: 640px) {
  .stickybar-take-action {
    flex-grow: 1;
    width: auto;
  }
}
@media screen and (min-width: 960px) {
  .stickybar-take-action {
    margin-left: auto;
    max-width: 26rem;
    width: 33%;
  }
}
.stickybar-take-action:focus {
  outline: 0;
}
.stickybar-take-action:hover,
.stickybar-take-action:active {
  background-color: #e80b3f;
}
.stickybar-share-donate {
  display: none;
  height: 5rem;
  min-width: 8rem;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .stickybar-share-donate {
    display: flex;
  }
}
@media screen and (min-width: 640px) {
  .stickybar-share-donate {
    flex-grow: 1;
    justify-content: space-between;
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .stickybar-share-donate {
    justify-content: flex-end;
  }
}
.stickybar-share-links {
  display: flex;
  margin-right: 1rem;
  padding: 1rem 0;
}
.stickybar-share-links a {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center 2px;
  display: block;
  font: 0/0 transparent;
  height: 3rem;
  min-width: 4rem;
}
@media screen and (min-width: 640px) {
  .stickybar-share-links a {
    padding: 0 3rem;
  }
}
.stickybar-share-links .stickybar-facebook-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-fb-f.png?1473544884690');
  background-size: 2.5rem auto;
  border-right: 0.1rem solid #eaeef7;
}
.stickybar-share-links .stickybar-twitter-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-tw-t.png?1473544884690');
  background-position: center 2px;
  background-size: 3rem auto;
}
.stickybar-donate {
  background-color: #eaeef7;
  display: none;
  transition: background-color 200ms, color 200ms;
}
@media screen and (min-width: 640px) {
  .stickybar-donate {
    display: block;
    width: 21rem;
  }
}
.stickybar-donate:hover {
  background-color: #e1e7f3;
}
.stickybar-donate:hover a::before {
  background-image: url('https://s3.fightforthefuture.org/img/brand/heart-icon-f1453b.svg?1473544884690');
}
.stickybar-donate a {
  display: block;
  font-weight: bold;
  padding: 0.5rem 1.3rem;
  transition: top 100ms;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (min-width: 640px) {
  .stickybar-donate a {
    padding: 1.1rem 4rem;
  }
}
.stickybar-donate a:link,
.stickybar-donate a:visited,
.stickybar-donate a:hover,
.stickybar-donate a:active,
.stickybar-donate a:focus {
  text-decoration: none;
}
.stickybar-donate a:link,
.stickybar-donate a:visited {
  color: #303c5b;
}
.stickybar-donate a:active,
.stickybar-donate a:focus {
  position: relative;
  top: 0.1rem;
}
.stickybar-donate a::before {
  background-image: url('https://s3.fightforthefuture.org/img/brand/heart-icon-ffffff.svg?1473544884690');
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  position: relative;
  height: 2.1rem;
  top: 0.4rem;
  width: 2.1rem;
}
.shadow-snapshot {
  border: white solid 0.5rem;
  box-shadow: 0 0 1.6rem 0.2rem rgba(93, 98, 115, 0.35);
  display: block;
  margin: 0.8rem auto;
  max-width: calc(100% - 2rem);
}
.shadow-snapshot img {
  display: block;
}
.shadow-snapshot figcaption {
  color: transparent;
  height: 0;
  overflow: hidden;
}
.expand-text {
  background-color: transparent;
  border: none;
  color: #303C5B;
  cursor: pointer;
  display: block;
  font-size: 1.4rem;
  font-variant: small-caps;
  font-weight: bold;
  height: 1.5em;
  text-align: left;
  text-transform: uppercase;
  transition: color 150ms;
  width: 100%;
}
.expand-text:hover {
  color: #42527c;
}
.expand-text:hover::before {
  text-decoration: none;
}
.expand-text:active {
  outline: none;
}
.expand-text::before {
  content: '\25BE';
  font-size: 2.6rem;
  line-height: 0;
  margin-right: 0.6rem;
  vertical-align: sub;
}
.expand-text::after {
  background-image: linear-gradient(transparent, #fff);
  bottom: 0;
  content: ' ';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.expanded-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1500ms;
}
.expanded-text.expanded {
  max-height: 10000px;
}
@media screen and (min-width: 768px) {
  .share-this-button-links {
    display: flex;
    justify-content: center;
  }
}
.share-this-button-links a {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.09rem;
  opacity: 0.9;
  padding: 1.4rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 150ms;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .share-this-button-links a {
    max-width: 35rem;
  }
}
.share-this-button-links a:hover {
  opacity: 1;
}
.share-this-button-links a::before {
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
  display: inline-block;
  height: 2.9rem;
  position: relative;
  width: 2.9rem;
}
.share-this-button-links a.share-this-fb {
  background-color: #3b5999;
}
.share-this-button-links a.share-this-fb::before {
  background-image: url('https://s3.fightforthefuture.org/img/share/fb-57.png?1473544884690');
  top: 0.3rem;
}
.share-this-button-links a.share-this-tw {
  background-color: #55acee;
}
.share-this-button-links a.share-this-tw::before {
  background-image: url('https://s3.fightforthefuture.org/img/share/tw-57.png?1473544884690');
  top: 0.8rem;
}
.share-this-button-links a.share-this-donate {
  background-color: #3b69ed;
  padding-top: 1.8rem;
}
.share-this-button-links a.share-this-donate::before {
  background-image: url('https://s3.fightforthefuture.org/img/brand/heart-icon-ffffff.svg?1473544884690');
  height: 2.4rem;
  top: 0.5rem;
  width: 2.4rem;
}
.share-this-button-links a.share-this-donate:hover::before {
  background-image: url('https://s3.fightforthefuture.org/img/brand/heart-icon-f1453b.svg?1473544884690');
}
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.video {
  border-radius: 1rem;
  height: 0;
  margin-bottom: 2rem;
  overflow: hidden;
  padding-bottom: 56.25%;
  padding-top: 30px;
  position: relative;
}
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay {
  background: rgba(51, 51, 51, 0.5);
  opacity: 0;
  overflow: auto;
  padding: 2rem;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 400ms ease-in-out;
  z-index: 9001;
}
@media screen and (min-width: 480px) {
  .overlay {
    padding: 2rem 3rem;
  }
}
@media screen and (min-width: 640px) {
  .overlay {
    padding: 2rem;
  }
}
.overlay.visible {
  opacity: 1;
}
.modal-content {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 2rem rgba(51, 51, 51, 0.3);
  color: #333;
  display: block;
  margin: 0 auto;
  max-width: 60rem;
  padding: 2rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .modal-content {
    margin: 5rem auto 0;
  }
}
.modal-content h3 {
  font-size: 4.5rem;
  line-height: 1.4;
  text-align: center;
  color: #aaa;
  font-weight: 600;
}
@media screen and (min-width: 640px) {
  .modal-content h3 {
    font-size: 5rem;
  }
}
.modal-content p {
  line-height: 1.375;
  margin-bottom: 1.5rem;
}
.modal-content .share-this-button-links {
  margin-bottom: 1.5rem;
}
.close-modal {
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 2.5rem;
  opacity: 0.4;
  position: absolute;
  right: 0.5rem;
  text-decoration: none;
  top: 0;
}
.clean-edge {
  padding-left: 0;
  padding-right: 0;
}
.petition {
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.5;
  padding: 0;
}
.petition main {
  margin: 0 auto 2rem;
  max-width: 960px;
}
.petition h1 {
  font-size: 3.5rem;
  hyphens: auto;
  margin: 3rem auto;
  max-width: 960px;
  padding: 0 1rem;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .petition h1 {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 960px) {
  .petition h1 {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .petition h1 {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1920px) {
  .petition h1 {
    font-size: 6.4rem;
  }
}
.petition h1.smaller {
  font-size: 3rem;
}
@media screen and (min-width: 960px) {
  .petition h1.smaller {
    font-size: 3.1rem;
  }
}
@media screen and (min-width: 1440px) {
  .petition h1.smaller {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1920px) {
  .petition h1.smaller {
    font-size: 3.25rem;
  }
}
.petition h2 {
  font-size: 2.6rem;
}
.petition p {
  margin-bottom: 1em;
  position: relative;
}
.petition blockquote {
  margin-bottom: 1.5rem;
}
.petition ul {
  list-style-type: disc;
}
.petition ul.logo-cloud {
  list-style-type: none;
}
.petition ul.logo-cloud li {
  height: 100%;
  margin-left: 2rem;
}
.petition .signatures {
  display: flex;
  margin: 0 auto 1.5rem;
}
.petition progress {
  border: 0;
  width: 100%;
}
.petition figcaption {
  font-size: 1.4rem;
  font-style: italic;
}
.petition .petition-box {
  background-color: #303C5B;
  color: #fff;
  margin: 2.5rem auto;
}
.petition .petition-text {
  text-align: center;
}
.petition label {
  display: block;
  height: 0;
  font-size: 0.7em;
  overflow: hidden;
}
.petition .name,
.petition .address,
.petition .city,
.petition .email,
.petition .zip,
.petition textarea {
  border: none;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  padding: 1.2rem;
  width: 100%;
}
.petition .name::-webkit-input-placeholder,
.petition .address::-webkit-input-placeholder,
.petition .city::-webkit-input-placeholder,
.petition .email::-webkit-input-placeholder,
.petition .zip::-webkit-input-placeholder,
.petition textarea::-webkit-input-placeholder {
  font-size: 1.4rem;
}
.petition [type="submit"] {
  appearance: none;
  background-color: #f5315f;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  font-family: "proxima-nova", "Proxima Nova", "Verdana", "Helvetica", Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding: 1.4rem 0;
  text-transform: uppercase;
  transition: background-color 300ms, bottom 100ms;
  width: 100%;
}
.petition [type="submit"]:focus {
  outline: 0;
}
.petition [type="submit"]:hover {
  background-color: #e80b3f;
}
.petition [type="submit"]:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.petition [for="opt-in"],
.petition [for="select-country"] {
  cursor: pointer;
  height: auto;
  text-align: center;
}
.petition [for="opt-in"] {
  background-color: white;
  color: #303C5B;
  padding: 1rem 5px;
}
.petition [for="select-country"] {
  font-size: 0.9rem;
  margin: 0.5rem 0 1.5rem 0;
  text-align: right;
  width: 100%;
  color: #cdcde7;
}
.petition [for="select-country"]:hover,
.petition [for="select-country"]:active,
.petition [for="select-country"]:focus {
  text-decoration: underline;
}
.petition [for="select-country"].hidden {
  height: 0;
  margin: 0;
}
.petition select {
  display: none;
  margin: 1.5rem auto;
  max-width: 100%;
  width: 100%;
}
.petition select.visible {
  display: block;
}
.petition .petition-info {
  overflow: hidden;
  padding: 0 1rem;
}
.petition-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.action-network-footer .an-footer-cta {
  display: none;
}
.footer-meta-links {
  background-color: #091128;
  color: #303C5B;
  font-variant: small-caps;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 640px) {
  .footer-meta-links {
    align-items: stretch;
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 960px) {
  .footer-meta-links {
    padding-bottom: 5rem;
  }
}
.footer-meta-links .cta {
  display: none;
}
.an-footer-meta {
  background-color: #0E1B42;
  padding: 3.5rem;
}
@media screen and (min-width: 640px) {
  .an-footer-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 34.6rem;
    min-width: 28rem;
  }
}
.an-footer-meta p {
  margin-bottom: 5px;
}
.an-footer-logo {
  background: url('https://s3.fightforthefuture.org/img/brand/512X66_large_white_color.png?1473544884690') no-repeat center center;
  background-size: 21rem auto;
  border: 0;
  color: transparent;
  display: block;
  font: 0/0 a;
  height: 2.7rem;
}
.an-footer-info {
  background-color: #13265E;
  color: #8696c7;
  font-size: 1.4rem;
  padding: 2.5rem 2.5rem 1rem;
}
@media screen and (min-width: 480px) {
  .an-footer-info {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 640px) {
  .an-footer-info {
    width: 70rem;
  }
}
.an-footer-info a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
  transition: opacity 150ms;
}
.an-footer-info a:hover,
.an-footer-info a:active {
  opacity: 1;
}
.an-footer-info p {
  font-size: 1.7rem;
  line-height: 2.2rem;
}
.stickybar.blue-one-column {
  background-color: #091128;
}
.stickybar.blue-one-column .stickybar-fftf-logo {
  background-image: url('https://s3.fightforthefuture.org/img/brand/512X66_large_white_color.png?1473544884690');
}
.stickybar.blue-one-column .stickybar-facebook-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-fb-f-white.png?1473544884690');
  border-right: 0.1rem solid rgba(234, 238, 247, 0.8);
}
.stickybar.blue-one-column .stickybar-twitter-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-tw-t-white.png?1473544884690');
}
.stickybar.blue-one-column .stickybar-donate {
  background-color: #13265E;
}
.stickybar.blue-one-column .stickybar-donate a:link,
.stickybar.blue-one-column .stickybar-donate a:visited {
  color: #fff;
}
.stickybar.blue-one-column .stickybar-donate a:hover,
.stickybar.blue-one-column .stickybar-donate a:active {
  color: #fff;
}
.stickybar.blue-one-column .stickybar-take-action {
  background-color: #55acee;
}
.stickybar.blue-one-column .stickybar-take-action:hover,
.stickybar.blue-one-column .stickybar-take-action:active {
  background-color: #2795e9;
}
.hero.blue-one-column {
  background-color: #162b43;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 115%;
  color: #fff;
  padding: 2rem 2rem 10rem;
  text-align: center;
}
@media screen and (min-width: 480px) {
  .hero.blue-one-column {
    padding-bottom: 25rem;
  }
}
@media screen and (min-width: 640px) {
  .hero.blue-one-column {
    padding-bottom: 15rem;
  }
}
.blue-one-column .petition-box {
  background-color: #2c3650;
  border-bottom: 3.5rem #fff solid;
  display: flex;
  flex-direction: column;
  margin: 2rem;
  margin-top: -5.5rem;
  max-width: 640px;
  padding: 1.5rem 1.5rem 0;
  position: relative;
}
@media screen and (min-width: 480px) {
  .blue-one-column .petition-box {
    margin-top: -18.5rem;
  }
}
@media screen and (min-width: 640px) {
  .blue-one-column .petition-box {
    margin: -10.5rem auto 2rem;
    min-width: 60rem;
  }
}
@media screen and (min-width: 768px) {
  .blue-one-column .petition-box {
    max-width: 75rem;
    padding: 3rem 3rem 0;
  }
}
@media screen and (min-width: 1120px) {
  .blue-one-column .petition-box {
    max-width: 90rem;
  }
}
.blue-one-column .petition-text {
  order: 20;
}
.blue-one-column .petition-text h2 {
  color: transparent;
  font: 0/0;
  height: 0;
  overflow: hidden;
  width: 0;
}
.blue-one-column .petition-text p {
  font-size: 1.9rem;
}
.blue-one-column .name,
.blue-one-column .address,
.blue-one-column .city,
.blue-one-column .email,
.blue-one-column .zip,
.blue-one-column textarea {
  border-radius: 0.4rem;
}
@media screen and (min-width: 480px) {
  .blue-one-column .email {
    margin-right: 0.5rem;
    width: calc(70% - 0.5rem);
  }
}
@media screen and (min-width: 480px) {
  .blue-one-column .zip {
    width: 30%;
  }
}
.blue-one-column [type="submit"] {
  order: 100;
}
@media screen and (min-width: 480px) {
  .blue-one-column [type="submit"] {
    font-weight: 600;
  }
}
.blue-one-column [for="select-country"] {
  margin: 0 0 0.5rem;
  order: 40;
  width: 100%;
}
.blue-one-column select {
  order: 40;
}
.blue-one-column [for="opt-in"] {
  background: #fff;
  color: #333;
  left: -1.5rem;
  margin: 0;
  order: 30;
  padding: 1.5rem 1rem;
  position: relative;
  width: calc(100% + 3rem);
}
@media screen and (min-width: 768px) {
  .blue-one-column [for="opt-in"] {
    left: -3rem;
    width: calc(100% + 6rem);
  }
}
.blue-one-column [for="opt-in"] a:link,
.blue-one-column [for="opt-in"] a:visited,
.blue-one-column [for="opt-in"] a:hover,
.blue-one-column [for="opt-in"] a:active,
.blue-one-column [for="opt-in"] a:focus {
  color: #333;
}
.blue-one-column .petition-form {
  margin-bottom: 1.5rem;
  order: 20;
}
@media screen and (min-width: 768px) {
  .blue-one-column .petition-form {
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 640px) {
  .blue-one-column .length-2.address,
  .blue-one-column .length-2.city {
    width: calc(50% - 0.25rem);
  }
  .blue-one-column .length-2.address {
    margin-right: 0.5rem;
  }
}
.blue-one-column .signatures {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  left: 0;
  margin: 0;
  order: 10;
  position: absolute;
  right: 0;
  top: -2.9rem;
}
.blue-one-column .progress-top,
.blue-one-column .progress-bottom {
  text-align: center;
  width: 100%;
}
.blue-one-column .progress-top {
  order: 10;
  text-align: left;
  width: auto;
}
.blue-one-column .progress-bottom {
  order: 20;
  text-align: right;
  width: auto;
}
.blue-one-column progress {
  height: 0.8rem;
  order: 30;
  padding: 0;
}
.blue-one-column progress::-webkit-progress-value {
  background-color: #f5315f;
}
.blue-one-column progress::-webkit-progress-bar {
  background-color: #506292;
}
.blue-one-column .petition-info {
  margin: 0 auto;
  max-width: 65ch;
}
.blue-one-column .expand-text {
  text-align: center;
}
main.blue-one-column {
  padding: 0 1rem;
}
main.blue-one-column h2 {
  color: #303C5B;
  text-align: center;
  text-transform: uppercase;
}
main.blue-one-column h2::after {
  content: '\0023E4';
  display: block;
  font-weight: 100;
  margin-bottom: 1rem;
}
footer.blue-one-column {
  background-color: #162b43;
  padding: 2rem;
}
footer.blue-one-column .footer-meta-links {
  margin: 0 auto;
  max-width: 960px;
}
@media screen and (min-width: 640px) {
  footer.blue-one-column .footer-meta-links {
    background-color: #2c3650;
  }
}
footer.blue-one-column .share-this-button-links {
  margin: 0 auto;
  max-width: 960px;
}
footer.blue-one-column .an-footer-cta {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
  padding: 0 1rem 2rem;
  text-align: center;
  text-transform: uppercase;
}
footer.blue-one-column .an-footer-info {
  background-color: #1e3753;
  color: rgba(255, 255, 255, 0.35);
}
footer.blue-one-column .footer-meta-links {
  background-color: #162b43;
}
.blue-one-column .share-this-button-links a.share-this-donate {
  background-color: #42527c;
}
.white-two-column {
  color: #333;
  margin-bottom: 9rem;
}
@media screen and (min-width: 640px) {
  main.white-two-column {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 3rem;
    margin-top: 2rem;
    padding: 0 1rem;
  }
}
main.white-two-column a {
  color: #2054b3;
  font-weight: 600;
}
main.white-two-column a:link,
main.white-two-column a:visited {
  text-decoration: none;
}
main.white-two-column a:hover,
main.white-two-column a:active,
main.white-two-column a:focus {
  text-decoration: underline;
}
main.white-two-column h2 {
  margin-bottom: 0.5em;
}
main.white-two-column h2 a:link,
main.white-two-column h2 a:visited {
  text-decoration: underline;
}
.white-two-column img {
  display: block;
}
.white-two-column h1 {
  color: #2c3650;
}
.white-two-column strong {
  font-weight: bold;
}
.white-two-column .signatures {
  flex-direction: column;
  padding: 0 1.5rem;
}
.white-two-column .progress-top,
.white-two-column .progress-bottom {
  color: #cdcde7;
  width: 100%;
}
.white-two-column .progress-top {
  text-align: left;
}
.white-two-column .progress-bottom {
  order: 4;
  text-align: right;
}
.white-two-column progress {
  background-color: #2c3650;
  border-radius: 3rem;
  overflow: hidden;
  padding: 0.1rem;
  height: 1rem;
  vertical-align: middle;
}
.white-two-column progress::-webkit-progress-value {
  background-color: #ff3057;
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.white-two-column progress::-moz-progress-bar {
  background-color: #ff3057;
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.white-two-column progress::-ms-fill {
  background-color: #ff3057;
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.white-two-column progress::-webkit-progress-bar {
  background-color: #2c3650;
  border-radius: 0.4rem;
}
.white-two-column .petition .name,
.white-two-column .petition .address,
.white-two-column .petition .city,
.white-two-column .petition .email,
.white-two-column .petition .zip,
.white-two-column .petition textarea {
  font-size: 1.8rem;
  padding: 1.5rem;
}
.white-two-column .petition p {
  font-size: 2rem;
  line-height: 2.9rem;
}
.white-two-column .petition blockquote p {
  color: #ecedfb;
  font-size: 0.8em;
  line-height: 2rem;
}
.white-two-column .petition-box {
  margin: 2.5rem 1rem;
}
@media screen and (min-width: 640px) {
  .white-two-column .petition-box {
    margin: 0 auto 2.5rem;
    min-width: 33rem;
    width: 34rem;
  }
}
.white-two-column .petition-text {
  padding: 1.5rem 1.5rem 0;
}
.white-two-column .petition-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
}
.white-two-column .petition-form {
  background-color: rgba(51, 51, 51, 0.3);
  box-shadow: 0 1.4rem 4rem -0.7rem rgba(139, 139, 139, 0.53);
  opacity: 1;
  padding: 2rem 1.5rem 5.2rem;
  position: relative;
  transition: opacity 250ms, visibility 0ms 300ms;
  visibility: visible;
}
.white-two-column .petition-form.submitted {
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 480px) {
  .white-two-column .email {
    width: calc(70% - 0.5rem);
  }
}
@media screen and (min-width: 480px) {
  .white-two-column .zip {
    width: 30%;
  }
}
@media screen and (min-width: 640px) {
  .white-two-column .email,
  .white-two-column .zip {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .white-two-column .address.length-2,
  .white-two-column .city.length-2 {
    width: calc(50% - 0.25rem);
  }
}
@media screen and (min-width: 640px) {
  .white-two-column .address.length-2,
  .white-two-column .city.length-2 {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .white-two-column .address.length-2 {
    margin-right: 0.5rem;
  }
}
@media screen and (min-width: 640px) {
  .white-two-column .address.length-2 {
    margin-right: 0;
  }
}
.white-two-column [type="submit"] {
  height: 6rem;
  line-height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  font-weight: 900;
}
.white-two-column [type="submit"]:active {
  bottom: -1px;
}
@media screen and (min-width: 640px) {
  .white-two-column .petition-info {
    padding: 0 2rem 0 0;
  }
}
.white-two-column .petition-info h2 {
  font-weight: 400;
}
.white-two-column .name::placeholder,
.white-two-column .address::placeholder,
.white-two-column .city::placeholder,
.white-two-column .email::placeholder,
.white-two-column .zip::placeholder,
.white-two-column textarea::placeholder {
  color: #4f4f69;
}
.white-two-column [for="opt-in"] {
  background-color: #fff;
  color: #8889a0;
  padding: 2rem 0.5rem;
}
.white-two-column .an-footer-cta {
  display: none;
}
.stickybar.blue-two-column {
  background-color: #091128;
}
.stickybar.blue-two-column .stickybar-fftf-logo {
  background-image: url('https://s3.fightforthefuture.org/img/brand/512X66_large_white_color.png?1473544884690');
}
.stickybar.blue-two-column .stickybar-facebook-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-fb-f-white.png?1473544884690');
  border-right: 0.1rem solid rgba(234, 238, 247, 0.8);
}
.stickybar.blue-two-column .stickybar-twitter-share {
  background-image: url('https://s3.fightforthefuture.org/img/share/little-tw-t-white.png?1473544884690');
}
.stickybar.blue-two-column .stickybar-donate {
  background-color: #13265E;
}
.stickybar.blue-two-column .stickybar-donate a:link,
.stickybar.blue-two-column .stickybar-donate a:visited {
  color: #fff;
}
.stickybar.blue-two-column .stickybar-donate a:hover,
.stickybar.blue-two-column .stickybar-donate a:active {
  color: #fff;
}
.stickybar.blue-two-column .stickybar-take-action {
  background-color: #55acee;
}
.stickybar.blue-two-column .stickybar-take-action:hover,
.stickybar.blue-two-column .stickybar-take-action:active {
  background-color: #2795e9;
}
.hero.blue-two-column {
  background-color: #0E1B42;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  color: #fff;
  padding: 2rem 1rem 10rem;
}
@media screen and (min-width: 640px) {
  .hero.blue-two-column {
    padding: 5rem 1rem 20rem;
  }
}
.hero.blue-two-column blockquote {
  font-weight: 300;
}
.blue-two-column h1,
.blue-two-column h2 {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 480px) {
  .blue-two-column h1,
  .blue-two-column h2 {
    margin-bottom: 3.5rem;
  }
}
.blue-two-column h1 {
  line-height: 1.1;
  padding: 0;
}
.blue-two-column h2 {
  color: #ffcf5c;
  font-weight: 400;
  text-align: center;
}
.blue-two-column h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.blue-two-column .petition-box {
  background-color: #091128;
  margin: 0 auto 2.5rem;
  max-width: 93.75%;
  min-width: 30rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (min-width: 640px) {
  .blue-two-column .petition-box {
    margin-top: 0;
    padding: 2rem;
    width: 40rem;
  }
}
@media screen and (min-width: 768px) {
  .blue-two-column .petition-box {
    padding: 3rem;
  }
}
@media screen and (min-width: 960px) {
  .blue-two-column .petition-box {
    padding: 4rem;
  }
}
.blue-two-column .signatures {
  flex-direction: column;
}
.blue-two-column .progress-top {
  text-align: left;
}
.blue-two-column .progress-bottom {
  order: 30;
  text-align: right;
}
.blue-two-column progress {
  height: 0.8rem;
  padding: 0;
}
.blue-two-column progress::-webkit-progress-value {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 0, transparent 50%, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 75%, transparent 0, transparent), linear-gradient(90deg, #1978c8, #55acee);
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.blue-two-column progress::-webkit-progress-bar {
  background-color: #2c3650;
  border-radius: 0.4rem;
}
.blue-two-column progress::-moz-progress-bar {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 0, transparent 50%, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 75%, transparent 0, transparent), linear-gradient(90deg, #1978c8, #55acee);
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.blue-two-column progress::-ms-fill {
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.2) 25%, transparent 0, transparent 50%, rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.2) 75%, transparent 0, transparent), linear-gradient(90deg, #1978c8, #55acee);
  background-size: 3.5rem 3.7rem, 100%;
  border-radius: 0.5rem;
}
.blue-two-column .name,
.blue-two-column .address,
.blue-two-column .city,
.blue-two-column .email,
.blue-two-column .zip,
.blue-two-column textarea {
  border-radius: 4px;
}
@media screen and (min-width: 480px) {
  .blue-two-column .email {
    width: calc(70% - 0.5rem);
  }
}
@media screen and (min-width: 480px) {
  .blue-two-column .zip {
    width: 30%;
  }
}
@media screen and (min-width: 640px) {
  .blue-two-column .email,
  .blue-two-column .zip {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .blue-two-column .address.length-2,
  .blue-two-column .city.length-2 {
    width: calc(50% - 0.25rem);
  }
}
@media screen and (min-width: 640px) {
  .blue-two-column .address.length-2,
  .blue-two-column .city.length-2 {
    width: 100%;
  }
}
@media screen and (min-width: 480px) {
  .blue-two-column .address.length-2 {
    margin-right: 0.5rem;
  }
}
@media screen and (min-width: 640px) {
  .blue-two-column .address.length-2 {
    margin-right: 0;
  }
}
.blue-two-column [type="submit"] {
  background-color: #55acee;
  border-radius: 4px;
}
.blue-two-column [type="submit"]:hover,
.blue-two-column [type="submit"]:active,
.blue-two-column [type="submit"]:focus {
  background-color: #1978c8;
}
.blue-two-column [for="opt-in"] {
  background-color: transparent;
  color: #3b5999;
  padding-bottom: 0;
}
.blue-two-column [for="opt-in"] a {
  color: #8696c7;
}
.blue-two-column .petition-info {
  background-color: #fff;
  border: 1rem solid #fff;
  max-width: 60ch;
}
@media screen and (min-width: 640px) {
  .blue-two-column .petition-info {
    margin-right: 1.5rem;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .blue-two-column .petition-info {
    margin-right: 3rem;
  }
}
.blue-two-column .petition-info h2 {
  color: #303C5B;
  text-align: center;
  text-transform: uppercase;
}
.blue-two-column .petition-info h2::after {
  content: '\0023E4';
  display: block;
  font-weight: 100;
  margin-bottom: 1rem;
}
main.blue-two-column {
  margin-top: -10rem;
}
@media screen and (min-width: 640px) {
  main.blue-two-column {
    align-items: flex-start;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-top: -20rem;
    padding: 0 1rem;
  }
}
@media screen and (min-width: 768px) {
  main.blue-two-column {
    padding: 0 2rem;
  }
}
/*# sourceMappingURL=petitions.css.map */