/*POPUP1*/
.box {
  margin: 0 auto;
  background: rgba(255,255,255,0.7);
  border: 0px solid #009900;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 1em;
  padding: 10px;
  border: 0px solid #06D85F;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index:99999;
}
.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index:99999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  top:80px;
  margin: 70px auto;
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  width: 450px;
  position: relative;
  transition: all 5s ease-in-out;
  z-index:999999;
}
.popup .close {
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #ff0000;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
  font-family: "Raleway", sans-serif; font-size:16px; color:#000000; font-weight:200; letter-spacing:0.2px; text-align:left;}
