.price-table {
	margin: 15px 0;
}

.price-table .table_row {
	display: flex;
	justify-content: space-between;
}

.price-table .table_row .nmbr {
	flex-basis: 5%;
	text-align: center;
}

.price-table .table_row .ed {
	flex-basis: 10%;
	text-align: center;
}

.price-table .table_row .price {
	flex-basis: 15%;
	text-align: center;
}

.price-table .table_row .name {
	flex-basis: 70%;
}

.price-table .table_row div {
	border: 1px solid #dee2e4;
	padding: 5px;
}

.price-table .table_row.head div {
	font-weight: bold;
}

.stoimostRabot {
	margin-top: 20px;
}
@media (max-width: 768px) {
	.price-table .table_row .nmbr {
		display: none;
	}
	.price-table .table_row .ed {
		flex-basis: 15%;
	}
	.price-table .table_row .price {
		flex-basis: 20%;
	}
}
@media (max-width: 550px) {
	.price-table .table_row .price {
		flex-basis: 35%;
	}
	.price-table .table_row .ed {
		flex-basis: 25%;
	}
}
@media (max-width: 400px) {
	.price-table .table_row div {
		font-size: 14px;
	}
	.price-table .table_row .price,.price-table .table_row .ed {
		padding: 5px 0;
	}
}