* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #d3571e;
	--secondary-color: #af5113;
	--bg-color: #ffffff;
	--text-color: #585858;
	--choice-color: #585858;
	--choice-bg-color: #031835;
	--choice-active-color: #fff;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
		"Helvetica Neue", sans-serif;
	font-size: 1rem;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.7;
}

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding: 1rem;
	overflow: hidden;
}

.logo {
	margin-bottom: -5%;
	align-items: center;
	margin-top: 3rem;
}

.donation {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
	
	border-radius: 0.5rem;
	max-width: 450px;
}

.donation-icon {
	margin-bottom: 1rem;
	width: 100px;
	height: 100px;
}

.donation h1 {
	font-weight: 400;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.donation p {
	margin-bottom: 0.5rem;
	text-align: center;
}

.donation-field {
	margin-bottom: 1.5rem;
}
.donation .amount {
	border: none;
	border-bottom: solid 1px var(--text-color);
	color: var(--text-color);
	text-align: center;
	font-weight: 300;
	font-size: 1.5rem;
	width: 8rem;
}

.donation .amount:active,
.donation .amount:focus {
	outline: none;
}

.visually-hidden {
	display: none;
}

.donation .amount.error {
	border-color: red;
	color: red;
}

.donation-error {
	color: red;
	margin-bottom: 1rem;
}

.choices {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
	width: 100%;
}

.choice {
	background-color: #fff;
	border: solid 1px var(--choice-color);
	color: var(--choice-color);
	padding: 0.5rem;
	font-size: 1.5rem;
	font-weight: 300;
	border-radius: 5px;
	cursor: pointer;
}

.choice:hover,
.choice:active {
	background-color: var(--choice-bg-color);
	color: var(--choice-active-color);
}

.selected {
	background-color: var(--choice-bg-color);
	color: var(--choice-active-color);
}

.cta {
	width: 100%;
	margin-bottom: 0.5rem;
	visibility: hidden;
}
button[type="submit"] {
	box-sizing: border-box;
	width: 100%;
	padding: 3%;
	background: var(--primary-color);
	border-style: none none solid none;
	border-bottom: 2px solid var(--primary-color);
	color: #fff;
	border-radius: 1.5rem;
	font-size: 1rem;
}

button[type="submit"]:hover {
	background: var(--secondary-color);
	cursor: pointer;
}

.donation-note {
	font-size: 0.8rem;
	font-style: italic;
}


/* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: #415064;
	color: white;
	cursor: pointer;
	padding: 18px;
	width:100%;
	text-align: center;
	border: none;
	outline: none;
	transition: 0.4s;
	margin-left: 0;
	font-size: 16px;
	
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .accordion:hover {
	background-color: #ce5d11;
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .panel {
	padding: 0 18px;
	background-color: rgb(255, 255, 255);
	display: none;
	overflow: hidden;
	text-align: center;
	
  }

  .accordion:after {
	content: '\02795'; /* Unicode character for "plus" sign (+) */
	font-size: 13px;
	color: #011433;
	float: right;
	margin-left: 5px;
  }
  
  .active:after {
	content: "\2796"; /* Unicode character for "minus" sign (-) */
  }


  @media only screen and (max-width: 768px){
	form {
		width: 100%;
		margin-top:10%;
		float: right;
		}
		
		.logo{
			margin-left: -20%;
			margin-bottom: 0;
			height: 80;
			width: 100;
		}
		.payment-logos img {
			width: 40%;
            height: 40%;
		}

		.container{
			margin-bottom:10%;
			margin-top: 30;
			height: fit-content;
		}

  }

  @media only screen and (max-width: 480px) {
	form {
		width: 100%;
		margin-top: 10%;
		}
		.payment-logos img {
			width: 40%;
            height: 40%;

		}
		.container{
			margin-bottom:10%;
			margin-top: 30;
			height: fit-content;
		}
		.logo{
			margin-left: -20%;
			margin-bottom: 0;
			height: 80;
			width: 100;
		}
  }
