/* spoiler */
div.spoiler {
	/*padding: 5px;*/
	/*line-height: 1.6;*/
	font-family: "Mulish", sans-serif;
	margin-bottom: 16px;
	border-radius: 10px;
	color: #339bd8;
	background: #fff;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.06), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
	padding: 25px 30px;
}

div.spoiler.active {
	color: #fff;
	background: #339bd8;
}

div.spoiler div.spoiler-title {
	font-size: 20px;
	font-weight: 500;
	line-height: 130%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.spoiler-title span {
	transition: all 0.3s ease;
}

.active > .spoiler-title span {
	transform: rotate(180deg);
}

.active > .spoiler-title span svg path {
	fill: #fff;
}

.active > .spoiler-content a {
	color: #fff;
	text-decoration: underline;
}

div.spoiler div.spoiler-content {
	padding-top: 18px;
	font-size: 16px;
	font-weight: 600;
	line-height: 143.75%;
}
