#retailerMap{
  height: 40vh;
  height: 40svh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.retailer-infobox {
  align-items: center;
  background-color: transparent;
  border-radius: 50%;
  color: #009fe3;
  display: flex;
  font-size: 14px;
  gap: 0;
  height: auto;
  justify-content: center;
  padding: 0;
  position: relative;
  position: relative;
  transition: all 0.2s ease-out;
  width: auto;
}

.retailer-infobox::before {
  content: attr(data-title);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  color: #ffffff;
  margin-bottom: 6px;
}

.retailer-infobox::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: calc(100% + 1px);
  transform: translate(-50%, 0);
  transition: all 0.2s ease-out;
  width: 0;
  z-index: 1;
  display: none;
}

.retailer-infobox .icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
}

.retailer-infobox .icon svg {
  height: 30px;
  width: auto;
  filter:
    drop-shadow(1px 0 #ffffff)
    drop-shadow(-1px 0 #ffffff)
    drop-shadow(0 1px #ffffff)
    drop-shadow(0 -1px #ffffff);
}

.retailer-infobox .details {
  display: none;
  flex-direction: column;
  flex: 1;
}

/*
 * Property styles in highlighted state.
 */
.retailer-infobox.highlight {
  background-color: #FFFFFF;
  border: 1px solid #009fe3;
  border-radius: 10px;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.5);
  height: auto;
  width: auto;
  transform: translateY(-12px);
}

.retailer-infobox.highlight::before {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #009fe3;
  padding: 5px;
  padding-bottom: 8px;
  padding-right: 8px;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 50%;

}
.retailer-infobox.highlight::after {
  display: block;
  margin-top: 0;
  border-top: 9px solid #009fe3;
  filter:
    drop-shadow(1px 0 #009fe3)
    drop-shadow(-1px 0 #009fe3)
    drop-shadow(0 1px #009fe3)
    drop-shadow(0 -1px #009fe3);
}

.retailer-infobox.highlight .details {
  display: flex;
  color: #120a0a;
  padding: 4px 20px 4px 40px;
}

.retailer-infobox.highlight .name {
  font-weight: bolder;
  margin-bottom: 3px
}

.retailer-infobox.highlight .zipcity {
  margin-bottom: 8px;
}

.retailer-infobox.highlight .icon svg {
  display: none
}

#retailerList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: auto;
  gap: 1.25rem;
  max-height: calc(90vh - 400px);
  max-height: calc(90svh - 400px);
  overflow: auto;
}
@media (min-width: 576px) {
  #retailerList {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  #retailerList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #retailerList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  #retailerList {
    grid-template-columns: repeat(2, 1fr);
  }
}
.retailer-list-item{
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 1em;
  grid-auto-rows: auto;
  padding: 10px;
  margin: 2px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  transition: background-color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
}
@media (max-width: 576px) {
  .retailer-list-item{
    grid-template-columns: auto 1fr;
    gap: 5px;
  }
  .retailer-list-item address{
    margin-bottom: 0;
  }
}

.retailer-list-item.highlight{
  background-color: #009fe312;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.retailer-list-item .details{
  display: flex;
  gap: 5px;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.retailer-list-item address .email{
  text-wrap: auto;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: 100%;
  word-break: break-all;
  overflow-wrap: break-word;
}

.dropdown-item.active label{
  color: inherit;
}