* {
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	margin-bottom: 6px;
}

#id_email,
#id_end_date {
	margin-bottom: 24px;
}

input[type="submit"]:disabled {
	padding: 12px 24px;
	background-color: grey;
	color: #fff;
	border-radius: 12px;
	border: none;
	font-size: 18px;
}

input[type="submit"] {
	padding: 12px 24px;
	background-color: green;
	color: #fff;
	border-radius: 12px;
	border: none;
	font-size: 18px;
}

input[type="checkbox"] {
	transform: scale(1.5);
}

/*test
	padding: 15px;
*/
.accordion {
	max-width: 90%;
}

.accordion-item input[type="checkbox"] {
	display: none; /* Hide the checkbox */
}

.accordion-header {
	background-color: #eee;

	border: none;
	cursor: pointer;
	text-align: left;
	word-wrap: break-word;
	white-space: normal;
	font-weight: 700;
}

.accordion-content {
	display: none;
	background-color: #fff;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease-out;
}

.accordion-header:hover {
	background-color: #ddd;
}

/* The magic part */
input[type="checkbox"]:checked ~ .accordion-content {
	display: block;
	max-height: 500px; /* Example max-height */
}

.faqh2 {
	margin-bottom: 2rem;
}

.accordion-item {
	margin-bottom: 3rem;
}


