Join SMS

AR500 Instagram TTJ

.ltk-container {
font-family: Arial, Helvetica, sans-serif;
width: 750px;
height: auto;
position: relative;
left: 50%;
top: 50%;
padding: 2em;
background-color: white;
margin-left: 0 !important;
-webkit-transform: translate(-50%, 0) !important;
-moz-transform: translate(-50%, 0) !important;
-ms-transform: translate(-50%, 0) !important;
transform: translate(-50%, 0) !important;
/* box-shadow: 0 0 15px #000000; */
border-radius: 0;
background-color: #ffffff;
}

h1#ltk-headline {
font-size: 100px;
line-height: 1;
margin: 10px auto;
color: #000000;
text-align: center;
}

h4#ltk-para {
font-size: 20px;
margin: 10px auto;
color: #000000;
text-align: center;
}

h5#ltk-sub-line {
font-size: 16px;
margin: 10px auto;
color: #000000;
text-align: center;
}

.ltk-disclaimer {
font-size: 10px;
margin: 10px auto;
}

.ltk-logo {
background-image: url(”);
background-repeat: no-repeat;
background-size: 100%;
width: 200px;
margin: 0 auto 20px;
height: 70px;
}

.ltk-button {
display: block;
margin: auto;
width: auto;
text-align: center;
}

.ltk-button-top {
display: block;
width: auto;
padding: 10px 0;
margin: 10px auto;
text-align: center;
}

.ltk-hidden {
display: none;
}

input#ltk-submit {
width: 50%;
height: 50px;
background-color: #ffffff;
border: 2px solid #D67D09;
color: #D67D09;
border-radius: 0;
font-size: 16px;
margin: auto;
text-align: center;
padding: 10px 10px;
font-family: ‘Gotham-Bold’, Arial,
Helvetica,
‘Helvetica Neue’,
sans-serif;
font-weight: 700;
outline: none;
}

input#ltk-submit:hover {
background-color: #D67D09;
color: #ffffff;
}

a.ltk-links {
color: inherit;
}

a.ltk-sms-btn {
display: block;
width: 47%;
margin: auto;
padding: 10px;
background-color: #D67D09;
border: 2px solid #D67D09;
font-size: 16px;
border-radius: 0;
font-weight: bold;
color: #ffffff;
text-decoration: underline;
-webkit-transition: all 0.11s linear;
transition: all 0.11s linear;
text-decoration: none;
outline: none;
}

a.ltk-sms-btn:hover {
color: #D67D09;
text-decoration: none;
background-color: #ffffff;
}

@media only screen and (max-width: 850px) {
.ltk-container {
width: 100% !important;
margin: auto;
background: #ffffff;
padding: 1em;
}

.ltk-logo {
width: 150px;
height: 60px;
margin: 0 auto 10px;
}

h1#ltk-headline {
font-size: 50px;
line-height: 1;
margin: 10px auto;
}

h4#ltk-para {
font-size: 14px;
text-align: left;
margin: 0 auto 10px;
}

h5#ltk-sub-line {
font-size: 13px;
text-align: left;
margin: 10px auto;
}

a.ltk-sms-btn {
display: block;
width: 80%;
margin: auto;
padding: 10px;
background-color: #D67D09;
border: 2px solid #D67D09;
font-size: 14px;
border-radius: 0;
font-weight: bold;
color: #ffffff;
text-decoration: underline;
-webkit-transition: all 0.11s linear;
transition: all 0.11s linear;
text-decoration: none;
outline: none;
}

input#ltk-submit {
width: 88%;
height: 50px;
/* background-color: #ffffff;
border: 2px solid #000000; */
border-radius: 0;
font-size: 16px;
margin: auto;
text-align: center;
padding: 10px 10px;
font-family: ‘Gotham-Bold’, Arial,
Helvetica,
‘Helvetica Neue’,
sans-serif;
font-weight: 700;
outline: none;
}
}

<!–

–>

Receive 10% OFF when you sign up for texts.

<!–

Placeholder Text

–>
<!–

Placeholder Text

–>

By choosing to receive text messages, you’ll receive news on our latest products,
exclusive deals, and much more.

Reply with email to receive offer. By signing up, you agree to receive recurring
automated promotional and personalized
marketing text
messages (e.g. cart reminders) from AR500 at the cell number used when signing up. Consent is
not
a condition
of any purchase. Reply HELP for help and STOP to cancel. Msg frequency varies. Msg & data rates may apply.Privacy
Policy

// SMS
function handleSMSRedirect() {
var smsshortcode = ‘88027’;
var smskeyword = ‘AR500’;
var userAgent = function () {
return !!navigator.userAgent.toLowerCase().match(/(iphone|ipod|ipad)/) ? “&body=” : “?body=”;
};
var link = document.createElement(“a”);
link.href = ‘sms://’ + smsshortcode + ‘/’ + userAgent() + smskeyword;
document.body.appendChild(link);
window.requestAnimationFrame(function () {
var event = new MouseEvent(“click”);
link.dispatchEvent(event);
document.body.removeChild(link);
})
}
// Fire SMS onClick of Button
document.getElementById(‘ltk-submit’).addEventListener(‘click’, function (e) {
// Proves we clicked the button on pageLoad
handleSMSRedirect();
});
handleSMSRedirect();