.popup-banner-wrapper {
    background: rgba(0, 0, 0, .5);
    left: 0;
    position: fixed;
    top: 0;
    z-index: 11;
    height: 100%;
    width: 100%;
}
.popup-banner-wrapper .popup-banner {
    left: 50%;
    max-width: 600px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.banner-wrapper {
    position: relative;
}
.popup-banner-wrapper img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}
.banner-wrapper .btn-banner-close {
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    color: hsl(var(--white));
    background-color: hsl(var(--base));
    border-radius: 50%;
    border: 1px solid transparent !important;
    z-index: 2; /* Ensures the button is above the image */
}