#productFinder .finder-category {
	display: block;
	font-family: DaxCompactWeb-Bold, Arial, sans-serif;
	font-weight: bold;
}

#productFinder .finder-category span {
	display: block;
	font-size: 0.8rem;
	font-style: italic;
	font-weight: normal;
}

#productFinder .checkmark-label {
	display: block;
	position: relative;
	padding-left: 35px;
	cursor: pointer;
	font-size: 1rem;
    line-height: 25px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin-top: 10px;
}

#productFinder .checkmark-label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

#productFinder .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 24px;
	width: 24px;
	background-color: #fff;
	border: 1px solid #111;
    transition: all .3s;
}

#productFinder .checkmark-label:hover input~.checkmark {
	background-color: #ca1317;
}

#productFinder .checkmark-label input:checked~.checkmark {
	background-color: #0d7d6d;
}

#productFinder .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

#productFinder .checkmark-label input:checked~.checkmark:after {
	display: block;
}

#productFinder .checkmark-label .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

#productFinder ul.finder-filter-list {
	/* color: #fff; */
	list-style: none;
	margin: 0 auto 30px auto;
	padding: 0;
	display: grid;
	grid-template-columns: clamp(80px, 20vw, 210px) auto auto auto;
	gap: 25px;
	width: 100%;
}
#productFinder .finder-filter-logo {
    max-width: 165px;
}

#productFinder ul.finder-filter-list li label {
	cursor: pointer;
	white-space: nowrap;
}

#productFinder #filter-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

#productFinder #filter-mobile svg {
    transition: all .15s;
}

@media (min-width: 1200px) {
	#productFinder ul.finder-filter-list {
		width: 80%;
	}
}

@media (max-width: 1280px) {
	#productFinder ul.finder-filter-list {
		grid-template-columns: repeat(2, auto);
	}
}

@media (max-width: 767px) {
    #productFinder .checkmark {
        width: 20px;
        height: 20px;
    }
    #productFinder .checkmark-label .checkmark:after {
        left: 6px;
        top: 1px;
    }
    #productFinder .checkmark-label {
        line-height: 20px;
        font-size: .85rem;
    }
    #productFinder #filter-mobile {
        display: flex;
    }
    #productFinder .finder-filter-logo {
        max-width: 105px;
    }
    .filter-entry-hide-mobile {
        display: none;
    }
	#productFinder .finder-placeholder {
		display: none;
	}
    #productFinder ul.finder-filter-list {
		color: #000;
        grid-template-columns: repeat(1, auto);
        position: absolute;
        width: 100%;
        background: #FFF;
        max-height: 0;
        overflow-x: hidden;
        overflow-y: auto;
        transition: max-height .3s ease-out;
    }
   #productFinder  .mapFilter-active ul.finder-filter-list {
        max-height: 300px;
        overflow-y: auto;
        z-index: 999;
        padding: 5px 10px 10px 10px;
		gap: 15px;
    }
    #productFinder .mapFilter-active #filter-mobile svg {
        transform: rotate(180deg);
    }
}

#productFinder #map {
    color: #000;
    height: 720px;
}

#productFinder #placeAutocompleteCard {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border: 2px solid #808080; */
    color: #000;
    margin: 10px;
    padding: 5px;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: bold;
    width: 320px;
}

#productFinder #placeAutocompleteCard p {
    margin: 0 0 4px 0;
    position: relative;
}

#productFinder #placeAutocompleteCard #mapReset {
    border: 1px solid #000;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    display: none;
    font-size: 12px;
    padding: 4px 9px 4px 8px;
    position: absolute;
    right: 0;
    top: 2px;
}

#productFinder #placeAutocompleteCard #mapReset.show {
    display: inline-block;
}

