.msa-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 61%);
    z-index: 99999;
    overflow: auto;
    opacity: 1;
    display:none;
}
.msa-popup {
    margin: 50px auto;
    padding: 10px;
    border-radius: 0px;
    width: 65%;
    position: relative;
}
.msa-popup .msa-close {
    position: absolute;
    top: 10px;
    right: 30px;
    transition: all 200ms;
    font-weight: bold;
    text-decoration: none;
    color: #f00;
    font-size: 35px;
}
.msa-popup .msa-content {
    max-height: 30%;
    overflow: auto;
    font-size: .9em;
}

@media (max-width: 992px) {
    .msa-popup {
            width: 90%;
        }
    .msa-popup .msa-close {
    top: -25px;
    right: 10px;
    }
}