.panel {
	display: block;
	background: #dbbd0c;
}

/* FAQ BLOCK  */
.faq-inner {
	display: flex;
	flex-flow: wrap;
	margin-bottom: 20px;
}

.accordion {
	display: flex;
	flex-flow: column;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
}

.accordion-item {
	transition: all ease 0.3s;
	border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-header {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 20px 25px;
	cursor: pointer;
	background: #f8f9fa;
}

.accordion-header:hover {
	background: #e9ecef;
}

.accordion-item.active .accordion-header {
	background: #dabe09;
}

.accordion-header p {
	flex: 1;
}

.accordion-icon {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	background-image: url("data:image/svg+xml, %3Csvg width='15' height='14' viewBox='0 0 15 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4458 6.04245H8.2907V0H6.2059V6.04245H0.0507812V7.99057H6.2059V14H8.2907V7.99057H14.4458V6.04245Z' fill='black' /%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all linear .2s;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.accordion-content {
	transition: all linear .3s;
	display: grid;
	grid-template-rows: 0fr;
}

.accordion-item.active .accordion-content {
	grid-template-rows: 1fr;
}

.accordion-inner {
	overflow: hidden;
}

.accordion-inner>* {
	padding: 20px;
}

@media (max-width: 1200px) {
	.faq-right-block {
		flex-grow: 1;
	}
}

/* TAGS BLOCK */
.tags-block {
	display: flex;
	flex-flow: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.tag-link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 44px;
	border: 1px solid #000;
	border-radius: 5px;
	background: #000000;
	color: #fff;
	font-size: 16px;
	padding: 0px 15px;
}

.tag-link:hover {
	text-transform: uppercase;
	background: #fff;
	color: #000;
}

.popup-window .consent {
	position: static;
	padding: 0;
}