/* Suche */

#form_schnellsuche{
    display: flex;
    align-items: center;
}

#form_schnellsuche .search-bar{
	border-radius: 0;
    background-color: rgba(255,255,255,0.2);
    border: 0 none;
    color: #fff;
	outline: none;
	transform: skew(-10deg);
}

#form_schnellsuche .search-bar::placeholder{
	color: #ccc;
}

#form_schnellsuche .search-btn{
	outline: none;
    background: transparent;
    border: 0 none;
    border-radius: 0 none;
    position: absolute;
    right: 0;
    top: 2px;
}

#form_schnellsuche .search-btn .elementor-icon{
	font-size: 20px;
}



/* Produkte */

.products-header{
	display: flex;
	flex-direction: column;
    justify-content: space-between;
}

.products-title{
	padding: 0 10px;
	flex: 1;
}

.products-title h3{
	text-align: center;
}

.products-filter{
	margin-bottom: 14px;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
}

@media (min-width: 700px){
	.products-filter{
		flex-direction: row;
	}
}

@media (min-width: 1140px){
	.products-header{
		display: flex;
		flex-direction: row;
	}
	.products-title h3{
		text-align: left;
	}
	.products-filter{
		justify-content: flex-end;
	}
}

.products.loading #products-output{
	opacity: 0.5;
}

.products #products-output{
	color: transparent;
	min-height: 90px;
}

.products-filter .filter{
	padding: 12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.products-filter h3{
	margin: 0 15px 0 0;
	color: #4f5b69 !important;
	font-size: 16px;
}

.products-filter [type="checkbox"] {
	position: relative;
	left: 30px;
	top: 0px;
	z-index: 0;
	-webkit-appearance: none;
}

.products-filter [type="checkbox"] + label {
	position: relative;
	display: block;
	cursor: pointer;
	padding-left:70px;
	position: relative;
}

.products-filter [type="checkbox"] + label:before {
	width: 54px;
	height: 24px;
	border-radius: 30px;
	border: 2px solid #ddd;
	background-color: #EEE;
	content: "";
	margin-right: 15px;
	transition: background-color 0.5s linear;
	z-index: 5;
	position: absolute;
	left: 10px;
	top: -2px;
}

.products-filter [type="checkbox"] + label:after {
	width: 20px;
	height: 20px;
	border-radius: 30px;
	background-color: #fff;
	content: "";
	transition: margin 0.1s linear;
	box-shadow: 0px 0px 5px #aaa;
	position: absolute;
	left: 12px;
	top: 0px;
	z-index: 10;
}

.products-filter [type="checkbox"]:checked + label:before {
	background-color: #3dad83;
}

.products-filter [type="checkbox"]:checked + label:after {
	margin: 0 0 0 30px;
}

.products-filter .select-custom{
    background-color: #fff !important;
	outline: none !important;
}

.products-filter .select-custom select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    background-color: #fff !important;
	font-size: 16px;
    padding: 4px 12px;
    border: 1px solid #d0cbc5;
    box-shadow: 1px 1px 2px #d0cbc5;
	outline: none !important;
}

.products-filter .select-custom select::-ms-expand {
    display: none;
}


.products{
	font-family: "Open Sans", sans-serif;
}

#products-output{
	display: flex;
    flex-wrap: wrap;
}

.products .product{
	padding: 8px;	
}

.products .product a {
	position: relative;
	float: left;
    width: 100%;
    height: 100%;
	border-radius: 4px;
    box-shadow: rgb(149 157 165 / 8%) 0px 8px 24px;
	transition: all 0.3s ease-in-out;
	padding: 12px 20px 20px 20px;
}

.products .product a::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 0%;
	height: 4px;
	z-index: 9;
	transition: all 0.3s ease-in-out;
	background: linear-gradient(90deg, var( --e-global-color-primary ) 50%, var( --e-global-color-84c9ed2 ) 100%);
}

.products .product a:hover::before{
	width: 100%;
}

.products .product .icons{
	position: absolute;
    display: flex;
    flex-direction: column;
	top: 20px;
	left: 10px;
	transition: all 0.2s ease-in-out;
	opacity: 1;
	z-index: 9;
}

/* .products .product a:hover .icons{
	opacity: 1;
} */

.products .product .icons img{
	margin-bottom: 4px;
}

.products .product a .icons span{
	pointer-events: none;
    position: relative;
	left: -10px;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    color: #3dad83;
    background-color: #fff;
    padding: 9px 20px 9px 4px;
    border-radius: 0 40px 40px 0;
    z-index: -1;
}

