.business-map {
  position: relative;
  margin: 48px auto;
}
.business-map #map {
  width: 100%;
  height: calc(100vh - 130px);
}
.business-map #map .sipy-marker {
  background-color: var(--secondary-500);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
.business-map #map .sipy-marker img {
  width: 16px;
}
.business-map #map .location-marker {
  background-color: var(--danger-500);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
.business-map #map .location-marker .fa-solid {
  font-size: 16px;
}
.business-map #map .marker-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.business-map #map .marker-content .name {
  color: var(--secondary-500);
  font-weight: 900;
  font-size: 14px;
}
.business-map #map .marker-content .address {
  font-size: 12px;
  color: var(--dark-100);
}
.business-map #map .marker-content .spacer {
  height: 20px;
}
.business-map .business-list {
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 400px;
  background-color: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
}
.business-map .business-list .title {
  font-size: 18px;
  padding: 10px;
  font-weight: 900;
  color: var(--secondary-500);
  text-align: center;
  flex: 0 0 auto;
  width: auto;
}
.business-map .business-list .search {
  margin: 0 10px;
}
.business-map .business-list .search select {
  width: 100%;
  padding: 4px 8px;
  font-size: 14px;
  border: 1px solid #ddd;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAASFBMVEUAAABDQ1FBSE1CR01NTU1BSE1BSE1BSE1ASU5AR01ERFVASE1BR01ASE5AQFVBSE1BSE1HR0dAUFBASE1ASE1BSE5BSE0AAACaUDhcAAAAFnRSTlMAE5KECpGZvZePD8rIwgy8zRIQvouKhPEnPwAAAAFiS0dEAIgFHUgAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAAHdElNRQfjBgoUMQEWjOrAAAAAh0lEQVRYw+2SSQ6AIBAEQXHDXXT+/1RBjQonGOOt6wZJFWRACAAAAOBvZJarcE/lhYwOlERVUFAVUR0dKCgsOJ+a6IBug8Lhtzp+CLqzQj/c/miX05wyRq/A8L3Ccf9U/1Vg+neB7QuxuLcwxs1/4fjXHdjnPwW+fxa++Lawbgn/DwAAAPjMDlnqCUPDOy7VAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE5LTA2LTEwVDE4OjQ5OjAxKzAyOjAwSdZ0MwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxOS0wNi0xMFQxODo0OTowMSswMjowMDiLzI8AAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  appearance: none;
  -webkit-appearance: none;
  background-size: 24px;
  font-family: var(--primary-font);
  border-radius: 5px;
  padding-right: 20px;
}
.business-map .business-list .search #location-button {
  display: none;
}
.business-map .business-list .search #location-button button {
  background-color: var(--secondary-500);
  color: var(--white-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
}
.business-map .business-list .places-list {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1 0 0%;
  padding: 10px 0;
}
.business-map .business-list .places-list .place-card {
  padding: 10px;
  cursor: pointer;
  margin: 0 10px;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--light-300);
}
.business-map .business-list .places-list .place-card .icon {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.business-map .business-list .places-list .place-card .icon img {
  width: 32px;
  height: 32px;
  background-color: var(--secondary-500);
  padding: 5px;
  box-sizing: content-box;
  border-radius: 50%;
}
.business-map .business-list .places-list .place-card .icon .distance {
  font-size: 10px;
}
.business-map .business-list .places-list .place-card .text {
  flex: 1 0 0%;
}
.business-map .business-list .places-list .place-card .text .name {
  color: var(--secondary-500);
  font-weight: 900;
  font-size: 14px;
}
.business-map .business-list .places-list .place-card .text .address {
  font-size: 12px;
  color: var(--dark-100);
}
.business-map .business-list .places-list .place-card .text .location {
  font-size: 12px;
  background-color: var(--light-300);
  padding: 3px 6px;
  border-radius: 3px;
  color: var(--dark-100);
  display: inline-block;
}
.business-map .business-list .places-list .place-card:hover {
  background-color: var(--light-100);
}
.business-map .business-list .places-list .place-card.selected {
  background-color: var(--secondary-500);
  color: var(--white-color);
}
.business-map .business-list .places-list .place-card.selected .text .name {
  color: var(--white-color);
}
.business-map .business-list .places-list .place-card.selected .text .address {
  color: var(--light-100);
}
.business-map .business-list .bottom-margin {
  height: 10px;
}
.gm-style .gm-style-iw-c {
  outline: none!important;
}
