.accordion-header {
    display: flex;
	padding: 1.7rem 1.2rem;
	align-items: center;
	justify-content: space-between;
    cursor: pointer;
    width: 100%;
	border: 1px solid var(--lightGray);
}
.accordion-item:last-child .accordion-desc {
	border-top: 0;
}
.accordion-title {
	font-size: var(--textMd);
	color: var(--black);
	margin-bottom: 0;
	font-weight: 400;
}
.accordion-icon {
    width: 24px;
    height: 24px;
    background: url(../../../images/ikony/chevron-down.svg) no-repeat;
    background-size: 24px;
    background-position: center center;
}
.accordion-desc {
	display: none;
	padding: 1.7rem 1.2rem;
	border: 1px solid var(--lightGray);
}
.accordion-header:hover,
.accordion-header.active {
	background: var(--gray);
}
.accordion-header:hover .accordion-title,
.accordion-header.active .accordion-title {
	color: var(--primary);
}
.accordion-header.active .accordion-icon {
	rotate: 180deg;
	filter: invert(37%) sepia(75%) saturate(2262%) hue-rotate(174deg) brightness(98%) contrast(101%);
}
