.hidden {
	display: none !important;
}

/* ------------------------------------- Модуль Галереи ------------------------------------- */

.mod-gallery {
	width: 100%;
	height: auto;
	box-sizing: border-box !important;
}

.mod-gallery.gallery-tile {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 12px;
} 

.mod-gallery.gallery-tile a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	border: 1px solid #C4C4C4;
	padding: 3px !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.mod-gallery.gallery-tile a img {
	margin: 0 !important;
	padding: 0 !important;
	height: 200px;
	width: 100%;
	object-fit: cover;
	box-sizing: border-box !important;
}

/* ------------------------------------- Модуль Аккордион ------------------------------------- */


/* Блок FAQ */

.faq-block {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-top: 16px;
}

.faq-block .faq-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	margin: 8px 0;
}

.faq-block .faq-item .faq-expand {
	flex: 0 0 auto;
	margin: 0 auto;
	color: red;
	font-weight: bold;
}

.faq-block .faq-item .faq-expand-action {
	cursor: pointer;
}

.faq-block .faq-item .faq-expand.faq-expand-button {
	width: 20px;
	height: 20px;
	background-image: url("/projects/sites/units/default/images/faq/plus.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

.faq-block .faq-item.active .faq-expand.faq-expand-button {
	background-image: url("/projects/sites/units/default/images/faq/minus.svg");
}

.faq-block .faq-item .faq-content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-left: 12px;
}

.faq-block .faq-item .faq-content .faq-question {
	font-size: 18px;
	font-family: SamsungOne;
	font-weight: bold;
}

.faq-block .faq-item .faq-content .faq-answers {
	margin: 5px 0;
	font-size: 16px;
	font-family: SamsungOne;
	line-height: 24px;
}

.faq-block .faq-item .faq-expand-button {
	cursor: pointer;
}