/* this is a new test message */
@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/source-sans-3-400.woff2') format('woff2');
}
@font-face {
  font-display: swap;
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 800;
  src: url('/fonts/source-sans-3-800.woff2') format('woff2');
}
:root {
  font-family: 'Source Sans 3', sans-serif;
  font-size: clamp(16px, 1vw, 20px);
}
p {
  padding: 0;
  margin: 0 0 1em 0;
  font-weight: 400;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0 0 0.5em 0;
  font-weight: 800;
  line-height: 1.25;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p {
  font-size: 1rem;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.2rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 1rem;
}
h6 {
  font-size: 1rem;
}
h2 + h3 {
  margin-top: 2rem;
}
p + h1,
p + h2,
p + h3,
p + h4,
p + h5,
p + h6 {
  margin-top: 1.5em;
}
* {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  color: #222;
  background-color: white;
}
html {
  overflow: hidden;
}
body {
  overflow-x: hidden;
  overflow-y: auto;
}
main {
  z-index: 1;
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  color: #222;
  background-color: white;
  transition: 750ms ease-in-out;
}
main > section {
  --section-color: white;
  background: var(--section-color);
}
#scroller {
  position: relative;
  display: block;
  transition: 750ms ease-in-out;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color: #222;
  background-color: white;
}
@media (min-width: 600px) {
  #scroller {
    width: calc(100% - 7rem);
    left: 7rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  }
}
#scroller.main-menu-open {
  overflow-y: hidden;
  transform: translate3d(105%, 0, 0);
}
@media (min-width: 600px) {
  #scroller.main-menu-open {
    transform: translate3d(calc(100% - 7rem), 0, 0);
  }
}
section {
  position: relative;
  padding: 3rem max(calc((100vw - 1400px) * 0.5), 1.5rem);
  --black-or-white: #222;
  background-color: white;
  color: #222;
}
section:nth-of-type(odd) {
  background-color: whitesmoke;
  color: #111;
}
section.wide {
  padding: 3rem 1.5rem;
}
section.wide > h2,
section.wide > h2 + p {
  padding-left: calc(max(calc((100vw - 1400px) * 0.5), 1.5rem) - 1.5rem);
  padding-right: calc(max(calc((100vw - 1400px) * 0.5), 1.5rem) - 1.5rem);
}
section.custom-color {
  --modded-color: hsl(from var(--section-color) calc(h * 1) calc(s * 0.8) calc(l * 0.8));
  background-image: linear-gradient(45deg, var(--modded-color), var(--section-color));
}
section.custom-color + section {
  background-color: white;
  color: #222;
}
section svg {
  fill: var(--black-or-white);
}
picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: auto;
}
picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
picture.lazy {
  opacity: 0;
  transition: 750ms ease-in-out;
}
picture.wake {
  opacity: 1;
  transition: 750ms ease-in-out;
}
picture.square {
  aspect-ratio: 1 / 1;
}
picture.wide {
  aspect-ratio: 16 / 9;
}
picture.tall {
  aspect-ratio: 9 / 16;
}
picture.uncropped {
  display: inline-block;
  line-height: 0;
}
picture.uncropped img {
  animation: none !important;
  position: static;
  top: unset;
  left: unset;
  object-fit: contain;
  width: 100%;
  height: auto;
  transform: none;
}
picture .vignette {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: radial-gradient(transparent 50%, 90%, black);
  background-blend-mode: multiply;
}
picture .image-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
picture input[type="checkbox"] {
  display: none;
}
picture input[type="checkbox"] + label {
  position: absolute;
  display: block;
  bottom: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
  transition: 250ms;
  color: white;
  background-color: #222;
}
@media (hover: hover) {
  picture input[type="checkbox"] + label:hover {
    background-color: black;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  }
}
picture input[type="checkbox"] + label > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  max-width: 50%;
  max-height: 50%;
  height: auto;
  fill: white;
}
picture .credits {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  transition: 250ms;
  opacity: 0;
  z-index: 8;
}
picture input[type="checkbox"]:checked + label + .credits {
  opacity: 1;
}
.overlay {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  section[data-columns="1"] .grid,
  section[data-columns="1"] .wrap {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  section[data-columns="2"] .grid,
  section[data-columns="2"] .wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  section[data-columns="3"] .grid,
  section[data-columns="3"] .wrap {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  section[data-columns="4"] .grid,
  section[data-columns="4"] .wrap {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  section[data-columns="5"] .grid,
  section[data-columns="5"] .wrap {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}
.roll {
  background-color: white !important;
  color: #222 !important;
}
.roll .view {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow-x: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  -webkit-overflow-scrolling: touch;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.roll .view .wrap {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 1rem;
  width: auto;
  height: auto;
}
.roll .view .wrap .card {
  flex: 0 0 min(80%, 500px);
  scroll-snap-align: start;
}
.card {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  overflow: hidden;
  border-radius: 0.25rem;
  background-color: whitesmoke;
  color: #222;
  transition: 250ms ease-in-out;
  --my-color: whitesmoke;
}
.card picture,
.card img {
  transition: filter 250ms ease-in-out, transform 750ms ease-in-out, opacity 750ms ease-in-out;
}
@media (hover: hover) {
  .card:hover {
    background-color: var(--my-color);
  }
  .card:hover picture {
    filter: brightness(1.1);
  }
  .card:hover picture img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.card div {
  flex: 1 1 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem 1.25rem 1.75rem 1.25rem;
}
.card div h3 {
  flex: 0 0 auto;
}
.card div p {
  font-size: 0.9rem;
  flex: 1 1 auto;
}
.card div .bttn {
  margin-top: 1rem;
  flex: 0 0 auto;
}
.timestamp {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  font-size: 0.9rem;
  color: #111;
  margin-top: 0.5rem;
}
.timestamp svg {
  width: auto;
  height: 1em;
  margin-right: 0.25em;
  transform: translateY(0.05em);
}
section#list {
  background: white;
}
.hidden {
  display: none;
}
a:link,
a:visited {
  font-weight: 800;
  text-decoration: none;
}
a:hover,
a:focus,
a:active {
  text-decoration: none;
}
p > a,
li > a {
  display: inline;
  padding: 0.05em;
  margin: 0;
  color: #af161e;
  background: linear-gradient(to top, #f7c7ca 50%, transparent 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: 250ms;
}
p > a:hover,
li > a:hover,
p > a:focus,
li > a:focus,
p > a:active,
li > a:active {
  background-position: bottom;
}
a.casper {
  position: absolute;
  display: block;
  background: transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
a.tag {
  display: inline-block;
  padding: 0.4em 0.6em;
  margin: 0 0.25rem 0.25rem 0;
  border-radius: 0.25rem;
  background-color: #e1ffba;
  color: black;
  font-weight: 800;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 250ms;
}
@media (hover: hover) {
  a.tag:hover {
    background-color: #b6ff55;
  }
}
.bttn {
  background-color: #333333;
  color: white;
  position: relative;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  border: none;
  border-radius: 99px;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  text-transform: none;
  text-decoration: none;
  text-shadow: none;
  text-rendering: optimizeLegibility;
  transition: 250ms;
}
.bttn:hover,
.bttn:focus,
.bttn:active {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.4);
  filter: saturate(125%);
}
.bttn.small {
  padding: 0.75em 1.5em;
  font-size: 0.75rem;
}
.bttn.medium {
  padding: 1em 2em;
  font-size: 1rem;
}
.bttn.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
}
.bttn.arrow::after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.5em;
  border-radius: 0;
  border-style: solid;
  border-color: inherit;
  background-color: transparent;
  transition: 250ms;
  transform: translateX(0) rotate(-45deg);
}
.bttn.arrow:hover::after {
  transform: translateX(50%) rotate(-45deg);
}
.bttn.arrow.small::after {
  border-width: 0 2px 2px 0;
}
.bttn.arrow.medium::after {
  border-width: 0 4px 4px 0;
}
.bttn.arrow.large::after {
  border-width: 0 6px 6px 0;
}
.bttn.round {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0 0.25rem;
  border-radius: 50%;
}
.bttn.round.right::after,
.bttn.round.down::after,
.bttn.round.left::after,
.bttn.round.up::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.75em;
  height: 0.75em;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transition: 250ms;
}
.bttn.round.right::after {
  transform: translate(-66%, -50%) rotate(45deg);
}
.bttn.round.down::after {
  transform: translate(-50%, -75%) rotate(135deg);
}
.bttn.round.left::after {
  transform: translate(-33%, -50%) rotate(225deg);
}
.bttn.round.up::after {
  transform: translate(-50%, -25%) rotate(315deg);
}
#more-button {
  margin: calc(2 * 1rem) auto;
}
.sticky-trigger {
  display: block;
  background: transparent;
  width: 1px;
  height: 1px;
}
.sticky-trigger.sticky-on {
  transform: translateY(100vh);
}
.sticky-trigger.sticky-off {
  transform: translateY(-25vh);
}
@keyframes heartbeat {
  0% {
    transform: scale(0.9);
  }
  20% {
    transform: scale(0.9);
  }
  25% {
    transform: scale(1);
  }
  30% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(0.9);
  }
  45% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(0.9);
  }
}
.sticky-button,
.donation-page-referral {
  z-index: 99;
  position: fixed;
  opacity: 0;
  padding: 0.5rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  transition: 750ms;
  top: unset;
  right: unset;
  bottom: 0;
  left: 50%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 0;
  border-radius: 0.25rem 0.25rem 0 0;
  transform: translateY(110%) translateX(-50%);
  background-color: #af161e;
  color: white;
}
@media (min-width: 600px) {
  .sticky-button,
  .donation-page-referral {
    padding: 1rem;
    top: 0;
    right: 0;
    bottom: unset;
    left: unset;
    gap: 0.5rem;
    transform: translateY(-110%) translateX(-100%);
    border-radius: 0 0 0.25rem 0.25rem;
  }
}
.sticky-button.open,
.donation-page-referral.open {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
}
@media (min-width: 600px) {
  .sticky-button.open,
  .donation-page-referral.open {
    transform: translateY(0) translateX(-100%);
  }
}
.sticky-button span,
.donation-page-referral span {
  color: inherit;
  font-weight: 800;
  font-size: 0.9rem;
}
.sticky-button svg,
.donation-page-referral svg {
  fill: white;
  animation: heartbeat 2s 4s infinite linear both;
}
.sticky-button:hover,
.donation-page-referral:hover,
.sticky-button:focus,
.donation-page-referral:focus,
.sticky-button:active,
.donation-page-referral:active {
  filter: saturate(133%);
  transition: 250ms;
}
button:disabled {
  cursor: not-allowed;
  box-shadow: none;
}
button:disabled::before {
  background-color: silver;
}
button:disabled:hover,
button:disabled:focus,
button:disabled:active {
  cursor: not-allowed;
  box-shadow: none;
}
a.marker,
button.marker {
  z-index: 99;
  display: inline-block;
  padding: 0.1em 0;
  margin: 0.5em 0 0 0;
  text-decoration: none;
  font-size: 0.8rem;
  color: black !important;
  border-bottom: 4px solid black;
  background: linear-gradient(to top, var(--bright-yellow) 50%, transparent 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: background-position 250ms !important;
}
a.marker:hover,
button.marker:hover,
a.marker:focus,
button.marker:focus,
a.marker:active,
button.marker:active {
  background-position: bottom;
}
.prev-next {
  border-top: 1px dotted black;
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
}
.prev-next > .left,
.prev-next > .right {
  flex: 1 1 50%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1rem;
}
.prev-next > .left .text {
  text-align: left;
}
.prev-next > .right .text {
  text-align: right;
}
.prev-next > .left .bttn {
  order: -1;
  flex: 0 0 auto;
}
.prev-next > .right .bttn {
  order: 1;
  flex: 0 0 auto;
}
.prev-next .text {
  flex: 1 1 auto;
}
.prev-next .time {
  font-weight: 800;
  font-size: 0.8rem;
}
.prioritized-campaigns .container,
.prioritized-tags .container,
.recent-updates .container,
.shopify-promo .container {
  position: relative;
  display: block;
}
.prioritized-campaigns .container .slider-button,
.prioritized-tags .container .slider-button,
.recent-updates .container .slider-button,
.shopify-promo .container .slider-button {
  display: none;
}
@media (hover: hover) {
  .prioritized-campaigns .container .slider-button,
  .prioritized-tags .container .slider-button,
  .recent-updates .container .slider-button,
  .shopify-promo .container .slider-button {
    display: block;
    position: absolute;
    top: 0;
    width: 5rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    outline: none;
    transition: 500ms;
    cursor: pointer;
    opacity: 0;
  }
  .prioritized-campaigns .container .slider-button:disabled,
  .prioritized-tags .container .slider-button:disabled,
  .recent-updates .container .slider-button:disabled,
  .shopify-promo .container .slider-button:disabled {
    display: none;
  }
  .prioritized-campaigns .container .slider-button:hover,
  .prioritized-tags .container .slider-button:hover,
  .recent-updates .container .slider-button:hover,
  .shopify-promo .container .slider-button:hover,
  .prioritized-campaigns .container .slider-button:focus,
  .prioritized-tags .container .slider-button:focus,
  .recent-updates .container .slider-button:focus,
  .shopify-promo .container .slider-button:focus {
    opacity: 1;
  }
  .prioritized-campaigns .container .slider-button.left,
  .prioritized-tags .container .slider-button.left,
  .recent-updates .container .slider-button.left,
  .shopify-promo .container .slider-button.left {
    left: 0;
    border-radius: 4px 0 0 4px;
  }
  .prioritized-campaigns .container .slider-button.left div,
  .prioritized-tags .container .slider-button.left div,
  .recent-updates .container .slider-button.left div,
  .shopify-promo .container .slider-button.left div {
    transform: rotate(-135deg) translate(-25%, 0);
  }
  .prioritized-campaigns .container .slider-button.right,
  .prioritized-tags .container .slider-button.right,
  .recent-updates .container .slider-button.right,
  .shopify-promo .container .slider-button.right {
    right: 0;
    border-radius: 0 4px 4px 0;
  }
  .prioritized-campaigns .container .slider-button.right div,
  .prioritized-tags .container .slider-button.right div,
  .recent-updates .container .slider-button.right div,
  .shopify-promo .container .slider-button.right div {
    transform: rotate(45deg) translate(-25%, 0);
  }
  .prioritized-campaigns .container .slider-button div,
  .prioritized-tags .container .slider-button div,
  .recent-updates .container .slider-button div,
  .shopify-promo .container .slider-button div {
    display: block;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border-width: 4px 4px 0 0;
    border-style: solid;
    border-color: white;
  }
}
#skip {
  position: absolute;
  top: 50%;
  left: 150%;
  transform: translate3d(-50%, -50%, 0);
  display: block;
  width: auto;
  height: auto;
  padding: 2rem;
  margin: 0;
  background: hotpink;
  color: red;
  font-size: 2rem;
  z-index: 999;
}
#skip:focus {
  left: 50%;
}
@keyframes rotatingcolors {
  0% {
    background-position: 0% 0%, 100% 100%;
  }
  25% {
    background-position: 100% 0%, 0% 100%;
  }
  50% {
    background-position: 100% 100%, 0% 0%;
  }
  75% {
    background-position: 0% 100%, 100% 0%;
  }
  100% {
    background-position: 0% 0%, 100% 100%;
  }
}
nav {
  position: fixed;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc(5rem * 1.5) 2rem 2rem 2rem;
  margin: 0;
  gap: 2rem;
  background-image: radial-gradient(circle at 20% 20%, #af161e, transparent), radial-gradient(circle at 20% 20%, #6284e8, transparent);
  background-size: 200% 200%;
  animation: rotatingcolors 30s ease-in-out infinite;
  color: white;
}
@media (min-width: 600px) {
  nav {
    flex-flow: row nowrap;
    justify-content: stretch;
    align-items: center;
    gap: 0;
    padding: 7rem calc(7rem * 3) 7rem calc(7rem * 2);
  }
}
#ding {
  z-index: 99999;
  position: fixed;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 5rem;
  background: white;
  padding: 1rem;
  margin: 0;
  gap: 1rem;
}
@media (min-width: 600px) {
  #ding {
    flex-flow: column nowrap;
    justify-content: flex-start;
    width: 7rem;
    height: 100vh;
    z-index: unset;
  }
}
#ding.menu-show {
  transform: translate3d(0, 0, 0);
  transition: 250ms;
}
@media (min-width: 600px) {
  #ding.menu-show {
    transform: unset;
  }
}
#ding.menu-hide {
  transform: translate3d(0, -110%, 0);
  transition: 750ms;
}
@media (min-width: 600px) {
  #ding.menu-hide {
    transform: unset;
  }
}
#home {
  position: relative;
  display: block;
  width: fit-content;
  height: 100%;
  order: 2;
  aspect-ratio: 2 / 1;
  border: none;
  outline: none;
  transition: 250ms;
}
@media (min-width: 600px) {
  #home {
    order: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}
