/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Global variables */

:root {
  --green: #599900;
  --dark-green: #345900;
  --medium-blue: #3767d0;
  --yellow: #ffb300;
  --red: #f54200;
  --black: #232323;
  --light-black: #383838;
  --mid-grey: #dbdbdb;
  --light-grey: #f5f5f5;
  --white: #ffffff;

  --font-family: Roboto, sans-serif;
  --font-size: 14px;
  --font-weight: 300;

  --border-radius: 3px;
}

/* Resurface > typography.scss */

h1, .heading-1, .h1 {
  font-size: 50px;
  letter-spacing: -1.2px;
}

h2, .heading-2, .h2 {
  font-size: 26px;
  letter-spacing: -0.6px;
}

h3, .heading-3, .h3 {
  font-size: 18px;
  letter-spacing: -0.4px;
}

/* Resurface > fonts.scss */

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/light/Roboto-Light.eot');
  src: url('fonts/roboto/light/Roboto-Light.eot?#iefix') format('embedded-opentype'),
  url('fonts/roboto/light/Roboto-Light.woff2') format('woff2'),
  url('fonts/roboto/light/Roboto-Light.woff') format('woff'),
  url('fonts/roboto/light/Roboto-Light.ttf') format('truetype'),
  url('fonts/roboto/light/Roboto-Light.svg#Roboto-Light') format('svg');
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/regular/Roboto-Regular.eot');
  src: url('fonts/roboto/regular/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
  url('fonts/roboto/regular/Roboto-Regular.woff2') format('woff2'),
  url('fonts/roboto/regular/Roboto-Regular.woff') format('woff'),
  url('fonts/roboto/regular/Roboto-Regular.ttf') format('truetype'),
  url('fonts/roboto/regular/Roboto-Regular.svg#Roboto-Light') format('svg');
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto/medium/Roboto-Medium.eot');
  src: url('fonts/roboto/medium/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
  url('fonts/roboto/medium/Roboto-Medium.woff2') format('woff2'),
  url('fonts/roboto/medium/Roboto-Medium.woff') format('woff'),
  url('fonts/roboto/medium/Roboto-Medium.ttf') format('truetype'),
  url('fonts/roboto/medium/Roboto-Medium.svg#Roboto-Medium') format('svg');
  font-weight: 500;
}
html {
  height: 100%;
}
input[type='submit']::-moz-focus-inner {
  border: 0;
  padding: 0;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-family);
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.48;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
}
.flexWrapper {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex: 1;
  flex: 1;

  padding: 1px;
  overflow: hidden;
}
b {
  font-weight: 500;
}
a {
  color: var(--green);
  text-decoration: none;
  font-weight: 400;
}
a:hover {
  color: var(--dark-green);
}
ul {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
ul li:before {
  color: var(--green);
  font-size: 10px;
}
ul li {
  margin: 3px 0 0 0;
}
.icon {
  color: var(--black);
}
.sticky-container {
  background-color: var(--white);
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-top: 1px solid var(--mid-grey);
  border-bottom: 1px solid var(--mid-grey);
}
.sticky-container .logo {
  max-height: 70px;
  height: 64px;
  padding-top: 6px;
  padding-left: 10px;
  border-bottom: 1px solid var(--mid-grey);
}
.sticky-container .logo img {
  height: 40px;
}
.sticky-container > .container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  position: relative;
  padding: 50px 20px 0;
}
.sticky-container .container .header {
  background-color: var(--white);
}
.sticky-container .container .header .icon {
  position: relative;
  color: var(--black);
  font-size: 50px;
}
.page {
  margin-top: 244px;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: var(--white);
  border-bottom: 1px solid var(--mid-grey);
}
.page .container {
  padding: 30px 0 0;
  position: relative;
  background-color: var(--white);
  border-radius: var(--border-radius);
}
.page .container section {
  padding: 24px 0 0 17px;
}
.page .container section:last-of-type {
  margin: 45px 0 0 0;
}
.page .container section h2 {
  border-bottom: 1px dashed var(--mid-grey);
}
.page .container section h3 {
  color: var(--green);
  padding: 24px 0 0 0;
  margin: 21px 0 -4px 0;
}
.page .container section p {
  margin: 1px 0 0 0;
}
.page .container section ul {
  margin-left: 6px;
}
.page .container .messages {
  color: #9a3332;
  margin: 10px 0 -10px 17px;
}
.page .container .labels {
  float: left;
  width: 160px;
  margin: 24px 0 0 -15px;
}
.page .container .labels label {
  display: block;
  text-align: right;
}
.page .container .labels label:last-child {
  margin: 20px 0 0 0;
}
.page .container .form {
  float: right;
  width: calc(100% - 160px);
  margin: 20px 0 0 0;
}
.page .container .form input[type='text'] {
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  display: block;
  width: 60%;
  padding: 4px 0 5px 10px;
  margin: 0 0 11px 0;
  background-color: var(--light-grey);
  border: 1px solid var(--white);
  font-size: 12px;
}
.page .container .form input[type='text']:-webkit-autofill {
  background-color: var(--white);
  background-image: none;
  color: var(--black);
}
.page .container .form input[type='text']:focus {
  outline: 1px solid var(--black);
  background-color: var(--white);
}
.page .container .form textarea {
  font-family: Verdana, "Helvetica Neue", Helvetica, Arial, sans-serif;
  width: 60%;
  padding: 4px 0 5px 10px;
  background-color: var(--light-grey);
  border: 1px solid var(--white);
  font-size: 12px;
  resize: none;
}
.page .container .form textarea:focus {
  outline: 1px solid var(--black);
  background-color: var(--white);
}
.page .container .form .button {
  display: block;
  color: white;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  padding: 8px 20px 8px 20px;
  margin-bottom: 5px;
  background: var(--green);
  border-radius: 20px;
  border: 0px;
}
.footer {
  padding: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  background-color: var(--white);
  border-radius: var(--border-radius);
}
.footer .trademark {
  margin: 0 11px 0 0;
}
.footer .copyright {
  font-size: 11px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .sticky-container {
    padding: 0 0 12px 0;
  }
}
@supports (-ms-accelerator:true) {
  .sticky-container .logo {
    padding: 8px 0 5px;
  }
  .sticky-container .container .header {
    margin: 37px 0 -3px;
  }
}
