.site-popup-overlay{
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    display: none;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 20px 20px 100px;
    z-index: 9999;
}
.site-popup{
    width: 400px;
    max-width: calc(100vw - 40px);
    background: #000000;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.site-popup img{
    display:block;
    width: 100%;
    height: auto;
}
.site-popup-actions{
    display: flex;
    padding: 12px 0;
    background: #0b0f14;
    color:#fff;
    font-size: 13px;
}
.site-popup-actions button{
    flex: 1;
    text-align: center;
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 10px 0;
    border-radius: 0;
}
.site-popup-actions button:hover{
    background: rgba(255,255,255,.12);
}