#home:hover,
#home:active,
#home:focus {
  transform: scale(1.1);
}
#logo,
#alt-logo {
  position: absolute;
  display: block;
  object-fit: contain;
  object-position: center;
  animation-name: logo-fade;
  animation-duration: 5000ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  top: 50%;
  transform: translateY(-50%);
}
#logo {
  animation-direction: alternate;
}
#alt-logo {
  animation-direction: alternate-reverse;
}
@keyframes logo-fade {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  55% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#burger {
  order: 1;
  position: relative;
  display: block;
  width: auto;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: white;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
}
@media (min-width: 600px) {
  #burger {
    order: 2;
    width: 66%;
    height: auto;
  }
}
#burger div {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 4px;
  background: black;
  border-radius: 2px;
}
#burger div:nth-child(1) {
  transform: translate3d(-50%, -150%, 0) scale(1, 1);
  transition: 500ms 250ms;
}
#burger div:nth-child(2) {
  transform: translate3d(-50%, 50%, 0) scale(1, 1);
  transition: 500ms 250ms;
}
#burger div:nth-child(3) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg) scale(0, 1);
  transition: 500ms;
}
#burger div:nth-child(4) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg) scale(0, 1);
  transition: 500ms;
}
#burger.open div:nth-child(1) {
  transform: translate3d(-50%, -50%, 0) scale(0, 1);
  transition: 500ms;
}
#burger.open div:nth-child(2) {
  transform: translate3d(-50%, -50%, 0) scale(0, 1);
  transition: 500ms;
}
#burger.open div:nth-child(3) {
  transform: translate3d(-50%, -50%, 0) rotate(45deg) scale(1.1, 1);
  transition: 500ms 250ms;
}
#burger.open div:nth-child(4) {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg) scale(1.1, 1);
  transition: 500ms 250ms;
}
#burger:not(.open):hover div:nth-child(1) {
  transform: translate3d(-50%, -150%, 0) scale(1.5, 1);
  transition-delay: 0ms;
}
#burger:not(.open):hover div:nth-child(2) {
  transform: translate3d(-50%, 50%, 0) scale(1.5, 1);
  transition-delay: 200ms;
}
#main-menu {
  flex: 0 0 auto;
}
@media (min-width: 600px) {
  #main-menu {
    flex: 1 1 50%;
    text-align: right;
    padding-right: 2rem;
    border-right: 1px solid;
  }
}
#main-menu ul,
#main-menu li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}
#main-menu a {
  display: inline-block;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  padding: 0.5rem 0;
  border: none;
  color: white;
  background: none;
  transition: 250ms;
}
#main-menu a:hover {
  color: #f7c7ca;
}
#side-menu {
  flex: 0 0 auto;
}
@media (min-width: 600px) {
  #side-menu {
    flex: 1 1 50%;
    padding: 0 0 0 2rem;
    font-size: 0.9rem;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
  }
}
#side-menu .tag {
  background: white;
}
#side-menu .tag:hover {
  background: #f7c7ca;
}
#nav-search-form {
  display: flex;
  justify-content: stretch;
  align-items: center;
  width: min(100%, 20rem);
  padding: 0;
  margin: 0 0 2rem 0;
  gap: 1rem;
}
#nav-search-form label {
  display: none;
}
#nav-search-form input {
  flex: 1 1 100%;
  padding: 0.5rem;
  background: transparent;
  color: black;
  border-width: 2px;
  border-style: solid;
  border-color: white;
  border-radius: 0.25rem;
}
#nav-search-form input::placeholder {
  opacity: 0.5;
}
#nav-search-form input:focus {
  outline: none;
  background: white;
}
#nav-search-form button {
  flex: 0 0 max(3rem, 50px);
  position: relative;
  display: block;
  top: -3px;
  aspect-ratio: 1 / 1;
  border: none;
  outline: 0;
  background: transparent;
  cursor: pointer;
}
#nav-search-form button svg {
  display: block;
  object-fit: contain;
}
#nav-search-form button svg path {
  fill: none;
  stroke: white;
  stroke-width: 0.33rem;
  stroke-linejoin: round;
  stroke-linecap: square;
  transition: 250ms;
}
#nav-search-form button:hover svg path,
#nav-search-form button:focus svg path {
  stroke: #f7c7ca;
}
section.text.is-boxed {
  background: white !important;
}
section.text.is-boxed > div {
  --modded-color: hsl(from var(--section-color) calc(h * 1) calc(s * 0.8) calc(l * 0.8));
  background-image: linear-gradient(45deg, var(--modded-color), var(--section-color));
  color: var(--black-or-white);
  border-radius: 0.25rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  padding-right: calc(100% - 720px - 1.5rem);
}
@media (min-width: 600px) {
  section.text:not(.is-boxed) > div {
    border-left: 1px solid;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: calc(100% - 720px - 1.5rem);
  }
}
section.text.is-collapsed > div {
  position: relative;
  height: min(10rem, 80vh);
  overflow-y: hidden;
}
section.text.is-collapsed input[type="checkbox"] {
  display: none;
}
section.text.is-collapsed input[type="checkbox"] + label {
  z-index: 9;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translate3d(-50%, 50%, 0);
}
section.text.is-collapsed input[type="checkbox"]:checked ~ div {
  height: auto;
}
section.text.is-collapsed input[type="checkbox"]:checked ~ div .fadeout {
  opacity: 0;
}
section.text.is-collapsed input[type="checkbox"]:checked + label {
  transform: translate3d(-50%, 50%, 0);
}
section.text.is-collapsed input[type="checkbox"]:checked + label:after {
  transform: translate3d(-50%, -33%, 0) rotate(-45deg);
}
section.text.is-collapsed .fadeout {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, 66%, white);
  transition: 750ms;
}
section.side-by-side {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  section.side-by-side {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.side-by-side .bttn {
  margin-top: 1rem;
}
section.side-by-side picture {
  border-radius: 0.25rem;
}
section.side-by-side > div:last-child {
  order: 2;
}
section.side-by-side > div:first-child {
  order: 1;
}
@media (min-width: 600px) {
  section.side-by-side ~ section.side-by-side > div:first-child {
    order: 3;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 1;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 3;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 1;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 3;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 1;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 3;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 1;
  }
  section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side ~ section.side-by-side > div:first-child {
    order: 3;
  }
}
section.quote {
  text-align: center;
}
section.quote svg {
  width: 6rem;
  height: 6rem;
  opacity: 0;
  transition: 750ms;
}
section.quote p:nth-of-type(1) {
  margin: 1em auto;
  font-size: 1.5rem;
  font-weight: 800;
}
section.quote p:nth-of-type(2) {
  margin: 1em auto;
  font-size: 0.9rem;
  text-transform: uppercase;
}
section.button {
  text-align: center;
}
section.accordion > div {
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  overflow: hidden;
}
section.accordion article {
  position: relative;
  background-color: white;
  padding: 1.25rem 1.25rem 1.75rem 1.25rem;
  padding: 1.25rem min(5rem, 15vw) 0.25rem 1.25rem;
}
section.accordion article:not(:last-child) {
  border-bottom: 1px solid black;
}
section.accordion article input[type="checkbox"] {
  display: none;
}
section.accordion article input[type="checkbox"] + label {
  display: block;
  cursor: pointer;
}
section.accordion article input[type="checkbox"] + label::after {
  content: "";
  position: absolute;
  top: 1em;
  right: 1em;
  display: block;
  width: 1em;
  height: 1em;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: #222;
  transform: rotate(90deg);
  transition: 250ms;
}
section.accordion article input[type="checkbox"] + label + div {
  display: none;
}
section.accordion article input[type="checkbox"]:checked + label::after {
  transform: rotate(0deg);
}
section.accordion article input[type="checkbox"]:checked + label + div {
  display: block;
}
section.image picture {
  border-radius: 0.25rem;
}
section.image picture img {
  animation: hero 10s linear infinite alternate;
}
section.image .caption {
  display: block;
  width: max(50%, 400px);
  padding: 0.5em 1em;
  margin: 0 0 0 auto;
  border-left: 1px solid;
  font-weight: 800;
  font-size: 0.8rem;
}
section.image .caption .credits {
  font-weight: 400;
}
section.vimeo.cinema {
  background: black;
  transition: 750ms;
}
section.vimeo .wrap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
section.vimeo .wrap .embed-preview {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.25rem 1.75rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.75);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: lighten;
  color: black;
}
section.vimeo .wrap .embed-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
}
section.vimeo .wrap .embed-content iframe {
  width: 100%;
  height: 100%;
}
section.vimeo .bttn {
  height: 3rem;
  width: 3rem;
}
section.vimeo .bttn svg {
  height: 50%;
  fill: white;
  width: auto;
  display: block;
  transform: translateX(75%);
}
section.iconic {
  text-align: center;
}
section.iconic .grid {
  gap: 3rem;
}
section.iconic article {
  position: relative;
}
section.iconic picture {
  width: min(33%, 5rem);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1rem auto;
}
section.iconic picture img {
  object-fit: contain;
  position: absolute;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
}
section.iconic p {
  font-size: 0.9rem;
}
section.logos {
  text-align: center;
}
section.logos picture {
  aspect-ratio: 1 / 1;
}
section.logos picture img {
  object-fit: contain;
  width: 90%;
  height: 90%;
}
section.logos picture div {
  z-index: 9;
  object-fit: cover;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  opacity: 0;
  transition: 250ms;
}
section.logos picture:hover div {
  opacity: 1;
}
section.contacts article {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
}
section.contacts article picture {
  flex: 0 0 min(150px, 33%);
  border-radius: 50%;
  margin-right: 1rem;
}
section.contacts article h3 {
  font-size: 0.9rem;
}
section.gallery {
  background: black !important;
  color: white !important;
}
section.gallery .wrap {
  display: grid;
  align-items: start;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 720px) {
  section.gallery .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.gallery .wrap .thumbs {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
section.gallery .wrap .thumbs .thumb {
  transition: 250ms;
  border-radius: 0.25rem;
}
section.gallery .wrap .thumbs .thumb:hover {
  cursor: pointer;
  filter: brightness(1.1);
}
section.gallery .wrap .thumbs .thumb.active {
  filter: blur(5px);
}
section.gallery .wrap .current {
  position: relative;
}
section.gallery .wrap .current picture {
  border-radius: 0.25rem;
}
section.gallery .wrap .current picture button#mega-trigger {
  position: absolute;
  top: 0.25rem;
  right: 0;
  padding: 0.5rem;
  opacity: 0;
  transition: 750ms;
}
section.gallery .wrap .current picture button#mega-trigger svg {
  fill: white;
}
section.gallery .wrap .current:hover button#mega-trigger {
  opacity: 1;
}
section.gallery .caption-and-credits {
  font-size: 0.75rem;
}
section.gallery .mega {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
}
section.gallery .mega picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
}
section.gallery .mega picture img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  min-height: unset;
  min-width: unset;
  max-height: unset;
  max-width: unset;
}
section.gallery .mega picture button#mega-closer {
  position: absolute;
  top: 0.25rem;
  right: 0;
  padding: 0.5rem;
  opacity: 0;
  transition: 750ms;
}
section.gallery .mega picture button#mega-closer svg {
  fill: white;
}
section.gallery .mega picture:hover button#mega-closer {
  opacity: 1;
}
section.gallery button#prev-square,
section.gallery button#next-square,
section.gallery button#prev-mega,
section.gallery button#next-mega {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: 750ms;
  opacity: 0;
  cursor: pointer;
}
section.gallery button#prev-square,
section.gallery button#prev-mega {
  left: 0;
}
section.gallery button#next-square,
section.gallery button#next-mega {
  right: 0;
}
section.gallery .current > picture:hover button#prev-square,
section.gallery .current > picture:hover button#next-square,
section.gallery .mega > picture:hover button#prev-mega,
section.gallery .mega > picture:hover button#next-mega {
  opacity: 1;
}
section.gallery .showing {
  opacity: 1;
  transition: 250ms;
}
section.gallery .waiting {
  opacity: 0;
  transition: 250ms;
}
section.petition .petition-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
}
section.petition .petition-image {
  flex: 1 1 50%;
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
section.petition .petition-wrap > div {
  flex: 1 1 50%;
  padding: 2rem;
  background: white;
}
section.petition .bttn {
  background-color: #333333;
  color: white;
}
section.petition div#petition-label {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  line-height: 1;
}
section.petition form#petition-form {
  margin: 2rem 0 0 0;
}
section.petition form#petition-form fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
section.petition form#petition-form label {
  font-weight: 800;
  font-size: 0.9rem;
  display: block;
  padding: 0;
  margin: 0;
  line-height: 1.25;
}
section.petition form#petition-form input[type="text"],
section.petition form#petition-form input[type="email"],
section.petition form#petition-form input[type="tel"] {
  margin: 0.25rem 0 0.75rem 0;
  padding: 0.5rem;
  border-radius: 4px;
  border: 2px solid black;
  background: transparent;
  width: min(15rem, 100%);
}
section.petition form#petition-form input[type="text"]:focus,
section.petition form#petition-form input[type="email"]:focus,
section.petition form#petition-form input[type="tel"]:focus {
  background: white;
}
section.petition form#petition-form input[type="checkbox"] {
  display: none;
}
section.petition form#petition-form input[type="checkbox"] + label {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
section.petition form#petition-form input[type="checkbox"] + label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: transparent;
  border: 2px solid black;
  margin: 0 0.5em 0 0;
  vertical-align: bottom;
  transform: translate(0, -2px);
  border-radius: 4px;
  text-align: center;
  padding: 1px;
  line-height: 1;
}
section.petition form#petition-form input[type="checkbox"]:checked + label::before {
  content: '✔';
}
section.petition div#thanks {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0.25rem;
  background: darkgoldenrod;
  color: navajowhite;
}
section.donate {
  color: white;
  background-color: #788a97;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  margin-bottom: -5px;
}
section.donate #auto-expire + label::before {
  color: var(--black-or-white);
  border-color: var(--black-or-white);
}
section.donate button {
  width: 100%;
}
@media (min-width: 600px) {
  section.donate button {
    width: auto;
  }
}
section.donate .payment-options {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 0 0;
  opacity: 0.5;
}
section.donate .payment-options > img {
  display: inline-block;
  width: 2rem;
  height: auto;
  margin: 0 0.5rem;
}
section.donate #select-amount {
  margin: 2rem 0;
}
@media (min-width: 600px) {
  section.donate #select-amount {
    margin: 1rem 0 2rem 0;
  }
}
section.donate #auto-expire-container {
  display: none;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}
