/* HIDE RADIO */
[type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
  
/* IMAGE STYLES */
[type=radio] + img {
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

div:has(>[type=radio]) {
  cursor: pointer;
  border-radius: 12px;
  padding: 8px;
}
  
/* CHECKED STYLES */
[type=radio]:checked + img, div:has(>[type=radio]:checked) {
  outline: 3px solid rgba(40, 201, 0, 0.7);
}

#donate-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#donate-box img {
  margin: 20px;
}
@media only screen and (max-width: 600px) {
    #donate-box img {
        width: 75px;
        height: 75px;
    }
}

#donate-box hr {
  flex-basis: 100%;
  height: 0;
  margin: 0;
  border: 0;
}

#donate-box span:has(small){
  display: table;
  margin: 0 auto;
}
.button-wrapper {
  display: flex;
  justify-content: space-around;
  margin-left: 15%;
  margin-right: 15%;
}

#spinner, .donate-button {
  grid-column: 1;
  grid-row: 1;
}
#spinner {
  margin-top: 20px;
  width: 3em;
  height: 3em;
}
.donate-button p {
  text-align: center;
}
.donate-button img {
  border-radius: 10px;
  width: 100px;
}

.htmx-indicator{
  display:none;
  opacity:0;
  transition: opacity 200ms ease-in;
}
.htmx-request .htmx-indicator{
  opacity:1;
  display:inline;
}
.htmx-request.htmx-indicator{
  opacity:1;
  display:inline;
}