.mp-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9999;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.5s ease;
}

.mp-container.active {
    z-index: 9999;
    opacity: 1;
}

.mp-container-inner {
    position: relative;
    width: 60%;
    max-width: 551px;
    height: auto;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    box-shadow: 10px 10px 60px #555;
}

.mp-close {
    position: absolute;
    top: 160px;
    right: 200px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: red;
    border-radius: 50%;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.mp-close:hover {
    top: 185px;
    right: 225px;
}

@media (max-width: 768px) {
    .mp-container {
        pointer-events: none;
    }
    .adsbygoogle {
        pointer-events: auto;
    }
    .mp-container-inner {
        width: 100%;
    }
    .mp-close {
        top: 60px;
        right: 175px;
    }
    .mp-close:hover,
    .mp-close.active {
        top: 85px;
        right: 200px;
    }
}