.mg-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100vw;
    height: 100vh;
}
.mg-popup-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.mg-popup-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.mg-popup-inner {
    max-width: calc(100% - 50px);
    width: 700px;
    position: relative;
}
.mg-popup-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    font-size: 42px;
    color: #fff !important;
    display: inline-block;
    width: 56px;
    height: 56px;
    text-align: center;
}