.pop-wrapper{
  z-index: -9999;
  opacity: 0;
  transition: 0.3s all;
  
}
.pop-content{
  display: none;
}

.pop-wrapper.pop-active {
   transition: 0.3s all
    justify-content: center;
    align-items: center;
    pointer-events: all;
    background-color: rgba(0,0,0,.8);
    height: 100vh;
    position: fixed;
    z-index: 999999;
    top: 0;
    width: 100vw;
    left: 0;
    opacity: 1;
   display: flex;
    align-items: center;
    justify-content: center;
}
.pop-wrapper.pop-active .pop-content{
  background: #FFFFFF;
  display: block;
   position: absolute;
  top: 0;
  max-height: 90%;
   max-width: 768px;
  margin: 5% 0;
  padding: 60px 20px;
  width: 100%;
      overflow-y: scroll;
}
.pop-content-wrapper{
  padding: 60px 0;
   background: #F7F7F7;
}
.dialog-close-button {
    display: block;
    color: black;
    text-align: right;
      position: absolute;
    right: 10px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
}