body {
  /* font-family: "Open Sans", sans-serif;*/
  font-family: "Baloo Chettan 2", cursive;
  height: 100%;
  margin: 0;
  padding: 0;
}

#map {
  height: 100vh;
}

.title {
  z-index: 100;
  position: absolute;
  top: 100px;
  left: 100px;
  font-size: 5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  text-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.search-container {
  width: 400px;
  height: 50px;
  background-color: white;
  position: absolute;
  z-index: 100;
  top: 230px;
  left: 100px;
  border-radius: 30px;
}

.search-container .search {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
  padding: 0 20px 0 20px;
}
.search-container .search input {
  border: 0;
  font-size: 25px;
  width: 100%;
  color: #435158;
}

.search-container .search input:focus {
  outline: none;
}

.search-container .search i {
  color: #435158;
  font-size: 20px;
}
.search-container .search i:hover {
  font-size: 25px;
  color: #18b4ff;
  transition: all 0.3s;
}

.stores-list-container {
  width: 400px;
  background-color: white;
  z-index: 100;
  position: absolute;
  top: 300px;
  left: 100px;
  bottom: 40px;
  border-radius: 20px;
}
audio {
  display: none;
  /*z-index: 1000;*/
}

.stores-list {
  padding-left: 10px;
  padding-right: 10px;
  overflow-y: scroll;
  height: 100%;
}

.store-container {
  display: flex;
  background: white;
  padding: 0 6px 0 6px;
  border-bottom: 1px solid #18b4ff;
  cursor: pointer;
}
.store-container:hover {
  background-color: #222121;
  border: 3px solid #18b4ff;
  border-radius: 12px;
  margin: 4px;
  padding: 0 12px 0 12px;
  transition: all 0.3s ease-in-out;
}
.store-container:hover .store-address {
  color: white;
}
.store-container:hover .store-number {
  background: -webkit-linear-gradient(#18b4ff, #005d89);
}

.store-info-container {
  flex-grow: 1;
}

.store-address {
  font-size: 21px;
  color: #435158;
  margin-top: 30px;
}

.store-phone-number {
  color: #b5adad;
  margin-top: 15px;
  margin-bottom: 15px;
}

.store-number-container {
  align-items: center;
  display: flex;
}

.store-number {
  width: 30px;
  height: 30px;
  background-color: #454e53;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.store-address span {
  display: block;
}

.store-info-window {
  min-width: 250px;
  font-size: 14px;
  padding: 8px;
}

.store-info-name {
  font-size: 24px;
  font-weight: bold;
  background: -webkit-linear-gradient(#18b4ff, #005d89);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.store-info-status {
  margin-top: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #454e5330;
}

.store-info-address,
.store-info-phone {
  margin-top: 8px;
  display: flex;
  align-items: center;
}

.store-info-address .circle,
.store-info-phone .circle {
  width: 30px;
  height: 30px;
  background: -webkit-linear-gradient(#18b4ff, #005d89);
  border-radius: 50%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
}
