.copyfaq--container {
	padding: 120px 30px;
}

.copyfaq--list {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.copyfaq--item {
	border-bottom: 1px solid #ccc;
	margin-bottom: 1em;
}

.copyfaq--item p,
.copyfaq--item h3,
.copyfaq--item h4 {
	margin-bottom: 1em;
}

.copyfaq--button {
	position: relative;
	border: none;
	background: transparent;
	display: block;
	text-align: left;
	margin: 0;
	padding: 0;
	width: 100%;
	-webkit-appearance: none;
	cursor: pointer;
	transition: color .3s;
}

.copyfaq--button.active,
.copyfaq--button:focus,
.copyfaq--button:hover {
	outline: none;
	color: var(--theme-light-blue);
}

.copyfaq--question {
	position: relative;
	padding-right: 35px;
}

.copyfaq--question-dot {
	position: absolute;
	right: 0;
	width: 28px;
	height: 28px;
	background: var(--theme-yellow);
	border-radius: 50%;
	top: 0px;
}

.copyfaq--question-dot:before {
	content: "";
	position: absolute;
	top: 13px;
	left: 7px;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
}

.copyfaq--question-dot:after {
	content: "";
	position: absolute;
	top: 13px;
	left: 7px;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transform: rotate(90deg);
	transition: transform .3s;
}

.copyfaq--button.active .copyfaq--question-dot {
	background: var(--theme-light-blue);
}

.copyfaq--button.active .copyfaq--question-dot:after {
	transform: rotate(180deg);
}

.copyfaq--answer {
	display: none;
	will-change: height;
}

.copyfaq--answer > ul {
	margin-bottom: 30px;
}