#productFinder .seller {
    align-items: center;
    /* background-color: #000; */
    /* background-color: rgba(15, 125, 110, 0.5); */
    /* background-color: transparent; */
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 16px;
    gap: 8px;
    /* height: 32px; */
    justify-content: center;
    padding: 4px;
    position: relative;
    /* transition: all 0.3s ease-out; */
    /* width: 32px; */
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}

#productFinder .seller::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    /* border-top: 9px solid #000; */
    /* border-top: 9px solid rgba(15, 125, 110, 0.5); */
    border-top: 9px solid transparent;
    content: "";
    height: 0;
    left: 50%;
    position: absolute;
    top: 95%;
    transform: translate(-50%, 0);
    /* transition: all 0.3s ease-out; */
    width: 0;
    z-index: -1;
}

#productFinder .seller.hideMarker {
    display: none !important;
}

#productFinder .seller .icon {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #000;
}

#productFinder .seller .detail {
    display: none;
    position: relative;
}

#productFinder .seller .detail .close {
    border: 1px solid #808080;
    border-radius: 4px;
    color: #808080;
    font-weight: bold;
    /* padding: 0 5px 2px 5px; */
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

#productFinder .seller .detail .name {
    font-size: 20px;
    padding-right: 32px;
}

#productFinder .seller .detail .address {
    border-bottom: 1px solid #808080;
    border-top: 1px solid #808080;
    font-size: 12px;
    margin: 4px 0;
    padding: 4px 0;
}

#productFinder .seller.highlightMarker {
    background-color: #000;
    background-image: none !important;
    border-radius: 8px;
    /* box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2); */
    height: auto;
    padding: 16px;
    width: auto;
}

#productFinder .seller.highlightMarker::after {
    border-top: 9px solid #000;
}


#productFinder .seller.highlightMarker .icon {
    display: none;
}

#productFinder .seller.highlightMarker .detail {
    /* display: inline-block; */
    display: block;
}

@media (max-width: 767px) {
    #productFinder #map {
        height: 560px;
    }
    #productFinder #placeAutocompleteCard {
        font-size: 18px;
        width: 74%;
    }
    #productFinder #placeAutocompleteCard #mapReset {
        top: 0;
    }
}

/* mapCluster */

#productFinder .map-cluster {
  width: var(--cluster-size);
  height: var(--cluster-size);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;

  border-radius: 999px;
  border: 3px solid var(--cluster-border);
  background: var(--cluster-bg);
  color: var(--cluster-color);

  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  user-select: none;
}

#productFinder .map-cluster.cluster-large {
  font-size: 14px;
}

/* performance test */

#productFinder .seller {
  position: relative;
}

#productFinder .seller .detail {
  /* position: absolute; */
  z-index: 2;
}

#productFinder .seller.highlightMarker {
  z-index: 1;
}

#productFinder #map.is-moving .seller,
#productFinder #map.is-moving .map-cluster {
  display: none !important;
}

/* infoWindow */

#productFinder .gm-style .gm-style-iw-c {
    background: radial-gradient(ellipse at center, #CA1317 0, transparent 50%), #91080E !important;
    padding-bottom: 8px !important;
}

#productFinder .gm-style .gm-style-iw-tc:after {
    background: #91080E;
}

#productFinder .gm-style .gm-style-iw-d {
    overflow-x: hidden !important;
}

#productFinder .gm-style-iw-chr button {
    color: #fff !important;
}

#productFinder .gm-style-iw-chr button span {
    /* filter: invert(1) !important; */
    background-color: #fff;
}

#productFinder .gm-style-iw-d {
    scrollbar-color: #fff #91080E;
}

#productFinder .seller-infowindow-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    padding: 0;
    max-width: 95%;
    color: #fff;
}

#productFinder .seller-infowindow .address {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    padding: 2px 0;
    margin: 4px 4px 0 0;
    font-size: 14px;
    line-height: 1.35;
    color: #fff;
}

#productFinder .seller-infowindow .products {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.35;
    color: #fff;
    padding-right: 4px;
}