@charset "UTF-8";
/* CSS Document */

#faq-main {
	padding-top: 80px;
	margin-bottom: 150px;
}

#faq-main .akordeon {
	max-width: 1000px;
}

.akordeon {
	width: 100%;
	max-width: 880px;
	padding-top: 10px;
}

.colapse {
	padding: 36px 38px;
	font-size: 1rem;
	font-weight: var(--semibold);
	line-height: 1.375rem;
	cursor: pointer;
	user-select: none;
	position: relative;
}

.colapse::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 21px;
	height: 100%;
	background-image: url("/imgs/svg/colapse.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform-origin: center;
	transition: 0.2s;
}

.colapse.active::after {
	transform: rotateX(180deg);
}

.odpoved {
	width: 100%;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s;
	border-bottom: 1px solid var(--cnx-greylight);
}

.odpoved p {
	margin: 0 40px 10px;
	max-width: 800px;
}

.odpoved p:last-child {
	margin-bottom: 60px;
}
