/*
blue: #3c5a9a
orange: #f0ad4e
*/

html {
    position: relative;
    min-height: 100%;
    font-family: 'Open Sans', sans-serif;
}

body{ 
    padding-top: 100px;
    color: #494a4e;
}

/* HEADINGS */
h1, h2, h3 {
    /*text-transform: uppercase;*/
    color: #3c5a9a;
}


/* sticky FOOTER */

html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1 0 auto;
}
.footer {
    flex-shrink: 0;
}



/* BUTTONS */

.btn:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/* BROWSERS */

/* remove input number scroller in Firefox */
input[type=number] { 
    -moz-appearance: textfield;
    appearance: textfield;
    margin: 0; 
  }

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
      -webkit-appearance: none; 
      margin: 0; 
}

/* hide reveal (eye, show) pass in Edge and Chrome */
input::-ms-reveal,
input::-ms-clear {
    display: none;
}


