#popup-hint {position: absolute !important;}
.popup-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 500ms;
  z-index: 99999;
}
.popup-overlay-show {
  visibility: visible;
  opacity: 1;
}
.popup {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #555659;
  border-radius: 5px;
  width: 35%;
}
.popup h2 {
  margin-top: 0;
  color: #333;
  text-align: center;
  font-size: 2.5em;
  font-weight: bold;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .popup-content {
  max-height: 30%;
  overflow: auto;
  text-align: center;
  font-size: 1.5em;
  line-height: 1.5em;
}
.popup-ok-btn, .popup-close-btn {
    display: inline-block;
    font-family: sans-serif;
    font-size: 11px;
    height: auto;
    overflow: visible;
    vertical-align: text-top;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.popup-close-btn {
    position: absolute;
    line-height: 0;
    padding: 13px;
    border: 1.3px solid #555659;
    border-radius: 99px;
    color: #333;
    right: -12px;
    top: -12px;
    cursor: pointer;
    width: auto;
    white-space: normal;
}
.popup-ok-btn {
  font-size: 1.5em;
  padding: 10px;
  color: #333;
  border: 1.3px solid #555659;
  border-radius: 20px/50px;
  text-decoration: none !important;
  cursor: pointer;
  width: auto;
}
.popup-button-box {
  text-align: center;
  padding: 35px 0px 5px 0px;
}

.popup-button-gray {
  background: rgba(219,219,219,1);
}
.popup-button-gray:hover {
  background: rgba(191,191,191,1);
}

.popup-gradient {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(-45deg, rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=1 );
}

@media screen and (max-width: 1024px){
  .popup{
    width: 60%;
  }
}