section.donate form {
  margin: 2rem 0;
}
section.donate form input[type="radio"] {
  display: none;
}
section.donate form input[type="radio"] + label {
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0.5em 1em;
  margin: 0.25rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-family: 'Source Sans 3';
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 99px;
  transition: 250ms;
}
@media (min-width: 600px) {
  section.donate form input[type="radio"] + label {
    width: auto;
    margin: 0 0.25rem 0.25rem 0;
  }
}
section.donate form input[type="radio"]:checked + label {
  background-color: white;
  color: black;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
}
section.donate form input[type="number"] {
  cursor: pointer;
  display: none;
  width: min(100%, 10em);
  height: auto;
  padding: 0.5em 1em;
  margin: 1em auto;
  border: none;
  outline: 0;
  border-radius: 99px;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  background-color: white;
  color: black;
  font-family: 'Source Sans 3';
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: 250ms;
}
section.donate form input[type="checkbox"] {
  display: none;
}
section.donate form input[type="checkbox"] + label {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: 2rem auto;
}
section.donate form input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--black-or-white);
  border-radius: 4px;
  margin-right: 5px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  font-weight: bold;
}
section.donate form input[type="checkbox"]:checked + label::before {
  content: "✔";
}
section.donate form input[id^="monthly-"] + label,
section.donate form input[id^="single-"] + label {
  display: none;
}
section.donate form input[id="frequency-monthly"]:checked ~ div > input[id^="monthly-"] + label,
section.donate form input[id="frequency-single"]:checked ~ div > input[id^="single-"] + label {
  display: inline-block;
}
section.donate form input[id="frequency-monthly"]:checked ~ div input[id="monthly-x"]:checked ~ input[type="number"],
section.donate form input[id="frequency-single"]:checked ~ div input[id="single-x"]:checked ~ input[type="number"] {
  display: block;
}
section.donate form input[id="frequency-monthly"]:checked ~ #auto-expire-container {
  display: flex;
}
.is-item .item-description {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.is-item .item-description img {
  width: max(10vw, 5rem);
  height: max(10vw, 5rem);
}
.is-item .item-description span {
  display: inline-block;
  background: black;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  transform: rotate(-5deg);
  transform-origin: bottom left;
}
.is-item h2 {
  margin-bottom: 0;
  margin-top: 2rem;
}
.is-item .form-outer-wrap {
  display: block;
  width: auto;
  margin: 0 auto 2rem auto;
}
.is-item .form-outer-wrap .form-inner-wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 1rem 2rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.5);
  color: black;
}
@media (min-width: 600px) {
  .is-item .form-outer-wrap .form-inner-wrap {
    width: auto;
  }
}
.is-item #quantity {
  display: inline-block;
  width: 4rem;
  margin: 0 0 0 0.5rem;
  text-align: center;
}
.is-item .quantity-buttons {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: auto;
  gap: 0.25rem;
  margin: 0 1rem;
}
@media (min-width: 600px) {
  .is-item .quantity-buttons {
    margin: 0 0.5rem;
  }
}
.is-item #quantity-up,
.is-item #quantity-down {
  cursor: pointer;
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  outline: none;
  font-weight: 800;
  text-align: center;
  background-color: white !important;
  color: black;
}
@media (min-width: 600px) {
  .is-item #quantity-up,
  .is-item #quantity-down {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.is-item #quantity-up::after,
.is-item #quantity-down::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-style: solid;
  border-color: black;
  border-width: 4px 4px 0 0;
}
.is-item #quantity-up::after {
  transform: translate(-50%, -30%) rotate(-45deg);
}
.is-item #quantity-down::after {
  transform: translate(-50%, -60%) rotate(135deg);
}
.is-item input[type=number]::-webkit-outer-spin-button,
.is-item input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.is-item input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.is-item .pre-number,
.is-item .post-number {
  display: inline-block;
}
.is-item #make-monthly {
  display: none;
}
.is-item #make-monthly:checked + label::before {
  content: "✔";
}
.is-item #make-monthly + label::before {
  content: "";
  display: inline-block !important;
  width: 1rem;
  height: 1rem;
  color: var(--black-or-white);
  background-color: transparent;
  border: 2px solid var(--black-or-white);
  border-radius: 4px;
  margin-right: 5px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  position: relative;
  top: -0.2rem;
  font-weight: bold;
}
#kassen-overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 998;
  opacity: 0;
  transition: opacity 1000ms;
}
#kassen-overlay.open {
  left: 0;
  opacity: 1;
}
#kassen {
  position: fixed;
  display: flex;
  flex-flow: column nowrap;
  justify-content: stretch;
  top: 50%;
  left: 200vw;
  transform: translate(-50%, -50%);
  width: min(600px, 90dvw);
  height: min(900px, 90dvh);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  background: white;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  z-index: 999;
  opacity: 0;
  transition: opacity 500ms;
}
#kassen.open {
  left: 50%;
  opacity: 1;
}
#kassen h2 {
  flex: 0 0 auto;
}
#kassen .payment-options {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  opacity: 0.25;
  flex: 0 0 auto;
}
#kassen .payment-options > img {
  display: inline-block;
  width: 1.5rem;
  height: auto;
  margin: 0 0.5rem;
}
#kassen-info {
  flex: 0 0 auto;
}
#close-checkout {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: none;
  outline: none;
  border-radius: 50%;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  background: white;
}
#close-checkout div {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 60%;
  height: 4px;
  background: black;
}
#close-checkout div:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
#close-checkout div:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#onlinefundraising {
  width: 100%;
  margin: 1rem 0;
  background: whitesmoke;
  border: none;
  outline: none;
  flex: 1 1 auto;
  padding: 1rem;
  opacity: 0;
  transition: 1s;
}
#onlinefundraising.ready {
  opacity: 1;
}
.shopify-promo .price {
  padding: 0 !important;
  font-size: 0.9rem;
  line-height: 1;
  color: #20bb4c;
  letter-spacing: 0.05em;
  margin-top: -0.5rem;
}
section.prioritized-campaigns,
section.prioritized-tags,
section.recent-updates,
section.shopify-promo {
  border-top: 1px dashed silver;
  --my-color: white;
  --black-or-white: #222;
}
section.tags-list {
  border-top: 1px dotted black;
}
section.tags-list div.label {
  font-weight: 800;
  font-size: 0.9rem;
  margin: 0 0 0.5em 0;
}
section.donorbox {
  margin-bottom: -5px;
  min-height: 100vh;
}
iframe[name="donorbox"] {
  display: block;
  width: auto;
  height: auto;
  max-height: none !important;
  margin: 0 auto;
}
section.page-foot {
  display: flex;
  align-items: flex-start;
  gap: 0;
  font-size: 0.9rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background-color: #555 !important;
  color: white !important;
}
@media (min-width: 600px) {
  section.page-foot {
    gap: 4rem;
    align-items: center;
  }
}
section.page-foot .social-sharing {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  gap: 0.5rem;
  flex: 0 0 50%;
}
@media (min-width: 600px) {
  section.page-foot .social-sharing {
    flex: 0 0 auto;
    flex-flow: row nowrap;
    align-items: center;
  }
}
section.page-foot .social-sharing .label {
  flex: 0 0 100%;
}
@media (min-width: 600px) {
  section.page-foot .social-sharing .label {
    flex: 0 0 auto;
  }
}
section.page-foot .social-sharing .social-share-button {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  transition: 250ms;
}
section.page-foot .social-sharing .social-share-button.facebook {
  background-color: #3b5998;
}
section.page-foot .social-sharing .social-share-button.facebook:hover {
  background-color: #3869d2;
}
section.page-foot .social-sharing .social-share-button.url {
  background-color: #3d3d3d;
}
section.page-foot .social-sharing .social-share-button.url:hover {
  background-color: black;
}
section.page-foot .social-sharing .social-share-button svg {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.page-foot .social-sharing .social-share-button svg.facebook {
  width: auto;
  height: 50%;
}
section.page-foot .social-sharing .social-share-button svg.facebook path {
  fill: white;
}
section.page-foot .social-sharing .social-share-button svg.linkicon {
  width: auto;
  height: 50%;
}
section.page-foot .social-sharing .social-share-button svg.linkicon path {
  fill: white;
}
section.page-foot .social-sharing .social-share-button svg.checkmark {
  width: 50%;
  height: auto;
}
section.page-foot .social-sharing .social-share-button svg.checkmark path {
  stroke-width: 5px;
  stroke: white;
}
section.page-foot .page-tags {
  display: flex;
  flex-flow: row wrap;
  gap: 0.5rem;
  align-items: center;
  flex: 0 0 50%;
}
@media (min-width: 600px) {
  section.page-foot .page-tags {
    flex: 0 0 auto;
    flex-flow: row nowrap;
    align-items: center;
  }
}
section.page-foot .page-tags .label {
  flex: 0 0 100%;
}
@media (min-width: 600px) {
  section.page-foot .page-tags .label {
    flex: 0 0 auto;
  }
}
footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(3 * 1rem) 1rem;
  padding: 3rem max(calc((100vw - 1400px) * 0.5), 1.5rem);
  background: #3d3d3d;
  color: grey;
}
@media (min-width: 1000px) {
  footer {
    grid-template-columns: repeat(6, 1fr);
  }
}
footer a {
  color: silver;
  transition: 250ms;
}
footer a:hover {
  color: white;
  background: none;
}
footer article {
  position: relative;
}
footer article.search {
  font-size: 0.9rem;
  grid-column: span 2;
}
@media (min-width: 1000px) {
  footer article.search {
    grid-column: span 1;
    order: unset;
  }
}
footer article.search form {
  position: relative;
}
footer article.search form label {
  display: none;
}
footer article.search form input {
  width: 100%;
  background: transparent;
  border: 2px solid silver;
  height: unset;
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  border-radius: 99px;
  color: white;
}
footer article.search form input::placeholder {
  color: silver;
}
footer article.search form input:focus {
  outline: none;
  border-color: white;
  color: white;
}
footer article.search form input:focus ~ button {
  border-left: 1px solid white;
}
footer article.search form button {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 2.4rem;
  height: 100%;
  background: transparent;
  border: none;
  border-left: 1px solid silver;
}
footer article.search form button svg {
  display: block;
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-66%, -50%);
}
footer article.search form button svg path {
  fill: none;
  stroke: silver;
  stroke-width: 0.33rem;
  stroke-linejoin: round;
  stroke-linecap: square;
  transition: 250ms;
}
footer article.social {
  grid-column: span 1;
  order: 6;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}
