section {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 250px;
}
.shop-map-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.shop-map-wrap > h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 35px;
}
.shop-map-wrap > .search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 50px;
  border-bottom: 2px solid #fff;
}
.shop-map-wrap > .search-box input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.shop-map-wrap > .search-box input::placeholder {
  color: #fff;
  opacity: 1;
}
.map-box {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
}
.map-box-list-wrap {
  display: grid;
  height: 100%;
  max-height: 700px;
  grid-template-columns: 1fr;
  gap: 12px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #d1d1d1 transparent;
  padding-right: 20px;
}
.map-box-list-wrap::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

.map-box-list-wrap::-webkit-scrollbar-thumb {
  background-color: #d1d1d1;
  border-radius: 10px;
}

.map-box-list-wrap::-webkit-scrollbar-track {
  background: transparent;
}
.map-box-list-wrap > .map-box-list {
  width: 100%;
  height: 125px;
  padding: 20px;
  border: 1px solid #413b5c;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.map-box-list-wrap > .map-box-list h2 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}
.map-box-list-wrap > .map-box-list p {
  color: #757591;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-box-list-wrap > .map-box-list > div {
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: space-between;
}
.map {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9e9ef;
}
.map .leaflet-container {
  border-radius: 16px;
}
@media screen and (max-width: 900px) {
  .shop-map-wrap > h2 {
    margin-bottom: 20px;
  }
  .map-box {
    margin-top: 40px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .map {
    min-height: 380px;
  }
  .shop-map-wrap > .search-box input {
    font-size: 16px;
  }
}
