#searchBox{
  position: fixed;
  right: 0%;
  top: 0px;
  z-index: 3;
  width: 80%;
  height: 30%;
  display:none;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3px;
  margin: 0px;
  overflow-y: auto;
  background-color: rgb(248, 248,248);
  border-style: solid;
  border-radius: 11px;
  border-width: 0px;
  border-top-left-radius:0px ;
  border-top-right-radius: 0px;
  font-size:16px;
}

@media screen and (max-width:767px){
 #searchBox{
  width: 100%;
  height:50%;
 } 
}

@media screen and (min-width:768px) and (max-width:1024px){
 #searchBox{
  width:620px;
  height:50%;
 } 
}


@media screen and (min-width:1025px){
 #searchBox{
  width:360px;
  height:50%;
 } 
}


#searchIconBox{
  width: 32px;
  height: 40px;
  margin: 0px;
  padding: 0px;
  border-style: solid;
  border-width: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
#searchIcon{
  background-size: 24px 24px;
  background-position: center center;
  background-repeat: none;
  width: 24px;
  height: 24px;
  margin: 0px;
  padding: 0px;
  border-style: solid;
  border-radius: 100px;
  border-width: 0px;
  background-color: transparent;
  cursor: pointer;
}


#searchBox > input{
  width: calc(100% - 60px);
  height: 30px;
  margin: 0px;
  padding: 5px;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0px;
  border-radius: 0px;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: grey;
  outline: none;
}

#searchBox >button{
  width: 60px;
  height: 30px;
  border-style: solid;
  border-radius: 7px;
  border-width: 0px;
  margin: 0px;
  color: darkblue;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background-color: transparent;

} 