.products .product a:hover .icons .ez-icon:hover span{
	opacity: 1;
	left: 10px;
}

.products .product .titel{
	position: relative;
	font-size: 16px;
	font-weight: 600;
	overflow: hidden;
	display: block;
	color: #58585a !important;
	line-height: 1.2;
	min-height: 52px;
	text-align: center;
}

.products .product .untertitel{
	color: #58585a !important;
	font-size: 14px;
	font-weight: 300;
	min-height: 26px;
	text-align:center;
}

.products .product .preis{
	color: #2e8364;
	font-size: 20px;
	text-align: center;
}

.products .product .preis span,.products .product .preis-kilo{
	color: #58585a;
    font-size: 13px;
    font-weight: 300;
	text-align: center;
}

.products .product .preis-kilo{
	position: relative;
	top: -2px;
}

.products .product .img-container{
	text-align: center;
}

.products .product .img-container img{
	max-height: 200px;
}

.products .product a .img-container{
	padding-top: 35px;
	padding-bottom: 15px;
	position: relative;
	transform: translateY(0);
	transition: all 0.3s ease-in-out;
}

.products .product:hover a .img-container{
	transform: translateY(-6px);
}

.products .product:hover a{
	box-shadow: rgb(149 157 165 / 24%) 0px 8px 24px;
}


/* Ladeanimation */

.lds-ellipsis {
	display: inline-block;
	position: absolute;
	width: 80px;
	height: 80px;
	left: 0;
	right: 0;
	top: 120px;
	margin: 0 auto;
	opacity: 1;
	z-index: 9;
	transition: all 0.25s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.lds-ellipsis.hide {
	opacity: 0;
}

.lds-ellipsis div {
	position: absolute;
	top: 33px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #5D6263;
	opacity: 0.8;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}

  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }

@media (min-width: 1024px){
	.lds-ellipsis {
		top: 0;
	}

	.filtered .lds-ellipsis {
		top: 80px;
	}
}

.swiper-wrapper {
	flex-wrap: nowrap !important;
}
.products-swiper .swiper-initialized {
	overflow: hidden !important;
}
.swiper-slider .swiper-pagination-bullets {
	bottom: -20px !important;
}
.swiper-slider .swiper-button-next {
	right: 20px;
}
.swiper-slider .swiper-button-prev {
	left: 20px;
}

.products-swiper .swiper-pagination{
	display: none;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0 !important;
    cursor: auto;
    pointer-events: none;
}

@media (max-width: 767px) {
	.swiper-slider .product.swiper-slide {
		flex-basis: auto !important;
	}
}
.products .product .preis span.rabattiert {
	text-align: right;
    padding-right: 5px;
    color: #ad3d3d;
    font-size: 16px;
    line-height: 24px;
    text-decoration: line-through;
}
.icon-single {
    opacity: 0.8;
    color: #1c1c1c;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 0 6px;
	width: fit-content;
}
.icons-logos {
	right: 10px;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 10px;
	left: auto;
}
.icons-logos img {
	z-index: 1;
    max-width: 50px;
}
.icons {
	display: none;
}

