/* Donation request: the Donation request pattern in a centred box over a dimmed page,
   shown once after 30 seconds on the site */
#donations { display: none; position: fixed; inset: 0; z-index: 3000; align-items: center; justify-content: center; background-color: rgba(0, 0, 0, 0.6); }
#donations .insides { position: relative; max-width: 30rem; margin: 1rem; padding: 1.5rem; border-radius: 5px; background-color: #fff; text-align: center; }
#donations .close { position: absolute; top: 0.25rem; right: 0.75rem; color: var(--wp--preset--color--hdyo-blue); font-weight: 700; text-decoration: none; }
#donations .contents > * + * { margin-top: 0.75rem; }
#donations .contents h2 { margin: 0; padding: 0; }
#donations .contents img { max-width: 100%; height: auto; }
@media print { #donations { display: none !important; } }
