* {
  box-sizing: border-box;
  -moz-box-sizing: border-box; }
body {
  background-color: #f1f1f1;
  padding: 1em;
  max-width: 50em;
  margin: 0 auto;

}
h1{
  font-weight: bold;
  color: green;
}
h2{
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
}
.error {
  color: red;
  display: block;
}
.button {
          display: inline-block;
          border-radius: 4px;
          background-color: green;
          border: none;
          color: #FFFFFF;
          text-align: center;
          font-size: 18px;
          padding: 5px;
          /*width: 150px;*/
          transition: all 0.5s;
          cursor: pointer;
          margin: auto;
        }

        .button span {
          cursor: pointer;
          display: inline-block;
          position: relative;
          transition: 0.5s;
        }

        .button span:after {
          content: '\00bb';
          position: absolute;
          opacity: 0;
          top: 0;
          right: -20px;
          transition: 0.5s;
        }

        .button:hover span {
          padding-right: 25px;
        }

        .button:hover span:after {
          opacity: 1;
          right: 0;
        }

.back {
  background-color: #f1f1f1;
  padding: 1em;
  max-width: 30em;
  margin: 0 auto;
  display: grid; 
}

#widget {
width: 780px;
height: 480px;
font: normal 10px verdana;
text-align: center;
margin: 40px auto;
border: 5px #aaa;
border-style: outset inset inset outset;

}

select {
width: 190px;
font: normal 11px verdana;
color: #fff;
background: #000;
}
#txtregion {
width: 98%;
height: 16px;
font: normal 12px verdana;
letter-spacing: .4em;
margin: auto;
border-bottom: 1px black solid;
}
#txtplacename {
width: 98%;
height: 16px;
font: normal 10px verdana;
margin: auto;
}
#footer {
    text-align: center;
}
@media (max-width:629px) {
  img #optional {
    display: none;
  }
}
