#menu_filter{
	margin-top:-95px;
	margin-bottom:-126px;
}
#menu_filter_slot{
	margin-top: -95px;
}
.menu_filter{
	overflow-x: scroll;
}
.menu_filter ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu_filter ul li{
	padding:40px 5px;
	text-align: center;
}
.menu_filter ul li:hover .filtr_bg{
	background-position: 50% 100%;
	border-radius: 100%; 
    transition: box-shadow 0.4s;
    box-shadow: 0 0 34px 11px rgba(255, 104, 63, 0.4), inset 0 0 17px 7px rgba(255, 104, 63, 0.4);
}
#menu_filter_bg{
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), 
	url(../img/body-main-bg.png) 0 0 repeat, rgba(32, 28, 25, 0.77);
	height:110px;
	width: 100%;
}
.filtr_bg{
	background-image: url('../img/main-menu-bg.webp');
	width: 106px;
    height: 103px;
    position: relative;
}
.filtr_bg:before{
	content: '';
	position:absolute;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
	background-image: url('../img/sprite-icons.webp');
}
.filtr_bg img{
	margin-top: 32px;
}
.menu_filter ul li:last-child a input{
	border:solid 1px black;
	color:#ffcf86;
	padding-left:50px;
	border-radius: 54px;
	transition: width 1s;
	opacity: 0;
	visibility: hidden;
	display: block;
	width: 0px;
	height:0px;
	box-shadow: inset 1px 1px 6px 1px #000, 0 0 12px 0 #ff973e, 1px 1px 1px 0 #c6a07e;
	background-image: url('../img/search_bg.webp');
	background-size: cover;
	background-position: center;
}
::-webkit-input-placeholder { 
  color: #ffcf86;
  font-weight: bold;
}

:-ms-input-placeholder { 
  color: #ffcf86;
  font-weight: bold;
}

::placeholder {
  color: #ffcf86;
  font-weight: bold;
}
.menu_filter ul li:last-child a{
	position: relative;
}


.menu_filter ul li:last-child a span{
	text-align: left;
}
.menu_filter ul li a span{
	display: block;
	margin-top:20px;
	color: #ffcf86;
	font-size: 13px;
	font-weight: 700;
}

.menu_filter ul li a:hover span{
	color: #fff;
    text-shadow: 0 0 3px #fc5b1f;
}
.menu_filter ul li a.activ span{
	color:#0083c3;
}
.menu_filter ul{
	width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    margin: -12px -10px;
    padding: 12px 10px;
    white-space: nowrap;
}
.menu_filter::-webkit-scrollbar { display:none; }
.menu_filter { -ms-overflow-style: none; }
.menu_filter { overflow: -moz-scrollbars-none; }
@media only screen and (max-width: 1200px) {
	.menu_filter ul{
		justify-content: flex-start;
	}
}