 /* global settings */

.faq-category {
	position: relative;
	margin-bottom: 20px;
	cursor: pointer;
}

.faq-category > span {
	margin: 11px 16px 0 0;
	font-size: 0.6rem !important;
}

.faq-list {
	list-style: none;
	counter-reset: faq-counter;
	overflow: hidden;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.faq-list > li {
	counter-increment: faq-counter;
}

.faq-list > li:nth-child(-n+9):before {
	content: "0" counter(faq-counter);
	font-weight: bold;
}

.faq-list > li:before {
	display: inline-block;
	content: counter(faq-counter);
	font-weight: bold;
	width: 26px;
}

.faq-list > li > .question:before {
	position: relative;
	top: 2px;
	display: inline-block;
	content: "•";
	font-weight: bold;
	font-size: 20px;
	line-height: 0;
	margin-right: 6px;
}

.faq .folded {
	margin: 0;
	height: 0 !important;
	opacity: 0 !important;
}

 .faq .inclined-header {
	 top: 10px;
 }

@media screen and (max-width: 800px) {
	.faq-list .question-answer {
		margin-right: 20px;
		padding-left: 20px;
	}
}

/* question */

.faq-list .question-answer {
	position: relative;
	flex-wrap: wrap;
	padding-right: 30px;
}

#faq .question {
	cursor: pointer;
	line-height: 1.4;
}

#faq .icon-drop {
	position: absolute;
	right: 0;
	top: 8px;
	font-size: 0.4rem;
}

/* arrow icon */

.rotate--180-after .icon-drop {
	-moz-transform: rotate(180deg) !important;
	-webkit-transform: rotate(180deg) !important;
	-ms-transform: rotate(180deg) !important;
	transform: rotate(180deg) !important;
}

/* answer */

#faq .answer {
	font-size: 0.900em;
	opacity: 1;
	height: auto;
	padding: 10px 0;
	overflow: hidden;
	-moz-transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

 #faq .answer ul {
	 margin-left: 30px;
	 list-style: disc;
 }
 #faq .answer li::marker {
	 color: #da1b64;
 }