* {
	margin: 0; 
	padding: 0;
}

.test-content {
	height: 2000px;
}

body {
	min-width: 360px;
}

body.body-fixed {
	overflow: hidden;
	height: 100vh;
	padding-right: 17px;
}

.new-container {
	width: 1130px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 0 15px;
}

.new-header__top {
	border-bottom: 1px solid #edf4ff;
}

.new-header__top-wrapper {
	padding: 16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.new-header__location {
	display: flex;
	gap: 4px;
	align-items: center;
	position: relative;
}

.new-header__location-icon img {
	display: block;
}

.new-header__location-title {
	font-family: Inter;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: #4B4744;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition: .3s ease-out;
	user-select: none;
}

.new-header__location-title:hover {
	color: #e80643;
}

.new-header__location-title::after {
	content: '';
	display: block;
	background: url('../img/header/new-header-arrow-down.svg') no-repeat center;
	width: 24px;
	height: 24px;
}

.new-header__location-drop {
	position: absolute;
	display: flex;
	flex-direction: column;
	border: 1px solid #e1e3e6;
	top: 120%;
	left: 18px;
	z-index: 11;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .2s ease-out;
}

.new-header__location-drop--active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.new-header__location-drop-link {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #4B4744;
	padding: 6px 10px;
	background: #fff;
	display: block;
	min-width: 100px;
	box-sizing: border-box;
	user-select: none;
	transition: .2s ease-out;
	cursor: pointer;
	border-bottom: 1px solid #e1e3e6;
}

.new-header__location-drop-link:last-child {
	border-bottom: none;
}

.new-header__location-drop-link:hover {
	background: #5C6A80;
	color: #fff;
}

.new-header__top-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
}

.new-header__time {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	color: #969696;
}

.new-header__phones {
	display: flex;
	gap: 10px;
	align-items: center;
}

.new-header__phones a, .new-header__email a {
	color: #0F0D0C;
}

.new-header__email, .new-header__phone, .new-header__phone-mobile {
	font-family: Inter;
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: #0F0D0C;
	transition: .3s ease-out;
	text-decoration: none;
}

.new-header__email:hover, .new-header__phone:hover {
	color: #e80643;
}

.new-header__phone-mobile {
	display: none;
}

.new-header__social {
	display: flex;
	align-items: center;
	gap: 10px;
}

.new-header__social-link {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #5C6A80;
	border-radius: 50%;
	transition: .3s ease-out;
}

.new-header__social-link:hover {
	background: #e80643;
}

.new-header__whatsapp {
	display: flex;
	gap: 10px;
	align-items: center;
	text-decoration: none;
}

.new-header__whatsapp-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
}

.new-header__whatsapp-icon img {
	display: block;
	position: relative;
	top: 0px;
}

.new-header__whatsapp-title {
	font-family: Inter;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	color: #0DC143;
	transition: .3s ease-out;
	text-decoration: none;
}

.new-header__whatsapp:hover .new-header__whatsapp-title {
	color: #0a8b31;
}

.new-header__v-line {
	height: 20px;
	width: 1px;
	background: #E3E3E3;
}

.new-header__bottom {
	position: relative;
}

.new-header__bottom-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	padding: 20px 0;
}

.new-header__logo {
	transition: .3s ease-out;
	display: block;
	box-sizing: border-box;
}

.new-header__logo img {
	opacity: .8;
	max-width: 100%;
}

.new-header__logo	img {
	display: block;
}

.new-header__search {
	flex: 1;
	position: relative;
}

.new-header__search-control input {
	width: 100%;
	/*max-width: 658px;*/
	height: 48px;
	outline: none;
	background: #f3f8ff;
	border-radius: 12px;
	border: 1px solid #dae9ff;
	padding: 16px;
	font-family: Inter;
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: #5C6A80;
	box-sizing: border-box;
}

.new-header__search-control input::placeholder {
	color: #5C6A80;
}

.new-header__search-btn {
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	position: absolute;
	right: 16px;
	top: 12px;
}

.new-header__search-btn img {
	display: block;
}

.new-header__bottom-right {
	display: flex;
	align-items: center;
	gap: 20px;
}

