#sign_pop,
#reminder_pop {
  background: linear-gradient(60deg, #000000, #050505 25%, #2a2a2a 30%, #111111 40%, #2a2a2a 70%, #0a0a0a 90%, #000000 94%);
  border-radius: 8px;
  border: 1px solid #f1d442;
  -webkit-box-shadow: 0 0 700px 700px rgba(29, 29, 29, 0.8);
          box-shadow: 0 0 700px 700px rgba(29, 29, 29, 0.8);
  left: 50%;
  max-height: 80vh;
  max-width: 500px;
  overflow: auto;
  padding: 20px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

#sign_pop .close-popup,
#reminder_pop .close-popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f1d442;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  height: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: all .3s ease;
  width: 25px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

#sign_pop .close-popup:hover,
#reminder_pop .close-popup:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

#sign_pop .close-popup i,
#reminder_pop .close-popup i {
  color: #000000;
  font-size: 20px;
}

#sign_pop .img,
#reminder_pop .img {
  padding: 20px;
  text-align: center;
}

#sign_pop .img img,
#reminder_pop .img img {
  max-height: 70px;
}

@media screen and (min-width: 768px) {
  #sign_pop .img img,
  #reminder_pop .img img {
    max-height: 120px;
  }
}

.signup-popup h3 {
  color: #cb9726;
}

.signup-popup button {
  width: 100%;
}

.reminder-popup h4 {
  color: #cb9726;
}

.reminder-popup h1 {
  color: #f1d442;
  font-size: 50px;
  text-shadow: 0 0 18px #cb9726;
}

