.btn-reset {
	display: inline-block;
	margin-top: 5px;
	border-bottom: 1px dotted;
	text-decoration: none;
}
.body__filter {
	position: relative;
}
.tooltip {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 135px;
	height: 22px;
	text-align: center;
	padding: 4px 8px;
	background: #FEF6EB;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 1020;
	font-size: 12px;
	line-height: 14px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.25s 0s, visibility 0.25s 0s;
	-o-transition: opacity 0.25s 0s, visibility 0.25s 0s;
	transition: opacity 0.25s 0s, visibility 0.25s 0s;
}
.tooltip.active {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.25s 0s, visibility 0.25s 0s;
	-o-transition: opacity 0.25s 0s, visibility 0.25s 0s;
	transition: opacity 0.25s 0s, visibility 0.25s 0s
}
.tooltip:after {
	content: '';
	position: absolute;
	top: 5px;
	left: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 10px 5px 0;
	border-color: transparent #fef6eb transparent transparent;
	line-height: 0;
	-webkit-transform:rotate(360deg);
	_border-color: #000000 #fef6eb #000000 #000000;
	_filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
}
.filter__triggers {
	position: absolute;
	right: 10px;
	border: 0;
	padding: 20px 10px;
	width: 210px;
	bottom: 0;
	border-top: 1px solid #eee;
	z-index: 2;
}
.filter__triggers .btn-orange {
	border: 0;
	line-height: 32px;
	padding: 0 8px;
	width: 100%;
	margin-bottom: 6px;
}
@media (max-width: 767px) {
	.filter__triggers {
		position: fixed;
		right: -280px;
		width: 280px;
		padding: 10px 30px;
		background: #fff;
	}
}