/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*! Hint.css - v3.0.0 - 2023-11-29
* https://kushagra.dev/lab/hint/
* Copyright (c) 2023 Kushagra Gour */
[class*=hint--] {
  position: relative;
  display: inline-block;
}

[class*=hint--]:after, [class*=hint--]:before {
  position: absolute;
  transform: translate3d(0, 0, 0);
  visibility: hidden;
  opacity: 0;
  z-index: 1000000;
  pointer-events: none;
  transition: 0.3s ease;
  transition-delay: 0s;
}

[class*=hint--]:hover:after, [class*=hint--]:hover:before {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.1s;
}

[class*=hint--]:before {
  content: "";
  position: absolute;
  background: #383838;
  border: 6px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 1000001;
}

[class*=hint--]:after {
  background: #383838;
  color: #fff;
  padding: 8px 10px;
  font-size: 1rem;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1rem;
  white-space: nowrap;
  text-shadow: 0 1px 0 #000;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.hint--error:after, .hint--error:before {
  background-color: #b24e4c;
}

[class*=hint--][aria-label]:after {
  content: attr(aria-label);
}

[class*=hint--][data-hint]:after {
  content: attr(data-hint);
}

[aria-label=""]:after, [aria-label=""]:before, [data-hint=""]:after, [data-hint=""]:before {
  display: none !important;
}

.hint--top {
  --rotation:135deg;
}

.hint--top:after, .hint--top:before {
  bottom: 100%;
  left: 50%;
}

.hint--top:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--top:after {
  transform: translateX(-50%);
}

.hint--top:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--top:hover:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--bottom {
  --rotation:-45deg;
}

.hint--bottom:after, .hint--bottom:before {
  top: 100%;
  left: 50%;
}

.hint--bottom:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--bottom:after {
  transform: translateX(-50%);
}

.hint--bottom:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--bottom:hover:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--right {
  --rotation:-135deg;
}

.hint--right:before {
  margin-left: -5.5px;
  margin-bottom: -6px;
  transform: rotate(var(--rotation));
}

.hint--right:after {
  margin-bottom: calc(-1 * (1rem + 16px) / 2);
}

.hint--right:after, .hint--right:before {
  left: 100%;
  bottom: 50%;
}

.hint--right:hover:before {
  transform: translateX(8px) rotate(var(--rotation));
}

.hint--right:hover:after {
  transform: translateX(8px);
}

.hint--left {
  --rotation:45deg;
}

.hint--left:before {
  margin-right: -5.5px;
  margin-bottom: -6px;
  transform: rotate(var(--rotation));
}

.hint--left:after {
  margin-bottom: calc(-1 * (1rem + 16px) / 2);
}

.hint--left:after, .hint--left:before {
  right: 100%;
  bottom: 50%;
}

.hint--left:hover:before {
  transform: translateX(-8px) rotate(var(--rotation));
}

.hint--left:hover:after {
  transform: translateX(-8px);
}

.hint--top-left {
  --rotation:135deg;
}

.hint--top-left:after, .hint--top-left:before {
  bottom: 100%;
  left: 50%;
}

.hint--top-left:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--top-left:after {
  transform: translateX(-100%);
  margin-left: 12px;
}

.hint--top-left:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--top-left:hover:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--top-right {
  --rotation:135deg;
}

.hint--top-right:after, .hint--top-right:before {
  bottom: 100%;
  left: 50%;
}