.new-header__icons {
	display: flex;
	gap: 16px;
}

.new-header__icons-link {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	background: #f3f8ff;
	border: 1px solid #e5f0ff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: .3s ease-out;
	user-select: none;
}

.new-header__icons-link:hover {
	background: rgb(207, 217, 233);
}

.new-header__icons-link img {
	display: block;
}

.new-header__user {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 5px solid #edf4ff;
	background: #5c6a80;
	text-align: center;
	border-radius: 50%;
	box-sizing: border-box;
	width: 56px;
	height: 56px;
	cursor: pointer;
	transition: .3s ease-out;
}

.new-header__user:hover {
	border: 5px solid #c1d6f8;
}

.new-header__user img {
	display: block;
}

.new-header__mobile-menu-btn {
	background: #5C6A80;
	height: 60px;
	width: 68px;
	display: none;
	transition: .3s ease-out;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
}

.new-header__mobile-menu-btn span {
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: .3s ease-out;
}

.new-header__mobile-menu-btn span:nth-child(1) {
	top: 40%;
}

.new-header__mobile-menu-btn span:nth-child(3) {
	top: 60%;
}

.new-header__mobile-menu-btn--active span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

.new-header__mobile-menu-btn--active span:nth-child(2) {
	opacity: 0;
}

.new-header__mobile-menu-btn--active span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
	top: 50%;
}

.new-header--fixed {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 20;
}

.new-header--fixed.new-header--fixed-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.new-header--fixed .new-header__icons-link {
	width: 44px;
	height: 44px;
}

.new-header--fixed .new-header__user {
	width: 44px;
	height: 44px;
}

.new-header--fixed .new-header__logo {
	width: 180px;
}

.new-header--fixed .new-header__icons {
	gap: 8px;
}

.new-header--fixed .new-header__bottom-right {
	gap: 8px;
}

.new-mobile-menu {
	padding: 20px;
	padding-bottom: 60px;
	position: fixed;
	right: -100%;
	width: 100%;
	height: calc(100% - 185px);
	top: 185px;
	overflow-y: auto;
	transition: .3s ease-out;
	box-sizing: border-box;
	background: #fff;
	z-index: 999;
}

.new-mobile-menu--active {
	right: 0;
}

.new-mobile-menu .new-header__search {
	display: block;
}

.new-mobile-menu__menu {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	padding: 20px 0;
}

.new-mobile-menu__link {
	font-family: Inter;
	font-weight: 400;
	font-size: 20px;
	line-height: 24px;
	color: #969696;
	text-decoration: none;
}

.new-mobile-menu__contacts {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
	border-top: 1px solid #e1e3e6;
	padding: 20px 0;
}

.new-mobile-menu .new-header__phone, .new-mobile-menu .new-header__email {
	font-size: 20px;
	line-height: 24px;
}

.new-mobile-menu .new-header__time {
	font-size: 14px;
}

.new-mobile-menu .new-header__whatsapp-title {
	font-size: 16px;
}

.new-mobile-catalog {
	padding: 20px;
	padding-bottom: 60px;
	padding-top: 0;
	position: fixed;
	left: -100%;
	width: 100%;
	height: calc(100% - 258px);
	top: 258px;
	overflow-y: auto;
	transition: .3s ease-out;
	box-sizing: border-box;
	background: #fff;
	overflow-y: auto;
	display: none;
	z-index: 998;
}

.new-mobile-catalog.new-mobile-catalog--fixed {
	height: calc(100% - 152px);
	top: 152px;
}

.new-mobile-catalog--active {
	left: 0;
	display: none;
}

.new-mobile-catalog__btn {
	border-bottom: 1px solid #E2E2E2;
}

.new-mobile-catalog__btn--active .new-mobile-catalog__arrow{
	transform: rotate(90deg);
}

.new-mobile-catalog__btn--active .new-mobile-catalog__arrow svg path {
	stroke: #e80643;
}

.new-mobile-catalog__btn--active .new-mobile-catalog__link {
	color: #e80643;
}

.new-mobile-catalog__accordeon-header {
	transition: .3s ease-out;
	text-decoration: none;
	display: block;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-sizing: border-box;
	gap: 10px;
}

