/*********************************************************************
**********************************************************************
Cherry - Design System
Entry Points

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

:root {

	/* Spacing ----------------------------------------------- */
	--max-width: 1440px;
	--padding-top-body-mobile: 0;
	--padding-top-body-desktop: 0;
	--margin-container-mobile: 20px;
	--margin-container-desktop: 20px;
	--margin-container-child-mobile: 10px;
	--margin-container-child-desktop: 10px;
	--margin-row-mobile: -10px;
	--margin-row-desktop: -10px;
	--gutter-col-mobile: 10px;
	--gutter-col-desktop: 10px;

	/* Colors ----------------------------------------------------- */
	--color-primary: #1F2D3D;
	--color-secondary: #8492A6;
	--color-tertiary: #F9FAFC;

	--color-dark: #000;
	--color-light: #fff;

	--color-gray-light: #E5E5E5;
	--color-gray-medium: #666666;
	--color-gray-dark: #4a4a4a;

	--color-success: #28a745;
	--color-error: #dc3545;
	--color-warning: #ffc107;
	--color-info: #17a2b8;

	/* Fonts ------------------------------------------------------ */
	--font-text: 'Roboto', sans-serif;
	--font-head: var(--font-text);
	--font-special: var(--font-text);
	--font-mono: 'Roboto Mono', monospace;

	/* Font Sizes ------------------------------------------------- */
	/* --> Hero --------------------------------------------------- */
	--size-hero1-mobile: 52px;
	--lineheight-hero1-mobile: 1.35;
	--size-hero1-desktop: 62px;
	--lineheight-hero1-desktop: 1.15;

	--size-hero2-mobile: 42px;
	--lineheight-hero2-mobile: 1.35;
	--size-hero2-desktop: 52px;
	--lineheight-hero2-desktop: 1.15;

	--size-hero3-mobile: 32px;
	--lineheight-hero3-mobile: 1.35;
	--size-hero3-desktop: 42px;
	--lineheight-hero3-desktop: 1.15;

	/* --> Eyebrow ------------------------------------------------ */
	--size-eyebrow-mobile: 16px;
	--lineheight-eyebrow-mobile: 1.35;
	--size-eyebrow-desktop: 18px;
	--lineheight-eyebrow-desktop: 1.15;

	/* --> Heading ------------------------------------------------ */
	--size-h1-mobile: 38px;
	--lineheight-h1-mobile: 1.35;
	--size-h1-desktop: 40px;
	--lineheight-h1-desktop: 1.15;

	--size-h2-mobile: 28px;
	--lineheight-h2-mobile: 1.35;
	--size-h2-desktop: 32px;
	--lineheight-h2-desktop: 1.15;

	--size-h3-mobile: 24px;
	--lineheight-h3-mobile: 1.35;
	--size-h3-desktop: 28px;
	--lineheight-h3-desktop: 1.15;

	--size-h4-mobile: 22px;
	--lineheight-h4-mobile: 1.35;
	--size-h4-desktop: 24px;
	--lineheight-h4-desktop: 1.15;

	--size-h5-mobile: 18px;
	--lineheight-h5-mobile: 1.35;
	--size-h5-desktop: 20px;
	--lineheight-h5-desktop: 1.15;

	--size-h6-mobile: 14px;
	--lineheight-h6-mobile: 1.35;
	--size-h6-desktop: 16px;
	--lineheight-h6-desktop: 1.15;

	/* --> Subtitle ----------------------------------------------- */
	--size-subtitle-mobile: 18px;
	--lineheight-subtitle-mobile: 1.35;
	--size-subtitle-desktop: 20px;
	--lineheight-subtitle-desktop: 1.15;
	

	/* --> Lead --------------------------------------------------- */
	--size-lead-mobile: 16px;
	--lineheight-lead-mobile: 1.5;
	--size-lead-desktop: 18px;
	--lineheight-lead-desktop: 1.75;

	/* --> Text --------------------------------------------------- */
	--size-text-mobile: 16px;
	--lineheight-text-mobile: 1.5;
	--size-text-desktop: 18px;
	--lineheight-text-desktop: 1.7;

	/* --> Small -------------------------------------------------- */
	--size-small-mobile: 12px;
	--lineheight-small-mobile: 1.7;
	--size-small-desktop: 14px;
	--lineheight-small-desktop: 1.7;

	/* --> Blockquote --------------------------------------------- */
	--size-blockquote-mobile: var(--size-h3-mobile);
	--size-blockquote-desktop: var(--size-h3-desktop);

	/* --> List --------------------------------------------------- */
	--size-list-mobile: var(--size-text-mobile);
	--size-list-desktop: var(--size-text-desktop);
}

html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	overflow: hidden;
}

