:root {
  --control-size: 3rem;
  --control-margin: 1rem;
  --header-height: 3rem;
  --color-text: hsl(35, 15%, 85%);
  --color-inactive: hsl(35, 15%, 75%);
  --color-active: hsl(35, 15%, 95%);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  width: 100vw;
  min-height: 100dvh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
@media screen and (min-width: 1100px) and (min-height: 600px) {
  html, body {
    font-size: 18px;
  }
}
@media screen and (min-width: 700px) and (min-height: 500px) {
  html, body {
    font-size: 14px;
  }
}
html:has(.intro:target), body:has(.intro:target) {
  height: 100dvh;
  overflow: clip;
}
html:has(.intro:target) .marquee__content, body:has(.intro:target) .marquee__content {
  animation-play-state: paused;
}

html {
  background: #000;
}
html:has(> body.hairstyles.show) {
  background: var(--hairstyle-image) -53vw -13vw, var(--hairstyle-image) 47vw -13vw, #000;
  background-repeat: repeat-y;
  background-size: 100vw;
}

body {
  display: grid;
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  position: relative;
  backdrop-filter: blur(0.5rem) brightness(66%);
  -webkit-backdrop-filter: blur(0.5rem) brightness(66%);
}

turbo-cable-stream-source {
  display: contents;
}

.rounded {
  padding: 0 1.3rem;
  font-size: 1.25rem;
  line-height: 3.2rem;
  height: 3.4rem;
  border-radius: 1.7rem;
  border: 1.25pt solid var(--color-inactive);
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-text);
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  line-height: 1.75;
}

a.rounded, button.rounded {
  background-color: var(--color-text);
  border-color: var(--color-text);
  color: #000;
  line-height: 3.2rem;
  font-size: 1.333rem;
  font-weight: 500;
  white-space: nowrap;
}
a.rounded:hover, a.rounded:active, a.rounded:focus, button.rounded:hover, button.rounded:active, button.rounded:focus {
  background-color: var(--color-active);
  border-color: var(--color-active);
  color: #000;
}

a.rounded {
  display: inline-block;
}
a.rounded:link, a.rounded:visited {
  color: #000;
  text-decoration: none;
}
a.rounded:link:hover, a.rounded:link:active, a.rounded:link:focus, a.rounded:visited:hover, a.rounded:visited:active, a.rounded:visited:focus {
  color: #000;
}

label.rounded {
  display: flex;
  position: relative;
  justify-content: space-between;
  min-width: min-content;
  max-width: 18rem;
  width: 100%;
}
label.rounded > input {
  appearance: none;
  background: transparent;
  color: var(--color-text);
  font-family: inherit;
  font-size: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  flex-grow: 1;
}

p.flash {
  background: var(--color-text);
  color: black;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 1.25rem;
  display: block;
  margin: 0.5rem auto;
  width: fit-content;
  position: relative;
  z-index: 1;
}

