
.input-box {
  position: relative;
  
}
input {
  height: 25px;
  width: 25px;
  border-radius: 5px;
  transition: 0.4s ease; 

  border: none;
  background-color: none;

}
input:focus {
  outline: none;
}
input.expand { /* style that is applied when search bar is open*/
  width: 250px;
  padding: 0 50px 0 10px;
  background-color: white;

}
.magnifier {
  height: 25px;
  width: 25px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
 
}