.popup {
    position: absolute;
    background: #0000007a;
    width: 100%;
    height: 100%;
    top: 0;
    display: none;
    align-items: start;
    justify-content: center;
    z-index: 100000000;
    padding: 100px 0 ;
}

.popup-body {
    box-shadow: 1px 0 5px 0 #0000ff3b;
    border-radius: 5px;
    background: white;
    min-height: 150px;
    min-width: 250px;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.popup-title {
    position: relative;
    background: whitesmoke;
    padding: 4px;
    text-align: center;
    border-radius: 5px;
    letter-spacing: 3px;
    font-size: 16px;
    font-weight: 800;
    color: gray;
}

.popup-context {
    padding: 20px;
    max-width: 700px;
    overflow: auto;
    flex:1;
    font-size: larger;
    color: gray;
    font-weight: 400;
}

.closePopup:hover{
    background: cornflowerblue;
}
.closePopup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    top: -26px;
    right: -37px;
    position: absolute;
    border-radius: 30px;
    font-size: 20px;
    cursor: pointer
}