.subscription-form input {
display: inline-block;
padding: 4px;
font-size: 13px;
line-height: 18px;
color: #555555;
border: 1px solid #ccc;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
margin-bottom: 10px;
}
.checkbox_wrapper {
display: inline-block;
padding: 4px;
width: 100%;
}
.subscription-form input.checkbox_type, .subscription-form .checkbox_label {
width: auto;
vertical-align: middle;
margin-top: 0px;
margin-bottom: 0px;
}
.subscription-form .checkbox_label {
display: inline-block;
line-height: 18px;
margin-left: 4px;
font-size: 14px;
font-family: arial;
color: #0b5067;
}
.subscription-form input {
color: #1e252d;
background-color: #ffffff;
border: 1px solid #0b5067;
border-radius: 0px;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
}
.btn-grad {
background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
background: -o-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
background: -moz-linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
background: linear-gradient(top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 100%);
}
.subscription-form-fields {
margin-top: 15px;
}
.subscription-form {
width: 100%;
border: 0px solid ;
border-radius: 0px;
padding: 20px;
margin: 0 auto;
background-color: ;
}
.subscription-form h4 {
font-family: arial;
color: #102d4a;
font-size: 20px;
margin-top: 0px;
}
.subscription-thank-you {
font-family: arial;
color: #0b5067;
font-size: 14px;
}
.subscription-form-content {
font-family: arial;
color: #0b5067;
font-size: 14px;
}
.subscription-form button {
margin-top: 5px;
border-radius: 0px;
padding: 10px;
display: block;
text-align: center;
border: none;
width: 100%;
color: #ffffff;
background-color: #0b5067;
font-size: 20px;
font-family: arial;
}
.sender-sub-main {
display: table;
width: 100%;
height: 100%;
}
.sender-sub-inner {
display: table-cell;
vertical-align: middle;
}
.sender-link-wrapper {
display: block;
position: relative;
margin-top: 16px;
}
.sender-link {
font-family: Arial, “Helvetica Neue”, Helvetica, sans-serif;
font-size: 12px;
text-decoration: none !important;
color: #555;
}
.sender-link img {
width: 16px;
height: 16px;
margin-right: 2px;
vertical-align: text-bottom;
}
function submitGR(token){
if(grecaptcha.getResponse().length > 0){
document.getElementById(“submit-button”).setAttribute(“captcha”, “false”);
document.getElementById(“recaptcha-failed-message”).setAttribute(“hidden”, “”);
} else {
document.getElementById(“submit-button”).setAttribute(“captcha”, “true”);
document.getElementById(“recaptcha-failed-message”).removeAttribute(“hidden”);
}
}
document.addEventListener(“DOMContentLoaded”, function(event) {
document.getElementById(“submit-button”).setAttribute(“captcha”, “true”);
});