.new-mobile-catalog__link {
	font-family: Inter;
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	color: #5C6A80;
	text-decoration: none;
	transition: .3s ease-out;
	user-select: none;
}

.new-mobile-catalog__arrow {
	height: 100%;
	width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s ease-out;
}

.new-mobile-catalog__accordeon-body {
	display: none;
}

.new-mobile-catalog__submenu {
	padding-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 10px;
}

.new-mobile-catalog__accordeon-link {
	font-family: Inter;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: #5C6A80;
	text-decoration: none;
	transition: .3s ease-out;
}

.new-mobile-catalog__accordeon-link:hover {
	color: #e80643;
}

.new-top-menu {
	border-bottom: 1px solid #e1e3e6;
	background: #fff;
}

.new-top-menu--fixed {
	position: fixed;
	left: 0;
	top: 79px;
	width: 100%;
	opacity: 1;
	visibility: visible;
	transition: .3s ease-out;
}

.new-top-menu__wrapper {
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: space-between;
}

.new-top-menu__menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex: 1;
}

.new-top-menu__catalog-btn {
	width: 128px;
	height: 48px;
	background: #5C6A80;
	border-radius: 8px;
	position: relative;
	cursor: pointer;
	transition: .3s ease-out;
}

.new-top-menu__catalog-btn:hover {
	background: #4c5769;
}

.new-top-menu__catalog-btn:hover .new-top-menu__catalog-btn-icon {
	background: #4c5769;
}

.new-top-menu__catalog-btn-title {
	font-family: Inter;
	font-size: 14px;
	line-height: 16px;
	color: #fff;
	font-weight: 700;
	padding-left: 50px;
	height: 100%;
	display: flex;
	align-items: center;
	user-select: none;
}

.new-top-menu__catalog-btn-icon {
	background: #5C6A80;
	height: 48px;
	width: 18px;
	transition: .3s ease-out;
	cursor: pointer;
	position: absolute;
	left: 20px;
	top: 0;
}

.new-top-menu__catalog-btn-icon span {
	width: 18px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: .3s ease-out;
}

.new-top-menu__catalog-btn-icon span:nth-child(1) {
	top: 40%;
}

.new-top-menu__catalog-btn-icon span:nth-child(3) {
	top: 60%;
}

.new-top-menu__catalog-btn--active .new-top-menu__catalog-btn-icon span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
	top: 50%;
}

.new-top-menu__catalog-btn--active .new-top-menu__catalog-btn-icon span:nth-child(2) {
	opacity: 0;
}

.new-top-menu__catalog-btn--active .new-top-menu__catalog-btn-icon span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
	top: 50%;
}

.new-top-menu__link-container {
	position: relative;
}

