#storesTitle {
  width: 94%;
  margin: auto;
  margin-top: 68px;
  scroll-margin-top: 220px;
  text-align: left;
  font-size: 28px;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--secondary);
  text-transform: capitalize;
  font-family: 'Montserrat';
}

.centeredContent {
  width: 94%;
  margin: 38px auto 0;
}

#mapFiltersDiv {
  display: none;
}

.mapInfoContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  width: 100%;
}

#mapDiv {
  display: none;
}

#citiesDiv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 22px;
  flex-wrap: wrap;
  height: fit-content;
}

.storeCard {
  width: 100%;
  cursor: pointer;
}

.storeCardMap {
  width: 100%;
  aspect-ratio: 307/217;
}

.storeCardInfo {
  padding: 8px 0;
  font-family: 'Montserrat';
  margin-top: 20px;
  cursor: auto;
}

.cityName {
  color: #898989;
  background-color: transparent;
  padding-left: 0;
  margin-top: 13px;
}

.cityDiv {
  width: calc((100% - 80px) / 3);
  height: fit-content;
}

.cityName.open {
  color: var(--red);
}

.storeName,
.storeInfo,
.storeLocation {
  color: #2A2A2A;
}

.storeInfo {
  margin-top: 0;
}

.storeDiv {
  width: 100%;
  margin: 0 0 20px 0;
}

.storeLocationDiv .storeLocationIcon {
  display: none;
}

.storeLocation {
  margin: 0;
}

.storeRating {
  margin: 10px 0;
}

.storeUrl {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.storeUrlLink {
  color: #898989;
  text-decoration: underline;
}

.storeIcon {
  height: 40px;
  width: auto;
  margin-top: 10px;
}

.storeName::before {
  content: '';
  background-image: url(../../files/searchStores.svg);
  width: 18px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 7px;
}

.storeName {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .centeredContent {
    width: 100% !important;
    margin: 20px auto 0px;
    gap: 0;
  }

  #storesTitle {
    width: 92%;
    margin-top: 34px;
    margin-bottom: 42px;
    text-align: center;
  }

  .mapInfoContainer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
  }

  #citiesDiv {
    width: 100%;
    margin: auto;
    margin-bottom: 20px;
    grid-template-columns: repeat(1, 1fr);
  }

  #mapDiv {
    display: none;
  }

  .storeCard {
    width: 92%;
    margin: auto;
  }

  .cityName {
    width: 100%;
    line-height: 51px;
    margin-top: 5px;
  }

  .cityNameArrow {
    margin-right: 5px;
    margin-top: 21px;
  }

  .cityDiv {
    width: 92%;
    padding: 0px 4%;
  }
}