.main-menu__list {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	list-style: none;
	padding: 0;
	margin-bottom: 0;
	background: #fff;
}

.main-menu__list ul {
	list-style: none;
}

.main-menu__list li {
	margin: 0 10px;
}

.main-menu__list > li:last-child {
	margin-right: 0;
}

.main-menu__list > li:first-child {
	margin-left: 0;
}

.main-menu__list li li {
	margin: 0;
}

.main-menu__list a {
	display: block;
	padding: 10px 15px;
	height: 100%;
	color: #666;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 14px;
}

.main-menu__list li.menu-phone > a {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.main-menu__list li.menu-phone:hover {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.main-menu__list li.menu-phone > a:hover,
.main-menu__list li.menu-phone > a:focus {
	color: var(--blue-color);
}

.main-menu__item-icon {
	flex: 0 0 auto;
	color: currentColor;
}

.main-menu__list li a.root-item-selected {
	background: #efefef;
	color: #666;
	font-weight: 400;
}

.main-menu__list a.denied {
	background: url(images/lock.gif) center right no-repeat;
}

.main-menu__list li.sale > a {
	color: #e20a16;
}

.main-menu__list li ul,
.main-menu__list li:hover {
	-webkit-box-shadow: 0 6px 13px 0 rgb(0 0 0 / 13%);
	box-shadow: 0 6px 13px 0 rgb(0 0 0 / 13%);
}

.main-menu__list ul li:hover {
	background: #d6d6d6;
}

.main-menu__list li.highlight {
	border: 1px solid #e20a16;
	border-radius: 4px;
	color: #e20a16;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: 0 0;
}

.main-menu__list li:hover.highlight {
	background-color: #fff;
}

.main-menu__list li.item-selected {
	background:#D6D6D6;
	color:#fff;
}

.main-menu__list li ul {
	position:absolute;
	top:auto;
	display:none;
	z-index:500;
	padding: 0;

	height:auto;
	width: 200px;
	background: #fff;
}

.main-menu__list li ul a {
	display: block;
	padding: 5px 10px;
	text-align: left;
}


.main-menu__list li ul ul {
	margin: -30px 0 0 199px;
}

.main-menu__list li:hover ul ul {
	display:none;
}

.main-menu__list li:hover ul,
.main-menu__list li li:hover ul {
	display:block;
}

@media (max-width: 1400px) {
	.main-menu__list a {
		padding: 10px;
	}
}

@media (max-width: 1200px) {
	.main-menu__list {
		flex-direction: column;
		margin: 0 20px;
	}

	.main-menu__list a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 6px 0;
		font-size: 18px;
	}

	.main-menu__list a.parent svg {
		width: 16px;
		color: #0032B5;
		transform: rotate(-90deg);
	}

	.main-menu__list li {
		margin: 0;
	}

	.main-menu__list li ul a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 6px 0;
	}

	.main-menu__list > li:first-child {
		margin-left: 0;
	}

	.main-menu__list li:hover ul ul {
		display: block;
	}

	.main-menu__list li ul, .main-menu__list li:hover {
		box-shadow: none;
	}

	.main-menu__list ul li:hover {
		background-color: #fff;
	}

	.main-menu__list li ul {
		position: absolute;
		width: 100%;
		transform: translateX(400px);
		transition: 0.3s;
	}

	.main-menu__list li ul ul {
		margin: 0;
	}

	.main-menu__list li.highlight {
		border: none;
	}
}

/**07.08.2026**/
.menu-phone{
  display: flex;
  flex-direction: column;
}
.menu-phone .root-item{  
  padding-bottom:0px;
}
.menu-location{
  display: flex;
  flex-direction: column;
  color: #666;
  font-size: 14px;
  white-space: nowrap;
}
.menu-location >span{
  padding: 10px 15px;
  padding-bottom:0px;
  gap: 4px;
  display: flex;
  align-items: center;
}
.main-menu__list li{
  margin-left:0px;
}
.highlight{
  height:100%;
  margin-top:10px!important;
}
.menu-location:hover{
  box-shadow: none!important;
}
@media screen and (max-width:1435px) and (min-width:1200px){
  .main-menu__list li{
    margin:0px;
  }
  .main-menu__list a{
    padding-left:5px;
    padding-right:5px;
  }
}