.map-section-container * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.map-section-container .map-section-content {
  padding: 50px 20px;
}
.map-section-container .map-section-content .find-store-btn {
  background-color: rgb(0, 0, 183);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease-in-out;
  display: flex;
  margin: auto;
  text-transform: uppercase;
  font-size: 20px;
}
.map-section-container .map-section-content .find-store-btn:hover {
  background-color: #000084;
}
.map-section-container .map-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
  display: none;
}
@media (max-width: 768px) {
  .map-section-container .map-section-grid {
    grid-template-columns: 1fr;
  }
}
.map-section-container .map-section-grid .map-container .map-element {
  width: 100%;
  height: 500px;
  border: 1px solid #ccc;
}
.map-section-container .map-section-grid .map-container .map-element .location-item-map {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.map-section-container .map-section-grid .map-container .map-element .location-item-map .location-info-content {
  max-width: 300px;
}
.map-section-container .map-section-grid .map-container .map-element .location-item-map .location-info-content .location-name {
  margin-bottom: 10px;
}
.map-section-container .map-section-grid .ads-area {
  border: 1px solid #ccc;
}
.map-section-container .toast-message {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgb(223, 15, 15);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  font-weight: bold;
}