.cve-button-wrapper,
.cve-text-link-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	text-align: center;
}

.cve-button-wrapper { margin: 10px 0; }
.cve-text-link-wrapper { margin: 14px 0 5px; }

.cve-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 13px 25px;
	border: 2px solid transparent;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.25;
	text-decoration: none !important;
	transition: .25s ease;
}

.cve-button:hover,
.cve-button:focus {
	transform: translateY(-1px);
	text-decoration: none !important;
}

.cve-button--green {
	color: #fff !important;
	background: #31c3a6;
	border-color: #31c3a6;
}

.cve-button--green:hover,
.cve-button--green:focus {
	color: #fff !important;
	background: #1abc9c;
	border-color: #1abc9c;
}

.cve-button--black {
	color: #fff !important;
	background: #000;
	border-color: #000;
}

.cve-button--black:hover,
.cve-button--black:focus {
	color: #fff !important;
	background: #81d742;
	border-color: #81d742;
}

.cve-button--outline {
	color: #31c3a6 !important;
	background: transparent;
	border-color: #31c3a6;
}

.cve-button--outline:hover,
.cve-button--outline:focus {
	color: #fff !important;
	background: #31c3a6;
}

.cve-icon-svg,
.cve-button svg,
.cve-text-link svg,
.cve-accordion svg {
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	min-width: 18px !important;
	min-height: 18px !important;
	max-width: 18px !important;
	max-height: 18px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.cve-text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 4px;
	color: #36aa16 !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none !important;
	transition: .25s ease;
}

.cve-text-link:hover,
.cve-text-link:focus {
	color: #8224e3 !important;
	transform: translateY(-1px);
	text-decoration: underline !important;
}

.cve-accordion {
	width: 100%;
	margin: 15px 0;
	border: 1px solid #e3e3e3;
	border-radius: 2px;
	background: #fff;
	overflow: hidden;
}

.cve-accordion[open] {
	border-color: #31c3a6;
	box-shadow: 0 8px 22px rgba(0,0,0,.06);
}

.cve-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 50px;
	padding: 13px 18px;
	color: #333;
	background: #f8f8f8;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}

.cve-accordion__summary::-webkit-details-marker { display: none; }
.cve-accordion__summary::marker { content: ''; }

.cve-accordion[open] .cve-accordion__summary {
	color: #fff;
	background: #31c3a6;
}

.cve-accordion__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .25s ease;
}

.cve-accordion__arrow svg {
	width: 16px !important;
	height: 16px !important;
	min-width: 16px !important;
	min-height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
}

.cve-accordion[open] .cve-accordion__arrow { transform: rotate(90deg); }

.cve-accordion__content {
	padding: 20px;
	color: #444;
	background: #fff;
	line-height: 1.75;
}

.cve-accordion__content > :first-child { margin-top: 0; }
.cve-accordion__content > :last-child { margin-bottom: 0; }

@media (max-width: 767px) {
	.cve-button {
		width: 100%;
		max-width: 340px;
		padding: 13px 18px;
	}

	.cve-accordion__summary { padding: 13px 15px; }
	.cve-accordion__content { padding: 17px 15px; }
}
