body{
	background-color: #F4F4F4;
}
.docs__container{
	max-width: 909px;
}
.question__item-q {
	position: relative;
	cursor: pointer;
	font-size: 20px;
	line-height: 36px;
	text-transform: uppercase;
	color: #222222;
	font-family: "basebloom";
	padding: 16px 0;
}
.question__item-q::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 43px;
	height: 43px;
	background-image: url(/static/img/icon/close-docs.svg);
	right: 22px;
	transition: all .2s linear;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 43px;
}

.question__item-q::after{
	transform: rotate(
			45deg);
}
.question__item-q.active::after{
	transform: rotate(0);
}
.question__item-answer{
	height: 0;
	transition: all .2s linear;
	overflow: hidden;
}
.question__item-answer-text {
	padding: 30px 0 50px;
}
.question__item-answer-text a{
	display: block;
}
.question__item .separator {
	height: 1px;
	width: 100%;
	background: #C94A8D;
}
.docs__container {
	max-width: 909px;
	margin: 0 auto;
}
.question__item-answer-text a:not(:last-child) {
	margin-bottom: 15px;
}
.question__item-answer-text a{
	font-size: 14px;
	line-height: 19px;
	text-decoration-line: underline;
	text-transform: none;
	color: #E268A9;
}
.docs {
	padding: 35px 0 98px;
}