.cycly-vehicles .dialog dl,
.cycly-vehicles .dialog dt,
.cycly-vehicles .dialog dd,
.cycly-vehicles .dialog p {
	font-family: Arial;
	margin: 0;
}
.cycly-vehicles {
	margin-bottom: 0;
	text-align: center;
}
.cycly-vehicles .items {
	cursor: pointer;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 20px;
	grid-row-gap: 40px;
	margin: 40px 0;
	transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1200px) {
	.cycly-vehicles .items {
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 800px) {
	.cycly-vehicles .items {
		grid-template-columns: 1fr;
	}
}
.cycly-vehicles .items.fadeout {
	opacity: 0;
}
.cycly-vehicles .items .item {
	font-size: 16px;
	position: relative;
	display: block;
	text-align: center;
	transition: all 0.2s ease-in-out;
	opacity: 1;
	color: #000;
	text-decoration: none;
}
.cycly-vehicles .items .item.fadeout {
	opacity: 0;
}
.cycly-vehicles .items .item .title {
	margin-top: 10px;
}
.cycly-vehicles .items .item .title strong {
	padding-right: 10px;
}
.cycly-vehicles .items .item .price {
	font-weight: 600;
	color: #f00;
}
.cycly-vehicles .items .item .price-normal span {
	text-decoration: line-through;
}
.cycly-vehicles .items .item .item-image {
	position: relative;
	min-height: 250px;
	transition: all 0.2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.cycly-vehicles .items .item .item-image::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.03);
}
.cycly-vehicles .items .item .item-image:hover::before {
	background: rgba(0, 0, 0, 0.06);
}
.cycly-vehicles .items .item .item-highlight,
.cycly-vehicles .items .item .item-discount {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 3.2rem;
	height: 3.2rem;
	border-radius: 50%;
	background: var(--colorAccent);
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cycly-vehicles .items .item .item-highlight span,
.cycly-vehicles .items .item .item-discount span {
	color: #fff;
	text-transform: uppercase;
	transform: rotate(-35deg);
	font-size: 0.8rem;
	font-weight: bold;
}
.cycly-vehicles .items .item .item-discount {
	background: #ff0000;
}
.cycly-vehicles .items .empty {
	grid-column-start: 1;
	grid-column-end: 3;
	font-size: 16px;
}
.cycly-vehicles .moreButton {
	background-color: #5e5e5e;
	color: #fff;
	display: inline-block;
	padding: 8px 20px;
	border-radius: 0.30px;
	font-size: 16px;
	cursor: pointer;
}
.cycly-vehicles .moreButton:hover {
	background-color: #333;
}
.cycly-vehicles .filters {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
	white-space: nowrap;
}
@media screen and (max-width: 400px) {
	.cycly-vehicles .filters {
		grid-template-columns: 1fr;
	}
}
.cycly-vehicles .filters .filter {
	display: flex;
	background: #fcfcfc;
	border: 1px solid #e2e2e2;
	border-radius: 26px;
	height: 44px;
	line-height: 42px;
	padding: 0 25px;
	flex-flow: row;
	justify-content: stretch;
	align-items: stretch;
	margin-bottom: 0;
	font-size: 16px;
	position: relative;
}
.cycly-vehicles .filters .filter.select-filter::after {
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #000;
	opacity: 0.5;
	border-bottom: none;
	height: 15px;
	right: 30px;
	content: '';
	position: absolute;
	top: calc(45%);
}
.cycly-vehicles .filters .filter.select-filter select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.cycly-vehicles .filters .filter .title {
	margin-right: 5px;
	opacity: 0.5;
}
.cycly-vehicles .filters .filter select {
	width: 100%;
	border: none;
	background: transparent;
	font-weight: 600;
	color: #303030;
	outline: none;
}
/* ------ */
/* Dialog */
/* ------ */
.cycly-vehicles .dialog-wrapper {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	z-index: 100;
	opacity: 0;
	transition: opacity 0.3s ease-in-out;
	align-items: center;
	justify-content: center;
}
.cycly-vehicles .dialog-wrapper:after {
	content: ' ';
	position: absolute;
	background-image: url("tpl/loader.png");
	width: 64px;
	height: 64px;
	left: calc(50% - 32px);
	top: calc(50% - 32px);
	background-size: cover;
	animation: rotation 2s infinite linear;
	z-index: -1;
}
.cycly-vehicles .dialog-wrapper.show {
	display: flex;
	opacity: 1;
}
/* Close Button */
.cycly-vehicles .dialog .button-close {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	padding: 20px;
	flex-flow: column;
	justify-content: center;
	transition: all 0.2s ease-in-out;
	outline: none;
	cursor: pointer;
}
.cycly-vehicles .dialog .button-close:hover span {
	background-color: #bf3d49;
}
.cycly-vehicles .dialog .button-close span {
	display: block;
	background: #000;
	height: 3px;
	border-radius: 1px;
	width: 100%;
	transition: all 0.2s ease-in-out;
	transform-origin: center;
	transform: rotate(45deg) translateX(2px);
}
.cycly-vehicles .dialog .button-close span:last-child {
	transform: rotate(-45deg) translateX(2px);
}
/* Dialog Grundlayout*/
.cycly-vehicles .dialog {
	text-align: left;
	max-height: calc(100vh - 35px);
	position: relative;
	width: calc(100% - 70px);
	max-width: 1200px;
	background: #fff;
	padding: 35px;
	transition: all 0.22s ease-in-out;
	overflow: auto;
	border: none;
	font-size: 16px;
	opacity: 0;
}
@media screen and (max-width: 800px) {
	.cycly-vehicles .dialog {
		max-height: calc(100vh - 30px);
		width: calc(100% - 30px);
	}
}
.cycly-vehicles .dialog.show {
	opacity: 1;
}
.cycly-vehicles .dialog .vehicle-details {
	display: grid;
	grid-template-columns: 5fr 4fr;
	grid-column-gap: 60px;
	grid-row-gap: 30px;
}
@media screen and (max-width: 1100px) {
	.cycly-vehicles .dialog .vehicle-details {
		grid-template-columns: 1fr;
		grid-gap: 10px;
	}
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container dl {
	display: grid;
	grid-template-columns: 3fr 5fr;
	line-height: 1.8;
	margin: 0;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container dl dt {
	color: #5e5e5e;
	font-weight: 400;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container dl dd {
	color: #303030;
	font-weight: 600;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container .price {
	font-weight: 800;
	color: #ce2323;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container .old-price {
	text-decoration: line-through;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container .oldPrice {
	text-decoration: line-through;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-infos .description-container h3 {
	margin: 20px 0 10px 0;
	font-style: italic;
	font-size: 18px;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-images .image-main {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cycly-vehicles .dialog .vehicle-details .vehicle-images .image-list {
	margin-top: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 10px;
}
.cycly-vehicles .dialog h2 {
	margin: 0;
	font-style: italic;
	font-size: 30px;
	font-weight: 400;
}
@media screen and (max-width: 1100px) {
	.cycly-vehicles .dialog h2 {
		max-width: calc(50%);
	}
}
.cycly-vehicles .dialog h2 strong {
	font-weight: 800;
}
/* Kategorie*/
.cycly-vehicles .dialog .vehicle-category {
	text-align: right;
	align-self: end;
	font-size: 1.30px;
}
@media screen and (max-width: 1100px) {
	.cycly-vehicles .dialog .vehicle-category {
		text-align: left;
	}
}
.cycly-vehicles .dialog .vehicle-category .label {
	color: #aeaeae;
}
.cycly-vehicles .dialog .vehicle-category .value {
	font-weight: 600;
}
/* Mitarbeiter */
#cycly-employees {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 30px;
	row-gap: 60px;
}
@media screen and (max-width: 800px) {
	#cycly-employees {
		grid-template-columns: 1fr 1fr;
	}
}
#cycly-employees .employee {
	text-align: center;
}
#cycly-employees .employee img {
	border-radius: 1000px;
	display: inline-block;
}
/* Animationen */
@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
