.blur {
    filter: blur(2px)
}

.ads-wrapper {
    position: fixed;

    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    width: 100%;
    height: auto;
    text-align: center;

    z-index: 2001;
}

.ads-content {
    width: 450px;
    height: max-content;
    position: relative;
    display: inline-block;

    border-radius: 12px;
    overflow: hidden;

    box-shadow: 
    0 10px 16px 0 rgb(0 0 0 / 20%),
    0 6px 20px 0 rgb(0 0 0 / 19%) !important;
}

.ads-media {
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: black; */
}

.ads-media * {
    width: 100%;
}

.ads-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2002;
    cursor: pointer;
    width: 40px !important;
}

@media only screen and (max-width: 475px) {
    .ads-content {
        width: 95%;
        height: auto;
    }
}