#listing{
	float:left;
	width:100%;
}

#listing .car-catalog-entry{
	box-shadow: 0px 2px 5px #9c9c9c;
}

#filters{
    float: left;
    width: 100%;
    background: #dcdcdc;
    margin: 20px 0;
    padding: 20px 25px 10px;
    box-sizing: border-box;
    border-radius: 5px;
	box-shadow: 0px 2px 5px #9c9c9c;
}

#filters h3{
    float: left;
    width: 100%;
    text-align: center;
    margin: 0;
    font-size: 23px;
    font-family: tahoma, arial;
    padding-bottom: 15px;
}

#filters form,
.car-listing-filter{
    float: left;
    width: 100%;
}

#filters form{
	display: none;
}

#filters .car-listing-filter i{
    float: left;
    width: 40px;
    background: #3e3e3e;
    color: #fff;
    text-align: center;
    line-height: 44px;
    margin-top: 10px;
    box-sizing: border-box;
    border: 1px solid #4b4b4b;
    border-right: none;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 46px;
}

#filters .car-listing-filter select{
	float: left;
	width: calc(100% - 40px);
    margin: 10px 0;
    border: 1px solid #4b4b4b;
    border-radius: 5px;
	border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: #3e3e3e;
    color: #fff;
    padding: 13px 30px;
    height: 46px;
}

#filters select {
    float: left;
    width: 100%;
    margin: 10px 0;
    border: 1px solid #4b4b4b;
    border-radius: 5px;
    background: #3e3e3e;
    color: #fff;
    padding: 13px 30px;
    height: 46px;
}

#filters select.active{
    background: #007cba;
    border-color: #3e3e3e;
}

#filters button{
    float: left;
    width: 100%;
    background: #007cba;
    color: #fff;
    border: none;
    padding: 13px 0;
    margin-top: 10px;
    border-radius: 5px;
    border-bottom: 2px solid #043852;
    font-family: tahoma, arial;
    font-weight: bold;
    font-size: 13px;
}

#filters a{
	float: left;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    color: #3e3e3e;
    font-size: 13px;
    margin-top: 15px;
}

@media screen and (min-width: 640px)
{
	
}

@media screen and (min-width: 800px)
{
	
}

@media screen and (min-width: 960px)
{
	.car-catalog-entry {
		width: 32%;
		margin: 20px calc(4% / 6);
	}
	
	.car-catalog-entry-img{
		height: 160px;
	}
	
	.car-catalog-entry-price{
		top:5px;
		left:5px;
		bottom:unset;
	}
	
	.car-catalog-entry-loan{
		bottom: 5px;
		right: 5px;
	}
	
	.car-catalog-entry-label{
		top: 5px;
		right: 5px;
	}
	
	.car-catalog-entry-price,
	.car-catalog-entry-loan,
	.car-catalog-entry-label{
		opacity: 0.6;
	}
	
	.car-catalog-entry:hover .car-catalog-entry-price,
	.car-catalog-entry:hover .car-catalog-entry-loan,
	.car-catalog-entry:hover .car-catalog-entry-label{
		opacity: 1;
	}
	
	#filters form{
		display: block;
	}
	
	#listing,
	#filters{
		float: right;
	}

	#filters{
    	width: 30%;
	    margin: 20px 0 0;
	}
	
	#listing{
		width:70%;
	}
}

@media screen and (min-width:1125px)
{
	.car-catalog-entry {
		width: 30%;
		margin: 20px calc(10% / 6);
	}
	
	#filters{
    	width: 25%;
	}
	
	#listing{
		width:75%;
	}

}