.hint--top-right:before {
  margin-bottom: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--top-right:after {
  transform: translateX(0);
  margin-left: -12px;
}

.hint--top-right:hover:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--top-right:hover:after {
  transform: translateY(-8px);
}

.hint--bottom-left {
  --rotation:-45deg;
}

.hint--bottom-left:after, .hint--bottom-left:before {
  top: 100%;
  left: 50%;
}

.hint--bottom-left:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--bottom-left:after {
  transform: translateX(-100%);
  margin-left: 12px;
}

.hint--bottom-left:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--bottom-left:hover:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--bottom-right {
  --rotation:-45deg;
}

.hint--bottom-right:after, .hint--bottom-right:before {
  top: 100%;
  left: 50%;
}

.hint--bottom-right:before {
  margin-top: -5.5px;
  transform: rotate(var(--rotation));
  left: calc(50% - 6px);
}

.hint--bottom-right:after {
  transform: translateX(0);
  margin-left: -12px;
}

.hint--bottom-right:hover:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--bottom-right:hover:after {
  transform: translateY(8px);
}

.hint--fit:after, .hint--large:after, .hint--medium:after, .hint--small:after {
  box-sizing: border-box;
  white-space: normal;
  line-height: 1.4em;
  word-wrap: break-word;
}

.hint--small:after {
  width: 80px;
}

.hint--medium:after {
  width: 150px;
}

.hint--large:after {
  width: 300px;
}

.hint--fit:after {
  width: 100%;
}

.hint--error:after {
  text-shadow: 0 1px 0 #592726;
}

.hint--warning:after, .hint--warning:before {
  background-color: #bf9853;
}

.hint--warning:after {
  text-shadow: 0 1px 0 #6c5328;
}

.hint--info:after, .hint--info:before {
  background-color: #3985ac;
}

.hint--info:after {
  text-shadow: 0 1px 0 #1a3c4d;
}

.hint--success:after, .hint--success:before {
  background-color: #458646;
}

.hint--success:after {
  text-shadow: 0 1px 0 #1a321a;
}

.hint--always:after, .hint--always:before {
  opacity: 1;
  visibility: visible;
}

.hint--always.hint--top:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--always.hint--top:after {
  transform: translateX(-50%) translateY(-8px);
}

.hint--always.hint--top-left:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--always.hint--top-left:after {
  transform: translateX(-100%) translateY(-8px);
}

.hint--always.hint--top-right:before {
  transform: translateY(-8px) rotate(var(--rotation));
}

.hint--always.hint--top-right:after {
  transform: translateY(-8px);
}

.hint--always.hint--bottom:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--always.hint--bottom:after {
  transform: translateX(-50%) translateY(8px);
}

.hint--always.hint--bottom-left:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--always.hint--bottom-left:after {
  transform: translateX(-100%) translateY(8px);
}

.hint--always.hint--bottom-right:before {
  transform: translateY(8px) rotate(var(--rotation));
}

.hint--always.hint--bottom-right:after {
  transform: translateY(8px);
}

.hint--always.hint--left:before {
  transform: translateX(-8px) rotate(var(--rotation));
}

.hint--always.hint--left:after {
  transform: translateX(-8px);
}

.hint--always.hint--right:before {
  transform: translateX(8px) rotate(var(--rotation));
}

.hint--always.hint--right:after {
  transform: translateX(8px);
}

.hint--rounded:before {
  border-radius: 0 4px 0 0;
}

.hint--rounded:after {
  border-radius: 4px;
}

.hint--no-animate:after, .hint--no-animate:before {
  transition-duration: 0s;
}

.hint--bounce:after, .hint--bounce:before {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}

@supports (transition-timing-function: linear(0, 1)) {
  .hint--bounce:after, .hint--bounce:before {
    --spring-easing:linear(
    	0,
    	0.009,
    	0.035 2.1%,
    	0.141 4.4%,
    	0.723 12.9%,
    	0.938,
    	1.077 20.4%,
    	1.121,
    	1.149 24.3%,
    	1.159,
    	1.163 27%,
    	1.154,
    	1.129 32.8%,
    	1.051 39.6%,
    	1.017 43.1%,
    	0.991,
    	0.977 51%,
    	0.975 57.1%,
    	0.997 69.8%,
    	1.003 76.9%,
    	1
    );
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.5s var(--spring-easing);
  }
}
.hint--no-shadow:after, .hint--no-shadow:before {
  text-shadow: initial;
  box-shadow: initial;
}

.hint--no-arrow:before {
  display: none;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  line-height: 2rem;
}

body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a,
button {
  color: inherit;
  transition: 0.5s;
}

a {
  text-decoration: none;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  width: 100%;
  max-width: 100%;
  min-height: 2px;
}

button,
input {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

html {
  font-family: "Montserrat", sans-serif;
  background: #f5f5f5;
  color: #37474f;
  scroll-behavior: smooth;
}

.dark-bg {
  color: #fff;
  background-color: #42474b;
}

header h1.title {
  margin: 0.5em 0 0.25em;
  font-size: 1.5em;
  letter-spacing: 1px;
}
header h1.title a {
  color: #fff;
}
header h1.title strong {
  color: #2d3130;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.3019607843);
  margin-right: 6px;
  font-size: 1.1em;
}

footer {
  text-align: right;
  margin-bottom: 15px;
  font-size: 15px;
}
footer a {
  margin-left: 12px;
  color: #607d8b;
}
footer a > i {
  margin: 0 2px;
}

.row {
  display: flex;
  flex: 1 0 auto;
  flex-wrap: wrap;
  padding: 2em 0;
}
@media screen and (min-width: 1024px) {
  .row {
    margin: 0 -15px;
  }
}
.row > * {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .row > * {
    padding: 0 15px;
  }
}

.container {
  position: relative;
  padding: 1rem calc(1.5rem + 50vw - 100vw / 2);
}
@media screen and (min-width: 1024px) {
  .container {
    padding: 1rem calc(1.5rem + 50vw - 960px / 2);
  }
}
@media screen and (min-width: 1280px) {
  .container {
    padding: 1rem calc(1.5rem + 50vw - 1152px / 2);
  }
}
@media screen and (min-width: 1440px) {
  .container {
    padding: 1rem calc(1.5rem + 50vw - 1344px / 2);
  }
}
.container > section {
  padding-top: 2em;
  padding-bottom: 3em;
  border-top: 1px solid #dcdcdc;
  opacity: 1;
  transition: opacity 0.5s;
}
.container > section:first-child {
  border-top: none;
}
.container > section.hidden {
  opacity: 0;
  max-height: 0;
  padding: 0;
}
.container > section.hide {
  display: none;
}

.button,
.input {
  border-radius: 0.25rem;
}
.button:focus,
.input:focus {
  outline: none;
}

.input {
  border: 1px solid transparent;
  padding: 0.6rem;
  font-size: 15px;
  font-family: Verdana;
  font-weight: 200;
}

.button {
  position: relative;
  padding: 0.6rem 2rem;
  letter-spacing: 1px;
  box-shadow: 0px 0px 0px 0px transparent;
  transition: 0.5s box-shadow;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.1254901961);
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
}
.button:focus {
  outline: none;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.7);
}
.button.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button .tag {
  position: absolute;
  top: -12px;
  right: -30px;
  background: #323639;
  color: white;
  padding: 6px 6px;
  font-size: 10px;
  border-radius: 20px;
  line-height: 12px;
  border: 1px solid;
}

