@kmgreek
There shouldn’t be different id’s for mobile. I did check out your shop on Chrome and it was doing the same thing, so I picked apart your css a little bit and came up with the following. Please try plugging this in and let me know how it goes. I just grabbed the styles from your buttons on the previous page and assigned them to the id’s of the two buttons from our plugin.
#backbutton, #submitbutton {
color:#ffffff;
font-family: Karla, Arial, Helvetica, sans-serif;
font-weight: 700;
letter-spacing: 1px;
padding: 11px 23px;
line-height: 16px;
font-size: 13px;
background: #32a242;
text-transform: uppercase;
color: #ffffff;
transition: all .2s;
border-width: 0px;
border-style: solid;
border-color: #ffffff;
border-radius: 25px;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
-webkit-border-radius: 25px;
display: inline-block;
position: relative;
outline: 0;
zoom: 1;
border: 1px solid transparent;
text-align: center;
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
cursor: pointer;
box-sizing: border-box;
-webkit-transition: all .2s;
transition: all .2s;
}
#backbutton:after, #backbutton:before, #submitbutton:after, #submitbutton:before {
transition-property: color,background-color,border-color;
transition-duration: .2s;
transition-timing-function: linear;
}
#backbutton:hover, #submitbutton:hover {
background-color:#EBAD37;
}