.filter {
	position: relative;
	z-index: 10;
	background-color: #FFF7F0;
	border: 1px solid #4F4D4E;
	border-radius: 10px;
	padding: 15px;
}

@media(max-width: 767px) {
	.filter {
		padding: 10px;
	}
}

.top {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background-color: #338050;
}

@media(max-width: 767px) {
	.top {
		height: 50px;
	}
}

input, textarea {
	width: 100%;
	display: block;
	font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #000;
	background: #fff;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 0 15px;
	box-sizing: border-box;
	outline: none;
	-webkit-appearance: default-button;
	-webkit-appearance: none;
	-webkit-tap-highlight-color: transparent;
	transition: .2s;
}

input:hover, input:focus {
	border-color: #54c276;
	transition: .2s;
}

.field-search input {
	padding-left: 37px;
}

.field-search img {
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}

input {
	height: 40px;
}

input:placeholder {
    font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #A09B9B;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #A09B9B;
}

input:-moz-placeholder, textarea:-moz-placeholder {
	font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #A09B9B;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #A09B9B;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
	font-family: 'DMSans-Regular';
	font-size: 14px;
	color: #A09B9B;
}

.filter__cols, .filter__items {
    display: flex;
	flex-wrap: wrap;
}

.filter__cols, .filter__items {
	margin: -8px -16px 0 0;
}

.w20 {
	width: 20%;
}

.w25 {
	width: 25%;
}

.w80 {
	width: 80%;
}
/*
@media(max-width: 991px) {
	.filter__col {
		width: 50%;
	}
}*/

@media(max-width: 767px) {
	.filter__col, .filter__item {
		width: 100%;
	}
}

.filter__col {
	position: relative;
}

.col-mr {
	margin-right: 16px;
}

@media(max-width: 991px) {
	.col-mr {
		margin-right: 8px;
	}
}

.filter__field {
	position: relative;
	width: 100%;
}

.filter__col .filter__field, .filter__item {
	margin-top: 8px;
}

@media(max-width: 991px) {
	.filter__cols, .filter__items {
		margin: -8px -8px 0 0;
	}
}

@media(max-width: 767px) {
	.filter__item {
		margin-top: 10px;
	}
	.filter__items {
		margin: -10px -8px 0 0;
	}
	.filter__col .filter__field {
		margin-top: 13px;
	}
	.filter__cols {
		margin: -13px -8px 0 0;
	}
}

button[type="submit"] {
	width: 100%;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'DMSans-Medium';
	font-size: 14px;
	line-height: 1;
	color: #fff;
	background-color: #4DB36D;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
	transition: .2s;
}

button[type="submit"]:hover {
	color: #fff;
	background-color: #54c276;
	transition: .2s;
}

button[type="submit"] img {
	margin-right: 5px;
}
/*selected*/
.filter__sel {
	margin-top: -10px;
	padding: 15px 0;
}

@media(max-width: 767px) {
	.filter__sel {
		padding: 13px 0;
	}
}

.filter__sel-item {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #F7F7F7;
	border: 1px solid #DDDDDD;
	border-radius: 4px;
	padding: 3px 10px;
	margin-right: 10px;
	margin-top: 10px;
}

.filter__sel-item p {
	color: #908989;
	line-height: 1.2;
}

.filter__sel-item svg {
	position: relative;
	fill: #908989;
	transition: .2s;
	margin-left: 10px;
}

.filter__sel-item:hover svg {
	fill: #d00e0e;
	transition: .2s;
}
/**/

.filter__showing {
	padding: 17px 15px 0 15px;
}

@media(max-width: 767px) {
	.filter__showing {
		padding: 13px 0 0 0;
	}
}

.filter__showing strong {
	color: #338050;
}
/*select2*/
.select2-container {
	width: 100%;
}

.select2-container-multi .select2-choices .select2-search-field input {
    font-family: 'DMSans-Regular';
}

.select2-container li:before {
	display: none;
}

.select2-container:after {
	content: url(../img/list_arrow.svg);
	position: absolute;
    width: 10px;
	right: 15px;
	top: 8px;
	transition: .2s;
}

.select2-dropdown-open:after {
	transform: rotate(180deg);
	top: 13px;
}
