html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	font-family: "Source Sans Pro", sans-serif;
	margin: 0;
}

.donation__form {
	display: flex;
	flex-direction: column;
	min-height: 248px;
}

.donation__form > .donation__form__title {
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin: 0 0 8px;
}

.donation__form > .donation__form__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: auto;
}

.donation__form > .donation__form__body select.donation_amount_select {
	display: none;
}

.donation__form > .donation__form__body .donation__form__input.donation__form__input--hidden {
	display: none;
}

.donation__form > .donation__form__body .donation__form__input.donation__form__input--currency {
	position: relative;
}

.donation__form > .donation__form__body .donation__form__input.donation__form__input--currency::after {
	content: "kr";
	position: absolute;
	height: 48px;
	line-height: 48px;
	right: 16px;
	font-weight: 700;
	font-size: 18px;
}

.donation__form > .donation__form__body .donation_amount_input {
	width: 100%;
	border-radius: 25px;
	border: 0;
	border: solid 1px #999;
	font-size: 18px;
	font-weight: 700;
	height: 48px;
	padding: 0 16px;
	outline: 0;
}

.donation__form .donation__form__body .donation__form__submit {
	background: #f75a33;
	border-radius: 25px;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	gap: 8px;
	justify-content: center;
	line-height: 32px;
	padding: 8px;
}

.donation__form .donation__form__body .donation__form__submit svg {
	align-self: center;
	height: 18px;
	max-width: 75px;
}

.donation__form > .donation__form__footer {
	margin-top: auto;
}

.donation__form > .donation__form__footer ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
}

.donation__form > .donation__form__footer ul li a {
	color: #333;
}

/* Nice select */
select + .nice-select {
	border: solid 1px #999;
	border-radius: 100px;
	padding: 0 16px;
	height: 48px;
	width: 100%;
}

select + .nice-select .current {
	font-weight: 700;
	font-size: 18px;
	line-height: 48px;
}

.nice-select .nice-select-dropdown {
	box-shadow: 0 0 0 1px #999;
	border-radius: 25px;
	overflow: hidden;
	width: 100%;
}

.nice-select .nice-select-dropdown ul {
	margin: 0;
}

.nice-select .nice-select-dropdown ul li {
	font-weight: 700;
	font-size: 18px;
}

.nice-select::before {
	content: "";
	background: #e8e6e3;
	position: absolute;
	border-radius: 30px;
	width: 32px;
	height: 32px;
	top: initial;
	top: 6px;
	right: 6px;
}

.nice-select::after {
	content: "";
	border-bottom: 2px solid #18181a;
	border-right: 2px solid #18181a;
	height: 10px;
	right: 18px;
	top: 20px;
	width: 10px;
}