/**
 * prism.js Coy theme for JavaScript, CoffeeScript, CSS and HTML
 * Based on https://github.com/tshedor/workshop-wp-theme (Example: http://workshop.kansan.com/category/sessions/basics or http://workshop.timshedor.com/category/sessions/basics);
 * @author Tim  Shedor
 */
code[class*=language-], code.language,
pre[class*=language-],
pre.language {
  color: black;
  background: none;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*=language-], pre.language {
  position: relative;
  margin: 0.5em 0;
  overflow: visible;
  padding: 0;
}

pre[class*=language-] > code, pre.language > code {
  position: relative;
  border-left: 10px solid #90A4AE;
  box-shadow: -1px 0px 0px 0px #90A4AE, 0px 0px 0px 1px #dfdfdf;
  background-color: #fdfdfd;
}

code[class*=language], code.language {
  max-height: inherit;
  height: inherit;
  padding: 0.5em 1em;
  display: block;
  overflow: auto;
  border-radius: 0.3em;
}

/* Margin bottom to accomodate shadow */
:not(pre):not(pre.language) > code[class*=language-], :not(pre):not(pre.language) > code.language,
pre[class*=language-],
pre.language {
  background-color: #fdfdfd;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 1em;
}

/* Inline code */
:not(pre):not(pre.language) > code[class*=language-], :not(pre):not(pre.language) > code.language {
  position: relative;
  padding: 0.2em;
  border-radius: 0.3em;
  color: #c92c2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline;
  white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7d8b99;
}

