.donationSystems {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 100%;
	margin-top: 25px;
}

.donationSystems div {
	min-width: 315px;
	box-sizing: border-box;
}

.donationBonuses {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 24px;
}

.donationBonusCard {
	flex: 1 1 220px;
	min-width: 220px;
	background: #f8f8f8;
	border-radius: 10px;
	box-shadow: 0 1px 4px #0001;
	padding: 18px;
	display: flex;
	flex-direction: column;
}

.donationBonusTitle {
	font-size: 1em;
	font-weight: bold;
	color: var(--main_blue);
	margin-bottom: 8px;
}

.donationProgressWrapper {
	max-width: 400px;
	margin-bottom: 10px;
}

.donationProgressBarBg {
	background: #eee;
	border-radius: 8px;
	overflow: hidden;
	height: 28px;
	box-shadow: 0 1px 2px #0001;
}

.donationProgressBar {
	height: 100%;
	background: #4caf50;
	transition: width 0.5s;
}

.donationProgressText {
	font-size: 14px;
	margin-top: 4px;
	text-align: right;
}

