#active-popup {
  background-color: rgba(52,73,94, 0.7);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 999999;
}

body.pop-up {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

#popup-container {
  width: 60%;
  height: auto;
  max-height: 40em;
  overflow-y: scroll;
  margin: 0 auto;
  margin-top: 5%;
  position: fixed;
  left: 20%;
  z-index: 999999;
  top: 0;
  background: #fff;
  box-shadow:0px 0px 10px;
  border-radius: 1em;
  border-top:solid 5px #363636;
  border-bottom:solid 5px #363636;
  
}
#popup-container strong{
    font-weight:bold;
}

.modal-content {
  position: relative;
  text-align: center;
}

#popup-window { 
  position: relative;
  padding: 40px;
  font-family: 'Segoe UI Light', sans-serif;
  font-size: 15pt;
}
#popup-window h3 {
  text-align: center;
  font-size:26px!important;
  color: #363636;
}

.modal-content h3,
.modal-content p {}

.modal-content p { padding: 20% 5% 0 5%; }

#popup-container a.close {
  position: relative;
  float: right;
  top: 5px;
  right: 5px;
  z-index: 99;
  font-weight: bold;
  font-size: 16px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 2px 5px 2px 5px;
  line-height: 1em;
  text-align: center;
  background: fff;
  border: 4px solid #363636;
  cursor: pointer;
  color:#000;
}
#popup-window p{
    word-wrap:break-word;
}

@media(max-width:68em){
    #popup-container{ 
        width:80%;
        left:10%;
        max-height:70%;
    }
    #popup-window{
        padding:30px;
    }
    #popup-window p{
        margin:1rem;
    }
    .splash-bg{
        width:100%;
    }
}

@media(max-width:38em){
    #popup-container{ 
        width:90%;
        left:5%;
        max-height:70%;
    }
    #popup-window{
        padding:20px;
    }
    #popup-window p{
        margin:1rem;
    }
    .splash-bg{
        width:100%;
    }
}