/*
 * Customer Overide CSS for button color and font and background colors
*/


body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: Helvetica, Arial, sans-serif;
  color: #464E59;
  margin:0 auto;
  min-width: 480px;
  height:100%;
  display:flex; 
  flex-direction:column;}

header {padding:40px; margin: 0 auto; text-align:center; margin-bottom:20px;}
footer {padding:10px; background:#E4E5E2; color:#fff;  margin-top:auto; border-top: 1px solid #fff;}
footer p{padding-left:1em; color:#464e59;}

::placeholder {
  opacity:.5;
}
h1, h2,h3 {color:#ff8e00;font-weight: 600;}
a {color:#A4BC00;font-weight: 600; text-decoration: underline;}
a:hover {color:#A4BC00;font-weight: 600; text-decoration: none;}

img {
  max-width: 100%;
  height: auto;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 0 40px;
  color: #A4BC00;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #027D8A;
  border-radius: 100px;
  border: 2px solid #027D8A;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 2;
height:3.8em;}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: #A4BC00;
   border: 1px solid #182A4A;
   background: #CBD300;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
border-radius: 0px;
  color: #FFF;
   background-color: #A4BC00;
  border: 0px solid #A4BC00;
 /* background-color: #33C3F0;
  border-color: #33C3F0; */}
.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
border-radius: 0px;
  color: #FFF;
   background-color: #bdd243;
  border: 0px solid #bdd243;
  opacity:1 }


