/* Maps */
.maps-container {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.maps-container #maps {
  position: relative;
  width: 100%;
  height: 500px;
  z-index: 1;
}

/* Maps */
#btn-redirect-maps {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -199%);
  opacity: 0;
}
.btn-redirect-maps-container:hover #btn-redirect-maps {
  opacity: 1;
}

.maps-container .btn-gotomaps {
  position: absolute;
  z-index: 9999;
  top: 66%;
  left: 2%;
  width: 160px !important;
  height: 50px !important;
  padding: 30px;
  transform: translate(0%, 70%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.6s;
}

.maps-container:hover .btn-gotomaps {
  opacity: 0;
  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.3);
  transform: translate(0%, 100%);
}
.maps-container.active:hover .btn-gotomaps {
  opacity: 1;
}

.maps-container iframe {
  width: 100%;
  min-height: 500px;
}

.search-branch-container {
  position: relative;
  margin-top: -40px;
  z-index: 99;
}
button#icon-search-map {
  background: transparent;
  position: absolute;
  top: 25px;
  right: 38px;
  color: rgba(0, 0, 0, 0.8);
  outline: none;
  border: none;
}

.searchBar {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  margin-top: -20px;
  position: relative;
  z-index: 1000;
}

#searchQueryInput {
  width: 70%;
  height: 5rem;
  background: #fff;
  outline: none;
  border: none;
  border-radius: 25px;
  padding: 16px 24px;
  font-size: 15px;
}

#searchQuerySubmit {
  width: 3.5rem;
  height: 2.8rem;
  margin-left: -4.5rem;
  background: none;
  border: none;
  outline: none;
}

#searchQuerySubmit:hover {
  cursor: pointer;
}

.branch-info {
  font-size: 15px;
  line-height: 25px;
  color: #aaa;
  display: inline-block;
  margin-left: 8px;
}

/* -------- */
/* Branch List */

.branch {
  cursor: pointer;
  min-height: 264px;
  max-height: 268px;
  transition: 0.86s;
  border-radius: 10px !important;
}
.card.branch:hover {
  transform: translatey(-10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.branch:hover h6 {
  color: var(--biru);
}
.branch:hover {
  overflow-x: hidden;
  transition: 0.86s;
}
.branch:hover::after {
  content: "";
  position: absolute;
  bottom: 50%;
  right: -30px;
  width: 80px;
  height: 80px;
  background: var(--biru);
  transform: translatey(-70%);
  border-radius: 50%;
  transition: 2s;
}

ul.branch-card {
  padding-bottom: 0;
}
.branch-card {
  position: relative;
  width: 100%;
  padding: 0;
}
.branch-card li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 8px 0;
  margin-top: 5px;
}
.branch-card li .icon-branch {
  font-size: 1.2em;
  color: var(--biru);
}
