	@media (max-width: 768px) {

			#tuningTableHeader {
				display: none !important;
			}

			.table tr {
				display: block; /* Каждый ряд становится блоком */
				margin-bottom: 10px; /* Отступ между рядами */
			}

			#tuningOptions td {
				display: flex;
				justify-content: space-between;
				align-items: center;
				position: relative;
				min-height: 50px;
				padding-left: 50%; /* Создает пространство для метки */
			}

			.table td::before {
				content: attr(data-label); /* Использует data-атрибут для вывода названия колонки */
				position: absolute;
				left: 10px;
				width: 45%;
				padding-right: 10px;
				white-space: nowrap;
				font-weight: bold;
			}
		}