@media (min-width: 1000px) {
  footer article.social {
    grid-column: span 3;
    order: unset;
    justify-content: flex-end;
  }
}
footer article.social a {
  position: relative;
  display: inline-block;
  width: calc(2rem + 4px);
  height: calc(2rem + 4px);
  border-radius: 50%;
  border: 2px solid silver;
  overflow: hidden;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  transition: 250ms;
}
footer article.social a:hover {
  border-color: white;
}
footer article.social a[href*="facebook"] {
  background-image: url('/media/iadhsq5r/social_facebook.svg');
  background-size: 30%;
}
footer article.social a[href*="instagram"] {
  background-image: url('/media/ilebnav0/social_instagram.svg');
  background-size: 50%;
}
footer article.social a[href*="linkedin"] {
  background-image: url('/media/ayxhljkk/social_linkedin.svg');
  background-size: 50%;
}
footer article.contact {
  grid-column: span 2;
  order: 3;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9rem;
}
@media (min-width: 1000px) {
  footer article.contact {
    grid-column: span 1;
    order: unset;
    border-left: 1px solid grey;
    padding-left: 1rem;
  }
}
footer article.contact div span {
  display: block;
}
footer article.menu {
  font-size: 0.9rem;
  grid-column: span 2;
}
footer article.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer article.menu ul li {
  display: inline-block;
  margin: 0 1rem 0 0;
}
@media (min-width: 1000px) {
  footer article.menu {
    grid-column: span 1;
    order: unset;
    border-left: 1px solid grey;
    padding-left: 1rem;
  }
}
footer article.tagcloud {
  font-size: 0.9rem;
  grid-column: span 2;
}
@media (min-width: 1000px) {
  footer article.tagcloud {
    grid-column: span 1;
    order: unset;
    border-left: 1px solid grey;
    padding-left: 1rem;
  }
}
footer article.tagcloud .label {
  margin-bottom: 0.3rem;
}
footer article.tagcloud .tag {
  display: inline-block;
  background: #333333;
  color: silver;
  border-radius: 0.25rem;
  margin: 0 0.25rem 0.5rem 0;
  transition: 250ms;
}
footer article.tagcloud .tag:hover {
  color: white;
}
footer article.boilerplate {
  grid-column: span 2;
  order: 5;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 1000px) {
  footer article.boilerplate {
    grid-column: span 3;
    order: unset;
    border-left: 1px solid grey;
    padding-left: 1rem;
  }
}
footer article.boilerplate h2 {
  font-size: 1.25rem;
}
footer article.boilerplate p {
  font-size: 0.9rem;
}
footer article.legal {
  grid-column: span 2;
  order: 4;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9rem;
}
@media (min-width: 1000px) {
  footer article.legal {
    grid-column: span 5;
    order: unset;
    flex-flow: row nowrap;
    align-items: center;
    gap: 1.8rem;
  }
}
footer article.last-logo {
  grid-column: span 1;
  order: 7;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 1000px) {
  footer article.last-logo {
    grid-column: span 1;
    order: unset;
  }
}
footer article.last-logo svg {
  width: auto;
  height: 2rem;
  fill: silver;
}
footer input[type="checkbox"] {
  display: none;
}
footer input[type="checkbox"] + label {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  justify-content: stretch;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  line-height: 1;
  width: 100%;
  height: auto;
  padding: 0.5rem 0.75rem;
  border: 2px solid silver;
  color: silver;
  overflow: hidden;
  border-radius: 99px;
}
footer input[type="checkbox"] + label svg {
  flex: 0 0 auto;
  height: 1rem;
  fill: silver;
}
footer input[type="checkbox"] + label .placeholder {
  flex: 1 1 auto;
}
footer input[type="checkbox"] + label .triangle {
  position: relative;
  flex: 0 0 auto;
  display: block;
  width: 1rem;
  height: 1rem;
}
footer input[type="checkbox"] + label .triangle svg {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  fill: silver;
}
footer input[type="checkbox"] + label .options {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  display: none;
  width: 100%;
  height: auto;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: 9;
}
footer input[type="checkbox"] + label .options a {
  display: block;
  padding: 0.5rem 0;
  color: grey;
}
@media (min-width: 1000px) {
  footer input[type="checkbox"] + label .options a {
    padding: 0.125rem 0;
  }
}
footer input[type="checkbox"] + label .options a:hover {
  color: #e64650;
}
footer input[type="checkbox"]:checked + label {
  border-color: white;
  color: white;
}
footer input[type="checkbox"]:checked + label svg {
  fill: white;
}
footer input[type="checkbox"]:checked + label .triangle {
  transform: scale(-1);
}
footer input[type="checkbox"]:checked + label .triangle svg {
  fill: white;
}
footer input[type="checkbox"]:checked + label .options {
  display: block;
  opacity: 1;
}
section.search {
  background: #76daff;
}
#search-page-form {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 0 0 1rem 0;
  gap: 2rem;
  border-radius: 0.25rem;
}
#search-page-form input {
  flex: 1 1 auto;
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 2px solid;
  border-radius: 0.25rem;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: 'Source Sans 3';
}
#search-page-form button {
  flex: 0 0 auto;
}
.search-filter {
  padding-top: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  font-size: 0.9rem;
}
.search-filter .div.counter {
  flex: 1 1 auto;
}
.search-filter .div.counter .count {
  font-weight: 800;
}
.search-filter .div.filter {
  flex: 0 0 auto;
}
.search-filter input {
  display: none;
}
.search-filter input:checked + label {
  border-bottom: 4px solid black;
}
.search-filter label {
  margin: 0 0 0 0.5em;
  font-weight: 800;
  cursor: pointer;
}
#json-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#json-list p {
  margin: 0.5rem 0 1.5rem 0;
  font-size: 0.8rem;
}
#json-list .type {
  display: inline-block;
  padding: 0 0.25rem;
  border-radius: 0.25rem;
  color: black;
  background: #b6ff55;
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#filter {
  --my-color: white;
  padding-bottom: 0;
}
#filter-toggle {
  display: none;
}
#filter-toggle + label {
  display: flex;
  align-items: center;
}
#filter-toggle + label::after {
  content: '';
  opacity: 0;
  transition: 250ms;
  font-weight: 800;
  font-size: 0.9rem;
  color: silver;
}
#filter-toggle + label svg {
  height: 1.5rem;
  margin-right: 0.5rem;
  fill: mediumaquamarine;
  transition: 200ms;
}
#filter-toggle + label svg path {
  transform: scaleX(1);
  transition-property: transform;
  transform-origin: center;
  transition-duration: 200ms;
}
#filter-toggle + label svg path:nth-child(1) {
  transition-property: transform;
  transition-delay: 200ms;
}
#filter-toggle + label svg path:nth-child(2) {
  transition-property: transform;
  transition-delay: 400ms;
}
#filter-toggle + label svg path:nth-child(3) {
  transition-property: transform;
  transition-delay: 600ms;
}
#filter-toggle:hover svg {
  fill: aquamarine;
}
#filter-toggle:hover + label::after {
  content: 'show filters';
  opacity: 1;
}
#filter-toggle:checked:hover + label::after {
  content: 'hide filters';
  opacity: 1;
}
#filter-toggle:checked + label svg path {
  transform: scaleX(-1);
}
#filter-options {
  display: none;
  background: whitesmoke;
  border-radius: 0.25rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
}
#filter-options input {
  display: none;
}
#filter-options label {
  display: inline-block;
  border-radius: 0.25rem;
  background-color: #e1ffba;
  color: black;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.25em 0.75em;
  margin: 0.25rem 0.25rem 0.25rem 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: 250ms;
}
#filter-options label:hover,
#filter-options input:checked + label {
  background-color: #b6ff55;
}
#filter-options .filter-label {
  font-size: 0.9rem;
  margin: 1rem 0 0 0;
}
#filter-toggle:checked ~ #filter-options {
  display: block;
}
@media (min-width: 600px) {
  #list article:nth-child(5n+1) {
    grid-column: span 2;
  }
}
#list article div.timestamp {
  display: block;
  width: auto;
  height: auto;
  background: aquamarine;
  color: black;
  padding: 0.1rem 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  position: absolute;
  text-transform: uppercase;
  z-index: 9;
}
#list article div.timestamp span:not(:last-child) {
  margin-right: 0.25rem;
}
#list article h2 {
  font-size: 1.2rem;
}
@keyframes hero {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.page-head {
  position: relative;
  top: 0;
  left: 0;
  padding-top: calc(5rem + 2rem);
}
@media (min-width: 600px) {
  .page-head {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
}
.page-head .timestamp-and-byline {
  margin: 0 0 2rem 0;
}
.page-head .timestamp-and-byline span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: mediumaquamarine;
  margin: 0 1rem 0 0;
}
.page-head .timestamp-and-byline svg {
  height: 0.8rem;
  fill: mediumaquamarine;
  transform: translate3d(0, 0.25em, 0);
  margin-right: 0.4rem;
}
.page-head:not(.hero) {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  background-image: linear-gradient(to top, white 2rem, transparent 2rem);
}
@media (min-width: 600px) {
  .page-head:not(.hero) {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }
}
.page-head:not(.hero):not(.has-image) {
  padding-top: calc(5rem + 2rem);
  padding-bottom: 4rem;
}
@media (min-width: 600px) {
  .page-head:not(.hero):not(.has-image) {
    padding-top: 4rem;
  }
}
.page-head:not(.hero):not(.has-image) > div {
  grid-column: span 2;
  max-width: 765px;
}
.page-head:not(.hero) picture {
  order: 1;
  aspect-ratio: 16 / 9;
  border-radius: 0.25rem;
}
@media (min-width: 600px) {
  .page-head:not(.hero) picture {
    order: 2;
  }
}
.page-head:not(.hero) > div {
  order: 2;
}
@media (min-width: 600px) {
  .page-head:not(.hero) > div {
    order: 1;
  }
}
.page-head.hero {
  position: sticky;
  display: flex;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  padding: 0;
  background: none;
}
@media (min-width: 600px) {
  .page-head.hero {
    aspect-ratio: 16 / 9;
  }
}
.page-head.hero > div {
  z-index: 1;
  position: absolute;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: start;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 2rem;
  color: white;
  text-shadow: 0 0 0.25rem rgba(0, 0, 0, 0.25);
  transform: skew(0deg, -11.25deg);
  transform-origin: 33% 0%;
}
@media (min-width: 600px) {
  .page-head.hero > div {
    justify-content: center;
    padding: 0 10%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.page-head.hero > div a:first-child {
  display: none;
}
.page-head.hero > div h1 {
  line-height: 0.95;
  letter-spacing: -0.05em;
  word-spacing: 0.05em;
  text-transform: uppercase;
  max-width: min(600px, 90%);
  font-size: clamp(40px, 5vw, 80px);
}
.page-head.hero > div p {
  font-size: 1.25rem;
  max-width: min(600px, 90%);
}
.page-head.hero > div .bttn {
  margin-top: 2rem;
}
.page-head.hero picture {
  filter: contrast(1.05) saturate(1.05);
  aspect-ratio: 9 / 16;
}
@media (min-width: 600px) {
  .page-head.hero picture {
    aspect-ratio: 16 / 9;
  }
}
.page-head.hero picture img {
  animation: hero 10s linear infinite alternate;
}
