@charset "UTF-8";
#searchbar {
  background-image: url("https://qcegmag.com/images/search.png");
  background-position: 10px 10px;
  background-repeat: no-repeat;
  width: 100%;
  height: 80px;
  font-size: 16px;
  padding: 12px 40px 12px 80px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
  border-radius: 5px;
}
input[type=text] {
  width: 30%;
  -webkit-transition: width 0.15s ease-in-out;
  transition: width 0.15s ease-in-out;
}
/* When the input field gets focus, 
        change its width to 100% */
input[type=text]:focus {
  width: 70%;
}
#list {
  font-size: 1em;
  margin-left: -30px;
  color: #333333;
  padding-top: 20px;
  padding-bottom: 20px;
}
.qceg {
  display: list-item;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #F2EEF8;
  -webkit-box-shadow: 0 0 2px #666;
  -moz-box-shadow: 0 0 2px #666;
  box-shadow: 0 0 2px #666
}