
.catalog_header .list_wrap{
	//width: 65px; /*mainwidth*/
	height: 26px; /*mainheight*/
	/*changes not recommended*/
	display: inline-block;
	position: relative;
	position: relative;
}
.catalog_header .list_wrap .title{
	display: inline-block;
	float: left;
	line-height: normal;
	margin-right: 10px;
}
.catalog_header .list_wrap .selected{
	display: inline-block;
	background: #fff;
	border: 1px solid #d0d0d0;
	color: #362f2d;
	/*border-radius: 5px;*/
	line-height: 26px;
	/*changes not recommended*/
	height: 100%;
	cursor: pointer;
	overflow: hidden;
	margin-right: 10px;
	padding: 0 40px 0 15px;
}
.catalog_header .list_wrap .selected.now .row{
	background: url("/img/selectbox_open.png") no-repeat center;
}
.catalog_header .list_wrap .selected .row{
	background: url("/img/selectbox.png") no-repeat center;
	border-left:  1px dotted #777777;
	width: 28px;
	height: 18px;
	display: block;
	position: absolute;
	right: 12px;
	top: 1px;
}
.catalog_header .list_wrap .list{
	position: absolute;
	top: 30px;
	right: 0;
	z-index: 12;
	border-radius: 5px;
    outline: 1px solid #e6e6e6;
    outline-offset: -1px;
	background: #fff;
}
.catalog_header .list_wrap .list.active{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.catalog_header .list_wrap .list a{
	display: block;
	height: 24px;
	line-height: 24px;
	text-align: center;
	color: #362f2d;
    font-size: 16px;
    padding: 5px 10px;
}
.catalog_header .list_wrap .list a.active {
	background: rgba(8, 168, 38, 0.5);
	color: #fff;
}

.catalog_header .list_wrap .list a:hover{
    background: #08a826;
    color: #fff;
}

.catalog_header .list_wrap .list a:first-child{
	border-radius: 5px 5px 0 0;
}
.catalog_header .list_wrap .list a:last-child{
	border-radius: 0 0 5px 5px;
}
/*Mask and arrow*/
.selectBox:after{
	top: 4px;
	right: 4px;
	content: '';
	display: inline-block;
	position: absolute;
	z-index: 3;
	width: 25px;
	height: 18px;
	border-radius: 50%;
	background: url("/img/selectbox.png") no-repeat center;
	-webkit-transition: .2s ease;
	-o-transition: .2s ease;
	transition: .2s ease;
}
.selectBox.opened:after{
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}