body {
	font-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	font-family: 'Roboto', sans-serif;
	font-family: var(--font-text);
	font-size: 16px;
	font-size: var(--size-text-mobile);
	line-height: 1.5;
	line-height: var(--lineheight-text-mobile);
	padding-top: 0;
	padding-top: var(--padding-top-body-mobile);
	color: #000;
	color: var(--color-dark)
}

@media (min-width: 992px) {

body {
		font-size: 18px;
		font-size: var(--size-text-desktop);
		line-height: 1.7;
		line-height: var(--lineheight-text-desktop);
		padding-top: 0;
		padding-top: var(--padding-top-body-desktop)
}
	}

* {
	box-sizing: border-box
}

*::-moz-selection {
		background: #000;
		background: var(--color-dark);
		color: #fff;
		color: var(--color-light);
	}

*::selection {
		background: #000;
		background: var(--color-dark);
		color: #fff;
		color: var(--color-light);
	}

a,
button {
	outline: none;
	text-decoration: none;
	transition: all 0.3s ease;
}

a {
	color: #1F2D3D;
	color: var(--color-primary)
}

@media (hover: hover) {
		a:hover {
			color: #8492A6;
			color: var(--color-secondary);
		}
	}

figure {
	margin: 0;
}

hr {
	border: none;
	border-bottom: solid 1px #E5E5E5;
	border-bottom: solid 1px var(--color-gray-light);
}

fieldset {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: none;
}

img,
svg {
	transition: all 0.3s ease
}

img *, svg * {
		transition: all 0.3s ease;
	}

img {
	display: inline-block;
	max-width: 100%;
	width: auto;
	height: auto;
}

strong,
b {
	font-weight: 700;
	color: #1F2D3D;
	color: var(--color-primary);
}

textarea, select, input, button { outline: none; }

@font-face {
  font-family: 'AvenirNextLTPro-BoldCn';
  src: url('../fonts/AvenirNextLTPro-BoldCn.woff2') format('woff2'), url('../fonts/AvenirNextLTPro-BoldCn.woff') format('woff');
}

/* nunito-sans-regular - latin */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/nunito-sans-v6-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Nunito Sans Regular'), local('NunitoSans-Regular'),
       url('../fonts/nunito-sans-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/nunito-sans-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/nunito-sans-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/nunito-sans-v6-latin-regular.svg#NunitoSans') format('svg'); /* Legacy iOS */
}

::-moz-selection { 
  background: #E84143; 
  color: #fff;
}

::selection { 
  background: #E84143; 
  color: #fff;
  opacity: 1.0;
}

body, html {
  width: 100%;
  height: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}

#haendlerKarte {
  width: 100%;
  height: 100%;
  background: #171A32;
  font-family: "Nunito Sans";
}

.haendlerCluster {
  background-color:#E84143;
  background-size: cover;
  text-align: center;
  line-height: 48px;
  display: block;
  color: #fff;
  font-weight: bold;
  border-radius: 50% 50%;
}

#haendlerKarte .leaflet-popup-content-wrapper {
  background: #171A32;
  border-radius: 14px;
  padding: 18px;
  color: #fff;
}

#haendlerKarte .leaflet-popup-tip {
  background: #171A32;
}

#haendlerKarte a.leaflet-popup-close-button {
  right: auto;
  width: 24px;
  height: 24px;
  left: -12px;
  top: -12px;
  border-radius: 50% 50%;
  background-color: #F91821;
  padding: 0px;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
}

#haendlerKarte .leaflet-popup-content-wrapper h2 {
  font-size: 18px;
  text-transform: uppercase;
  /* font-family: 'AvenirNextLTPro-BoldCn'; */
}

#haendlerKarte .leaflet-popup-content-wrapper p {
  font-size: 13px;
}

#haendlerKarte .leaflet-popup-content-wrapper p strong{
  font-weight: bold;
  color: #fff;
}

#haendlerKarte .leaflet-popup-content-wrapper p a {
  color: #F91821;
  display: inline-block;
}

#haendlerKarte .productContainer {
  min-width: 220px;
}

#haendlerKarte .productContainer img:first-child {
  margin-right: 20px;
}

#haendlerKarte .dealerType {
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 10px;
}

#haendlerKarte .dealerType:before {
  content: "";
  display: inline-block;
  background-image: url("../img/check-icon.svg");
  width: 18px;
  height: 12px;
  margin-right: 4px;
  background-size: 100% auto;
}

#haendlerKarte .dealerType.isTrue:before {
  background: #e84143;
}

#haendlerKarte .geocoder-control-expanded {
  width: 400px;
}

#haendlerKarte .geocoder-control-expanded input {
  font-size: 24px;
  border: 2px solid #e84143;
  background-size: 36px;
}

@media only screen and (max-width: 768px) {
  #haendlerKarte .geocoder-control-expanded {
    width: 200px;
  }


  #haendlerKarte .geocoder-control-expanded input {
    font-size: 12px;
    border: 2px solid #e84143;
    background-size: 22px;
  }

}
/*# sourceMappingURL=styles.css.map */
