.donate-box {
	max-width: 420px;
	margin: 60px 0 0;
}

.donate-box__legend {
	padding: 0 0 8px;
}

.donate-box__amounts {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin-bottom: 16px;
}

.donate-box__amount input {
	position: absolute;
	opacity: 0;
}

.donate-box__amount span {
	display: block;
	padding: 11px;
	border: 2px solid transparent;
	font-family: "Pressura Mono", Arial, Helvetica, sans-serif;
	color: rgba(0,0,0,.5);
	font-size: 22px;
	background-color: #F1EAE0;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
}

.donate-box__amount input:checked + span {
	background: #E1E8E2;
	color: #587868;
	border: 2px solid currentColor;
}

.donate-box__custom-radio {
	display: none !important;
}

.donate-box__custom {
	display: grid;
	gap: 8px;
	margin-bottom: 16px;
}

.donate-box__custom input {
	width: 100%;
	padding: 12px 12px 12px 24px;
	border: 1px solid currentColor;
	border-radius: 8px;
	background: transparent;
	max-width: 313px;
}

.donate-box__custom-input-wrap {
	position: relative;
}

.donate-box__custom-input-wrap::after {
	content: "€";
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
}

.donate-box-disclaimer {
	padding: 12px;
	border: 1px solid rgba(0,0,0,.25); 
	border-radius: 8px;
	margin-bottom: 15px;
}

.donate-box-disclaimer p {
	margin: 0;
	font-size: 14px;
}

.donate-box__button {
	width: 100%;
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
}