.pop-overlay{
    position: fixed;
    background-color: #00000040;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    left: 0;
}
.pop-main-wrapper {
    min-width: 500px;
    min-height: 380px;     
    position:fixed;
    top: 50%;
    left: 50%;      
    border: 1px solid #ccc;
    background-color: #f3f3f3;  
    transform: translate(-50%, -50%);
    z-index: 1000;   
}
.pop-inner-wrapper {
    width:100%;
    height: 100%;
}
.pop-header {
    width : 98%;
    height : 15%;
    background-color: gray;
    margin-left: 1%;
    margin-top: 1%;  
    display: flex; 
    flex-direction: row;   
    align-items: center;  
    border-radius: 5px;     
}
.pop-title {
    width:50%;
    display: flex;
    justify-content: flex-start;
    margin-left: 2%;    
}  
.pop-title h2 {
      color : black;
}
.pop-close {
    width:50%;
    display : flex;
    justify-content: flex-end;
    margin-right: 2%;      
}  
  
.pop-close a {
    text-decoration: none;
}
.pop-desc {
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
    margin-bottom: 1%;
    border-radius : 5px;          
}
.pop-btn {  
    background-color: green;
    padding: 10px;
    cursor: pointer;
    text-align: center;
}
.pop-btn-wrapper {
    position: absolute;
}