.type-box{
	margin-bottom: 20px;
	max-width: 950px;
}
.type-box__title{
	text-transform: uppercase;
	margin-bottom: 20px;
	font-size: 30px;
}
.type-box__item{
	display: flex;
	margin-bottom: 5px;
	border-radius: 8px;
	border: 1px solid var(--color-grey);
}
@media (max-width: 600px) {
	.type-box__item_head{
		display: none;
	}
}
@media (min-width: 601px) {
	.type-box__item_head{
		background-color: var(--color-grey);
	}
	.type-box__item__param__title{
		display: none;
	}
	.type-box__item__name,
	.type-box__item__param{
		width: 20%;
		box-sizing: border-box;
		padding: 10px;
		border-left: 1px solid var(--color-grey);
	}
	.type-box__item__name{
		font-weight: 500;
		border-left: none;
	}
	.type-box__item__param{
		text-align: center;
	}
}