header {
  z-index: 1;
  top: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-areas: "start title end";
  place-content: start center;
  justify-content: space-between;
  text-align: center;
  padding: var(--control-margin) var(--control-margin) 0 var(--control-margin);
  width: 100%;
}
.hairstyles.new header {
  position: fixed;
  background: transparent;
  width: calc(100% - var(--control-margin) - var(--control-size));
  min-height: calc(var(--header-height) + 2 * var(--control-margin));
}
@media screen and (min-aspect-ratio: 1/1) {
  .hairstyles.new header {
    width: 100%;
  }
}
header h1 {
  grid-area: title;
  margin: 0;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 8px #000, 0 0.1875rem 12px #000;
  white-space: nowrap;
}
header h1 strong {
  display: inline-block;
  font-weight: 700;
  padding: 0 0.2rem;
}
header h1 em {
  font-style: normal;
  font-weight: 100;
}
header h1 a:link {
  text-decoration: none;
}
header .start {
  grid-area: start;
  display: grid;
  place-content: start start;
}
header .end {
  grid-area: end;
  display: grid;
  place-content: start end;
}
header .link .hover-left {
  grid-template-columns: min-content 0fr;
}
@media screen and (min-width: 700px) {
  header .link .hover-left.expanded {
    grid-template-columns: min-content 1fr;
  }
  header .link .hover-left.expanded .hover {
    margin: 0 0.4rem 0 -0.4rem;
  }
}
@media screen and (min-width: 700px) {
  header .link .hover-left:hover {
    grid-template-columns: min-content 1fr;
  }
  header .link .hover-left:hover .hover {
    margin: 0 0.4rem 0 -0.4rem;
  }
}
header .link .hover-right {
  grid-template-columns: 0fr min-content;
}
@media screen and (min-width: 700px) {
  header .link .hover-right:hover {
    grid-template-columns: 1fr min-content;
  }
  header .link .hover-right:hover .hover {
    margin: 0 -0.4rem 0 0.4rem;
  }
}
header .link .hover {
  overflow: hidden;
}
header .link .symbol {
  width: 1.5rem;
}
header a.rounded {
  height: var(--header-height);
  line-height: 2;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: calc(var(--header-height) / 2);
  padding: 0 0.6432rem;
  color: var(--color-text);
  font-size: 1.333rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  display: grid;
  place-content: center;
  transition: 0.2s grid-template-columns, 0.2s background-color, 0.2s border-color, 0.2s color;
}
header a.rounded:link, header a.rounded:visited {
  color: var(--color-text);
}
header a.rounded:link:hover, header a.rounded:link:active, header a.rounded:link:focus, header a.rounded:visited:hover, header a.rounded:visited:active, header a.rounded:visited:focus {
  background-color: var(--color-active);
  border-color: var(--color-active);
  color: #000;
}

#intro {
  position: fixed;
  width: 0;
  height: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transition: 1s opacity;
  top: 0;
  left: 0;
  display: grid;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(0.33rem);
  -webkit-backdrop-filter: blur(0.33rem);
  place-content: center center;
}
#intro:target, #intro:has(:target) {
  opacity: 1;
  width: 100vw;
  height: 100dvh;
  z-index: 10;
}
#intro:target #intro1 {
  display: flex;
  animation: fade-in 0.3s;
}
#intro .intro {
  display: none;
  text-align: center;
  flex-direction: column;
}
#intro .intro:target {
  display: flex;
  animation: fade-in 0.3s;
}
#intro .intro > a {
  border: 0;
  font-size: 1.5rem;
  font-style: italic;
}
#intro img {
  width: 100%;
  max-width: 512px;
  height: auto;
}

#intro-close {
  position: absolute;
  top: var(--control-margin);
  right: var(--control-margin);
  font-weight: bold;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: scale(1.25);
  transform-origin: top right;
}

