/*html, body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

body {
  background-color: #E3E3E3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 240px;
  text-align: center;
}
body .container {
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
  background: white;
  border-radius: 10px;
  border: 5px solid #9AD3DE;
  box-sizing: border-box;
}*/

h1,/* p, h2,*/ button {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 100;
  letter-spacing: 0.5px;
}

/*h1 {
  font-size: 40px;
  text-align: center;
  color: #666666;
  margin: 0 0 30px 0;
}
p {
  color: #666666;
  margin: 30px auto;
  text-align: center;
  font-size: 16px;
}
*/

h2 {
  font-size:20px;
  font-weight:bold;
  text-align: left;
  color: #666666;
  margin: 0 0 30px 0;
}


button {
  font-weight:bold;
  background: none;
  border: 0;
  margin-top:5px;
  border-radius:15px;
/*  padding:5px 5px;
*/  font-size:14px;
  color: #FFFFFF;
  cursor: pointer;
}
button:focus {
  outline: none;
}
button:hover {
  background:#e72c02;
}

.popup {
  background: rgba(100, 100, 100, 0.6);
  position: fixed;
  display: none;
  z-index: 5000;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.popup > div {
/*  border-radius: 10px;*/
  position: fixed;
/*  background: #FFFFFF;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.3);
*/  padding: 30px 15px;
  /* Width of popup can be changed 
  width: 70%;
  max-width: 600px;*/
  z-index: 5001;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top:50%;
  text-align: center;
/*  border: 5px solid #9AD3DE;*/
}
