.list-filters{
	position: absolute;
    top: 0;
    left: 78px;
    border: thin solid #f0f0f0;
	background:white;
    -moz-transition: all .25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -o-transition: all .25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    -webkit-transition: all .25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
    transition: all .25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}

.ozfilter {
    display: inline-block;
    padding: 29px 45px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: 1px;
    border-right: 1px solid #f0f0f0;
    cursor: pointer;
}

.ozfilter:hover {
    background: #e28823;
    color: white;
}

.ozfilter.active{
	color: #e28823;
}

.oz-nav-filters {
    padding: 0;
    height: 80px;
    margin: 25px 15px;
	position: relative;
	z-index:9999;
}

.oz-nav-filters.nav-right {
    direction: rtl;
}

.filter-burger {
    display: block;
    position: absolute;
    height: 80px;
}

.oz-nav-filters.nav-left .filter-burger:before {
    content: "\f0b0";
    font: normal normal normal 14px/1 FontAwesome;
    padding: 33px;
    border: thin solid #f0f0f0;
    position: absolute;
}

@media (max-width: 866px){
	.ozfilter {
		display:block;
	}
	.oz-nav-filters{
		margin:25px 0px;
	}
	

	.oz-nav-filters.closed {
		border-color: transparent;
	}

	.oz-nav-filters.closed .list-filters {
		transform: translateX(-50px);
		opacity: 0;
		pointer-events: none;
	}
}