/*
 * 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: "Poppins-Bold", Arial, sans-serif;
  color: #222;
  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:#131C42; color:#fff;  margin-top:auto; border-top: 1px solid #fff;}
footer p{padding-left:1em; color:#fff;}

::placeholder {
  opacity:.5;
}

a {color:#2441E5}
a:hover {color:#EDB744}

h1, h2, h3, h4, h5, h6 {
    font-style: bold;
    font-weight: bold;
    color: #131c42;
    fill: #131c42;
    margin: 0 0 16px;}

img {
  max-width: 100%;
  height: auto;
}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  padding: 0 40px;
  color: #2441E5;
  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: 0px;
  border: 0px 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: #2441E5;
   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: #2441E5;
  border: 0px solid #2441E5;
 /* 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: #131c42;
  border: 1px solid #131c42;
  opacity:1 }


