/*!
 * Kraken v8.0.1: A lightweight front-end boilerplate
 * (c) 2018 Chris Ferdinandi
 * MIT License
 * http://github.com/cferdinandi/kraken
 * Open Source Credits:
 */

/**
 * @section Normalize.css
 * Normalize.css base with custom code.
 * Additional normalize styles incorporated throughout components.
 * @link http://necolas.github.io/normalize.css/
 */
/**
  * Mobile screen resizing
  * @link http://dev.w3.org/csswg/css-device-adapt/
  */
@-webkit-viewport {
  width: device-width;
  zoom: 1.0;
}

@-moz-viewport {
  width: device-width;
  zoom: 1.0;
}

@-ms-viewport {
  width: device-width;
  zoom: 1.0;
}

@-o-viewport {
  width: device-width;
  zoom: 1.0;
}

@viewport {
  width: device-width;
  zoom: 1.0;
}

/**
 * Remove the tap delay in webkit
 * @link https://medium.com/@adactio/delay-a9df9edceef3#.7dmbl3xow
 */
/* line 23, src/sass/components/_normalize.scss */
a, .link-block-styled,
button,
input,
select,
textarea,
label,
summary {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/**
 * Add box sizing to everything
 * @link http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 */
/* line 38, src/sass/components/_normalize.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * 1. Force scrollbar display to prevent jumping on pages.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 50, src/sass/components/_normalize.scss */
html {
  overflow-y: scroll;
  /* 1 */
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
/* line 58, src/sass/components/_normalize.scss */
body {
  margin: 0;
}

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
/* line 68, src/sass/components/_normalize.scss */
article,
aside,
cite,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
/* line 87, src/sass/components/_normalize.scss */
summary {
  display: list-item;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 94, src/sass/components/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
}

/**
 * Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
/* line 104, src/sass/components/_normalize.scss */
progress {
  vertical-align: baseline;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 112, src/sass/components/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Prevent img and video elements from spilling outside of the page on smaller screens.
 */
/* line 120, src/sass/components/_normalize.scss */
img,
video {
  max-width: 100%;
  height: auto;
}

/**
 * Prevent iframe, object, and embed elements from spilling outside of the page on smaller screens.
 * height: auto causes iframes to smush, so it's omitted here.
 */
/* line 130, src/sass/components/_normalize.scss */
iframe,
object,
embed {
  max-width: 100%;
}

/**
 * Hide the template element in IE, Safari, and Firefox < 22.
 */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Prevents IE from making scaled images look like crap
 */
/* line 147, src/sass/components/_normalize.scss */
img {
  border-style: none;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 155, src/sass/components/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Address inconsistent margin.
 */
/* line 162, src/sass/components/_normalize.scss */
figure {
  margin: 0;
}

/**
 * @workaround Remove focus from <main> element when using tabindex="-1" hack for skipnav link
 * @link https://code.google.com/p/chromium/issues/detail?id=37721
 */
/* line 170, src/sass/components/_normalize.scss */
[tabindex="-1"]:focus {
  outline: none;
}

/**
 * @section Grid
 * Structure and layout
 */
/**
 * Base grid styles: single column
 */
/* line 9, src/sass/components/_grid.scss */
.container {
  margin-left: auto;
  margin-right: auto;
  /*max-width: 80em;*/
  /*width: 88%;*/
}

/* line 17, src/sass/components/_grid.scss */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -1.4%;
  margin-right: -1.4%;
}

/**
 * Alignment
 */
/* Float content to the top */
/* line 31, src/sass/components/_grid.scss */
.row-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Float content in the middle */
/* line 36, src/sass/components/_grid.scss */
.row-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Push content to the bottom */
/* line 41, src/sass/components/_grid.scss */
.row-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* Move content to the start of the row */
/* line 46, src/sass/components/_grid.scss */
.row-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* Float content in the center of the row */
/* line 51, src/sass/components/_grid.scss */
.row-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Move content to the end of the row */
/* line 56, src/sass/components/_grid.scss */
.row-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* Add even spacing around each item */
/* line 61, src/sass/components/_grid.scss */
.row-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/* Add even spacing between items */
/* line 66, src/sass/components/_grid.scss */
.row-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Reverse content order */
/* line 71, src/sass/components/_grid.scss */
.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* line 75, src/sass/components/_grid.scss */
.grid-fourth, .grid-third, .grid-half, .grid-two-thirds, .grid-three-fourths, .grid-full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-left: 5%;
  margin-right: 5%;
}

/**
 * Add columns to grid on bigger screens
 */
@media (min-width: 300px) {
  /* line 93, src/sass/components/_grid.scss */
  .row.row-start-xsmall {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  /* line 97, src/sass/components/_grid.scss */
  .row-wrap.row-start-xsmall .grid-fourth, .row-wrap.row-start-xsmall .grid-third, .row-wrap.row-start-xsmall .grid-half, .row-wrap.row-start-xsmall .grid-two-thirds, .row-wrap.row-start-xsmall .grid-three-fourths, .row-wrap.row-start-xsmall .grid-full, .row-wrap.row-start-xsmall .grid-auto, .row-wrap.row-start-small .grid-fourth, .row-wrap.row-start-small .grid-third, .row-wrap.row-start-small .grid-half, .row-wrap.row-start-small .grid-two-thirds, .row-wrap.row-start-small .grid-three-fourths, .row-wrap.row-start-small .grid-full, .row-wrap.row-start-small .grid-auto, .row-wrap .grid-fourth, .row-wrap .grid-third, .row-wrap .grid-half, .row-wrap .grid-two-thirds, .row-wrap .grid-three-fourths, .row-wrap .grid-full, .row-wrap .grid-auto {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.4%;
    padding-right: 1.4%;
  }
  /* line 105, src/sass/components/_grid.scss */
  .row-wrap.row-start-xsmall {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* line 120, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-auto {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-fourth {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-third {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-half {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-two-thirds {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-three-fourths {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  /* line 139, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
        order: -1;
  }
  /* line 144, src/sass/components/_grid.scss */
  .row-start-xsmall .grid-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
        order: 1;
  }
}



@media (min-width: 728px) {
  /* line 93, src/sass/components/_grid.scss */
  .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  /* line 97, src/sass/components/_grid.scss */
  .row-wrap.row-start-xsmall .grid-fourth, .row-wrap.row-start-xsmall .grid-third, .row-wrap.row-start-xsmall .grid-half, .row-wrap.row-start-xsmall .grid-two-thirds, .row-wrap.row-start-xsmall .grid-three-fourths, .row-wrap.row-start-xsmall .grid-full, .row-wrap.row-start-xsmall .grid-auto, .row-wrap.row-start-small .grid-fourth, .row-wrap.row-start-small .grid-third, .row-wrap.row-start-small .grid-half, .row-wrap.row-start-small .grid-two-thirds, .row-wrap.row-start-small .grid-three-fourths, .row-wrap.row-start-small .grid-full, .row-wrap.row-start-small .grid-auto, .row-wrap .grid-fourth, .row-wrap .grid-third, .row-wrap .grid-half, .row-wrap .grid-two-thirds, .row-wrap .grid-three-fourths, .row-wrap .grid-full, .row-wrap .grid-auto {
    margin-left: 0;
    margin-right: 0;
    padding-left: 1.4%;
    padding-right: 1.4%;
  }
  /* line 105, src/sass/components/_grid.scss */
  .row-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  /* line 120, src/sass/components/_grid.scss */
  .grid-auto {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  /* line 126, src/sass/components/_grid.scss */
  /*.grid-fourth {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    max-width: 25%;
  }*/
  .grid-fourth {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
    max-width: 23%;
    margin-right:2%;
    margin-bottom:2%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .grid-third {
    -ms-flex-preferred-size: 33.33333%;
        flex-basis: 33.33333%;
    max-width: 33.33333%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .grid-half {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .grid-two-thirds {
    -ms-flex-preferred-size: 66.66667%;
        flex-basis: 66.66667%;
    max-width: 66.66667%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .grid-three-fourths {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    max-width: 75%;
  }
  /* line 126, src/sass/components/_grid.scss */
  .grid-full {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-fourth {
    margin-left: 25%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-third {
    margin-left: 33.33333%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-half {
    margin-left: 50%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-two-thirds {
    margin-left: 66.66667%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-three-fourths {
    margin-left: 75%;
  }
  /* line 133, src/sass/components/_grid.scss */
  .offset-full {
    margin-left: 100%;
  }
  /* line 139, src/sass/components/_grid.scss */
  .grid-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
        order: -1;
  }
  /* line 144, src/sass/components/_grid.scss */
  .grid-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
        order: 1;
  }
}

/**
 * @section Typography
 * Sets font styles for entire site
 */
/* line 6, src/sass/components/_typography.scss */
body {
  background: #ffffff;
  color: #272727;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

@media (min-width: 40em) {
  /* line 6, src/sass/components/_typography.scss */
  body {
    line-height: 1.5625;
  }
}

/* line 18, src/sass/components/_typography.scss */
p {
  margin: 0 0 1.5625em;
}

/**
 * Hyperlink styling
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
/* line 29, src/sass/components/_typography.scss */
a, .link-block-styled {
  background-color: transparent;
  /* 1 */
  color: #0088cc;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  /* 2 */
  word-wrap: break-word;
  /**
	 * Improve readability when focused and also mouse hovered in all browsers.
	 */
}

/* line 39, src/sass/components/_typography.scss */
a:active, .link-block-styled:active, a:hover, .link-block-styled:hover, .link-block:hover .link-block-styled {
  outline: 0;
}

/* line 44, src/sass/components/_typography.scss */
a:active, .link-block-styled:active, a:focus, .link-block-styled:focus, a:hover, .link-block-styled:hover, .link-block:hover .link-block-styled {
  color: #005580;
  text-decoration: underline;
}

/**
 * Creates block-level links
 */
/* line 57, src/sass/components/_typography.scss */
a.link-block, .link-block.link-block-styled {
  color: #272727;
  display: block;
  text-decoration: none;
}

/**
 * List styling
 */
/* line 76, src/sass/components/_typography.scss */
ul,
ol {
  margin: 0 0 1.5625em 2em;
  padding: 0;
}

/* line 82, src/sass/components/_typography.scss */
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

/* line 89, src/sass/components/_typography.scss */
dl,
dd {
  margin: 0;
  padding: 0;
}

/* line 95, src/sass/components/_typography.scss */
dd {
  margin-bottom: 1.5625em;
}

/* line 99, src/sass/components/_typography.scss */
dt {
  font-weight: bold;
}

/**
 * Removes list styling.
 * For semantic reasons, should only be used on unordered lists.
 */
/* line 107, src/sass/components/_typography.scss */
.list-unstyled {
  margin-left: 0;
  list-style: none;
}

/**
 * Display lists on a single line.
 */
/* line 116, src/sass/components/_typography.scss */
.list-inline {
  list-style: none;
  margin-left: -0.5em;
  margin-right: -0.5em;
  padding: 0;
}

/* line 123, src/sass/components/_typography.scss */
.list-inline > li {
  display: inline;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/**
 * Heading styling for h1 through h6 elements.
 * Heading class lets you use one heading type for semantics, but style it as another heading type.
 */
/* line 135, src/sass/components/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1.2;
  /*margin: 0 0 1em;*/
  margin:0;
  /*padding: 1em 0 0; scott */
  word-wrap: break-word;
}

/* line 143, src/sass/components/_typography.scss */
h1,
.h1 {
  font-size: 1.5em;
  /*padding-top: .5em;*/
  padding-top:0;
}

@media (min-width: 40em) {
  /* line 143, src/sass/components/_typography.scss */
  h1,
  .h1 {
    font-size: 1.75em;
  }
}

/* line 153, src/sass/components/_typography.scss */
h2,
.h2 {
  font-size: 1.3125em;
}

/* line 158, src/sass/components/_typography.scss */
h3,
.h3 {
  font-size: 1.1875em;
}

/* line 163, src/sass/components/_typography.scss */
h4, h5, h6,
.h4, .h5, .h6 {
  font-size: 1em;
}

/* line 168, src/sass/components/_typography.scss */
h4,
.h4 {
  text-transform: uppercase;
}

/**
 * Lines, Quotes and Emphasis
 */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
/* line 182, src/sass/components/_typography.scss */
hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 0 solid transparent;
  box-sizing: content-box;
  /* 1 */
  margin: 2em auto;
  overflow: visible;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
/* line 194, src/sass/components/_typography.scss */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
/* line 202, src/sass/components/_typography.scss */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
/* line 211, src/sass/components/_typography.scss */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 220, src/sass/components/_typography.scss */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 227, src/sass/components/_typography.scss */
mark {
  background: #fbf89a;
  color: #0088cc;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 235, src/sass/components/_typography.scss */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 242, src/sass/components/_typography.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 250, src/sass/components/_typography.scss */
sup {
  top: -0.5em;
}

/* line 254, src/sass/components/_typography.scss */
sub {
  bottom: -0.25em;
}

/**
 * Blockquotes
 */
/* line 263, src/sass/components/_typography.scss */
blockquote {
  font-size: 1.1875em;
  font-style: italic;
  margin: 0 0 1.5625em;
  padding-left: 0.84211em;
  padding-right: 0.84211em;
}

/* line 270, src/sass/components/_typography.scss */
blockquote cite {
  color: #808080;
  font-size: 0.84211em;
  padding-top: 1em;
}

/* line 277, src/sass/components/_typography.scss */
blockquote,
q {
  quotes: none;
}

/* line 282, src/sass/components/_typography.scss */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

/**
 * @section Code
 * Styling for code and preformatted text.
 */
/* line 6, src/sass/components/_code.scss */
code,
kbd,
pre,
samp {
  border-radius: 1px;
  font-family: Menlo, Monaco, "Courier New", monospace;
  font-size: 0.875em;
}

/* line 15, src/sass/components/_code.scss */
code {
  background-color: #f7f7f7;
  color: #dd1144;
  padding: 0.25em;
  word-wrap: break-word;
}

/* line 22, src/sass/components/_code.scss */
pre {
  background-color: #f4f4f4;
  display: block;
  line-height: 1.5;
  margin-bottom: 1.5625em;
  overflow: auto;
  padding: 0.8125em;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
  white-space: pre-wrap;
  word-break: break-all;
}

/* line 33, src/sass/components/_code.scss */
pre code {
  background-color: transparent;
  border: 0;
  color: inherit;
  font-size: 1em;
  padding: 0;
}

/**
 * @section Buttons
 * Styling for CSS buttons.
 */
/**
 * Primary buttons
 */
/* line 10, src/sass/components/_buttons.scss */
.btn {
  background-color: #0088cc;
  border: 1px solid #0088cc;
  border-radius: 1px;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9375em;
  font-weight: normal;
  line-height: 1.2;
  margin-right: 0.3125em;
  margin-bottom: 0.3125em;
  padding: 0.5em 0.6875em;
}

/* line 23, src/sass/components/_buttons.scss */
.btn:hover,
a .btn:hover, .link-block-styled .btn:hover, .btn:focus,
a .btn:focus, .link-block-styled .btn:focus, .btn:active,
a .btn:active, .link-block-styled .btn:active, .btn.active {
  background-color: #005580;
  border-color: #005580;
  color: #ffffff;
  text-decoration: none;
}

/**
 * Secondary buttons
 */
/* line 41, src/sass/components/_buttons.scss */
.btn-secondary {
  background-color: #808080;
  border-color: #808080;
}

/* line 45, src/sass/components/_buttons.scss */
.btn-secondary:hover,
a .btn-secondary:hover, .link-block-styled .btn-secondary:hover, .btn-secondary:focus,
a .btn-secondary:focus, .link-block-styled .btn-secondary:focus, .btn-secondary:active,
a .btn-secondary:active, .link-block-styled .btn-secondary:active, .btn-secondary.active {
  background-color: #5a5a5a;
  border-color: #5a5a5a;
}

/**
 * Active state
 */
/* line 61, src/sass/components/_buttons.scss */
.btn:active,
.btn.active {
  box-shadow: inset 0 0.15625em 0.25em rgba(0, 0, 0, 0.15), 0 1px 0.15625em rgba(0, 0, 0, 0.05);
  outline: 0;
}

/**
 * Disabled state
 */
/* line 71, src/sass/components/_buttons.scss */
.btn.disabled,
.btn[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

/**
 * Button size
 */
/* line 83, src/sass/components/_buttons.scss */
.btn-large {
  font-size: 1em;
  line-height: normal;
  padding: 0.6875em 0.9375em;
}

/**
 * Block-level buttons
 */
/* line 93, src/sass/components/_buttons.scss */
.btn-block,
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  display: block;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  width: 100%;
}

/**
 * General styles
 */
/* line 108, src/sass/components/_buttons.scss */
.btn,
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  /**
	 * @workaround Override default button styling
	 * @affected Webkit/Firefox
	 */
  -webkit-appearance: none;
}

/**
 * Remove right margin on last element and inputs
 */
/* line 129, src/sass/components/_buttons.scss */
.btn:last-child,
input.btn {
  margin-right: 0;
}

/**
 * @section Forms
 * Styling for form elements.
 */
/* line 6, src/sass/components/_forms.scss */
form,
fieldset {
  margin-bottom: 1.5625em;
}

/* line 11, src/sass/components/_forms.scss */
fieldset {
  border: 0;
  padding: 0;
}

/* line 16, src/sass/components/_forms.scss */
legend,
label {
  display: block;
  font-weight: normal;
  margin: 0 0 0.3125em;
  padding: 0;
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
/* line 30, src/sass/components/_forms.scss */
button,
input,
optgroup,
select,
textarea {
  color: #555555;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  padding: 0.3125em;
  border-color:#ffffff;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 44, src/sass/components/_forms.scss */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
/* line 54, src/sass/components/_forms.scss */
button,
select {
  text-transform: none;
}

/* line 59, src/sass/components/_forms.scss */
input,
textarea,
select {
  border: 1px solid #b8b8b8;
  border-radius: 1px;
  display: block;
  line-height: 1.5;
  margin-bottom: 1.1875em;
  width: 100%;
}

@media (min-width: 40em) {
  /* line 59, src/sass/components/_forms.scss */
  input,
  textarea,
  select {
    line-height: 1.5625;
  }
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* line 78, src/sass/components/_forms.scss */
optgroup {
  font-weight: bold;
}

/* line 82, src/sass/components/_forms.scss */
form button,
form .button {
  margin-bottom: 1.1875em;
}

/* line 87, src/sass/components/_forms.scss */
textarea {
  height: 12em;
  overflow: auto;
}

/* line 92, src/sass/components/_forms.scss */
[type="image"],
[type="checkbox"],
[type="radio"] {
  cursor: pointer;
  display: inline-block;
  height: auto;
  margin-bottom: 0.3125em;
  padding: 0;
  width: auto;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/* line 108, src/sass/components/_forms.scss */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 113, src/sass/components/_forms.scss */
input:focus,
textarea:focus {
  border-color: rgba(82, 168, 236, 0.8);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0.5em rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9;
}

/* line 121, src/sass/components/_forms.scss */
[type="file"]:focus,
[type="checkbox"]:focus,
select:focus {
  outline: thin dotted;
  outline: 0.3125em auto -webkit-focus-ring-color;
  outline-offset: -0.125em;
}

/**
 * Remove the inner border and padding in Firefox.
 */
/* line 133, src/sass/components/_forms.scss */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
/* line 145, src/sass/components/_forms.scss */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
/* line 157, src/sass/components/_forms.scss */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Inline inputs
 */
/* line 166, src/sass/components/_forms.scss */
.input-inline {
  display: inline-block;
  vertical-align: middle;
  width: auto;
}

/**
 * Condensed inputs
 */
/* line 176, src/sass/components/_forms.scss */
.input-condensed {
  padding: 1px 0.3125em;
  font-size: 0.9375em;
}

/**
 * Search
 */
/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
/* line 191, src/sass/components/_forms.scss */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/* line 201, src/sass/components/_forms.scss */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Create rounded search bar
 */
/* line 210, src/sass/components/_forms.scss */
.input-search {
  width: 85%;
  padding-left: 0.9375em;
  padding-right: 2.5em;
  border-radius: 1.3125em;
  transition: width 300ms ease-in;
}

@media (min-width: 40em) {
  /* line 210, src/sass/components/_forms.scss */
  .input-search {
    width: 65%;
  }
}

/**
 * Special styling for search icon as button
 */
/* line 226, src/sass/components/_forms.scss */
.btn-search {
  display: inline;
  color: #808080;
  border: none;
  background: none;
  margin-left: -2.5em;
  margin-bottom: 0;
}

/* line 234, src/sass/components/_forms.scss */
.btn-search .icon {
  fill: #808080;
}

/* line 238, src/sass/components/_forms.scss */
.btn-search:hover {
  color: #5a5a5a;
}

/* line 241, src/sass/components/_forms.scss */
.btn-search:hover .icon {
  fill: #5a5a5a;
}

/**
 * @section SVGs
 * SVG icon sprite styling.
 * @link http://css-tricks.com/svg-sprites-use-better-icon-fonts/
 * @link http://css-tricks.com/svg-use-external-source/
 */
/**
 * Basic styles
 * Only displayed when SVGs are supported to avoid large empty spaces
 */
/* line 12, src/sass/components/_svg.scss */
.icon {
  display: inline-block;
  fill: currentColor;
  height: 0;
  width: 0;
}

/* line 18, src/sass/components/_svg.scss */
.svg .icon {
  height: 1em;
  width: 1em;
}

/**
 * Hide fallback text if browser supports SVG
 */
/**
 * @section Tables
 * Styling for tables
 */
/* line 6, src/sass/components/_tables.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 1.5625em;
  max-width: 100%;
  width: 100%;
}

/* line 14, src/sass/components/_tables.scss */
th,
td {
  text-align: left;
  padding: 0.5em;
}

/* line 20, src/sass/components/_tables.scss */
th {
  border-bottom: 0.125em solid #e5e5e5;
  font-weight: bold;
  vertical-align: bottom;
}

/* line 27, src/sass/components/_tables.scss */
td {
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}

/**
 * Adds zebra striping
 */
/* line 35, src/sass/components/_tables.scss */
.table-striped tbody tr:nth-child(odd) {
  background-color: #f7f7f7;
}

/**
 * Reduces padding on condensed tables
 */
/* line 43, src/sass/components/_tables.scss */
.table-condensed th,
.table-condensed td {
  padding: 0.25em;
}

/**
 * Pure CSS responsive tables
 * Adds label to each cell using the [data-label] attribute
 * @link https://techblog.livingsocial.com/blog/2015/04/06/responsive-tables-in-pure-css/
 */
@media (max-width: 40em) {
  /* line 57, src/sass/components/_tables.scss */
  .table-responsive thead {
    display: none;
    visibility: hidden;
  }
  /* line 62, src/sass/components/_tables.scss */
  .table-responsive tr {
    border-top: 1px solid #ededed;
    display: block;
    padding: 0.5em;
  }
  /* line 68, src/sass/components/_tables.scss */
  .table-responsive td {
    border: 0;
    display: block;
    padding: 0.25em;
  }
  /* line 73, src/sass/components/_tables.scss */
  .table-responsive td:before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
  }
}

/**
 * @section Overrides
 * Nudge and tweak alignment, spacing, and visibility.
 */
/**
 * Text sizes
 */
/* line 11, src/sass/components/_overrides.scss */
.text-small {
  font-size: 0.9375em;
}

/* line 15, src/sass/components/_overrides.scss */
.text-large {
  font-size: 1.1875em;
  line-height: 1.4;
}

@media (min-width: 40em) {
  /* line 15, src/sass/components/_overrides.scss */
  .text-large {
    font-size: 1.3125em;
  }
}

/**
 * Text colors
 */
/* line 29, src/sass/components/_overrides.scss */
.text-muted {
  color: #808080;
}

/**
 * Text alignment
 */
/* line 38, src/sass/components/_overrides.scss */
.text-center {
  text-align: center;
}

/* line 42, src/sass/components/_overrides.scss */
.text-right {
  text-align: right;
}

/* line 46, src/sass/components/_overrides.scss */
.text-left {
  text-align: left;
}

@media (min-width: 40em) {
  /* line 51, src/sass/components/_overrides.scss */
  .text-right-medium {
    text-align: right;
  }
}

/**
 * Floats
 */
/* line 61, src/sass/components/_overrides.scss */
.float-left {
  float: left;
}

/* line 65, src/sass/components/_overrides.scss */
.float-center {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

/* line 71, src/sass/components/_overrides.scss */
.float-right {
  float: right;
}

/**
 * Margins
 */
/* line 80, src/sass/components/_overrides.scss */
.no-margin-top {
  margin-top: 0;
}

/* line 84, src/sass/components/_overrides.scss */
.no-margin-bottom {
  margin-bottom: 0;
}

/* line 88, src/sass/components/_overrides.scss */
.margin-top {
  margin-top: 1.5625em;
}

/* line 92, src/sass/components/_overrides.scss */
.margin-bottom {
  margin-bottom: 1.5625em;
}

/* line 96, src/sass/components/_overrides.scss */
.margin-bottom-small {
  margin-bottom: 0.5em;
}

/* line 100, src/sass/components/_overrides.scss */
.margin-bottom-large {
  margin-bottom: 2em;
}

/**
 * Padding
 */
/* line 109, src/sass/components/_overrides.scss */
.no-padding-top {
  padding-top: 0;
}

/* line 113, src/sass/components/_overrides.scss */
.no-padding-bottom {
  padding-bottom: 0;
}

/* line 117, src/sass/components/_overrides.scss */
.padding-top {
  padding-top: 1.5625em;
}

/* line 121, src/sass/components/_overrides.scss */
.padding-top-small {
  padding-top: 0.5em;
}

/* line 125, src/sass/components/_overrides.scss */
.padding-top-large {
  padding-top: 2em;
}

/* line 129, src/sass/components/_overrides.scss */
.padding-bottom {
  padding-bottom: 1.5625em;
}

/* line 133, src/sass/components/_overrides.scss */
.padding-bottom-small {
  padding-bottom: 0.5em;
}

/* line 137, src/sass/components/_overrides.scss */
.padding-bottom-large {
  padding-bottom: 2em;
}

/**
 * Visibility
 */
/**
 * Visually hide an element, but leave it available for screen readers
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
/* line 151, src/sass/components/_overrides.scss */
.screen-reader, .svg .icon-fallback-text {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
 * Extends the .screen-reader class to allow the element to be focusable when navigated to via the keyboard
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 * @link https://www.drupal.org/node/897638
 */
/* line 168, src/sass/components/_overrides.scss */
.screen-reader-focusable:active,
.screen-reader-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: normal;
  width: auto;
}

/**
 * @workaround
 * @affected IE 8/9/10
 * @link http://juicystudio.com/article/screen-readers-display-none.php
 */
/* line 184, src/sass/components/_overrides.scss */
[hidden], template {
  display: none;
  visibility: hidden;
}

/**
 * Contain floats
 * The space content is one way to avoid an Opera bug when the `contenteditable` attribute is included anywhere else in the document.
 * @link https://github.com/h5bp/html5-boilerplate/blob/master/dist/css/main.css
 */
/* line 196, src/sass/components/_overrides.scss */
.clearfix:before, .container:before,
.clearfix:after,
.container:after {
  display: table;
  content: " ";
}

/* line 202, src/sass/components/_overrides.scss */
.clearfix:after, .container:after {
  clear: both;
}

/**
 * @section Print
 * Styling for printed content. Adapted from HTML5BP.
 * @link http://html5boilerplate.com
 */
@media print {
  /**
	 * Universal selector.
	 * Reset all content to transparent background, black color, and remove box and text shadows.
	 */
  /* line 13, src/sass/components/_print.scss */
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /**
	 * Specifies page margin
	 */
  @page {
    margin: 0.5cm;
  }
  /**
	 * Underline all links
	 */
  /* line 30, src/sass/components/_print.scss */
  a, .link-block-styled,
  a:visited,
  .link-block-styled:visited {
    text-decoration: underline;
  }
  /**
	 * Show URL after links
	 */
  /* line 38, src/sass/components/_print.scss */
  a[href]:after, [href].link-block-styled:after {
    content: " (" attr(href) ")";
  }
  /**
	 * Don't show URL for internal links
	 */
  /* line 45, src/sass/components/_print.scss */
  a[href^="#"]:after, [href^="#"].link-block-styled:after {
    content: "";
  }
  /**
	 * Specifies the minimum number of lines to print at the top and bottom of a page.
	 */
  /* line 52, src/sass/components/_print.scss */
  p,
  h1, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  /**
	 * Avoid inserting a page break after headers
	 */
  /* line 61, src/sass/components/_print.scss */
  h1, h2, h3 {
    page-break-after: avoid;
  }
  /**
	 * Change border color on blockquotes and preformatted text.
	 * Avoid page breaks inside the content
	 */
  /* line 69, src/sass/components/_print.scss */
  pre,
  blockquote {
    border-color: #999;
    page-break-inside: avoid;
  }
  /**
	 * Displayed as a table header row group
	 */
  /* line 78, src/sass/components/_print.scss */
  thead {
    display: table-header-group;
  }
  /**
	 * Avoid inserting a page break inside table rows and images
	 */
  /* line 85, src/sass/components/_print.scss */
  tr,
  img {
    page-break-inside: avoid;
  }
}
