@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
}

body{
    max-height: 100vh;
    overflow-y:hidden;
}

.bg-container {

  padding: 22px 0;
  min-height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.search-container {
  border: 1px solid #ccc;
  width: 90%;
 
  background-color: #fff;
  padding: 8px;
  z-index: 1002;
}

.search-form {
  display: flex;
  align-items:center;
}

.search-input {
  flex-grow: 1;
  height: 58px;
 
  border: 0;
  padding-left: 10px;
}

.search-btn {
 
  background-color: #dc3545;
  color: #fff;
  padding: 5px;
  border: 0;
}

.search-input:focus {
  outline: 0;
}

.results-container {
  z-index:1000;
  display:none;
  padding: 10px;
  padding-top: 40px;
  position: absolute;
  top: 50%;
  width: 90%;
  max-height: 63vh;
  overflow-y: auto;
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-box-shadow: -7px 12px 19px -1px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: -7px 12px 19px -1px rgba(0, 0, 0, 0.46);
  box-shadow: -7px 12px 19px -1px rgba(0, 0, 0, 0.46);
}

.results-container h3 {
  padding: 10px;
  margin-top: 20px;
  text-transform: uppercase;
}
.result-item:hover{
    background-color:#ccc;
}
.result-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 7px;
  display: flex;
  align-items: center;
  margin-bottom: 5px
}

.result-item p {
  margin-right: 8px
}

.result-item a {
  color: #393535;
  text-decoration: none;
  font-weight: bold;
  margin-left:10px;
}

.branch-logo{
    width:50px;
    object-fit:cover;
}

#dotty {
  position: fixed;
  top: 0;
  left: 0;
}

.overlay {
  background: rgb(120 20 6 / 60%) !important;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}