/* src/styles.sass */
@font-face {
  font-display: fallback;
  font-family: "Open Sans";
  src: url(/assets/OpenSans-Light.ttf) format("truetype");
  font-weight: 300;
  font-weight: 0 399;
}
@font-face {
  font-display: fallback;
  font-family: "Open Sans";
  src: url(/assets/OpenSans-Regular.ttf) format("truetype");
  font-weight: 400;
  font-weight: 400 499;
}
@font-face {
  font-display: fallback;
  font-family: "Open Sans";
  src: url(/assets/OpenSans-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-weight: 600 699;
}
@font-face {
  font-display: fallback;
  font-family: "Open Sans";
  src: url(/assets/OpenSans-Bold.ttf) format("truetype");
  font-weight: 700;
  font-weight: 700 799;
}
@font-face {
  font-display: fallback;
  font-family: "Open Sans";
  src: url(/assets/OpenSans-ExtraBold.ttf) format("truetype");
  font-weight: 800;
}
input[type=text],
input[type=password],
input[type=date],
input[type=email] {
  border-radius: 4px;
  border: 1px solid #8d8d8d;
  border-color: rgba(141, 141, 141, 0.5);
  padding: 0.5em 1em;
  position: relative;
  box-sizing: border-box;
  font-size: 1rem;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=email]:focus {
  border-color: #0d874f;
  box-shadow: 0 0 3px 0 #0d874f;
  outline: none;
}
input[type=text]:focus.invalid,
input[type=password]:focus.invalid,
input[type=date]:focus.invalid,
input[type=email]:focus.invalid {
  box-shadow: 0 0 3px 0 #ca2129;
  border-color: #ca2129;
}
html,
body {
  padding: 0;
  margin: 0;
}
html {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  min-width: 320px;
}
h1 {
  font-size: 2.5rem;
  color: #0d874f;
  margin: 0.9em 0;
  font-weight: 700;
}
h2 {
  margin: 2.4rem 0 1.4rem;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1rem;
  }
}
h3 {
  color: #0d874f;
  font-size: 1rem;
  margin-bottom: 0.1rem;
}
h1:first-child,
h2:first-child,
h3:first-child {
  margin-top: 0;
}
p {
  color: #373737;
  line-height: 1.3;
}
main nav ul {
  list-style: disclosure-closed;
}
.lead {
  font-size: 1.5em;
}
@media (max-width: 949px) {
  h1 {
    text-align: center;
  }
  h2 {
    margin: 1.5rem 0;
  }
}
@media (max-width: 559px) {
  html {
    font-size: 14px;
  }
}
main {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
  box-sizing: border-box;
  max-width: 1170px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .row > .col + .col {
    margin-top: 1em;
  }
}
@media (min-width: 768px) {
  .row {
    margin-left: -30px;
  }
  .row:after {
    display: block;
    content: "";
    clear: both;
  }
  .row > .col {
    padding-left: 30px;
    float: left;
    box-sizing: border-box;
  }
  .row.three-cols > .col {
    width: 33.333333%;
  }
  .row.three-cols > .col:nth-child(3n+1) {
    clear: left;
  }
  .row.two-cols > .col {
    width: 50%;
  }
  .row.two-cols > .col:nth-child(2n+1) {
    clear: left;
  }
}
table:not([border]) td {
  padding-right: 1rem;
}
a {
  color: #ca2129;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #0d874f;
  text-decoration: underline;
}
img {
  vertical-align: middle;
}
hr {
  border: none;
  border-top: 1px solid #8d8d8d;
  border-top: 1px solid rgba(141, 141, 141, 0.25);
  margin: 2rem 0;
}
.show-invalid .invalid {
  border-color: #ca2129;
}
span.validation {
  display: block;
}
label.required::after,
span.validation {
  color: #ca2129;
  font-size: 0.75em;
}
label.required::after {
  content: " (required)";
}
aside {
  padding: 35px 50px;
  margin: 2em 0;
}
aside.warning {
  background: rgba(202, 33, 41, 0.1);
}
aside.warning b {
  color: #ca2129;
}
aside.info {
  background: rgba(13, 135, 79, 0.1);
}
aside.info b {
  color: #0d874f;
}
aside.info a {
  font-weight: bold;
  text-decoration: none;
  color: #0d874f;
}
aside.info a:hover {
  text-decoration: underline;
}
.breadcrumbs {
  font-size: 1rem;
  margin-bottom: 2em;
}
@media (max-width: 767px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs a {
  color: #000000;
}
button,
a.button {
  font-family: Open Sans, sans-serif;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  margin: 1em auto;
  display: block;
  color: #ffffff;
  background: #ca2129;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  width: 500px;
  max-width: 100%;
  box-sizing: border-box;
  cursor: pointer;
}
button:hover,
a.button:hover {
  text-decoration: none !important;
}
button:hover:not(:disabled),
a.button:hover:not(:disabled) {
  background: #0d874f;
}
button:disabled,
a.button:disabled {
  background: #8d8d8d;
  cursor: auto;
}
ol {
  color: #8d8d8d;
}
input::placeholder {
  color: #8d8d8d;
}
.footnote {
  color: #8d8d8d;
  font-size: 0.85em;
  margin: 0.5em 0;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes grow-in {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes grow-out {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
.termsfeed-com---reset button {
  width: auto;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
