﻿
.header-form .form_search{
  background: #fff;
  width: 100%;
  border-radius: 5px;
  position: relative;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
}

.form_search 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);
}

.form_search.active input{
  border-radius: 5px 5px 0 0;
}

.form_search .resultBox{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.form_search.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{
    background-color: aliceblue;
  list-style: none;
  padding: 8px 12px;
  
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.form_search.active .resultBox li{
  display: block;
}
.resultBox li:hover{
  background: #efefef;
}


.resultBox .search_break{
    display: block;
    background: #f1fff0e0;
    width: 100%;
}


.form_search .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;
}

.form_search .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 */
      margin-right: 10px;
}

/* 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;
  
}

