/*
 * 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: 800;
  font-family: Helvetica, Arial, sans-serif;
  color: #19283C;
  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:#19283C; color:#fff; margin-top:auto; border-top: 1px solid #fff;}
footer p{padding-left:1em; color:#fff;}

::placeholder {
  opacity:.5;
}
h1 {font-weight: 800;
color:#10aab1}

h2, h3 {font-weight: 800;
color:#18283d}
a {
  color: #009baa;
  text-decoration:underline;}
a:hover {
  color: #007589;
  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: #19283C;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: #19283C;
  border-radius: 10px;
  border: 0px solid #19283C;
  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: #1cabb6;
   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 {
  color: #fff;
   background-color: #19283C;
  border: 0px solid #19283C;
 /* 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-color: #19283C;
  border: 0px solid #19283C;
  opacity:1 }


