#store_emailcapture_back{
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.9;
    z-index: 998;
}

#store_emailcapture_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;
    padding:16px;
}

#store_emailcapture_front .popup_image{
    max-width:100%;
    margin: 16px;
    text-align:center;
}

#store_emailcapture_front .popup_image img{
    max-width:100%;
    max-height:96px;
}

#store_emailcapture_front .message{
    margin:16px;
    text-align:center;
}

#store_emailcapture_front input[type=text]{
    padding:8px;
}

#store_emailcapture_front .required{
    color: #a20b0b;
    font-weight:bold;
}

#store_emailcapture_error{
    color:#a20b0b;
}
#store_emailcapture_front .accept_button{
    color:#FFFFFF;
    background-color: #2b9519;
}

#store_emailcapture_actions{
    text-align:center;
    margin:0px 16px 16px 16px;
}

#store_emailcapture_actions input[type=button]{
    border:none;
    background-color: #222222;
    color:#FFFFFF;
    padding:8px;
    margin:8px;
    font-size:105%;
    font-weight:bold;
}

@media only screen and (max-width: 1023px) {
    #store_emailcapture_front{
        width:75%;
    }
}