/* montserrat-100 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 100;
	src: url('../fonts/montserrat-v26-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-100italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 100;
	src: url('../fonts/montserrat-v26-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-200 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 200;
	src: url('../fonts/montserrat-v26-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-200italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 200;
	src: url('../fonts/montserrat-v26-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-300 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/montserrat-v26-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-300italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/montserrat-v26-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-regular - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/montserrat-v26-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/montserrat-v26-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-500 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/montserrat-v26-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-500italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 500;
	src: url('../fonts/montserrat-v26-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/montserrat-v26-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-600italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 600;
	src: url('../fonts/montserrat-v26-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/montserrat-v26-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-700italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/montserrat-v26-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-800 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/montserrat-v26-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-800italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 800;
	src: url('../fonts/montserrat-v26-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-900 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/montserrat-v26-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* montserrat-900italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Montserrat';
	font-style: italic;
	font-weight: 900;
	src: url('../fonts/montserrat-v26-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-300 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/open-sans-v36-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-300italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/open-sans-v36-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-regular - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v36-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/open-sans-v36-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-500 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/open-sans-v36-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-500italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 500;
	src: url('../fonts/open-sans-v36-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/open-sans-v36-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-600italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 600;
	src: url('../fonts/open-sans-v36-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open-sans-v36-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-700italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/open-sans-v36-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-800 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/open-sans-v36-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* open-sans-800italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Open Sans';
	font-style: italic;
	font-weight: 800;
	src: url('../fonts/open-sans-v36-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-100 - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 100;
	src: url('../fonts/roboto-condensed-v27-latin-100.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-100italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 100;
	src: url('../fonts/roboto-condensed-v27-latin-100italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-200 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 200;
	src: url('../fonts/roboto-condensed-v27-latin-200.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-200italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 200;
	src: url('../fonts/roboto-condensed-v27-latin-200italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-300 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 300;
	src: url('../fonts/roboto-condensed-v27-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-300italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 300;
	src: url('../fonts/roboto-condensed-v27-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-regular - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-condensed-v27-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/roboto-condensed-v27-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-500 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 500;
	src: url('../fonts/roboto-condensed-v27-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-500italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 500;
	src: url('../fonts/roboto-condensed-v27-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-600 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/roboto-condensed-v27-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-600italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 600;
	src: url('../fonts/roboto-condensed-v27-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-700 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-condensed-v27-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-700italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 700;
	src: url('../fonts/roboto-condensed-v27-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-800 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/roboto-condensed-v27-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-800italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 800;
	src: url('../fonts/roboto-condensed-v27-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-900 - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 900;
	src: url('../fonts/roboto-condensed-v27-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* roboto-condensed-900italic - latin */
  @font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Roboto Condensed';
	font-style: italic;
	font-weight: 900;
	src: url('../fonts/roboto-condensed-v27-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  #search_output{position:absolute;right:0;top:20px;box-shadow:1px 1px 5px #d3d3d3;background:#fff;color:#1c1c1c;margin-top:26px;max-height:800px;width:30vw;min-width:400px;max-width:800px;overflow:scroll;margin-right:0;overflow-y:auto;display:none;z-index:200;padding:13px}#search_output[data-ez-open=true]{display:block}#search_output h3{padding-bottom:.4rem;border-bottom:1px solid #d3d3d3}#search_output h3 a{color:#1c1c1c}#search_output a:hover{text-decoration:none;color:#720311}#search_output .search_container .search_headline{padding-bottom:.4rem;border-bottom:1px solid #d3d3d3;color:#720311}#search_output .search_container .search_content{display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start;overflow-y:auto}#search_output .search_container .search_content span{margin:0 .8rem .8rem 0}#search_output .search_container .search_content span a{color:#1c1c1c;display:block;margin:0;padding:.4rem;width:unset;font-weight:400}#search_output .search_container .search_content span a.ez_autocomplete_button{transition:.25s all}#search_output .search_container .search_content span a.ez_autocomplete_button:hover,#search_output .search_container .search_content span a.ez_autocomplete_button:active{color:#fff;background-color:#720311}#search_output .search_container .search_content .search_item.product{padding-bottom:.4rem;width:100%}#search_output .search_container .search_content .search_item.product a .productimage{float:left;width:90px;height:90px;display:flex;justify-content:center}#search_output .search_container .search_content .search_item.product a .productimage img{max-width:100%;max-height:100%;margin:.313rem}#search_output .search_container .search_content .search_item.product a .productname{color:#1c1c1c;float:left;padding-left:.8rem;width:calc(100% - 90px);line-height:normal}#search_output .search_container .search_content .search_item.product a .productname .productnumber{margin:0 .8rem .8rem 0}#search_output .search_container .search_content .search_item.product a .productname .productbrand{color:#1c1c1c;font-weight:400;font-size:calc(0.85 * 0.95394rem);line-height:calc(0.85 * 1.6rem);display:block;margin:0}#search_output .search_container .search_content .search_item.product a .ez_productprice{color:#1c1c1c;line-height:.94rem;text-align:left}#search_output .search_container .search_content .search_item.product a .ez_productprice .ez_price_container{letter-spacing:0px}#search_output .search_container .search_content .search_item.product a .ez_productprice .ez_normalpreis,#search_output .search_container .search_content .search_item.product a .ez_productprice .ez_sonderpreis{font-weight:700}#search_output .search_container .search_content .search_item.product a .ez_productprice .ez_grundpreis{font-weight:700}#search_output .search_container .search_content .search_item.product a .ez_productprice .ez_availability{position:relative;margin:0;top:0;right:0}#search_output .search_container .search_content .search_item.product a:hover .ez_productprice,#search_output .search_container .search_content .search_item.product a:hover .productname,#search_output .search_container .search_content .search_item.product a:hover .productbrand{color:#720311}
/*# sourceMappingURL=search.css.map */