.bubble {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 98vw;
  background-color: var(--color-text);
  clip-path: url("#bubble");
  color: #000;
  font-weight: 500;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  place-content: center center;
  aspect-ratio: 0.85;
  max-width: 60rem;
  padding: 22% 13% 14% 13%;
}
.bubble video {
  margin: 0 auto;
  max-width: 85%;
}
@media screen and (min-aspect-ratio: 1/1) {
  .bubble {
    aspect-ratio: 1.2;
    padding: 20% 16% 16% 16%;
  }
  .bubble video {
    max-width: 75%;
  }
}
.bubble p {
  margin: 0;
  text-wrap: balance;
}
.bubble ul {
  max-width: 90%;
  margin: 0 auto;
  padding-left: 1.5rem;
  text-align: left;
  font-style: italic;
  list-style-type: disclosure-closed;
}
.bubble ul li {
  margin: 1rem 0;
}
.bubble ul li:last-child {
  margin-bottom: 0;
}
.bubble a:link, .bubble a:visited {
  color: #000;
}
.bubble a:link:hover, .bubble a:link:active, .bubble a:link:focus, .bubble a:visited:hover, .bubble a:visited:active, .bubble a:visited:focus {
  color: #333;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

h2 {
  font-size: 1.75rem;
  font-weight: 400;
}
h2.about {
  font-size: 1.5rem;
  line-height: 1.33;
  margin: 1.5rem 0 1.5rem 0;
  padding: 1.5rem;
  background-color: rgba(255, 245, 221, 0.15);
}
h2 .amount {
  font-weight: 500;
}

h3 {
  font-weight: normal;
}

.video {
  text-align: center;
}
.video video {
  aspect-ratio: 4/3;
  max-width: 100%;
  max-height: 100vh;
}

form.login {
  display: flex;
  gap: 0.5rem;
}
form.login label + button {
  z-index: 1;
}

main {
  animation: fade-in 0.3s;
}
main > .primary {
  width: 95%;
  max-width: 64rem;
  margin: 0 auto;
}
main > .panel {
  max-width: 34rem;
  margin: 0 auto;
}
main .donations {
  line-height: 1.5;
}
main .donations:empty {
  display: none;
}
main p {
  font-size: 1.33rem;
  line-height: 1.5;
}
main .share {
  display: grid;
  margin: 0rem 0 5rem 0;
  gap: 1rem;
  justify-content: center;
  text-align: center;
}
main .share .url {
  display: flex;
  position: relative;
  justify-content: space-between;
  min-width: min-content;
  max-width: 18rem;
  width: 100%;
  gap: 0.5rem;
}
main .share .url > * {
  padding: 0 1.3rem;
  font-size: 1.25rem;
  line-height: 3.2rem;
  height: 3.4rem;
  border-radius: 1.7rem;
  box-shadow: none;
}
main .share .url input {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--color-text);
  outline: 0;
  font-family: inherit;
  font-size: inherit;
}
main .share .url button {
  background-color: var(--color-text);
  color: #000;
  width: 7rem;
}
main .share .url button:hover, main .share .url button:active, main .share .url button:focus {
  background-color: var(--color-active);
  border-color: var(--color-active);
}
main .share .buttons {
  display: flex;
  margin-top: var(--control-margin);
  gap: var(--control-margin);
  justify-content: center;
}
main .share .buttons .rounded {
  box-shadow: none;
}
main p.actions {
  display: flex;
  margin: 3rem 0;
  gap: 1rem;
  justify-content: center;
}

.button_to {
  display: inline-block;
}
.button_to button {
  appearance: none;
  display: inline-block;
  border: 0;
  padding: 0;
  margin: 0;
  background: inherit;
  color: hsl(35, 15%, 90%);
  text-decoration: underline;
}

a:link, a:visited {
  color: hsl(35, 15%, 90%);
  text-decoration: dotted underline;
}
a:link:hover, a:link:active, a:link:focus, a:visited:hover, a:visited:active, a:visited:focus {
  color: hsl(35, 15%, 100%);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

input[type=range]:focus {
  outline: none;
}

.marquee {
  --gap: 4rem;
  position: absolute;
  top: calc(var(--header-height) + 0.5rem);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--color-active);
  text-shadow: 0 2px 8px #000;
}
.marquee ul {
  margin: 0;
  padding: 0.5rem 0;
  list-style-type: none;
}
.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 90s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation: none;
    display: block;
    max-width: 100vw;
  }
  .marquee__content > * {
    display: inline-block;
    margin-right: var(--gap);
  }
  .marquee__content > *:last-child {
    margin-right: 0;
  }
}
.marquee:hover .marquee__content, .marquee:focus .marquee__content {
  animation-play-state: paused;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.marquee a:link {
  text-decoration: none;
}
.marquee .amount {
  font-weight: 500;
}
.marquee .countdown {
  font-family: monospace;
}

#design {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100dvh;
  top: 0;
  margin: 0;
  padding: var(--control-margin);
  display: grid;
  grid-template-columns: var(--control-size) 1fr;
  grid-template-rows: 1fr min-content;
  gap: var(--control-margin);
  grid-template-areas: "colors image" "colors styles";
}
@media screen and (min-aspect-ratio: 1/1) {
  #design {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr min-content var(--control-size);
    grid-template-areas: "image" "styles" "colors";
  }
}
.hairstyles.show #design {
  display: flex;
  position: unset;
  height: unset;
  margin: 0 auto;
  overflow: visible;
}
#design button {
  cursor: pointer;
  background: var(--color-text);
  color: #000;
  font-weight: 500;
  z-index: 1;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
