.list-assortment li{
	margin: 6px 0;
}
.list-assortment a{
	color: #000;
}

.section a,
.catalog-main a {
	color: inherit;
}

.catalog-main-part {
	margin-bottom: 30px;
	background-color: #F7F5F6;
	border-bottom: 1px solid #ECE8E9;
}

.toggle-block {
	padding: 0 10px 30px 58px;
	display: grid;
	grid-template-rows: 0fr;
	transition: all 0.5s ease-out;
}

.catalog-main-part h2 a {
	text-decoration: none;
}

.toggle-button-wrap {
	display: grid;
    grid-template-columns: fit-content(100%) 1fr;
    align-items: center;
    padding: 0 0 0 30px;
}

.toggle-button-wrap h2 {
	margin-bottom: 0;
	margin-top: 30px;
	cursor: pointer;
}

.toggle-button {
	position: relative;
	width: 30px;
	height: 10px;
	color: transparent;
}

.toggle-button::before {
	content: '';
	position: absolute;
	background: url('/image/arrow1.svg') center no-repeat;
	transform: rotate(180deg);
	width: 16px;
	height: 10px;
	display: block;
	cursor: pointer;
	margin-top: 15px;
}

.toggle-button.opened::before {
	transform: rotate(0);
}

.toggle-block .toggle-block-wrap {
	overflow: hidden;
}

.toggle-block.opened {
	grid-template-rows: 1fr;
}

.toggle-block.opened .toggle-block-wrap {
	overflow: visible;
	animation: 2s delay-overflow;
}

.catalog-main .atention .border {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArIAAAAXAgMAAACKWURnAAAACVBMVEXz8/Pp6en///+3LOI2AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfoAwcLMCuTG1F0AAAANklEQVRIx+3TMQ0AMAwEsUDMUn6dizJDOUR6yYfAy9UL6hYtLS0tLW26Vvq5jJaWlnZHe4LqAXGEv+2RlNLwAAAAAElFTkSuQmCC');
}

.catalog-main .atention .border.opened {
	background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAArIAAAAXAgMAAAH9XnTxAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAxQTFRF////6enp8/Pz////bEE2EgAAAAF0Uk5TAEDm2GYAAAD0SURBVEjH1ZY9CgIxEIUf2Ao5UrxEGi8g7CU8iqU4jUdwYQ+wtVewMSCsoJFn4Q9bpEggA8lXhSE83jySScAYARzj5We8HMODt3j5Gi8zWKbRAzAeqZCPY7Iy0wHpM/aOqe0BsH1GcxkeLqf0vcxoj3n5GqOi64sb/vp9KOUgx+K6zjm3FnFlWX383pRy6JV0l1ZFN1it8zuo6A4K9wIAzD2gNCTJs9J56LYqui/ZqehOsleaDwed+fBhwcrxmK9tQ24RFu249Ya9bcYtyNrDnX15zX8ItwC5Yajf5I9Jtg3NhK74K6HodhKpPdyZ206k9nD9G8o0/E6HpuqIAAAAAElFTkSuQmCC');
}

@keyframes delay-overflow {
	from {
		overflow: hidden;
	}

	to {
		overflow: visible;
	}
}