.lm-popup{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-color: #00000099;
    transition: all 500ms;
    z-index: 99999;
}
.lm-popup.lm-popup-opened{
}

.lm-popup > div{
    border-radius: 1em;
    padding: 2em;
    padding-top: 0.5em;
    background-color: #ffffff;
    min-width: 300px;
    max-width: 600px;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.lm-popup .lm-popup-close{
    width: 100%;
    text-align: right;
    margin-bottom: 2em;
    display: inline-block;
    cursor: pointer;
}
.lm-popup p{
    margin-top: 1em;
}
.lm-popup a{
    text-decoration: underline;
}