.bsscos-ad-popup[hidden] {
    display: none !important;
}

.bsscos-ad-popup {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, .7);
    backdrop-filter: blur(7px);
}

.bsscos-ad-dialog {
    position: relative;
    width: min(760px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border: 4px solid #fff;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(15, 23, 42, .42);
}

.bsscos-ad-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    border-radius: 4px;
    color: #fff;
    background: #172554;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .25);
    font-size: 1.2rem;
}

.bsscos-ad-dialog img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 48px);
    object-fit: contain;
    background: #fff;
}

body.bsscos-ad-open {
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .bsscos-ad-popup {
        padding: 12px;
    }

    .bsscos-ad-dialog {
        max-height: calc(100vh - 24px);
    }
}
