.crtn-faq {
	margin: 0 0 32px;
	--crtn-faq-question-icon-color: #b48a3a;
	--crtn-faq-question-color: #222;
	--crtn-faq-answer-icon-color: #5d8f56;
	--crtn-faq-answer-color: #333;
	--crtn-faq-answer-bg: transparent;
	--crtn-faq-question-icon-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M379.41,450.79c-8.6-11.18-14.19-16.77-43-44.72-24.94,13.76-48.59,19.78-79.98,19.78-101.91,0-167.27-70.95-167.27-181.89S155.38,61.21,257.29,61.21s165.55,70.52,165.55,180.6c0,33.97-6.02,64.07-17.63,88.58-6.88,14.19-13.33,23.65-26.66,39.56l14.62,13.76c12.04,11.18,17.2,15.91,27.52,23.22l-41.28,43.86ZM295.13,288.25c3.44,3.87,14.62,15.48,33.54,34.4,15.05-22.79,20.21-43,20.21-78.69,0-43-10.75-76.11-31.82-97.18-15.91-15.91-36.98-24.08-61.06-24.08-57.62,0-93.31,46.01-93.31,120.4s36.55,121.69,93.74,121.69c11.61,0,21.5-2.15,30.53-6.45-14.19-13.76-21.93-20.21-33.54-29.24l41.71-40.85Z'/%3E%3C/svg%3E");
	--crtn-faq-answer-icon-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20512%20512'%3E%3Cpath%20d='M344.83,426.73c-2.94-17.22-6.72-31.92-10.92-44.52l-14.28-40.74h-126.84l-14.28,40.74c-6.72,18.9-9.24,30.24-11.34,44.52h-83.16c6.72-12.6,12.6-26.46,21.42-50.4l91.56-247.38c7.56-21,10.92-31.92,13.44-43.68h90.3c2.52,10.92,5.04,19.74,14.28,43.68l92.4,247.38c7.98,21.42,15.54,39.9,20.58,50.4h-83.16ZM262.09,163.39c-1.26-3.78-2.94-7.98-6.3-19.32-2.52,8.82-2.94,10.92-5.88,19.32l-39.48,118.86h91.56l-39.9-118.86Z'/%3E%3C/svg%3E");
}

.crtn-faq__item {
	border: 1px solid #ddd;
	border-radius: 4px;
	background: #fff;
	overflow: hidden;
}

.crtn-faq__item + .crtn-faq__item {
	margin-top: 12px;
}

.crtn-faq__question {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	min-height: 56px;
	padding: 14px 52px 14px 54px;
	border: 0;
	background: #f7f7f7;
	color: var(--crtn-faq-question-color);
	font: inherit;
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	cursor: pointer;
	appearance: none;
}

.crtn-faq__question::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 50%;
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	background-color: var(--crtn-faq-question-icon-color);
	-webkit-mask-image: var(--crtn-faq-question-icon-mask);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-image: var(--crtn-faq-question-icon-mask);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.crtn-faq__question:hover,
.crtn-faq__question:focus {
	background: #f1eee8;
}

.crtn-faq__question:focus-visible {
	outline: 2px solid #b48a3a;
	outline-offset: -2px;
}

.crtn-faq__question-label {
	display: block;
}

.crtn-faq__icon {
	position: absolute;
	right: 20px;
	top: 50%;
	width: 14px;
	height: 14px;
	transform: translateY(-50%);
}

.crtn-faq__icon::before,
.crtn-faq__icon::after {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 14px;
	height: 2px;
	background: #666;
	transition: transform 0.2s ease;
}

.crtn-faq__icon::after {
	transform: rotate(90deg);
}

.crtn-faq__item.is-open .crtn-faq__icon::after {
	transform: rotate(0deg);
}

.crtn-faq__answer {
	height: 0;
	overflow: hidden;
	transition-property: height;
	transition-timing-function: ease;
}

.crtn-faq__answer-inner {
	position: relative;
	padding: 18px 24px 18px 54px;
	background: var(--crtn-faq-answer-bg);
	color: var(--crtn-faq-answer-color);
	line-height: 1.9;
}