#design button:hover, #design button:active, #design button:focus {
  background-color: var(--color-active);
  border-color: var(--color-active);
}
#design .form {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  place-content: center center;
  display: grid;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}
#design .form .container {
  display: flex;
  width: 30rem;
  gap: 1rem;
}
#design .form label {
  position: relative;
}
#design .form label .label {
  display: block;
  position: absolute;
  top: -3.5rem;
  text-indent: 0.15rem;
  font-weight: 600;
}
#design .image {
  grid-area: image;
  display: flex;
  place-content: center;
  position: relative;
  text-align: center;
}
#design .image img {
  display: block;
  position: absolute;
  z-index: -1;
  align-self: center;
  aspect-ratio: 1;
  width: auto;
  height: 100%;
  max-height: min(800px, 100vh);
  transition: filter 0.2s;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .image img {
    width: auto;
    height: auto;
    max-width: min(800px, 100vw);
    max-height: 150vh;
    margin-top: 6rem;
  }
}
#design .image img.loading {
  filter: hue-rotate(360deg) brightness(1.5) saturate(150%) blur(0.75rem);
}
.hairstyles.show #design .image {
  place-self: start center;
  margin: 0 auto;
  flex-direction: column;
  gap: 1rem;
}
.hairstyles.show #design .image p {
  max-width: 40rem;
}
.hairstyles.show #design .image figure {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.hairstyles.show #design .image figcaption {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.hairstyles.show #design .image img {
  position: unset;
  border-radius: 50%;
  max-height: 400px;
  max-width: 100%;
  margin-top: -5%;
}
#design label.name {
  justify-content: space-between;
  min-width: min-content;
  max-width: 18rem;
  width: 100%;
}
#design label.name > button.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -0.7rem 0 0.5rem;
  padding: 0 0.5rem;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-inactive);
}
#design label.name > button.icon:hover {
  color: var(--color-active);
}
#design label.name > button.icon svg {
  height: 1.75rem;
  fill: currentColor;
}
#design .styles {
  grid-area: styles;
  position: relative;
}
#design .styles .floating {
  display: flex;
  position: absolute;
  width: 100%;
  margin-bottom: 8vh;
  bottom: 2rem;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}
