.accordion-item {
	border-bottom: 2px solid #eee;
}
.accordion {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	background-color: transparent;
	transition: 0.2s;
}

.panel {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordion:after {
	content: '';
	background-image: url("arrow-down.png");
	background-repeat: no-repeat;
	background-size: 15px;
	width: 30px;
	height: 30px;
	aspect-ratio: 1;
	background-color: #e2e0e0;
	border-radius: 50%;
	background-position: center;
}

.accordion__question,
.accordion__text {
	color: #000;
	font-size: 18px;
}

*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.active:after {
	content: '';
	background-image: url("arrow-up.png");
	background-repeat: no-repeat;
	background-size: 15px;
	width: 30px;
	height: 30px;
	aspect-ratio: 1;
	background-color: #e2e0e0;
	border-radius: 50%;
	background-position: center;
}
