/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 6 Jun, 2023, 4:54:44 PM
    Author     : Amol.Asodekar
*/
* 
{
  box-sizing: border-box;
  font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
}



/*the container must be positioned relative:*/
.autocomplete {
  position: relative;
  display: inline-block;
}

input {
  border: 1px solid transparent;
  /*background-color: #f1f1f1;*/
  padding: 15px 30px 15px 10px;
  font-size: 16px;
  border-radius: 5px;
}

input[type=text] {
  background-color: #ffffff;
  width: 100%;
  height: 60px;
  border: 1px solid #B3B3B3;
}

input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}

.autocomplete-items {
  overflow-y: auto;
  height:300px;
  position: absolute;
  /*border: 1px solid #d4d4d4;*/
  /*border-bottom: none;
  border-top: none;*/
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
  border-left: 1px solid #d4d4d4; 
  border-right: 1px solid #d4d4d4; 
  font-size: 16px;
    color: #777;
    line-height: 20px;
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff !important; 
}

/* custom search-box*/
#search-container{
	min-width: 200px;
  position: relative;
}

.searchPluginBtn{
  position: absolute;
  right: 10px;
  width: 36px;
  height: 50px;
  overflow: hidden;
  border: 0;
  background: transparent;
  padding: 0;
  top: 5px;
}

.searchPluginIcon img{
	width:36px;
	height:50px;
}	
#search-container input::placeholder{
	color:#696969;
}
#search-container input:focus-visible{
outline: none;
}

@media (max-width: 767.98px) {
  #search-container{
    width: 290px;
  }
}
/* custom search-box*/