
/* Overlay Iklan */
.popup-promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000002;
    display: none;
}
.popup-promo-container{
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    max-width: 30vw;

}

/* Container Iklan - Desain Tanpa Radius */
.popup-promo-content {
    /* border-radius: 20px; */
    /* background: #fff; */
    /* border: 3px solid hsl(0, 0%, 0%); */
    /* padding: 5px; */
}

/* Banner Image */
.popup-promo-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Timer Badge */
.popup-promo-timer-badge, .btn-close-promo{
    position: absolute;
    top: -15px;
    right: -15px;
    background: #6a328a;
    color: #fff;
    padding: 0px 10px;
    font-weight: normal;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-family: 'Montserrat', sans-serif;
}

/* Tombol Close Custom */
.btn-close-promo {
    font-weight: bold;
    cursor: pointer;
    display: none;
}
