@media screen and (max-width: 600px) {
	.table-container {
		overflow-x: auto;
	}
}

.table > * {
	box-sizing: border-box;
}

.table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 48px;
	color: #252B33;
	border: 1px solid #EEF0F1;
	min-width: 600px;
}
.table__head {
	font-family: Montserrat;
	background-color: #EEF0F1;
}

.table__body {
	font-family: Roboto;
}

.table__hr {
	color: #7E8895;
	font-weight: 600;
	font-size: 12px;
	padding: 24px;
	text-transform: uppercase;
}

.table__hr:first-child {
	width: 50%;
}


.table__hr:nth-child(2), .table__hr:nth-child(3) {
	width: 25%;
}

.table__tr, .table__td {
	padding: 6px 24px;
	text-align: left;
	border-bottom: 1px solid #EEF0F1;
}

.table__td {
	font-size: 12px;
}



.table__section-header {
	pointer-events: none;
	font-family: Montserrat;
}

.table__section-header > .table__td {
	padding: 10px 24px;
	font-size: 16px;
	font-weight: 700;
}

.table__body > .table__tr {
	cursor: pointer;
	transition: background-color .3s ease;
}

.table__body > .table__tr:hover {
	background-color: #EEF0F1;
}

.table__body > .table__tr:hover > .table__td > .table__file-link  {
	border: 1px solid #6B9A1C;
	border-radius: 30px;
	color: #6B9A1C;
}
.table__body > .table__tr:hover > .table__td > .table__file-link > .table__icon-download {
	background-image: url("/img/icons/download_green.svg");
}
.table__body{
	opacity: 1; /* Полная видимость */
	height: auto; /* Высота автоматически подстраивается */
}
.table__body:not(.active) {
	display: none;
}

.table__file_hr{
	padding-left: 3em;
}

.table__file-link {
	padding: 4px 10px;
	display: flex;
	width: fit-content;
	align-items: center;
	border: 1px solid #FFF;
	gap: 4px;
	color: #252B33;
	text-decoration: none;
	transition: color .2s ease;
}
.file-link:hover {
	text-decoration: underline;
}
.table__icon-download {
	background-image: url("/img/icons/download_light.svg");
	width: 24px;
	height: 24px;
}

.download-table-body .table__section-header .table__td{
/*	padding-right: 45em;*/
}
