.question-btn-up,
.question-btn-down {
	color: var(--col-green-3);
	position: absolute;
	top: 0rem;
	width: 20px;
	height: 20px;
	/* right: 8px; */
}

.question-btn-up {
	display: none;
}

.question-btn-cont {
	position: relative;
	width: 20px;
	height: 20px;
}

.question-btn-cont .btn {
	padding: 0.05rem 0;
}

.question-title {
	font-size: 1.3rem;
	font-family: var(--font-2);
	font-weight: 400;
	margin-bottom: 0;
	text-align: left;
}

.question {
	cursor: pointer;
	border-radius: 10px;
	background-color: var(--col-green-5);
	padding: 20px;
	padding-right: 30px;
	padding-left: 30px;
	margin-bottom: 10px;
	transition: all 0.4s;
}

.question:hover {
	/* background-color: unset; */
	box-shadow: 0px 0px 10px var(--col-green-1);
}

.answer {
	display: none;
	text-align: left;
	margin-bottom: 0;
	color: rgb(100, 100, 100);
}