#design .styles .floating > button {
  background-color: var(--color-text);
  color: #000;
}
#design .styles .floating > button:hover, #design .styles .floating > button:active, #design .styles .floating > button:focus {
  background-color: var(--color-active);
  border-color: var(--color-active);
}
#design .styles input[type=range] {
  display: block;
  width: 100%;
  height: var(--control-size);
  appearance: none;
  background-color: transparent;
}
#design .styles input[type=range]::-webkit-slider-runnable-track {
  height: 0.25rem;
  background-color: var(--color-inactive);
  transition: background-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
}
#design .styles input[type=range]::-webkit-slider-runnable-track:hover, #design .styles input[type=range]:focus::-webkit-slider-runnable-track {
  background-color: var(--color-active);
}
#design .styles input[type=range]::-webkit-slider-thumb {
  margin-top: -1.5rem;
  width: var(--control-size);
  height: var(--control-size);
  border-radius: 50%;
  border: 0.25rem solid var(--color-inactive);
  transition: border-color 0.2s;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
}
#design .styles input[type=range]::-webkit-slider-thumb:hover, #design .styles input[type=range]:hover::-webkit-slider-thumb, #design .styles input[type=range]:focus:-webkit-slider-thumb {
  border-color: var(--color-active);
}
#design .styles input[type=range]::-moz-range-track {
  height: 0.25rem;
  background-color: var(--color-inactive);
  transition: background-color 0.2s;
  cursor: pointer;
}
#design .styles input[type=range]::-moz-range-track:hover, #design .styles input[type=range]:focus::-moz-range-track {
  background-color: var(--color-active);
}
#design .styles input[type=range]::-moz-range-thumb {
  margin-top: -1.5rem;
  width: var(--control-size);
  height: var(--control-size);
  border-radius: 50%;
  border: 0.25rem solid var(--color-inactive);
  transition: border-color 0.2s;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background: #000;
  cursor: pointer;
}
#design .styles input[type=range]::-moz-range-thumb:hover, #design .styles input[type=range]:hover::-moz-range-thumb, #design .styles input[type=range]:focus::-moz-range-thumb {
  border-color: var(--color-active);
}
#design .styles input[type=range]::-ms-track {
  height: 0.25rem;
  background-color: var(--color-inactive);
  transition: background-color 0.2s;
  cursor: pointer;
}
#design .styles input[type=range]::-ms-track:hover, #design .styles input[type=range]:focus::-ms-track {
  background-color: var(--color-active);
}
#design .styles input[type=range]::-ms-thumb {
  margin-top: -1.5rem;
  width: var(--control-size);
  height: var(--control-size);
  border-radius: 50%;
  border: 0.25rem solid var(--color-inactive);
  transition: border-color 0.2s;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background: #000;
  cursor: pointer;
}
#design .styles input[type=range]::-ms-thumb:hover, #design .styles input[type=range]:hover::-ms-thumb, #design .styles input[type=range]:focus::-ms-thumb {
  border-color: var(--color-active);
}
#design .colors {
  grid-area: colors;
  background: linear-gradient(to bottom, #54371d 0% 1.471%, #000000 1.471% 2.941%, #191919 2.941% 4.412%, #494949 4.412% 5.882%, #4b3329 5.882% 7.353%, #583c2f 7.353% 8.824%, #764639 8.824% 10.294%, #915334 10.294% 11.765%, #695038 11.765% 13.235%, #80623c 13.235% 14.706%, #937a63 14.706% 16.176%, #ad8057 16.176% 17.647%, #bb8c4b 17.647% 19.118%, #c79860 19.118% 20.588%, #d89a70 20.588% 22.059%, #e8af6b 22.059% 23.529%, #dab57f 23.529% 25%, #e7bb94 25% 26.471%, #dbc9b4 26.471% 27.941%, #7a697a 27.941% 29.412%, #7d7270 29.412% 30.882%, #878174 30.882% 32.353%, #9b8f84 32.353% 33.824%, #b5a198 33.824% 35.294%, #c5b7ae 35.294% 36.765%, #c8c8d7 36.765% 38.235%, #75363b 38.235% 39.706%, #9a1a1a 39.706% 41.176%, #a12831 41.176% 42.647%, #bd2816 42.647% 44.118%, #e43430 44.118% 45.588%, #9a310a 45.588% 47.059%, #9e4524 47.059% 48.529%, #d04e2e 48.529% 50%, #e15d23 50% 51.471%, #c07031 51.471% 52.941%, #bf7a44 52.941% 54.412%, #ec8c42 54.412% 55.882%, #e9931b 55.882% 57.353%, #e0b42b 57.353% 58.824%, #e9bc2a 58.824% 60.294%, #e1e156 60.294% 61.765%, #9ad254 61.765% 63.235%, #84a739 63.235% 64.706%, #738747 64.706% 66.176%, #83bc7f 66.176% 67.647%, #68b374 67.647% 69.118%, #3cb27f 69.118% 70.588%, #5f907e 70.588% 72.059%, #2a6c54 72.059% 73.529%, #539b9b 73.529% 75%, #4ea3c3 75% 76.471%, #4d8ebc 76.471% 77.941%, #4777a9 77.941% 79.412%, #6085db 79.412% 80.882%, #6475b6 80.882% 82.353%, #5c639f 82.353% 83.824%, #665877 83.824% 85.294%, #886687 85.294% 86.765%, #a784b1 86.765% 88.235%, #ad96d8 88.235% 89.706%, #be88bc 89.706% 91.176%, #e073db 91.176% 92.647%, #e36f90 92.647% 94.118%, #e7436e 94.118% 95.588%, #d63e65 95.588% 97.059%, #b35c8d 97.059% 98.529%, #954472 98.529% 100%);
  transform: rotate(180deg);
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors {
    background: linear-gradient(to right, #54371d 0% 1.471%, #000000 1.471% 2.941%, #191919 2.941% 4.412%, #494949 4.412% 5.882%, #4b3329 5.882% 7.353%, #583c2f 7.353% 8.824%, #764639 8.824% 10.294%, #915334 10.294% 11.765%, #695038 11.765% 13.235%, #80623c 13.235% 14.706%, #937a63 14.706% 16.176%, #ad8057 16.176% 17.647%, #bb8c4b 17.647% 19.118%, #c79860 19.118% 20.588%, #d89a70 20.588% 22.059%, #e8af6b 22.059% 23.529%, #dab57f 23.529% 25%, #e7bb94 25% 26.471%, #dbc9b4 26.471% 27.941%, #7a697a 27.941% 29.412%, #7d7270 29.412% 30.882%, #878174 30.882% 32.353%, #9b8f84 32.353% 33.824%, #b5a198 33.824% 35.294%, #c5b7ae 35.294% 36.765%, #c8c8d7 36.765% 38.235%, #75363b 38.235% 39.706%, #9a1a1a 39.706% 41.176%, #a12831 41.176% 42.647%, #bd2816 42.647% 44.118%, #e43430 44.118% 45.588%, #9a310a 45.588% 47.059%, #9e4524 47.059% 48.529%, #d04e2e 48.529% 50%, #e15d23 50% 51.471%, #c07031 51.471% 52.941%, #bf7a44 52.941% 54.412%, #ec8c42 54.412% 55.882%, #e9931b 55.882% 57.353%, #e0b42b 57.353% 58.824%, #e9bc2a 58.824% 60.294%, #e1e156 60.294% 61.765%, #9ad254 61.765% 63.235%, #84a739 63.235% 64.706%, #738747 64.706% 66.176%, #83bc7f 66.176% 67.647%, #68b374 67.647% 69.118%, #3cb27f 69.118% 70.588%, #5f907e 70.588% 72.059%, #2a6c54 72.059% 73.529%, #539b9b 73.529% 75%, #4ea3c3 75% 76.471%, #4d8ebc 76.471% 77.941%, #4777a9 77.941% 79.412%, #6085db 79.412% 80.882%, #6475b6 80.882% 82.353%, #5c639f 82.353% 83.824%, #665877 83.824% 85.294%, #886687 85.294% 86.765%, #a784b1 86.765% 88.235%, #ad96d8 88.235% 89.706%, #be88bc 89.706% 91.176%, #e073db 91.176% 92.647%, #e36f90 92.647% 94.118%, #e7436e 94.118% 95.588%, #d63e65 95.588% 97.059%, #b35c8d 97.059% 98.529%, #954472 98.529% 100%);
    transform: none;
  }
}
#design .colors input[type=range] {
  display: block;
  width: var(--control-size);
  height: 100%;
  background: transparent;
  box-sizing: content-box;
  border: var(--control-margin) solid #000;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  margin: calc(-1 * var(--control-margin));
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  writing-mode: vertical-lr;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range] {
    width: 100%;
    height: var(--control-size);
    writing-mode: horizontal-tb;
  }
}
#design .colors input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--control-size);
  cursor: pointer;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-webkit-slider-runnable-track {
    width: var(--control-size);
    height: 100%;
  }
}
#design .colors input[type=range]::-webkit-slider-thumb {
  width: var(--control-size);
  height: 1.471%;
  background: transparent;
  outline: 0.1875rem solid var(--color-inactive);
  transition: outline-color 0.2s;
  border-radius: 0.125rem;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-appearance: none;
  cursor: pointer;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-webkit-slider-thumb {
    width: 1.471%;
    height: var(--control-size);
  }
}
#design .colors input[type=range]::-webkit-slider-thumb:hover, #design .colors input[type=range]:hover::-webkit-slider-thumb, #design .colors input[type=range]:focus::-webkit-slider-thumb {
  outline-color: var(--color-active);
}
#design .colors input[type=range]::-moz-range-track {
  width: 100%;
  height: var(--control-size);
  cursor: pointer;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-moz-range-track {
    width: var(--control-size);
    height: 100%;
  }
}
#design .colors input[type=range]::-moz-range-thumb {
  width: var(--control-size);
  height: 1.471%;
  background: transparent;
  outline: 0.1875rem solid var(--color-inactive);
  transition: outline-color 0.2s;
  border-radius: 0.125rem;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  cursor: pointer;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-moz-range-thumb {
    width: 1.471%;
    height: var(--control-size);
  }
}
#design .colors input[type=range]::-moz-range-thumb:hover, #design .colors input[type=range]:hover::-moz-range-thumb, #design .colors input[type=range]:focus::-moz-range-thumb {
  outline-color: var(--color-active);
}
#design .colors input[type=range]::-ms-track {
  width: 100%;
  height: var(--control-size);
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-ms-track {
    width: var(--control-size);
    height: 100%;
  }
}
#design .colors input[type=range]::-ms-thumb {
  width: var(--control-size);
  height: 1.471%;
  background: transparent;
  outline: 0.1875rem solid var(--color-inactive);
  transition: outline-color 0.2s;
  border-radius: 0.125rem;
  box-shadow: 0 0 1rem 0.3125rem rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%, rgba(255, 255, 255, 0.2) 100%);
  cursor: pointer;
}
@media screen and (min-aspect-ratio: 1/1) {
  #design .colors input[type=range]::-ms-thumb {
    width: 1.471%;
    height: var(--control-size);
  }
}
#design .colors input[type=range]::-ms-thumb:hover, #design .colors input[type=range]:hover::-ms-thumb, #design .colors input[type=range]:focus::-ms-thumb {
  outline-color: var(--color-active);
}