.token.punctuation {
  color: #607d8b;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.function-name,
.token.constant,
.token.symbol,
.token.deleted {
  color: #e06c75;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.function,
.token.builtin,
.token.inserted {
  color: #d19a66;
}

.token.operator,
.token.entity,
.token.url,
.token.variable {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.atrule,
.token.attr-value,
.token.keyword,
.token.class-name {
  color: #98c379;
}

.token.regex,
.token.important {
  color: #e90;
}

.language-css .token.string,
.style .token.string {
  color: #a67f59;
  background: rgba(255, 255, 255, 0.5);
}

.token.important {
  font-weight: normal;
}

.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.namespace {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  pre[class*=language-]:before, pre.language:before,
  pre[class*=language-]:after,
  pre.language:after {
    bottom: 14px;
    box-shadow: none;
  }
}
/* Plugin styles */
.token.tab:not(:empty):before,
.token.cr:before,
.token.lf:before {
  color: #e0d7d1;
}

/* Plugin styles: Line Numbers */
pre[class*=language-].line-numbers.line-numbers, pre.line-numbers.line-numbers.language {
  padding-left: 0;
}

pre[class*=language-].line-numbers.line-numbers code, pre.line-numbers.line-numbers.language code {
  padding-left: 3.8em;
}

pre[class*=language-].line-numbers.line-numbers .line-numbers-rows, pre.line-numbers.line-numbers.language .line-numbers-rows {
  left: 0;
}

/* Plugin styles: Line Highlight */
pre[class*=language-][data-line], pre[data-line].language {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

pre[data-line] code {
  position: relative;
  padding-left: 4em;
}

pre .line-highlight {
  margin-top: 0;
}

code, code.language {
  color: #607d8b;
}
code .method {
  color: #98c379;
}
code .param-name {
  color: #d19a66;
}
code .param-value {
  color: #e06c75;
}

.progress {
  background: #efefef;
  height: 12px;
  border-radius: 20px;
  overflow: hidden;
}
.progress > div {
  --percentage: 0;
  width: calc(var(--percentage) * 1%);
  height: 100%;
  background-color: hsl(calc(120 - var(--percentage) / 100 * 120), 38%, 62%);
  border-radius: 4px;
  transition: width 1.2s, background-color 1.2s;
}
.progress ~ small {
  text-align: right;
  display: block;
}

.providers .provider {
  cursor: default;
  display: block;
}
.providers .provider .fa-check {
  color: #8bc34a;
}
.providers .provider .fa-plus {
  color: #00BCD4;
}
.providers .provider span, .providers .provider a {
  padding-left: 8px;
}
.providers .provider a:link {
  text-decoration: underline;
}
@media screen and (min-width: 640px) {
  .providers .provider {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .providers .provider {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1280px) {
  .providers .provider {
    width: 25%;
  }
}

.browser-extension {
  padding: 0 0 2rem;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .browser-extension {
    text-align: left;
  }
}
.browser-extension .button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background-color: transparent;
  color: white;
  font-family: "Inter", sans-serif;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.browser-extension .button-container {
  gap: 20px;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .browser-extension .button-container {
    flex-direction: column;
  }
}
@media screen and (min-width: 1280px) {
  .browser-extension .button-container {
    flex-direction: row;
  }
}
.browser-extension .button:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.5);
}
.browser-extension .button img {
  width: 48px;
  height: 48px;
}
.browser-extension .button span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  font-size: 16px;
}
.browser-extension .button span strong {
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .browser-extension--input {
    width: 40%;
  }
}
.browser-extension--output {
  grid-template-columns: 1fr 5fr;
}
@media screen and (min-width: 1024px) {
  .browser-extension--output {
    width: 60%;
  }
}
.browser-extension--output .output-frame {
  border-radius: 0px 0px 0.3em 0.3em;
  overflow: hidden;
}
.browser-extension--output .output-frame > div {
  color: #37474f;
}
.browser-extension--output .output-frame > div.preview {
  font-size: 0;
  line-height: 0;
  position: relative;
  text-align: center;
}
.browser-extension--output .output-frame > div.preview img {
  width: auto;
}
@media screen and (max-width: 1023px) {
  .browser-extension--output .output-frame {
    width: 100vw;
    margin: 0 -1.5em -2.5em;
    border-radius: unset;
  }
}

form {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
form label {
  position: relative;
  color: #fff;
  font-weight: bold;
  display: block;
  margin-top: 15px;
  width: 100%;
  letter-spacing: 1px;
}
form label .input[type=checkbox] {
  margin-right: 10px;
}
form label .input[type=text], form label .input[type=url] {
  color: initial;
  width: 100%;
  margin: 0 0 15px;
  height: 40px;
}
form label .input[type=text][name=url], form label .input[type=url][name=url] {
  padding-right: 40px;
}
form label .input[type=text][name=url] ~ img, form label .input[type=url][name=url] ~ img {
  position: absolute;
  bottom: 15px;
  right: 0px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-left: 1px solid #42474b;
}

.buttons {
  text-align: center;
}
.buttons .button {
  margin: 30px 0;
}

.donations.container {
  background: #f6f3f4;
  border-bottom: 1px solid #EF9A9A;
}
.donations > div {
  position: relative;
  z-index: 1;
  background: #f6f3f4;
  padding: 8px 20px;
  border-radius: 3px;
}
.donations .close {
  width: 24px;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 16px;
  height: 24px;
  box-sizing: content-box;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.donations .close svg {
  pointer-events: none;
  width: 100%;
  height: 100%;
  fill: #37474f;
}
.donations span.review {
  color: #4CAF50;
}
.donations span.review svg {
  fill: #4CAF50;
}
.donations a {
  white-space: nowrap;
  color: #0288D1;
}
.donations a.beer img, .donations a.sponsor img, .donations a.host img {
  width: auto;
  height: 20px;
  vertical-align: text-bottom;
  margin: 0px 1px 1px;
}
.donations a.beer {
  color: #f85d5d;
}
.donations a.sponsor {
  color: #db61a2;
}
.donations a.sponsor svg {
  fill: #db61a2;
}
.donations a.star {
  color: #F9A825;
}
.donations a.star svg {
  fill: #F9A825;
}
.donations a.host {
  color: #14bbab;
}
.donations span svg, .donations a svg {
  vertical-align: text-top;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #42474b;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
body.modal {
  overflow: hidden;
}
body.modal .container.donations {
  max-height: 100vh;
  overflow: auto;
}
body.modal .container.donations .close {
  opacity: 1;
  pointer-events: all;
}
body.modal:before {
  opacity: 0.7;
  pointer-events: all;
}