/*
 * 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: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  margin:0 auto;
  min-width: 480px;
  height:100%;
  display:flex; 
  flex-direction:column;}
  
h1, h2, h3 {color:#012D72;}

header {padding:40px; margin: 0 auto; text-align:center; margin-bottom:20px;}
footer {padding:10px; background:#012D72; color:#fff;  margin-top:auto; border-top: 1px solid #fff;}
footer p{padding-left:1em; color:#fff;}

::placeholder {
  opacity:.5;
}

img {
  max-width: 100%;
  height: auto;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 0 40px;
  color: #012D72;
  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: 1.15;
height:3.2em
}

.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: #012D72;
  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 {
background: linear-gradient(to right, #006974 50%, #012D72 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  transition: all .3s ease-out;
  color: #FFF;
   border:0px solid #012D72;
  /* background: #012D72;
 border: 2px solid #012D72;
  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 {
  color: #FFF;
  background-position: left bottom;
  border:0px solid #006974;

  opacity:1 }


