/*
 * Customer Overide CSS for button color and font and background colors
*/

body {font-family: "Roboto", Sans-serif; color:#676767;}
header {padding:40px; margin: 0 auto; text-align:center; margin-bottom:20px;}
footer {padding:10px; background:#fff; color:#676767; height: 40px; margin-top:auto; border-top: 5px solid #BED600;}
footer p{padding-left:1em; color:#676767;}


h1, h2 {color:#00B9E4; font-weight: 600;}

.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  border-radius: 10px;
font-weight: 400;
font-size: 1.2em;
line-height: 50px;
height: 100%;
margin:20px
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
color: #BED600;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
  color: #275E37;
   background-color: #BED600;
  border-color: #BED600;
text-transform: initial;
border:none}
  
 .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: #6667AA;
  border-color: #6667AA;
text-transform: initial;
border:none}


