#popup-in-your-face {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
}
#popup-in-your-face.active {
    display: flex;
}
#popup-in-your-face .piyf-wrapper {
    background-color: #fff;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 600px;
    min-height: 600px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
#popup-in-your-face .piyf-wrapper .piyf-content {
    padding: 30px;
}

#popup-in-your-face .piyf-wrapper .piyf-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#popup-in-your-face .piyf-wrapper .piyf-close img {
    padding: 10px;
    cursor: pointer;
    color: #000;
}

#popup-in-your-face .piyf-wrapper .piyf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

@media (max-width: 767px) {
    #popup-in-your-face .piyf-wrapper {
        max-width: 90%;
        min-height: 400px;
    }
}
