/*
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 : 10 févr. 2021, 13:20:45
    Author     : a.brouwers
*/

.iemdropdownsearch-dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.iemdropdownsearch-dropbtn:hover, .iemdropdownsearch-dropbtn:focus {

}

.iemdropdownsearch-myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 5px 4px 4px 4px;
  border: none;
  border-bottom: 1px solid #ddd;
  width : 100%;
}

.iemdropdownsearch-myInput:focus {outline: 3px solid #ddd;}

.iemdropdownsearch-dropdownitem {
  font-size: 14px;
  padding: 5px 4px 4px 4px;
  border: none;
  width : 100%;
  cursor: pointer;
}

.iemdropdownsearch-dropdown {
  position: relative;
  display: inline-block;
}

.iemdropdownsearch-dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  max-height: 500px;
  overflow: auto;
  border: 1px solid #ddd;
  z-index: 1;
}

.iemdropdownsearch-dropdown-content a {
  color: black;
  padding: 4px 4px;
  text-decoration: none;
  display: block;
}

.iemdropdownsearch-dropdown a:hover {background-color: #ddd;}

.show {display: block;}