/* =========================
   Popup Background
========================= */

.bkash-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 15px;

    z-index: 999999;
}

/* Popup */
.bkash-popup-box {
    position: relative;

    width: 50%;
    max-width: 700px;

    background: #fff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 15px 50px rgba(0,0,0,.45);
}

/* Image */
.bkash-popup-box img {
    display: block;

    width: 100%;
    height: auto;

    margin: 0;
}

/* Close Button */
.bkash-close {
    position: absolute;

    top: 8px;
    right: 8px;

    width: 34px;
    height: 34px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,.55);
    color: #fff;

    font-size: 25px;
    line-height: 30px;

    cursor: pointer;

    z-index: 5;

    transition: .2s;
}

.bkash-close:hover {
    background: #e2136e;
    transform: rotate(90deg);
}


/* =========================
   Mobile Responsive
========================= */

@media (max-width: 768px) {

    .bkash-popup-overlay {
        padding: 10px;
    }

    .bkash-popup-box {
        width: 94%;
        max-width: 500px;
        border-radius: 10px;
    }

    .bkash-close {
        width: 32px;
        height: 32px;

        top: 6px;
        right: 6px;

        font-size: 23px;
    }
}
