/* Таблица сравнения материалов */

.table-murava {
	width: 100%;
	margin: 20px 0;
	overflow-x: auto;
	box-shadow: 0 5px 20px rgba(62, 57, 66, 0.08);
	-webkit-overflow-scrolling: touch;
}

.table-murava *,
.table-murava *::before,
.table-murava *::after {
	box-sizing: border-box;
}

.table-murava table {
	width: 100%;
	min-width: 680px;
	margin: 0;
	border: 1px solid #d8d5da;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	background: #ffffff;
}

.table-murava th,
.table-murava td {
	padding: 10px 12px;
	border: 1px solid #d8d5da;
	color: #3e3942;
	font-size: 15px;
	line-height: 1.3;
	text-align: center;
	vertical-align: middle;
}

.table-murava thead th {
	padding-top: 12px;
	padding-bottom: 12px;
	background: #3e3942;
	color: #ffffff;
	font-weight: 700;
}

.table-murava thead th:first-child {
	width: 25%;
	background: #efb40d;
	color: #3e3942;
}

.table-murava tbody th {
	width: 25%;
	background: #faf9fa;
	color: #3e3942;
	font-weight: 600;
}

.table-murava tbody td {
	color: #9c7200;
	font-size: 19px;
	font-weight: 700;
	line-height: 1;
}

.table-murava tbody tr:hover th,
.table-murava tbody tr:hover td {
	background-color: #fffaf0;
}

@media (max-width: 767px) {
	.table-murava {
		margin: 15px 0;
	}

	.table-murava table {
		min-width: 620px;
	}

	.table-murava th,
	.table-murava td {
		padding: 8px;
		font-size: 14px;
	}

	.table-murava tbody td {
		font-size: 17px;
	}
}


/* Место применения */
.murava-use {
	margin: 25px 0;
	padding: 20px;
	background: #f6f5f7;
}

.murava-use h2 {
	margin: 0 0 16px;
	color: #3e3942;
	font-size: 22px;
	text-align: center;
}

.murava-use-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.murava-use-item {
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 12px;
	background: #ffffff;
	border: 1px solid #e2dfe4;
	color: #3e3942;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
}

.murava-use-item span {
	display: flex;
	flex: 0 0 44px;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-right: 12px;
	background: #efb40d;
	color: #3e3942;
	font-size: 18px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.murava-use {
		padding: 14px;
	}

	.murava-use h2 {
		font-size: 19px;
	}

	.murava-use-grid {
		grid-template-columns: 1fr;
	}

	.murava-use-item {
		min-height: 64px;
	}
}