#store_popup_back{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.9;
    z-index: 998;
}

/* Centered modal */
#store_popup_front{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: 30%;
    background: #fff;
    -webkit-box-shadow: 0 0 20px 0 rgba(255,255,255,0.5);
    z-index: 999;
    user-select: none;
}

#store_popup_front.store_popup_type_CP{
    width:auto;
}

#store_popup_front .popup_image{
    max-width:100%;
    margin: 16px;
    text-align:center;
}

#store_popup_front .popup_image img{
    max-width:100%;
    max-height:96px;
}

#store_popup_front .message{
    margin:16px;
    text-align:center;
}

#store_popup_actions{
    text-align:center;
    margin:0px 16px 16px 16px;
}


#store_popup_front .accept_button, #store_popup_front .deny_button{
    border:none;
    background-color: #222222;
    color:#FFFFFF;
    padding:8px;
    margin:8px;
    font-size:105%;
    font-weight:bold;
}

#store_popup_front .popup_accept_tr{
    margin:0px;
    z-index: 1000;
    position: inherit;
    top:0px;
    right:0px;
    width:32px;
    height:32px;
}


@media only screen and (max-width: 1023px) {
    #store_popup_front{
        width:75%;
    }

    #store_popup_front.store_popup_type_CP{
        width:auto;
    }
}