﻿
.header-form .searchInput_sugeest{
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.searchInput_sugeest input{
  height: 55px;
  width: 100%;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 0 60px 0 20px;
  font-size: 18px;
  box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

.searchInput_sugeest.active input{
  border-radius: 5px 5px 0 0;
}

.searchInput_sugeest .resultBox{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.searchInput_sugeest.active .resultBox{
    box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
    width: 100%;
    background: white;
    position: absolute;
    z-index: 10;
    border-radius: 0px 0px 5px 5px;
}

.resultBox li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.searchInput_sugeest.active .resultBox li{
  display: block;
}
.resultBox li:hover{
  background: #efefef;
}

.searchInput_sugeest .icon_right{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #84c320;
  cursor: pointer;
}

.searchInput_sugeest .icon_left{
  position: absolute;
  left: 0px;
  top: 0px;
  height: 55px;
  width: 55px;
  text-align: center;
  line-height: 55px;
  font-size: 20px;
  color: #84c320;
  cursor: pointer;
}



.search_sug_tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.search_sug_tooltip .tooltiptext {
  display: none;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;

  
  top: 100%;
  left: 50%;
  margin-left: -60px;

}

/* Show the tooltip text when you mouse over the tooltip container */
.search_sug_tooltip:hover .tooltiptext {
    display: block;
  
}

