/*
Description:  Template zur Darstellung der Fahrzeugliste auf der Ausgabeseite
Version:      1.1
Author:       Marcel Manthey
Author URI:   https://www.wbmc.de
*/

/******************************

Listenansicht für einzelnes Fahrzeug-Objekt

*******************************/ 
@import url('https://fonts.googleapis.com/css?family=Comfortaa');

.fzg-list-wrapper {
    position: relative;
	width: 22%;
	min-width: 230px;
    min-height: 480px;
    padding: 10px;
    background: #efefef;
    border: 1px solid #e9e9e9;
    margin-bottom: 15px;
    float: left;
    margin-right: 10px;
	font-family: Comfortaa;
}

.fzg-list-wrapper:hover {
	background-color:#f7f7f7;
}

	/*Fahrzeugbild*/
	
.fzg-list-wrapper a {
	-webkit-box-shadow: 0 0 0 0px transparent;
    box-shadow: 0 0 0 0px transparent;
}

.fzg-list-wrapper a:hover {
	-webkit-box-shadow: 0 0 0 0px transparent;
    box-shadow: 0 0 0 0px transparent;
}

.fzg-list-wrapper a img {
	-webkit-box-shadow: 0 0 0 0px transparent;
    box-shadow: 0 0 0 0px transparent;
}
	
.img-container {
    text-align: center;
}

.prev-img-xx {
	width:100%;
}

/*Fahrzeugbeschreibung*/
	
.fzg-list-headline {
	color: rgb(15, 34, 139) !important;
	font-weight: 600;
	font-family: Comfortaa;
	font-size: 1.1rem !important;
}
.detail-container {
	font-size:0.8em;
}

.fzg-list-desc, .fzg-list-price {
    color: rgb(111, 111, 111);
    font-weight: bold !important;
	font-size: 0.9em;
}

.fzg-list-desc-price {
	position: absolute;
    bottom: 65px;
    right: 10px;float:right;
}

.fzg-list-desc-price span {
	font-size:0.8em;
}

.fzg-list-price {
    font-size: 1.2em;
    margin-left: 25px;
	float:right;
}

.fzg-list-price-curr {
    color: green;
    font-weight: bold !important;
    margin-left: 5px;
    font-size: 0.6em;
}

.detail-button {
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 2px !important;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 0.8em;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    cursor: pointer;
    position: absolute;
	bottom:5px !important;
}

.button:hover {
	background-color:#e3e3e3;
}

	/*Fahrzeugfilter*/
	
#car-filter {
	width:100%;
	max-width:700px;
	height:auto;
	min-height:80px;
	position:relative;
	word-wrap:normal;
}

.filter-col {
	width:19%;
	float:left;
	position:relative;
	padding-right:5px;
}

.sort, .filter-col {
	font-size:13px;
	font-family: Cinzel;
	font-weight: 600;
}

.filter-select select{
	font-size:14px;
	width:100%;
}

/*********************************

Media Queries

*********************************/

@media all and (max-width: 980px) {
	.fzg-list-wrapper {
		width: 42%;
	}
}

@media screen and (max-width: 500px){
	.filter-col, .filter-select select {
		width:100%;
	}
	.filter-select {
		margin-bottom:5px;
	}
	.fzg-list-wrapper {
		width: 96%;
	}
}