.apple-pay-only {
  display: none;
  font-size: 1.25rem;
}

@supports (-webkit-appearance: -apple-pay-button) {
  .apple-pay-only {
    display: unset;
  }
  .apple-pay-button {
    display: inline-block;
    vertical-align: middle;
    text-indent: -9999px;
    overflow: hidden;
    -webkit-appearance: -apple-pay-button;
    -apple-pay-button-style: white;
    -apple-pay-button-type: donate;
  }
}
#pledge {
  display: grid;
  width: 100%;
  max-width: 600px;
  position: relative;
  margin: 0 auto 5rem auto;
  z-index: 5;
}
#pledge > p {
  line-height: 1.5;
  text-align: center;
}

table.table {
  border-collapse: collapse;
  font-size: 1.25rem;
  line-height: 1.5;
  width: 100%;
}
table.table.leaderboard tr.winning td {
  background-color: rgba(255, 245, 221, 0.15);
  color: var(--color-active);
}
table.table.leaderboard tr.winning td.rank {
  font-size: 1.75rem;
}
table.table.leaderboard tr.winning td.amount {
  font-size: 1.66rem;
  font-weight: 500;
}
table.table.leaderboard td.style {
  width: 100%;
}
table.table td {
  padding: 0 1.5rem;
}
table.table td.amount {
  text-align: right;
}
@media screen and (min-width: 700px) {
  table.table td.amount {
    font-size: 1.33rem;
  }
}
table.table td.rank {
  text-align: center;
  padding-right: 0;
}
table.table td.rank, table.table td.amount {
  font-weight: 300;
}
table.table td.rank .number, table.table td.amount .number {
  font-weight: 600;
}
table.table td.name {
  text-align: left;
  margin-bottom: 0.5rem;
}
table.table td.style {
  padding: 0;
  min-width: 10rem;
}
table.table td.style figure {
  display: flex;
  align-items: center;
}
table.table td.style figure > a {
  clip-path: circle(3rem);
}
@media screen and (min-width: 1100px) {
  table.table td.style figure > a {
    clip-path: circle(4rem);
  }
}
table.table td.style figure img {
  transform: scale(160%) translate(-2%, 6%);
}
table.table td.style figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
table.table td.style figcaption .meta {
  color: var(--color-inactive);
  font-size: 1rem;
}
table.table td.style img {
  aspect-ratio: 1;
  border-radius: 50%;
  vertical-align: middle;
  height: 6rem;
  margin: 0.5rem 1rem;
}
@media screen and (min-width: 1100px) {
  table.table td.style img {
    height: 8rem;
    margin: 1rem;
  }
}
table.table figure {
  margin: 0;
}
table.table figure > * {
  display: inline-block;
  vertical-align: middle;
}