.crtn-faq__answer-inner::before {
	content: "";
	position: absolute;
	left: 20px;
	top: calc(18px + 0.95em);
	width: 24px;
	height: 24px;
	transform: translateY(-50%);
	background-color: var(--crtn-faq-answer-icon-color);
	-webkit-mask-image: var(--crtn-faq-answer-icon-mask);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-image: var(--crtn-faq-answer-icon-mask);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
}

.crtn-faq__answer-inner > :first-child {
	margin-top: 0;
}

.crtn-faq__answer-inner > :last-child {
	margin-bottom: 0;
}

.crtn-faq--modern {
	display: grid;
	gap: 16px;
	--crtn-faq-question-icon-color: #006fd6;
	--crtn-faq-answer-icon-color: #008262;
	--crtn-faq-answer-bg: #fff;
}

.crtn-faq--modern .crtn-faq__item {
	border: 1px solid #d9e7f7;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(25, 51, 87, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	overflow: hidden;
}

.crtn-faq--modern .crtn-faq__item + .crtn-faq__item {
	margin-top: 0;
}

.crtn-faq--modern .crtn-faq__question {
	min-height: 64px;
	padding: 16px 58px 16px 58px;
	border-bottom: 1px solid #e4edf8;
	border-radius: 0;
	background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
	color: #172033;
	font-weight: 800;
}

.crtn-faq--modern .crtn-faq__question:hover,
.crtn-faq--modern .crtn-faq__question:focus {
	background: linear-gradient(180deg, #ffffff 0%, #ebf4ff 100%);
}

.crtn-faq--modern .crtn-faq__question::before {
	left: 22px;
}

.crtn-faq--modern .crtn-faq__answer-inner {
	margin: 0;
	padding: 20px 24px 20px 54px;
	border-radius: 0;
	background: var(--crtn-faq-answer-bg);
}

.crtn-faq--modern .crtn-faq__answer-inner::before {
	left: 22px;
}

.crtn-faq--simple {
	display: grid;
	gap: 20px;
	--crtn-faq-question-icon-color: #b98478;
	--crtn-faq-answer-icon-color: #b98478;
	--crtn-faq-answer-bg: #fbf0ee;
}

.crtn-faq--simple .crtn-faq__item {
	border: 0;
	border-radius: 0;
	background: transparent;
	overflow: visible;
}

.crtn-faq--simple .crtn-faq__item + .crtn-faq__item {
	margin-top: 0;
}

.crtn-faq--simple .crtn-faq__question {
	align-items: center;
	min-height: auto;
	padding: 10px 38px 10px 34px;
	border-bottom: 1px solid #e5d8d5;
	background: transparent;
	font-weight: 700;
}

.crtn-faq--simple .crtn-faq__question:hover,
.crtn-faq--simple .crtn-faq__question:focus {
	background: transparent;
}

.crtn-faq--simple .crtn-faq__question::before {
	left: 0;
	top: 50%;
	width: 26px;
	height: 26px;
	transform: translateY(-50%);
}

.crtn-faq--simple .crtn-faq__icon {
	right: 8px;
}

.crtn-faq--simple .crtn-faq__answer-inner {
	margin-top: 12px;
	padding: 18px 22px 18px 48px;
	border-radius: 8px;
	background: var(--crtn-faq-answer-bg);
}

.crtn-faq--simple .crtn-faq__answer-inner::before {
	left: 18px;
	top: calc(18px + 0.95em);
}

@media (max-width: 575px) {
	.crtn-faq__question {
		padding-right: 44px;
		padding-left: 46px;
	}

	.crtn-faq__question::before {
		left: 16px;
	}

	.crtn-faq__answer-inner {
		padding-right: 18px;
		padding-left: 46px;
	}

	.crtn-faq__answer-inner::before {
		left: 16px;
	}

	.crtn-faq--modern .crtn-faq__question,
	.crtn-faq--simple .crtn-faq__question {
		padding-left: 42px;
	}

	.crtn-faq--modern .crtn-faq__question::before {
		left: 16px;
	}

	.crtn-faq--simple .crtn-faq__question::before {
		left: 8px;
		top: 50%;
	}
}
