/* Custom CSS */
#search-bar {
  position: absolute;
  width: 20%;
  min-width: 400px;
  min-height: 500px;
  height: 100%;
  background-color: white;
  /* margin: 10px; */
  padding-top: 15px;
  box-shadow: 0 0 20px rgb(0 0 0 / 30%);
  display: none;
}

/* Default css of Google Search Bar */
.pac-card {
  margin: 10px 10px 0 0;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  font-family: Roboto;
}
  
#pac-container {
  padding-bottom: 12px;
  margin-right: 12px;
}

.pac-controls {
  display: inline-block;
  padding: 5px 11px;
}

.pac-controls label {
  font-family: Roboto;
  font-size: 13px;
  font-weight: 300;
}

#pac-input {
  background-color: #fff;
  font-family: Roboto;
  font-size: 15px;
  font-weight: 300;
  margin-left: 15px;
  text-overflow: ellipsis;
  width: 370px;

  /* custom CSS */
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #DADCE0;
}

#pac-input:focus {
  border-color: #4d90fe;
  box-shadow: 0 0 20px rgb(0 0 0 / 30%);
}

#title {
  color: #fff;
  background-color: #4d90fe;
  font-size: 25px;
  font-weight: 500;
  padding: 6px 12px;
}

#target {
  width: 345px;
}

#close-icon {
  position: absolute;
  top: -8px;
  left: -10px;
}

#close-icon:hover {
  cursor: pointer;
}

#hidden-search-bar {
  display: none;
  cursor: pointer;
  height: 50px;
  width: 50px;
  background: white;
  border-radius: 100px;
  margin-right: 5px;
}

#show-icon {
  margin: auto;
  display: block;
}