[data-component=Contribute] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8666666667);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-component=Contribute] .contribute-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 50%;
  padding: 2em;
  background: #fff;
  border: solid 1px #333;
}
[data-component=Contribute] .contribute-form .close-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin: 10px 20px;
}
[data-component=Contribute] .contribute-form .close-button::before {
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  width: 24px;
  height: 4px;
  background-color: #666;
  content: "";
  position: absolute;
  transform: rotate(45deg);
}
[data-component=Contribute] .contribute-form .close-button::after {
  width: 24px;
  height: 4px;
  background-color: #666;
  content: "";
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -2px;
  position: absolute;
  transform: rotate(-45deg);
}
[data-component=Contribute] .contribute-form h2 {
  font-size: 1.3em;
  font-weight: bold;
}
[data-component=Contribute] .contribute-form fieldset {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
[data-component=Contribute] .contribute-form fieldset label {
  font-weight: bold;
}
[data-component=Contribute] .contribute-form fieldset input, [data-component=Contribute] .contribute-form fieldset textarea {
  padding: 0.5em;
  border: solid 1px #333;
}
[data-component=Contribute] .contribute-form fieldset textarea {
  min-height: 200px;
}
[data-component=Contribute] .contribute-form fieldset .error {
  color: #B55;
  border-color: #B55;
}
[data-component=Contribute] .contribute-form button.send {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 40px;
  padding: 0.5em 1em;
  background: #EEE;
  color: #333;
  border: solid 1px #333;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.5s background;
}
[data-component=Contribute] .contribute-form button.send:hover {
  background-color: #DDD;
}
[data-component=Contribute] .contribute-form p.error {
  padding: 0.5em;
  color: #B55;
  border: solid 1px #B55;
}
[data-component=Contribute] .contribute-form.loading fieldset {
  opacity: 0.5;
}
[data-component=Contribute] .contribute-form.loading button.send {
  opacity: 0.35;
  cursor: default;
}
[data-component=Contribute] .contribute-form.loading button.send:hover {
  background: #EEE;
}
[data-component=Contribute] .contribute-form.loading button.send .loader {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
[data-component=Contribute] .contribute-form.loading button.send .loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 1px solid #333;
  animation: prixClipFix 2s linear infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}/*# sourceMappingURL=contribute.css.map */