/* create HandWiki simple buttons*/

.hwsimple {
  float: center; 
  margin-left: 6px;
  margin-right: 6px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hwsimple .search-container {
    display: block;
    position: relative;
    white-space: nowrap;
}

.hwsimple input[type=text] {
  padding: 6px;
  margin-top: 6px;
  font-size: 1.1em;
  background-color: #ffffff;
  color: black;
  border: 1px solid #00304d;
}

.hwsimple input[type=text]:focus {
  border: 1px solid #f37129;
  background-color: #f4faf4;
}

.hwsimple .hwbutton1 {
  background-color: #343a40; 
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  background-image: url('/img/search-er.png');
  background-repeat: no-repeat;
  background-position: 3px 3px;
  border: none;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  bottom: -12px;
}


/* Firefox fix for button */
@-moz-document url-prefix() {
   .hwsimple .hwbutton1 {
    bottom: 6px;
    } 
}


.hwsimple .hwbutton1:hover {
              background-color: #0077b8; ! important;
      }


.hwsimple .hwbutton2 {

  background-color: #f6a11a;
  position: relative;
  display: inline-block;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 4px;
  bottom: 6px;
  padding: 5px;
}

.hwsimple .hwbutton2:hover {
              background-color: #f6a11a; ! important;
      }


/* #### Mobile Phones Portrait  #### */
@media (min-width: 320px) and (max-width: 480px) {

 .hwsimple .search-container {
    float: none;
    display: block;
    text-align: left;
    width: 99%;
    margin-left: auto;
    margin-right: auto;
    margin: 0;
    padding: 4px;

  }


.hwsimple input[type=text] {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}


.hwsimple .hwbutton1 {
     width: 40px;
     height: 40px;
     top: 10px;
     float: right;
     margin-right: 14px;
}

.hwsimple .hwbutton2 {
     width: 80px;
     height: 40px;
     top: 10px;
     float: right;
     margin-right: 14px;
}



}




