@charset "UTF-8";

body {
    padding-bottom:40px;
}
.box {
  width: auto;
  margin: 0;
  background: rgba(255,255,255,0.25);
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 20px;
  background-clip: padding-box;
  text-align: center;
}
.box p {
    line-height: 22px;
}
.limited {
    font-family:Verdana;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    color: #000;
    text-align: center;
    font-size: 16PX;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    margin-top: 10px;
}

.button {
  font-size: 14px;
    letter-spacing: 1px;
  padding: 10px;
    margin-bottom: 10px;
  color: #ffff99 !important;
    background-color: #336600; 
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
    color: #fff;
}
.button a:visited {
    color: #ffcc33;
}
.button a:active {
    color: #ffcc33;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 185px auto 0;
  padding: 10px 10px 30px 10px;
  background: #fff;
  border-radius: 5px;
  width: 25%;
  position: relative;
  transition: all 5s ease-in-out;
  text-align: center;
    z-index:9000;
}
.popup h2 {
  margin: 0;
  color: #996;
}
.popup p {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}
.popup img {
    margin-bottom: 2px;
}
.popup .close {
  position: absolute;
  top: 14px;
  right: 20px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 70%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: auto;
  }
  .popup{
    width: 85%;
      margin: 50px auto 0;
  }
    .popup p {
    margin-left: 14px;
    margin-right: 14px;
}
}
