.text {
   background-image: none;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc9c9;
    padding: 8px 12px;
    margin-bottom: 2px;
}
.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;
  z-index:9999999;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 15px auto;
  padding: 0px;
      padding-bottom: 10px;
  background: #fff;
  border-radius: 5px;
      max-width: 75%;
  position: relative;
  /* transition: all 5s ease-in-out; */
}

.popup h2 {
  margin-top: 0;
    color: #fff;
    font-family: Arial;
    background: #1999c1;
    padding: 5px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    margin-bottom: 4px;
    font-size: 16px;
    text-transform: uppercase;
}
.popup .close {
    position: absolute;
    top: 0px;
    right: 17px;
    transition: all 200ms;
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
}
.popup .close:hover {
  color: #fff;
}
.popup .content {
     max-height: 70%;
    overflow: auto;
    padding-left: 2px;
    padding-right: 5px;
    padding-bottom: 10px;
}
.popheader {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 2px;
    text-align: center;
    text-transform: uppercase;
    background: #7f0000;
    padding: 6px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}