/* ==========================
   POPUP OVERLAY
========================== */

.popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.82);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;

    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.popup-overlay.show{
    opacity:1;
    visibility:visible;
}

/* ==========================
   POPUP CONTAINER
========================== */

.popup-wrapper{

    position:relative;

    width:780px;

    max-width:92vw;

    border-radius:8px;

    overflow:visible;

    transform:scale(.92);

    transition:.35s ease;
}

.popup-overlay.show .popup-wrapper{
    transform:scale(1);
}

/* ==========================
   IMAGE
========================== */

.popup-wrapper img{

    width:100%;
    display:block;
    border-radius:8px;

    box-shadow:0 25px 60px rgba(0,0,0,.55);

}

/* ==========================
   CLOSE BUTTON
========================== */

.popup-close{

    position:absolute;

    top:-40px;

    right:-10px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:transparent;

    color:#9b9b9b;

    font-size:42px;

    line-height:42px;

    cursor:pointer;

    transition:.3s;

    z-index:1000;

}

.popup-close:hover{

    color:#fff;
    transform:rotate(90deg);

}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.popup-wrapper{

    width:90vw;

}

}

@media(max-width:767px){

.popup-wrapper{

    width:95vw;

}

.popup-close{

    width:34px;
    height:34px;
    font-size:30px;
     top:-40px;
    right: -6px;

}

}