/* =========================================
   POPUP
========================================= */

.imlek-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);

    /* WAJIB */
    display: none;

    align-items: center;
    justify-content: center;

    z-index: 99999;

    padding: 20px;

    opacity: 0;
    visibility: hidden;

    transition: all .3s ease;
}

/* SAAT AKTIF */
.imlek-popup.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* CONTENT */
.imlek-popup-content {
    position: relative;
    max-width: 820px;
    width: 100%;
    transform: scale(.9);
    transition: all .3s ease;
}

/* ANIMASI */
.imlek-popup.show .imlek-popup-content {
    transform: scale(1);
}

/* IMAGE */
.imlek-popup-content img{
    width:100%;
    border-radius:18px;
    display:block;
}

/* CLOSE */
.imlek-close{
    position:absolute;
    top:12px;
    right:12px;

    width:40px;
    height:40px;

    border:none;
    border-radius:50%;

    background:#fff;

    font-size:28px;
    line-height:1;

    cursor:pointer;

    z-index:20;
}

/* MOBILE */
@media(max-width:576px){

    .imlek-popup{
        padding:14px;
    }

    .imlek-popup-content{
        max-width:100%;
    }

    .imlek-close{
        width:36px;
        height:36px;
        font-size:22px;
        top:8px;
        right:8px;
    }

}