.new-top-menu__link-container:hover .new-top-menu__sub{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.new-top-menu__link-container:hover .new-top-menu__link {
	color: #e80643;
}

.new-top-menu__link {
	font-family: Inter;
	font-size: 16px;
	line-height: 20px;
	color: #969696;
	transition: .3s ease-out;
	text-decoration: none;
	display: block;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.new-top-menu__link:hover {
	color: #e80643;
}

.new-top-menu__sub {
	position: absolute;
	top: 100%;
	left: 0;
	border: 1px solid #e1e3e6;
	opacity: 0;
	visibility: visible;
	pointer-events: none;
	transition: .3s ease-out;
	z-index: 999;
}

.new-top-menu__sub-link {
	font-family: Inter;
	font-weight: 400;
	font-size: 14px;
	line-height: 24px;
	color: #4B4744;
	padding: 6px 10px;
	background: #fff;
	display: block;
	min-width: 200px;
	box-sizing: border-box;
	user-select: none;
	transition: .2s ease-out;
	cursor: pointer;
	border-bottom: 1px solid #e1e3e6;
	text-decoration: none;
}

.new-top-menu__sub-link:last-child {
	border-bottom: none;
}

.new-top-menu__sub-link:hover {
	background: #5C6A80;
	color: #fff;
}

.new-header__icons--mobile {
	display: none;
}

.new-catalog-desctop {
	position: fixed;
	width: 100%;
	left: 0;
	top: 234px;
	height: calc(96vh - 234px);
	display: none;
	background-color: #ffffff;
}

.new-catalog-desctop.new-catalog-desctop--fixed {
	top: 152px;
	height: calc(96vh - 152px);
}

.new-catalog-desctop--active {
	display: block;
	z-index: 998;
	background-color: #ffffff;
}

.new-catalog-desctop .new-container {
	height: 100%;
}

.new-catalog-desctop__wrapper {
	height: 100%;
	position: relative;
}

.new-catalog-desctop__sidebar {
	width: 350px;
	box-sizing: border-box;
	height: 100%;
	background: #fff;

	overflow-y: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.new-catalog-desctop__sidebar::-webkit-scrollbar {
	width: 0;
	height: 0;
}

.new-catalog-desctop__sidebar::-webkit-scrollbar {
	width: 0px; /* ширина для вертикального скролла */
	background-color: #f1f1f1;
}

/* ползунок скроллбара */
.new-catalog-desctop__sidebar::-webkit-scrollbar-thumb {
	background-color: #5C6A80;
}

.new-catalog-desctop__sidebar::-webkit-scrollbar-thumb:hover {
	background-color: #72839e;
}


.new-catalog-desctop__sidebar::-webkit-scrollbar-button:vertical:start:decrement {
	background-color: #f1f1f1;
	height: 0;
}

.new-catalog-desctop__sidebar::-webkit-scrollbar-button:vertical:end:increment {
	background-color: #f1f1f1;
	height: 0;
}

.new-catalog-desctop__category:hover .new-catalog-desctop__category-content {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.new-catalog-desctop__category:hover .new-catalog-desctop__category-link{
	color: #F0083C;
}

.new-catalog-desctop__category:hover .new-catalog-desctop__category-icon svg path{
	stroke: #F0083C;
}

.new-catalog-desctop__category-link {
	font-family: Inter;
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	color: #5C6A80;
	transition: .3s ease-out;
	text-decoration: none;
	display: block;
	min-height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #E2E2E2;
	border-right: 1px solid #E2E2E2;
	padding-right: 20px;
	box-sizing: border-box;
}

.new-catalog-desctop__category-link:last-child {
	border: none;
}

.new-catalog-desctop__category-icon svg path{
	transition: .3s ease-out;
}

.new-catalog-desctop__category-link:hover .new-catalog-desctop__category-icon svg path {
	stroke: #F0083C;
}

.new-catalog-desctop__category-content {
	position: absolute;
	width: calc(100% - 350px);
	left: 350px;
	top: 0;
	padding: 30px;
	height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .1s ease-out;
	background: #fff;
}

.new-catalog-desctop__category-content::-webkit-scrollbar {
	width: 4px; /* ширина для вертикального скролла */
	background-color: #f1f1f1;
}

/* ползунок скроллбара */
.new-catalog-desctop__category-content::-webkit-scrollbar-thumb {
	background-color: #5C6A80;
}

.new-catalog-desctop__category-content::-webkit-scrollbar-thumb:hover {
	background-color: #72839e;
}


.new-catalog-desctop__category-content::-webkit-scrollbar-button:vertical:start:decrement {
	background-color: #f1f1f1;
	height: 0;
}

.new-catalog-desctop__category-content::-webkit-scrollbar-button:vertical:end:increment {
	background-color: #f1f1f1;
	height: 0;
}

.new-catalog-desctop__category-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 0;
	padding-top: 0;
}

.new-catalog-desctop__category-title {
	font-family: Inter;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #5C6A80;
	transition: .3s ease-out;
}

.new-catalog-desctop__category-more {
	font-family: Inter;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #F0083C;
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.new-catalog-desctop__category-more:hover {
	text-decoration: underline;
}

.new-catalog-desctop__category-more svg path {
	stroke: #F0083C;
}

.new-catalog-desctop__category-body {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	box-sizing: border-box;
}

.new-catalog-desctop__category-card {
	display: block;
	text-decoration: none;
	max-width: 160px;
	box-sizing: border-box;
}

.new-catalog-desctop__category-card:hover .new-catalog-desctop__category-img {
	border: 1px solid #F0083C;
}
.new-catalog-desctop__category-card:hover .new-catalog-desctop__category-text {
	color: #F0083C;
}

.new-catalog-desctop__category-img {
	border-radius: 4px;
	transition: .3s ease-out;
	border: 1px solid transparent;
	margin-bottom: 12px;
	overflow: hidden;
	background: #fff;
}

.new-catalog-desctop__category-img img{
	display: block;
	margin: 0 auto;
	max-width: 100%;
}

.new-catalog-desctop__category-text {
	font-family: Inter;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: #5C6A80;
	text-align: center;
	transition: .3s ease-out;
}

@media (max-width: 1360px) {
	.new-container {
		width: 960px;
	}
	.new-header__whatsapp-title {
		display: none;
	}
	.new-catalog-desctop__category-body {
		grid-template-columns: repeat(3, 1fr);
	}
	.new-catalog-desctop__category {
		font-size: 16px;
		min-height: 54px;
	}
	.new-catalog-desctop__sidebar {
		width: 300px;
	}
	.new-catalog-desctop__category-content {
		width: calc(100% - 300px);
		left: 300px;
	}
}

@media (max-width: 992px) {
	body.body-fixed {
		padding-right: 0;
	}
	.new-container {
		width: 720px;
	}
	.new-header__time {
		font-size: 12px;
	}
	.new-header__phones {
		flex-direction: column;
		gap: 0;
	}
	.new-header__phones .new-header__v-line {
		display: none;
	}
	.new-header__phone, .new-header__email {
		font-size: 13px;
	}
	.new-header__bottom-wrapper {
		gap: 20px;
	}
	.new-header__logo {
		width: 140px;
	}
	.new-header__search-control input {
		font-size: 14px;
	}
	.new-top-menu__wrapper {
		gap: 10px;
	}
	.new-top-menu__catalog-btn {
		width: 58px;
	}
	.new-top-menu__catalog-btn-title {
		display: none;
	}
	.new-top-menu__link {
		font-size: 13px;
	}
	.new-catalog-desctop {
		display: none;
	}
	.new-mobile-catalog {
		display: block;
	}

	.new-mobile-catalog--active {
		display: block;
	}
	.new-header--fixed .new-header__phone {
		line-height: 18px;
	}
	.new-top-menu__sub-link {
		font-size: 12px;
	}
}

@media (max-width: 766px) {
	.new-container {
		width: 540px;
	}
	.new-header__top-wrapper {
		padding: 0;
		height: 48px;
	}
	.new-header__top .new-header__time {
		display: none;
	}
	.new-header__top .new-header__phones {
		display: none;
	}
	.new-header__top .new-header__social {
		display: none;
	}
	.new-header__top .new-header__email {
		display: none;
	}
	.new-header__v-line {
		display: none;
	}
	.new-header__whatsapp-title {
		display: block;
		font-size: 14px;
	}
	.new-header__bottom {
		border-bottom: 1px solid #edf4ff;
	}
	.new-header__bottom-wrapper {
		padding: 0;
		height: 60px;
	}
	.new-header__logo {
		width: 170px;
	}
	.new-header__search {
		display: none;
	}
	.new-header__bottom-right {
		display: none;
	}
	.new-header__mobile-menu-btn {
		display: flex;
	}
	.new-top-menu {
		padding: 12px 0;
	}
	.new-top-menu__catalog-btn {
		width: 128px;
	}
	.new-top-menu__catalog-btn-title {
		display: flex;
	}
	.new-top-menu__menu {
		display: none;
	}
	.new-header__icons--mobile {
		display: flex;
	}
	.new-mobile-catalog {
		height: calc(100%- 185px);
    top: 185px;
	}
	.new-header__phone-mobile {
		display: block;
	}
	.new-header__whatsapp {
		display: none;
	}
	.new-mobile-menu .new-header__whatsapp {
		display: flex;
	}
	.new-header--fixed {
		display: none;
	}
	.new-top-menu--fixed {
		top: 0;
	}
	.new-mobile-catalog.new-mobile-catalog--fixed {
		height: calc(100% - 75px);
    top: 75px;
	}
}

@media (max-width: 576px) {
	.new-container {
		width: 100%;
	}
}