.fl-usein-kysyttya {
	width: 100%;
	padding: 0px 0;
	color: #000;
}

.fl-usein-kysyttya-title {
	text-align: center;
	margin-bottom: 20px;
	color: #000;
}

.fl-usein-kysyttya-grid {
	display: grid;
	grid-template-columns: repeat(var(--columns, 2), 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.fl-usein-kysyttya-item {
	width: 100%;
}

.fl-usein-kysyttya-question {
	width: 100%;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 20px;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
	outline: none;
	font-family: Barlow, sans-serif;
	font-size: 18px;
	color: #000;
}

.fl-usein-kysyttya-question:hover {
	background-color: #fff !important;
	border-color: white;
	color: #000;
	text-decoration: none;
}

.fl-usein-kysyttya-question.active {
	background-color: #9bbc50 !important;
	border-color: #9bbc50 !important;
	color: white;
}

.fl-usein-kysyttya-question.active:hover {
	background-color: #9bbc50 !important;
	border-color: #9bbc50 !important;
	color: white;
}

.fl-usein-kysyttya-question-content {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
}

.fl-usein-kysyttya-icon {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fl-usein-kysyttya-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(0) saturate(100%) invert(75%) sepia(15%) saturate(1500%) hue-rotate(60deg) brightness(95%) contrast(90%);
	opacity: 1;
}

.fl-usein-kysyttya-icon .fl-usein-kysyttya-image {
	mix-blend-mode: normal;
}

.fl-usein-kysyttya-icon .fl-usein-kysyttya-image img {
	filter: none !important;
	opacity: 1;
}

.fl-usein-kysyttya-question.active .fl-usein-kysyttya-icon img {
	filter: brightness(0) invert(1);
}

.fl-usein-kysyttya-question.active .fl-usein-kysyttya-icon .fl-usein-kysyttya-image {
	mix-blend-mode: multiply;
}

.fl-usein-kysyttya-question.active .fl-usein-kysyttya-icon .fl-usein-kysyttya-image img {
	filter: none !important;
}

.fl-usein-kysyttya-icon i {
	font-size: 36px;
	color: #9bbc50;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fl-usein-kysyttya-question.active .fl-usein-kysyttya-icon i {
	color: white;
}


.fl-usein-kysyttya-chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #9bbc50;
	transition: transform 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.fl-usein-kysyttya-question.active .fl-usein-kysyttya-chevron {
	transform: rotate(180deg);
	color: white;
}

.fl-usein-kysyttya-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, background-color 0.3s ease, border-color 0.3s ease;
	background-color: #fff;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.fl-usein-kysyttya-answer.open {
	max-height: 2000px;
	background-color: #9bbc50;
	border-color: #9bbc50;
}

.fl-usein-kysyttya-answer-content {
	padding: 20px;
	padding-top: 0;
	background-color: #9bbc50;
	color: #000;
}

.fl-usein-kysyttya-question.active,
.fl-usein-kysyttya-question.active .fl-usein-kysyttya-question-text,
.fl-usein-kysyttya-question.active .fl-usein-kysyttya-icon i,
.fl-usein-kysyttya-question.active .fl-usein-kysyttya-chevron,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content p,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content strong,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content em,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content li,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h1,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h2,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h3,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h4,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h5,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content h6 {
	color: #fff;
}

.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a {
	text-decoration: underline;
}

.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a:hover,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a:focus,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a:active,
.fl-usein-kysyttya-answer.open .fl-usein-kysyttya-answer-content a:visited {
	color: #fff !important;
}

.fl-usein-kysyttya-answer-content p {
	margin: 0 0 12px 0;
}

.fl-usein-kysyttya-answer-content p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.fl-usein-kysyttya-grid {
		grid-template-columns: 1fr;
		padding: 0 16px;
	}
	
	.fl-usein-kysyttya-title {
		margin-bottom: 30px;
	}
	
	.fl-usein-kysyttya-question {
		padding: 16px;
	}
	
	.fl-usein-kysyttya-answer-content {
		padding: 16px;
		padding-top: 0;
	}
}

