@charset "UTF-8";
.ember-modal-dialog {
  z-index: 51;
  position: fixed;
}

.ember-modal-dialog.emd-in-place {
  position: static;
}

.ember-modal-wrapper.emd-static.emd-wrapper-target-attachment-center .ember-modal-dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable.emd-wrapper-target-attachment-center .ember-modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ember-modal-wrapper.emd-animatable .ember-modal-dialog {
  position: relative;
}

.ember-modal-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

.ember-modal-dialog {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px #222;
  padding: 10px;
}

.ember-modal-overlay.translucent {
  background-color: rgba(128, 128, 128, 0.77);
}

/*
  Color variables
*/
/*
  Common Dimensions
*/
/*
  Custom fonts
*/
@font-face {
  font-family: "texgyreheros";
  src: url("fonts/texgyreheros-regular-webfont.eot");
  src: url("fonts/texgyreheros-regular-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/texgyreheros-regular-webfont.woff") format("woff"), url("fonts/texgyreheros-regular-webfont.ttf") format("truetype"), url("fonts/texgyreheros-regular-webfont.svg#texgyreherosregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "texgyreheros";
  src: url("fonts/texgyreheros-bold-webfont.eot");
  src: url("fonts/texgyreheros-bold-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/texgyreheros-bold-webfont.woff") format("woff"), url("fonts/texgyreheros-bold-webfont.ttf") format("truetype"), url("fonts/texgyreheros-bold-webfont.svg#texgyreherosbold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "texgyreheros";
  src: url("fonts/texgyreheros-italic-webfont.eot");
  src: url("fonts/texgyreheros-italic-webfont.eot?#iefix") format("embedded-opentype"), url("fonts/texgyreheros-italic-webfont.woff") format("woff"), url("fonts/texgyreheros-italic-webfont.ttf") format("truetype"), url("fonts/texgyreheros-italic-webfont.svg#texgyreherositalic") format("svg");
  font-weight: normal;
  font-style: italic;
}
/*
Font variables
*/
/*
Transition speeds
*/
/*
Z-Indexes
*/
/**
*  ================
*   BREAKPOINTS
*  ================
*
*  Declarative mixins to keep breakpoints consistent and easy to use.
*
*  ### USAGE: ###
*  .component {
*    display: inline-block;
*
*    @include tools.phone-only {
*      display: none;
*    }
*  }
*
*/
/**
 Btn-reset
*/
/**
  Clearfix
*/
/**
  *  ================
  *   CONTAINERS
  *  ================
  *
  *  Responsive containers used to create horizontally centered, consistently
  *  sized max-width wrapper elements.
  *
  *  ### ARGUMENTS ###
  *  $max-width: maximum width container can grow to on larger screens
  *  $gutter: amount of padding left and right of container on smaller screeens
  *
  *  ### USAGE: ###
  *  .page-content {
  *    @include tools.container();
  *  }
  *
  *  .modal {
  *    @include tools.container(600px, 20px);
  *  }
  *
  */
/**
  Text input
  */
/**
  Text Label
  */
/**
  Truncate string
  */
/**
*  ================
*   BOX-SIZING
*  ================
*
*  Set the global `box-sizing` state to `border-box`.
*
*  css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
*  paulirish.com/2012/box-sizing-border-box-ftw
*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*! normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
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.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Increase fontsize of input fields to 16px in iPhones
 * This prevents zooming in on input fields
*/
@media (max-width: 599px) {
  input {
    -webkit-text-size-adjust: 114%;
  }
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/**
*  ================
*   RESET
*  ================
*
*  Additional resets not covered by normalize.css
*/
body,
h1, h2, h3, h4, h5, h6,
blockquote, pre,
dl, dd,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

ul, ol {
  padding-left: 20px;
}

/**
*  ================
*   3. BASE
*  ================
*
*  Low-specificity layer for styling unclassed HTML elements. Should include
*  default styles for bare elements within the project that can be overridden by
*  layout / component / trumps styles.
*
*  NOTE: Base styles should not include any class selectors.
*/
/**
  Set placeholder colour.

  NOTE: DON'T combine these selectors. Will fail to apply the style if you do :)
*/
::-webkit-input-placeholder {
  color: #959595;
}

::-moz-placeholder {
  color: #959595;
}

:-ms-input-placeholder {
  color: #959595;
}

:-moz-placeholder {
  color: #959595;
}

/**
  Form elements
*/
html,
body {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  background: #fff;
}

/**
  Typography
*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 1.3;
  color: #434343;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration-skip: ink;
}

/**
*  ================
*   4. Layout
*  ================
*
*  Layout styles are selectors which define undecorated design patterns. Should
*  define layout patterns such as grid layouts, responsive containers, image
*  wrappers, particular list layouts etc.
*
*  Layout styles should define structure, not themes or decorative styling.
*
*  NOTE: Layout styles should be prefixed with the letter "l". Example:
*  `.l-grid`, `.l-row`, `.l-col-md-6` etc.
*
*/
/**
 Content areas
 */
.l-full-width-container .l-content-container {
  padding-top: 20px;
  box-sizing: content-box;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.l-full-width-container .l-content-container--landing {
  padding-top: 0;
}

.l-content-container {
  position: relative;
  z-index: 800;
}
@media (min-width: 900px) {
  .l-content-container {
    box-sizing: content-box;
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
  }
}

.l-content-container-cols {
  position: relative;
}
@media (max-width: 899px) {
  .l-content-container-cols {
    min-height: calc(100vh - 95px);
    padding-left: 40px;
  }
}
@media (min-width: 900px) {
  .l-content-container-cols {
    min-height: calc(100vh - 155px);
  }
  .l-content-container-cols:before {
    content: "";
    display: block;
    width: 300px;
    height: 100%;
    background-color: #f1f3f6;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.l-side-panel-container {
  float: left;
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 320px;
  height: 100%;
  overflow-y: auto;
  background-color: #f1f3f6;
}
@media (max-width: 899px) {
  .l-side-panel-container {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform 250ms ease;
  }
  .l-side-panel-container.l-side-panel-container--show {
    transform: translateX(0);
  }
}
@media (max-width: 599px) {
  .l-side-panel-container {
    max-width: none;
  }
}

.l-form-container {
  position: relative;
  z-index: 5;
  padding: 20px;
}
@media (min-width: 900px) {
  .l-form-container {
    float: left;
    width: calc(100% - 320px);
  }
}

.l-form-container-inner {
  max-width: 95%;
  margin: 0 0 0 5%;
  padding-bottom: 80px;
}

/*-----------------------------------------------------------------------*

  Grid system adapted from this grid boilerplate:
  https://github.com/Mango/ocssipital

  Changes made:
  - Line 158: negative margins added to container to fix gutters.

-------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------*/
/*

  WARNING:
  The code below is used to build the grid system according
  your settings. Editing is not necessary. Touch at your own risk.

*/
/*-----------------------------------------------------------------------*/
/*--------------------*/
/* PARSE SASS MAP     */
/*--------------------*/
/*--------------------*/
/* VARIABLES          */
/*--------------------*/
/*--------------------*/
/* VIEW CONSTRAINT    */
/*--------------------*/
/*--------------------*/
/* COLUMNS            */
/*--------------------*/
.l-grid:after {
  visibility: hidden;
  display: block;
  content: " ";
  clear: both;
  height: 0;
}

.l-grid {
  margin-left: -10px;
  margin-right: -10px;
}

[class*=l-grid__col] {
  float: left;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
}

.l-grid__col-1 {
  width: 8.3333333333%;
}

.l-grid__col--gap-left-1 {
  margin-left: 8.3333333333%;
}

.l-grid__col--gap-right-1 {
  margin-right: 8.3333333333%;
}

.l-grid__col-2 {
  width: 16.6666666667%;
}

.l-grid__col--gap-left-2 {
  margin-left: 16.6666666667%;
}

.l-grid__col--gap-right-2 {
  margin-right: 16.6666666667%;
}

.l-grid__col-3 {
  width: 25%;
}

.l-grid__col--gap-left-3 {
  margin-left: 25%;
}

.l-grid__col--gap-right-3 {
  margin-right: 25%;
}

.l-grid__col-4 {
  width: 33.3333333333%;
}

.l-grid__col--gap-left-4 {
  margin-left: 33.3333333333%;
}

.l-grid__col--gap-right-4 {
  margin-right: 33.3333333333%;
}

.l-grid__col-5 {
  width: 41.6666666667%;
}

.l-grid__col--gap-left-5 {
  margin-left: 41.6666666667%;
}

.l-grid__col--gap-right-5 {
  margin-right: 41.6666666667%;
}

.l-grid__col-6 {
  width: 50%;
}

.l-grid__col--gap-left-6 {
  margin-left: 50%;
}

.l-grid__col--gap-right-6 {
  margin-right: 50%;
}

.l-grid__col-7 {
  width: 58.3333333333%;
}

.l-grid__col--gap-left-7 {
  margin-left: 58.3333333333%;
}

.l-grid__col--gap-right-7 {
  margin-right: 58.3333333333%;
}

.l-grid__col-8 {
  width: 66.6666666667%;
}

.l-grid__col--gap-left-8 {
  margin-left: 66.6666666667%;
}

.l-grid__col--gap-right-8 {
  margin-right: 66.6666666667%;
}

.l-grid__col-9 {
  width: 75%;
}

.l-grid__col--gap-left-9 {
  margin-left: 75%;
}

.l-grid__col--gap-right-9 {
  margin-right: 75%;
}

.l-grid__col-10 {
  width: 83.3333333333%;
}

.l-grid__col--gap-left-10 {
  margin-left: 83.3333333333%;
}

.l-grid__col--gap-right-10 {
  margin-right: 83.3333333333%;
}

.l-grid__col-11 {
  width: 91.6666666667%;
}

.l-grid__col--gap-left-11 {
  margin-left: 91.6666666667%;
}

.l-grid__col--gap-right-11 {
  margin-right: 91.6666666667%;
}

.l-grid__col-12 {
  width: 100%;
}

.l-grid__col--gap-left-12 {
  margin-left: 100%;
}

.l-grid__col--gap-right-12 {
  margin-right: 100%;
}

.l-grid__col--visible-retina, .l-grid__col--visible-l, .l-grid__col--visible-m, .l-grid__col--visible-s {
  display: none;
}

@media only screen and (max-width: 599px) {
  .l-grid__col-1-s {
    width: 8.3333333333%;
  }
  .l-grid__col--gap-left-1-s {
    margin-left: 8.3333333333%;
  }
  .l-grid__col--gap-right-1-s {
    margin-right: 8.3333333333%;
  }
  .l-grid__col-2-s {
    width: 16.6666666667%;
  }
  .l-grid__col--gap-left-2-s {
    margin-left: 16.6666666667%;
  }
  .l-grid__col--gap-right-2-s {
    margin-right: 16.6666666667%;
  }
  .l-grid__col-3-s {
    width: 25%;
  }
  .l-grid__col--gap-left-3-s {
    margin-left: 25%;
  }
  .l-grid__col--gap-right-3-s {
    margin-right: 25%;
  }
  .l-grid__col-4-s {
    width: 33.3333333333%;
  }
  .l-grid__col--gap-left-4-s {
    margin-left: 33.3333333333%;
  }
  .l-grid__col--gap-right-4-s {
    margin-right: 33.3333333333%;
  }
  .l-grid__col-5-s {
    width: 41.6666666667%;
  }
  .l-grid__col--gap-left-5-s {
    margin-left: 41.6666666667%;
  }
  .l-grid__col--gap-right-5-s {
    margin-right: 41.6666666667%;
  }
  .l-grid__col-6-s {
    width: 50%;
  }
  .l-grid__col--gap-left-6-s {
    margin-left: 50%;
  }
  .l-grid__col--gap-right-6-s {
    margin-right: 50%;
  }
  .l-grid__col-7-s {
    width: 58.3333333333%;
  }
  .l-grid__col--gap-left-7-s {
    margin-left: 58.3333333333%;
  }
  .l-grid__col--gap-right-7-s {
    margin-right: 58.3333333333%;
  }
  .l-grid__col-8-s {
    width: 66.6666666667%;
  }
  .l-grid__col--gap-left-8-s {
    margin-left: 66.6666666667%;
  }
  .l-grid__col--gap-right-8-s {
    margin-right: 66.6666666667%;
  }
  .l-grid__col-9-s {
    width: 75%;
  }
  .l-grid__col--gap-left-9-s {
    margin-left: 75%;
  }
  .l-grid__col--gap-right-9-s {
    margin-right: 75%;
  }
  .l-grid__col-10-s {
    width: 83.3333333333%;
  }
  .l-grid__col--gap-left-10-s {
    margin-left: 83.3333333333%;
  }
  .l-grid__col--gap-right-10-s {
    margin-right: 83.3333333333%;
  }
  .l-grid__col-11-s {
    width: 91.6666666667%;
  }
  .l-grid__col--gap-left-11-s {
    margin-left: 91.6666666667%;
  }
  .l-grid__col--gap-right-11-s {
    margin-right: 91.6666666667%;
  }
  .l-grid__col-12-s {
    width: 100%;
  }
  .l-grid__col--gap-left-12-s {
    margin-left: 100%;
  }
  .l-grid__col--gap-right-12-s {
    margin-right: 100%;
  }
  .l-grid__col--visible-s {
    display: block;
  }
}
@media only screen and (min-width: 600px) and (max-width: 899px) {
  .l-grid__col-1-m {
    width: 8.3333333333%;
  }
  .l-grid__col--gap-left-1-m {
    margin-left: 8.3333333333%;
  }
  .l-grid__col--gap-right-1-m {
    margin-right: 8.3333333333%;
  }
  .l-grid__col-2-m {
    width: 16.6666666667%;
  }
  .l-grid__col--gap-left-2-m {
    margin-left: 16.6666666667%;
  }
  .l-grid__col--gap-right-2-m {
    margin-right: 16.6666666667%;
  }
  .l-grid__col-3-m {
    width: 25%;
  }
  .l-grid__col--gap-left-3-m {
    margin-left: 25%;
  }
  .l-grid__col--gap-right-3-m {
    margin-right: 25%;
  }
  .l-grid__col-4-m {
    width: 33.3333333333%;
  }
  .l-grid__col--gap-left-4-m {
    margin-left: 33.3333333333%;
  }
  .l-grid__col--gap-right-4-m {
    margin-right: 33.3333333333%;
  }
  .l-grid__col-5-m {
    width: 41.6666666667%;
  }
  .l-grid__col--gap-left-5-m {
    margin-left: 41.6666666667%;
  }
  .l-grid__col--gap-right-5-m {
    margin-right: 41.6666666667%;
  }
  .l-grid__col-6-m {
    width: 50%;
  }
  .l-grid__col--gap-left-6-m {
    margin-left: 50%;
  }
  .l-grid__col--gap-right-6-m {
    margin-right: 50%;
  }
  .l-grid__col-7-m {
    width: 58.3333333333%;
  }
  .l-grid__col--gap-left-7-m {
    margin-left: 58.3333333333%;
  }
  .l-grid__col--gap-right-7-m {
    margin-right: 58.3333333333%;
  }
  .l-grid__col-8-m {
    width: 66.6666666667%;
  }
  .l-grid__col--gap-left-8-m {
    margin-left: 66.6666666667%;
  }
  .l-grid__col--gap-right-8-m {
    margin-right: 66.6666666667%;
  }
  .l-grid__col-9-m {
    width: 75%;
  }
  .l-grid__col--gap-left-9-m {
    margin-left: 75%;
  }
  .l-grid__col--gap-right-9-m {
    margin-right: 75%;
  }
  .l-grid__col-10-m {
    width: 83.3333333333%;
  }
  .l-grid__col--gap-left-10-m {
    margin-left: 83.3333333333%;
  }
  .l-grid__col--gap-right-10-m {
    margin-right: 83.3333333333%;
  }
  .l-grid__col-11-m {
    width: 91.6666666667%;
  }
  .l-grid__col--gap-left-11-m {
    margin-left: 91.6666666667%;
  }
  .l-grid__col--gap-right-11-m {
    margin-right: 91.6666666667%;
  }
  .l-grid__col-12-m {
    width: 100%;
  }
  .l-grid__col--gap-left-12-m {
    margin-left: 100%;
  }
  .l-grid__col--gap-right-12-m {
    margin-right: 100%;
  }
  .l-grid__col--visible-m {
    display: block;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1200px) {
  .l-grid__col-1-l {
    width: 8.3333333333%;
  }
  .l-grid__col--gap-left-1-l {
    margin-left: 8.3333333333%;
  }
  .l-grid__col--gap-right-1-l {
    margin-right: 8.3333333333%;
  }
  .l-grid__col-2-l {
    width: 16.6666666667%;
  }
  .l-grid__col--gap-left-2-l {
    margin-left: 16.6666666667%;
  }
  .l-grid__col--gap-right-2-l {
    margin-right: 16.6666666667%;
  }
  .l-grid__col-3-l {
    width: 25%;
  }
  .l-grid__col--gap-left-3-l {
    margin-left: 25%;
  }
  .l-grid__col--gap-right-3-l {
    margin-right: 25%;
  }
  .l-grid__col-4-l {
    width: 33.3333333333%;
  }
  .l-grid__col--gap-left-4-l {
    margin-left: 33.3333333333%;
  }
  .l-grid__col--gap-right-4-l {
    margin-right: 33.3333333333%;
  }
  .l-grid__col-5-l {
    width: 41.6666666667%;
  }
  .l-grid__col--gap-left-5-l {
    margin-left: 41.6666666667%;
  }
  .l-grid__col--gap-right-5-l {
    margin-right: 41.6666666667%;
  }
  .l-grid__col-6-l {
    width: 50%;
  }
  .l-grid__col--gap-left-6-l {
    margin-left: 50%;
  }
  .l-grid__col--gap-right-6-l {
    margin-right: 50%;
  }
  .l-grid__col-7-l {
    width: 58.3333333333%;
  }
  .l-grid__col--gap-left-7-l {
    margin-left: 58.3333333333%;
  }
  .l-grid__col--gap-right-7-l {
    margin-right: 58.3333333333%;
  }
  .l-grid__col-8-l {
    width: 66.6666666667%;
  }
  .l-grid__col--gap-left-8-l {
    margin-left: 66.6666666667%;
  }
  .l-grid__col--gap-right-8-l {
    margin-right: 66.6666666667%;
  }
  .l-grid__col-9-l {
    width: 75%;
  }
  .l-grid__col--gap-left-9-l {
    margin-left: 75%;
  }
  .l-grid__col--gap-right-9-l {
    margin-right: 75%;
  }
  .l-grid__col-10-l {
    width: 83.3333333333%;
  }
  .l-grid__col--gap-left-10-l {
    margin-left: 83.3333333333%;
  }
  .l-grid__col--gap-right-10-l {
    margin-right: 83.3333333333%;
  }
  .l-grid__col-11-l {
    width: 91.6666666667%;
  }
  .l-grid__col--gap-left-11-l {
    margin-left: 91.6666666667%;
  }
  .l-grid__col--gap-right-11-l {
    margin-right: 91.6666666667%;
  }
  .l-grid__col-12-l {
    width: 100%;
  }
  .l-grid__col--gap-left-12-l {
    margin-left: 100%;
  }
  .l-grid__col--gap-right-12-l {
    margin-right: 100%;
  }
  .l-grid__col--visible-l {
    display: block;
  }
}
/*--------------------*/
/* EXTERNAL MIXINS    */
/*--------------------*/
/**
 Numbered wrapper
 */
.l-numbered-wrapper {
  margin: 0 0 20px 0;
}
.l-numbered-wrapper:after {
  content: "";
  display: table;
  clear: both;
}

.l-numbered-wrapper__number {
  float: left;
  min-width: 30px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
}

.l-numbered-wrapper__content {
  float: left;
  width: calc(100% - 30px);
}
.l-numbered-wrapper__content .c-view-text {
  margin: 0;
  max-width: calc(650px - 30px);
}

/**
  Repeatable section wrapper
  */
.l-section-wrapper {
  margin: 35px 0;
}
.l-section-wrapper .l-section-wrapper {
  margin: 0;
}

.l-section-wrapper--empty {
  display: none;
}

/**
  Section container
  */
.l-section-container {
  margin-bottom: 40px;
}

.l-section-container--reduced-vert-space {
  margin-bottom: 20px;
}

.l-section-container--text-align-right {
  text-align: right;
}

/**
*  ================
*   5. COMPONENTS
*  ================
*
*  Styling for specific UI components. Should use BEM naming convention.
*
*  NOTE: Component styles should be prefixed with the letter "c".
*  Example: `.c-card`, `.c-card__title`, `.c-card--wide` etc.
*
*/
.c-actions-bar {
  position: fixed;
  z-index: 1000;
  right: 20px;
  bottom: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 5px 5px 0 0;
  border: 1px solid #EBEBEB;
  background-color: #f1f3f6;
  /*
   * Once content area reaches max-width, position actions
   * bar at right edge of content area:
   */
}
@media (min-width: 1440px) {
  .c-actions-bar {
    right: 50%;
    margin-right: -700px;
  }
}

.c-actions-bar__content {
  box-sizing: content-box;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}

.c-actions-bar__actions {
  text-align: right;
}

.c-actions-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 320px;
  border-radius: 3px 3px 0 0;
  background-color: #008650;
  color: #fff;
  z-index: 1050;
  transform: translateY(100%);
  transition: transform 300ms ease;
  /*
   * Once content area reaches max-width, position actions
   * menu at left edge of content area:
   */
}
@media (max-width: 599px) {
  .c-actions-menu {
    max-width: none;
  }
}
@media (min-width: 900px) {
  .c-actions-menu {
    left: 20px;
    max-width: calc(320px - 20px);
    transform: translateY(calc(100% - 43px));
  }
}
@media screen and (min-width: 900px) and (-ms-high-contrast: active), (min-width: 900px) and (-ms-high-contrast: none) {
  .c-actions-menu {
    transform: translateY(100%) translateY(-43px);
  }
}
@media (min-width: 1440px) {
  .c-actions-menu {
    left: 50%;
    margin-left: -700px;
  }
}

.c-actions-menu--open {
  transform: translateY(0);
}

._hide-overflow .c-actions-menu {
  transform: translateY(calc(100% - 43px));
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  ._hide-overflow .c-actions-menu {
    transform: translateY(100%) translateY(-43px);
  }
}
._hide-overflow .c-actions-menu.c-actions-menu--open {
  transform: translateY(0);
}

.c-actions-menu__header {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: block;
  padding: 10px 17px;
  width: 100%;
  font-weight: 700;
  cursor: pointer;
}
.c-actions-menu__header:hover {
  background: none;
}
.c-actions-menu__header:focus {
  outline: none;
}
.c-actions-menu__header:after {
  content: "";
  display: table;
  clear: both;
}

.c-actions-menu__heading {
  float: left;
  max-width: 80%;
}

.c-actions-menu__heading-icon {
  margin-right: 5px;
}

.c-actions-menu__heading-text {
  display: inline-block;
  vertical-align: middle;
}

.c-actions-menu__toggle-btn {
  float: right;
  padding: 4px 0 4px 4px;
  line-height: 1;
  cursor: pointer;
}

.c-actions-menu__menu-items {
  padding: 20px 28px;
}

.c-actions-menu__disabled {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  text-align: left;
  opacity: 0.6;
}
.c-actions-menu__disabled:hover {
  background: none;
}

.c-actions-menu__link {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
}
.c-actions-menu__link:hover {
  background: none;
}

.c-actions-menu__link-icon {
  float: left;
  margin-right: 7px;
}

.c-actions-menu__link-text {
  float: left;
  width: calc(100% - 25px);
  line-height: 1.2;
  font-weight: 700;
  text-decoration: underline;
}

.c-actions-menu__disabled-text {
  float: left;
  width: calc(100% - 25px);
  line-height: 1.2;
  font-weight: 700;
}

.c-actions-menu__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.c-actions-menu__select {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
  height: 36px;
  line-height: 36px;
  margin-bottom: 10px;
}

.c-cta {
  border-radius: 2px;
  margin: 10px 0 30px 0;
}
@media (min-width: 600px) {
  .c-cta {
    background-color: #f1f3f6;
  }
}

.c-cta__heading {
  float: left;
  padding: 19px 20px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 599px) {
  .c-cta__heading {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-cta__heading {
    font-size: 2rem;
    padding: 16px 20px;
  }
}

.c-cta__btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: block;
  padding: 11px 25px;
  border-radius: 2px;
  background-color: #008650;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 300ms ease;
}
.c-cta__btn:hover {
  background: none;
}
.c-cta__btn:hover {
  background-color: #00a355;
}
@media (min-width: 600px) {
  .c-cta__btn {
    float: right;
  }
}

.c-cta__btn-text,
.c-cta__btn-icon {
  display: inline-block;
  vertical-align: middle;
}

.c-cta__btn-icon {
  margin-right: 5px;
}

.c-filters {
  margin: 10px 0 10px 0;
  width: 100vw;
}
@media (max-width: 599px) {
  .c-filters {
    margin-top: 0px;
    width: unset;
  }
}

.c-filters__label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 10px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6d6d6d;
}

.c-filters__filter {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px 10px 0;
  padding: 5px 13px;
  background-color: #fff;
  border: 1px solid #D5D5D5;
  color: #6d6d6d;
  border-radius: 2px;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 599px) {
  .c-filters__filter {
    display: block;
    width: 100%;
  }
}

.c-filters__filter--active {
  background-color: #008650;
  border-color: #008650;
  color: #fff;
}

.c-pagination {
  display: inline-block;
  vertical-align: middle;
  margin: 30px 0 0 0;
}

.c-pagination__pages {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  padding: 0;
  margin: 0 15px;
}

.c-pagination__page-item {
  display: inline-block;
  vertical-align: middle;
}

.c-pagination__arrow-btn {
  padding: 9px;
  border-radius: 2px;
  border: none;
  background-color: #008650;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2), inset 0 -2px 0 0 rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 300ms ease;
}
.c-pagination__arrow-btn:hover {
  background-color: #00a355;
}

.c-pagination__arrow-btn--disabled {
  background-color: #e7e7e7;
  color: #959595;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.14);
  cursor: default;
  outline: none;
  pointer-events: none;
}
.c-pagination__arrow-btn--disabled:hover {
  background-color: #e7e7e7;
}

.c-pagination__pages {
  border: 1px solid #D5D5D5;
  border-radius: 2px;
}
.c-pagination__pages:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 599px) {
  .c-pagination__pages {
    display: none;
  }
}

.c-pagination__page-item {
  float: left;
  border-left: 1px solid #D5D5D5;
}
.c-pagination__page-item:first-child {
  border-left: none;
}
.c-pagination__page-item:first-child .c-pagination__page-btn:hover:before,
.c-pagination__page-item:first-child .c-pagination__page-btn--active:before {
  border-radius: 2px 0 0 2px;
}
.c-pagination__page-item:last-child .c-pagination__page-btn:hover:before, .c-pagination__page-item:last-child .c-pagination__page-btn--active:before {
  border-radius: 0 2px 2px 0;
}

.c-pagination__page-btn {
  display: block;
  position: relative;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  line-height: 34px;
  text-align: center;
  cursor: pointer;
  transition: all 150ms ease;
}
.c-pagination__page-btn:hover, .c-pagination__page-btn.c-pagination__page-btn--active {
  background-color: #008650;
  color: #fff;
  font-weight: 700;
}
.c-pagination__page-btn:hover:before, .c-pagination__page-btn.c-pagination__page-btn--active:before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  border: 1px solid #008650;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.c-pagination__page-btn:hover .c-pagination__page-btn-icon {
  fill: #fff;
}

.c-pagination__page-btn-icon {
  fill: #000;
}

.c-pagination__goto-page-form {
  display: inline-block;
  margin-left: 20px;
}

.c-pagination__goto-page-input {
  display: inline-block;
  width: 100%;
  max-width: 75px;
  padding: 6px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
  vertical-align: middle;
}

.c-primary-action {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 16px;
  border-radius: 2px;
  border: none;
  background-color: #008650;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2), inset 0 -2px 0 0 rgba(0, 0, 0, 0.14);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: all 300ms ease;
}
.c-primary-action:hover {
  background-color: #00a355;
}
.c-primary-action:disabled, .c-primary-action.c-primary-action--disabled {
  background-color: #e7e7e7;
  color: #959595;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.14);
  cursor: default;
}
.c-primary-action.c-primary-action--inverted {
  background-color: #00a355;
}
.c-primary-action.c-primary-action--inverted:hover {
  background-color: #008650;
}
@media (max-width: 599px) {
  .c-primary-action {
    font-size: 1.2rem;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.c-primary-action--listed-right {
  margin-left: 6px;
}
@media (max-width: 599px) {
  .c-primary-action--listed-right {
    margin-left: 3px;
  }
}

.c-primary-action--listed-left {
  margin-right: 6px;
}
@media (max-width: 599px) {
  .c-primary-action--listed-left {
    margin-right: 3px;
  }
}

.c-primary-action--listed-vertically {
  display: block;
  margin-bottom: 5px;
}

.c-primary-action--icon-square-small {
  padding: 0;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
}

.c-primary-action--icon-square {
  padding: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

.c-primary-action__supplementary-text {
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}

.c-primary-action__text-right {
  line-height: 20px;
  margin-left: 6px;
}

.c-results-config {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 599px) {
  .c-results-config {
    flex-wrap: wrap;
  }
}

@media (max-width: 599px) {
  .c-results-config__options {
    margin-bottom: 20px;
  }
}

.c-results-config__actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}
@media (max-width: 599px) {
  .c-results-config__actions {
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
.c-results-config__actions :not(:last-child) {
  padding-right: 10px;
}

.c-secondary-action {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  font-size: 1.3rem;
  line-height: 1.1;
  color: #008650;
  text-decoration: underline;
  cursor: pointer;
  transition: color 300ms ease;
}
.c-secondary-action:hover {
  background: none;
}
.c-secondary-action:hover {
  color: #00a355;
}
.c-secondary-action:disabled,
.c-secondary-action .disabeld {
  pointer-events: none;
  color: #959595;
  cursor: default;
}
@media (max-width: 599px) {
  .c-secondary-action {
    font-size: 1.2rem;
  }
}

.c-secondary-action--emphasised {
  font-weight: 700;
}

.c-secondary-action--listed-right {
  padding-left: 0;
  padding-right: 5px;
}

@media (max-width: 599px) {
  .c-secondary-action__desktop-only-text {
    display: none;
  }
}

@media (max-width: 599px) {
  .c-primary-action--trim-text-on-mob {
    text-transform: capitalize;
  }
}

.c-secondary-action--has-icon {
  text-decoration: none;
}

.c-secondary-action__icon,
.c-secondary-action__text {
  display: inline-block;
  vertical-align: middle;
}

.c-secondary-action__icon {
  margin-right: 5px;
}

.c-secondary-action__text {
  text-decoration: underline;
}

.c-alert-card {
  position: relative;
  padding: 16px;
  color: #434343;
  background-color: #f1f3f6;
  border-top: 1px solid #f1f3f6;
  border-bottom: 1px solid #d5d5d5;
  cursor: pointer;
  transition: background-color 250ms ease;
}
.c-alert-card:hover {
  background-color: #fff;
}

.c-alert-card__dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #8f8f8f;
  cursor: pointer;
}

.c-alert-card__status {
  float: left;
  position: relative;
  width: 50px;
  padding-top: 25px;
  margin-right: 10px;
  text-align: center;
}

.c-alert-card__pill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.c-alert-card__icon {
  color: #E26521;
}

.c-alert-card__content {
  float: left;
  width: calc(100% - 60px);
}

.c-alert-card__heading {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 5px 0;
}

.c-alert-card__description {
  font-size: 1.2rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.c-alert-card__age {
  float: left;
  font-size: 1.2rem;
  line-height: 1;
  color: rgba(67, 67, 67, 0.7);
}

.c-alert-card__action {
  float: right;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  color: #008650;
  text-decoration: underline;
  cursor: pointer;
}

.flash-message__wrapper {
  position: fixed;
  z-index: 5000;
  bottom: 100%;
  left: 0;
  width: 100%;
  padding: 21px 0;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  transform: translateY(100%);
  animation-name: animateIn;
  animation-duration: 300ms;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  animation-iteration-count: 1;
}
.flash-message__wrapper.exiting {
  opacity: 0;
  animation-name: animateOut;
  animation-duration: 500ms;
  animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  animation-iteration-count: 1;
}
.flash-message__wrapper.alert-success {
  background: #00a355;
}
.flash-message__wrapper.alert-success .flash-message__icon {
  color: #00a355;
}
.flash-message__wrapper.alert-danger {
  background: #D50010;
}
.flash-message__wrapper.alert-danger .flash-message__icon {
  color: #D50010;
}
.flash-message__wrapper.alert-warning {
  background: #F9D300;
  color: #635400;
}
.flash-message__wrapper.alert-warning .flash-message__icon {
  color: #635400;
}
.flash-message__wrapper.alert-info {
  background: #0AB8EF;
}
.flash-message__wrapper.alert-info .flash-message__icon {
  color: #0AB8EF;
}

.flash-message__content {
  box-sizing: content-box;
  max-width: 1400px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

.flash-message__icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  line-height: 26px !important;
  border-radius: 100%;
  background: #fff;
  text-align: center;
}
.flash-message__icon svg {
  display: inline-block;
  vertical-align: middle;
}

.flash-message__text {
  display: inline-block;
  vertical-align: middle;
}

.flash-message__dismiss {
  cursor: pointer;
  float: right;
  line-height: 30px;
}

@keyframes animateIn {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes animateOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-loading-spinner {
  display: block;
  text-align: center;
}

.c-loading-spinner__min-height-container {
  position: relative;
  min-height: 200px;
}

.c-loading-spinner--display-inline {
  display: inline-block;
}

.c-loading-spinner--center-in-parent {
  position: absolute;
  top: 50%;
  left: 50%;
}

.c-loading-spinner--center-in-viewport {
  position: fixed;
  top: 50vh;
  left: 50vw;
}

.c-loading-spinner--center-in-viewport,
.c-loading-spinner--center-in-parent {
  margin-top: -25px;
  margin-left: -25px;
}

.c-loading-spinner__svg {
  width: 50px;
  height: 50px;
}

.c-loading-spinner--small.c-loading-spinner--center-in-viewport, .c-loading-spinner--small.c-loading-spinner--center-in-parent {
  margin-top: -12.5px;
  margin-left: -12.5px;
}
.c-loading-spinner--small .c-loading-spinner__svg {
  width: 25px;
  height: 25px;
}

.c-loading-spinner--tiny.c-loading-spinner--center-in-viewport, .c-loading-spinner--tiny.c-loading-spinner--center-in-parent {
  margin-top: -6.25px;
  margin-left: -6.25px;
}
.c-loading-spinner--tiny .c-loading-spinner__svg {
  width: 12.5px;
  height: 12.5px;
}

.c-loading-spinner__path {
  fill: #86bfa4;
}

.c-message {
  margin: 20px 0;
  border-radius: 2px;
  color: #434343;
  font-size: 1.4rem;
}

.c-message a,
.c-message__link {
  color: #008650;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 300ms ease;
}
.c-message a:hover,
.c-message__link:hover {
  color: #00a355;
}

.c-modal__overlay,
.c-modal__overlay.translucent {
  background-color: rgba(38, 42, 44, 0.8);
  z-index: 1200;
}

.c-modal__dialog {
  width: 90%;
  max-width: 690px;
  max-height: 90vh;
  padding: 0;
  border-radius: 3px;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.c-modal__close {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.c-modal__close:hover {
  background: none;
}

.c-modal-content__header {
  padding: 20px 50px 20px 20px;
  border-bottom: 1px solid #E4E4E4;
}
@media (min-width: 768px) {
  .c-modal-content__header {
    padding: 40px 55px;
  }
}

.c-modal-content__heading {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .c-modal-content__heading {
    font-size: 2.8rem;
  }
}

.c-modal-content__body-content {
  padding: 20px;
  background: #F1F3F6;
}
@media (min-width: 768px) {
  .c-modal-content__body-content {
    padding: 30px 55px 35px 55px;
  }
}

.c-modal-content__actions {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 599px) {
  .c-modal-content__actions {
    margin-top: 20px;
  }
  .c-modal-content__actions .c-primary-action--listed-right,
  .c-modal-content__actions .c-secondary-action--listed-right {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
  }
  .c-modal-content__actions .c-secondary-action--listed-right {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.c-status-pill {
  display: inline-block;
  vertical-align: middle;
  padding: 2px 10px 4px 10px;
  border-radius: 100px;
  background-color: #e1e1e1;
  color: #434343;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}

.c-status-pill--draft {
  background-color: #565656;
  color: #fff;
}

.c-status-pill--alert {
  background-color: #E26521;
  color: #fff;
}

.c-status-pill--warning {
  background-color: #F9D300;
}

.c-status-pill--error {
  background-color: #D50010;
  color: #fff;
}

.c-status-pill--success {
  background-color: #00a355;
  color: #fff;
}

.c-status-pill--info {
  background-color: #0AB8EF;
  color: #fff;
}

/*
  Large style of status pill
  (may need to allow for alternative colours in future)
*/
.c-status-pill--large {
  padding: 6px 10px;
  font-size: 1.4rem;
  line-height: 1;
  background-color: #fff;
  color: #008650;
  border: 2px solid #008650;
  border-radius: 100px;
}

/*
  Pill with icon inside it
*/
.c-status-pill__icon {
  margin-right: 2px;
}

.c-status-pill__icon,
.c-status-pill__text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.c-form-checkable-group {
  margin: 20px 0;
}

.c-form-checkable-group__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-checkable-group__label-text {
  display: inline-block;
  vertical-align: middle;
}

.c-form-checkable-group__individual-field {
  margin: 12px 0;
}

.c-form-checkable-group__field-input {
  float: left;
  margin: 4px 10px 0 0;
}

.c-form-checkable-group__field-label {
  float: left;
  max-width: calc(100% - 30px);
  color: #000;
  font-size: 1.4rem;
  line-height: 1.4;
  cursor: pointer;
}

.c-form-checkable-group__field-label--disabled {
  float: left;
  max-width: calc(100% - 30px);
  color: #959595;
  font-size: 1.4rem;
  line-height: 1.4;
  cursor: pointer;
}

.c-form-checkable-group__field-label-text {
  cursor: pointer;
}

.c-form-date-field {
  margin: 20px 0;
}

.c-form-date-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-date-field__label-text {
  display: inline-block;
  vertical-align: middle;
}

.c-form-date-field__input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
}
.c-form-date-field__input--small {
  padding-right: 1px;
}

.ember-basic-dropdown-content {
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
}

.ember-power-calendar-days, .ember-power-calendar-nav {
  width: 240px;
  margin: 8px;
}

.ember-power-calendar-nav-control--previous {
  display: block;
  cursor: pointer;
  position: relative;
  outline: 0;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
}

.ember-power-calendar-nav-control--next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: 0;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: 0.5;
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
}

.ember-power-calendar-nav-title {
  display: inline-block;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
}

.ember-power-calendar-weekday {
  font-size: 12px;
  padding: 5px;
}

.ember-power-calendar-day {
  text-align: center;
  background-color: transparent;
  color: #6d6d6d;
  padding: 5px;
  font-size: 12px;
}
.ember-power-calendar-day:hover {
  background-color: #86bfa4;
  border-radius: 0;
  font-weight: 700;
}

.ember-power-calendar-day--selected {
  color: #008650;
}

/*
  Styling used for repeatable field groups (which can be nested one level deep).

  Bit hacky in that it has to rely on nested selectors to work with dynamic
  form elements. Some element ordering/structure is also not as you'd expect
  but is required to display nested sections correctly.

  Structure is as follows:
  .c-field-group
    .c-field-group__content
      .c-field-group__section
        .c-field-group__label
        <section contents>
        <nested section> (repeats pattern)
*/
/*
  Only repeating sections should have this styling applied (section component
  is used else where for non-aesthetic purposes).
*/
.l-repeatable-section-wrapper .c-field-group {
  margin: 20px 0;
}
.l-repeatable-section-wrapper .c-field-group .c-field-group {
  margin: 0;
}
.l-repeatable-section-wrapper .c-field-group__content {
  width: 100%;
  clear: both;
  max-width: 650px;
  margin-bottom: 16px;
  padding-top: 30px;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__content {
  padding-top: 0;
  margin-bottom: 0;
}
.l-repeatable-section-wrapper .c-field-group__label {
  position: absolute;
  bottom: 100%;
  left: -1px;
  padding: 7px 30px 7px 16px;
  border: 1px solid #E1E1E1;
  border-radius: 3px 3px 0 0;
  border-bottom: none;
  background-color: #EEEEEE;
  color: #525557;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.l-repeatable-section-wrapper .c-field-group__delete-btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  position: absolute;
  right: 10px;
  top: 5px;
  z-index: 10;
  line-height: 1;
  cursor: pointer;
}
.l-repeatable-section-wrapper .c-field-group__delete-btn:hover {
  background: none;
}
.l-repeatable-section-wrapper .c-field-group__delete-btn svg {
  display: block;
}
.l-repeatable-section-wrapper .c-field-group .c-field-group .c-field-group__label {
  position: static;
  margin-bottom: 10px;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  color: #333333;
  font-size: 1.2rem;
}
.l-repeatable-section-wrapper .c-field-group__label-text {
  display: inline-block;
  vertical-align: middle;
}
.l-repeatable-section-wrapper .c-field-group .c-field-group .c-field-group__delete-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.l-repeatable-section-wrapper .c-field-group__add-btn-icon {
  display: none;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  color: #008650;
  margin-bottom: 5px;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn:hover {
  background: none;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn-icon {
  margin-right: 5px;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn-text {
  text-decoration: underline;
}
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn-icon,
.l-repeatable-section-wrapper .c-field-group__content .c-field-group__add-btn-text {
  display: inline-block;
  vertical-align: middle;
}
.l-repeatable-section-wrapper .c-field-group__section {
  padding: 0 16px 16px 16px;
  border: 1px solid #E1E1E1;
  border-radius: 2px;
  position: relative;
}
.l-repeatable-section-wrapper .c-field-group__section .c-sub-heading {
  margin: 10px 0 20px 0;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section {
  border: none;
  padding: 0;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .c-field-group__label,
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .c-sub-heading {
  margin: 10px 0 20px 0;
  padding-top: 20px;
  position: relative;
  z-index: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .c-field-group__label:before,
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .c-sub-heading:before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  width: calc(100% + 16px + 16px);
  height: 1px;
  border-top: 1px solid #E1E1E1;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper {
  margin-top: 10px;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section {
  background-color: #F1F3F6;
  border: none;
  margin-bottom: 20px;
  padding: 16px;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section .c-field-group__label,
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section .c-sub-heading {
  font-size: 1.4rem;
  margin: 0;
  padding-top: 0;
  padding-right: 20px;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section .c-field-group__label:before,
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section .c-sub-heading:before {
  content: none;
}
.l-repeatable-section-wrapper .c-field-group__section .c-field-group__section .l-repeatable-section-wrapper .c-field-group__section .c-field-group__section {
  padding: 16px 0 0 0;
}

/*
  Prevent excess spacing above section when first element in form
*/
.l-form-container-inner > .ember-view > :first-child {
  margin-top: 0;
  padding-top: 0;
}

.c-form-upload-field {
  margin: 20px 0;
}

.c-form-upload-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-upload-field__button {
  margin-right: 10px;
}

.c-form-upload-field__message {
  display: inline-block;
  vertical-align: middle;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1;
  color: #000;
}

.c-file__upload-status-text {
  font-size: 1.3rem;
  line-height: 32px;
}

.c-form-upload-field__container {
  min-height: 32px;
}

.c-inline-help {
  max-width: 650px;
  margin: 20px 0;
  padding: 0 13px;
  border-left: 3px solid #86bfa4;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #6d6d6d;
}
.c-inline-help p {
  margin: 10px 0;
  text-align: justify;
}

.c-inline-help__full-width {
  max-width: unset;
}

.c-inline-warning {
  max-width: 650px;
  margin: 5px 0 20px 0;
  padding: 0 13px;
  border-left: 3px solid #F9D300;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #6d6d6d;
}

.c-form-location-field {
  margin: 20px 0;
  max-width: 650px;
}

.c-form-location-field__inputs {
  margin-bottom: 10px;
}
.c-form-location-field__inputs:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 600px) {
  .c-form-location-field__input {
    float: left;
    width: 48%;
  }
  .c-form-location-field__input .c-form-text-field {
    margin: 0;
  }
}

@media (min-width: 600px) {
  .c-form-location-field__input--easting {
    margin-right: 4%;
  }
}

.c-view-location {
  margin: 20px 0;
}

.c-view-location__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #434343;
}

.c-view-location__value {
  font-size: 1.4rem;
  line-height: 1.4;
  background: #f1f3f6;
  border-radius: 2px;
  padding: 10px;
}

@media (min-width: 600px) {
  .c-view-location__coord {
    float: left;
    min-width: 150px;
  }
}

@media (max-width: 599px) {
  .c-view-location__coord--easting {
    margin-bottom: 16px;
  }
}
@media (min-width: 600px) {
  .c-view-location__coord--easting {
    margin-right: 30px;
  }
}

.c-orderable-field {
  margin-bottom: 20px;
  position: relative;
  padding: 0 45px 0 0;
}
@media (max-width: 599px) {
  .c-orderable-field {
    padding: 0;
  }
}

.c-orderable-field--has-number {
  padding-left: 30px;
}
@media (max-width: 599px) {
  .c-orderable-field--has-number {
    padding-left: 0;
  }
}

.c-orderable-field__field-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 599px) {
  .c-orderable-field__field-number {
    display: none;
  }
}

.c-orderable-field__actions {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 599px) {
  .c-orderable-field__actions {
    display: none;
  }
}

.c-orderable-field__mobile-only-actions {
  display: none;
}
@media (max-width: 599px) {
  .c-orderable-field__mobile-only-actions {
    display: block;
    position: absolute;
    bottom: 14px;
    right: 14px;
  }
}

.c-orderable-field__field-container {
  position: relative;
  padding: 14px 42px 14px 14px;
  border-radius: 3px 3px 0 0;
  background-color: #F1F3F6;
}
@media (max-width: 599px) {
  .c-orderable-field__field-container {
    padding: 14px 14px 60px 14px;
  }
}

.c-orderable-field__delete-btn {
  position: absolute;
  top: 14px;
  right: 14px;
}
@media (max-width: 599px) {
  .c-orderable-field__delete-btn {
    top: auto;
    right: auto;
    bottom: 14px;
    left: 14px;
    padding: 7px;
  }
}

.c-orderable-field__select-input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
  max-width: initial;
}
.c-orderable-field__select-input .ember-power-select-selected-item {
  position: absolute;
  left: 0;
  max-width: calc(100% - 45px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-orderable-field__sub-heading-input {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #d5d5d5;
  font-size: 2rem;
  font-weight: 700;
}

.c-optional-field-container {
  min-height: 36px;
  margin-bottom: 10px;
}

.c-optional-field__input {
  display: inline-block;
  vertical-align: middle;
  width: 70%;
  margin-right: 5px;
}

.c-orderable-field__checkbox {
  margin-top: 20px;
}

.c-form-question-with-assessment-field {
  margin: 20px 0 50px 0;
}

.c-form-select-field {
  margin: 20px 0;
}

.c-form-select-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-select-field__input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
}

.c-form-select-field--power-select .ember-power-select-clear-btn,
.c-form-select-field--power-select .ember-power-select-status-icon {
  top: 0;
}
.c-form-select-field--power-select .ember-power-select-clear-btn {
  line-height: 31px;
  font-weight: 700;
  font-size: 1.6rem;
}
.c-form-select-field--power-select .ember-power-select-selected-item {
  display: block;
  margin-top: 5px;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 30px;
}

.ember-power-select-option {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #f1f3f6;
  border: 0px;
}

.c-form-text-field {
  margin: 20px 0;
}

.c-form-text-field__label-text--hide {
  display: none !important;
}

.c-form-text-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-text-field__label-text {
  display: inline-block;
  vertical-align: middle;
}

.c-form-text-field__input-wrapper {
  position: relative;
}

.c-form-text-field__input-prefix {
  position: absolute;
  left: 10px;
  top: 11px;
  max-width: 10px;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-text-field__input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
}

.c-form-text-field__input--inline {
  display: inline-block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
}

.c-form-text-field__input--has-prefix {
  padding-left: 20px;
}

.c-form-text-field--text-area .c-form-text-field__input {
  height: 150px;
  line-height: 1.4;
}

.c-view-text {
  margin: 20px 0;
  max-width: 650px;
}

.c-view-text--hide-label {
  margin: 0;
}
.c-view-text--hide-label .c-view-text__label {
  display: none;
}
.c-view-text--hide-label .c-view-text__label-letter {
  display: none;
}

.c-view-text__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #434343;
}

.c-view-text__label-letter {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #434343;
  margin-left: 10px;
}

.c-view-text__inner-label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
  margin-top: 10px;
  margin-bottom: 5px;
}

.c-view-text__value-letter {
  max-width: 650px;
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: white;
  border-radius: 2px;
  padding: 0px;
  overflow-wrap: break-word;
  /*
    Stop elements like the p tag adding additional space to top/bottom of box
  */
}
@media (max-width: 599px) {
  .c-view-text__value-letter {
    font-size: 1.2rem;
  }
}
.c-view-text__value-letter :first-child {
  margin-top: 0;
}
.c-view-text__value-letter :last-child {
  margin-bottom: 0;
}

.c-view-text__value-letter--multi-line > p:first-child {
  white-space: normal;
}

.c-view-text__value {
  max-width: 650px;
  font-size: 1.4rem;
  line-height: 1.4;
  background-color: #f1f3f6;
  border-radius: 2px;
  padding: 10px;
  overflow-wrap: break-word;
  /*
    Stop elements like the p tag adding additional space to top/bottom of box
  */
}
@media (max-width: 599px) {
  .c-view-text__value {
    font-size: 1.2rem;
  }
}
.c-view-text__value :first-child {
  margin-top: 0;
}
.c-view-text__value :last-child {
  margin-bottom: 0;
}

.c-view-text__value--multi-line > p:first-child {
  white-space: pre-line;
}

.c-view-text__value--emphasise {
  font-weight: 700;
}

.c-view-text__link {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  text-decoration: underline;
  cursor: pointer;
}
.c-view-text__link:hover {
  background: none;
}

.c-view-text--locked {
  max-width: 650px;
}
.c-view-text--locked .c-view-text__value {
  position: relative;
}

.c-view-text--small-margin {
  margin-top: 5px;
  margin-bottom: 5px;
}

.c-view-text__icon {
  position: absolute;
  top: 10px;
  right: 10px;
}
.c-view-text__icon .c-icon {
  color: #959595;
  transition: color 300ms ease;
}
.c-view-text__icon .c-icon:hover {
  color: #008650;
}
.c-view-text__icon.ember-tooltip-or-popover-enabled .c-icon {
  color: #008650;
}

.c-form-trailing-element {
  margin: 20px 0 8px 0;
  max-width: 650px;
}
.c-form-trailing-element p {
  text-align: justify;
}

.c-view-section {
  margin: 0 0 20px 0;
}

.c-view-section__inner .c-view-text--hide-label .c-view-text__value .c-view-text__value-letter {
  padding-top: 2px;
  padding-bottom: 2px;
}

.c-view-section__inner {
  margin: 0 0 20px 0;
}
.c-view-section__inner .c-view-section__inner {
  margin: 0;
}
.c-view-section__inner .c-view-text--persons-name {
  margin: 0;
}
.c-view-section__inner .c-view-text--hide-label:first-of-type .c-view-text__value {
  padding-top: 10px;
}
.c-view-section__inner .c-view-section__inner .c-view-text--hide-label:first-of-type .c-view-text__value .c-view-text__value-letter {
  font-weight: 400;
}

.c-view-section--company-contact {
  margin-top: 10px;
}

.c-view-text--no-emphasis .c-view-text__value {
  font-weight: 400 !important;
}

.c-view-section__inner .c-view-text--hide-label:last-of-type .c-view-text__value .c-view-text__value-letter {
  padding-bottom: 10px;
}

.c-form-toggle-group {
  margin: 20px 0;
}
@media (min-width: 768px) {
  .c-form-toggle-group {
    max-width: none;
  }
}

.c-form-toggle-group__label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #6d6d6d;
}

.c-form-toggle-group__label-text {
  display: inline-block;
  vertical-align: middle;
}

.c-form-toggle-group__toggle-buttons {
  border: 1px solid #D5D5D5;
  border-radius: 2px;
}
@media (min-width: 768px) {
  .c-form-toggle-group__toggle-buttons {
    float: left;
  }
}

.c-form-toggle-group__toggle-button {
  position: relative;
}
@media (min-width: 768px) {
  .c-form-toggle-group__toggle-button {
    float: left;
  }
}
.c-form-toggle-group__toggle-button:first-child .c-form-toggle-group__radio-label {
  border-top: none;
}
@media (min-width: 768px) {
  .c-form-toggle-group__toggle-button:first-child .c-form-toggle-group__radio-label {
    border-left: none;
  }
}

.c-form-toggle-group__radio-input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.c-form-toggle-group__radio-label {
  display: block;
  position: relative;
  background-color: #fff;
  border-top: 1px solid #D5D5D5;
  padding: 6px 12px;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #000;
  cursor: pointer;
  transition: all 150ms ease;
}
@media (min-width: 768px) {
  .c-form-toggle-group__radio-label {
    border-top: none;
    border-left: 1px solid #D5D5D5;
    padding: 6px 20px;
  }
}

.c-form-toggle-group__toggle-button--active .c-form-toggle-group__radio-label {
  background-color: #008650;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
@media (min-width: 768px) {
  .c-form-toggle-group__toggle-button--active .c-form-toggle-group__radio-label {
    z-index: 9;
  }
  .c-form-toggle-group__toggle-button--active .c-form-toggle-group__radio-label:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #008650;
  }
}

@media (min-width: 768px) {
  .c-form-toggle-group__toggle-button--active:first-child .c-form-toggle-group__radio-label:before {
    border-radius: 2px 0 0 2px;
  }
}

@media (min-width: 768px) {
  .c-form-toggle-group__toggle-button--active:last-child .c-form-toggle-group__radio-label:before {
    border-radius: 0 2px 2px 0;
  }
}

.c-form-toggle-group__toggle-button--focused {
  outline-width: 5px;
  outline-style: auto;
  outline-color: Highlight;
  outline-color: -webkit-focus-ring-color;
}

.c-tool-tip {
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
  line-height: 12px;
}

.c-tool-tip--empty {
  display: none;
}

.c-tool-tip--in-checkable-field {
  vertical-align: top;
}

.c-tool-tip__trigger {
  cursor: pointer;
}
.c-tool-tip__trigger .c-icon__svg {
  display: block;
}

.c-tool-tip__message {
  display: none;
  z-index: 1150;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-shadow: none;
  color: #434343;
  font-weight: 400;
  max-width: 150px;
}
.c-tool-tip__message a {
  color: #008650;
}
.c-tool-tip__message:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 10px;
  height: 10px;
  margin: -5px;
  background: inherit;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  transform: rotate(45deg);
}
.c-tool-tip__message:focus {
  outline: none;
}
@media (min-width: 768px) {
  .c-tool-tip__message {
    max-width: 360px;
  }
}

.c-tool-tip__message.ember-tooltip-or-popover-enabled {
  display: initial;
  cursor: default;
  user-select: auto;
  pointer-events: auto;
  -webkit-touch-callout: default;
}

.c-file__download-button {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  padding: 4px 10px 4px 44px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: none;
  border: 2px solid #E1E1E1;
  border-radius: 3px;
  cursor: pointer;
}
.c-file__download-button:hover {
  background: none;
}
.c-file__download-button:hover .c-file__download-icon {
  color: #008650;
}

.c-file__download-icon {
  display: block;
  padding-top: 3px;
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #E1E1E1;
  border: none;
  color: #86bfa4;
  transition: color 250ms ease;
}

.c-file__name {
  font-size: 1.3rem;
  line-height: 1;
}

.c-file__download-button--scanning,
.c-file__download-button--infected {
  padding: 4px 10px 4px 44px;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: none;
  border: 2px solid #E1E1E1;
  border-radius: 3px;
  height: 34px;
}

.c-file__download-icon--scanning,
.c-file__download-icon--infected {
  display: block;
  padding-top: 4px;
  padding-left: 6px;
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #E1E1E1;
  border: none;
  color: #E26521;
}

.c-file__download-icon--scanning {
  padding-top: 6px;
}

.c-validation-message {
  max-width: 650px;
  margin: 12px 0;
  padding: 0 13px 2px 13px;
  border-left: 3px solid #E26521;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #46494C;
}

.generic-search__heading {
  margin-bottom: 15px;
  font-weight: bold;
}

.generic-search__map-button {
  float: right;
}

/**
 Cluster Icon
*/
.c-cluster-icon {
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  height: 24px;
  width: 24px;
}
.c-cluster-icon--small {
  height: 24px;
  width: 24px;
}
.c-cluster-icon--medium {
  height: 28px;
  width: 28px;
}
.c-cluster-icon--large {
  height: 32px;
  width: 32px;
}
.c-cluster-icon--xlarge {
  height: 36px;
  width: 36px;
}
.c-cluster-icon--xxlarge {
  height: 40px;
  width: 40px;
}

.c-cluster-icon__count {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  color: #008650;
  background-color: #fff;
  border-radius: 100%;
  font-size: 1.1rem;
  line-height: 20px;
}
.c-cluster-icon__count--small {
  font-size: 1.1rem;
  line-height: 20px;
}
.c-cluster-icon__count--medium {
  font-size: 1.2rem;
  line-height: 24px;
}
.c-cluster-icon__count--large {
  font-size: 1.3rem;
  line-height: 28px;
}
.c-cluster-icon__count--xlarge {
  font-size: 1.3rem;
  line-height: 32px;
}
.c-cluster-icon__count--xxlarge {
  font-size: 1.3rem;
  line-height: 36px;
}

.c-cluster__pin .leaflet-marker-icon {
  margin: 0 !important;
}

.c-cluster__pin-counter {
  position: absolute;
  background-color: #008650;
  font-weight: bold;
  text-align: center;
  top: -8px;
  right: -8px;
  min-width: 14px;
  min-height: 14px;
  border-radius: 7px;
  font-size: 10px;
  display: block;
  color: white;
}

/**
  Header
*/
.c-map-header-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 60px;
  z-index: 1000;
  width: 100vw;
  padding: 0 10px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e1e1e1;
}

.c-map-header-bar__heading {
  font-size: 2rem;
  line-height: 60px;
  font-weight: bold;
  margin-left: 10px;
}

.c-map-header-bar__back_button {
  float: right;
  margin-top: 9px;
  margin-right: 10px;
  /* IE 11 and Edge need more margin towards right */
}
@supports (-ms-ime-align: auto) {
  .c-map-header-bar__back_button {
    margin-right: 30px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-map-header-bar__back_button {
    margin-right: 30px;
  }
}

.c-map-container {
  height: 350px;
  max-height: 90vh;
}
.c-map-container--large {
  height: 500px;
}
.c-map-container--full {
  height: 100vh;
  max-height: 100vh;
}
.c-map-container--no-filters {
  opacity: 0.6;
}

.c-map-loading {
  opacity: 0.55;
  background-color: black;
  z-index: 499;
  position: absolute;
  top: 60px;
  left: 0;
  height: calc(100vh - 60px);
  max-height: calc(100vh - 60px);
  width: 100%;
}
.c-map-loading .c-map-loading_message {
  color: #fff;
  margin-top: 1.5rem;
}

.c-map-loading_message {
  position: absolute;
  top: calc(50% + 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
  font-size: 1.6rem;
  color: #434343;
  z-index: 500;
}

.c-map-popup {
  width: 280px;
}
.c-map-popup__actions {
  text-align: right;
}
.c-map-popup__action {
  margin-top: 20px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.c-map-popup__heading {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-map-popup__value-heading {
  font-size: 1.1rem;
  font-weight: bold;
}

.c-map-popup__value {
  margin-bottom: 5px;
}

/**
  Control
*/
.c-map-control-view__container {
  height: 100vh;
  background-color: white;
  position: fixed;
  left: 0;
  top: 60px;
  z-index: 500;
  background-color: #008650;
}

.c-map-control-view__panel {
  width: 50px;
  height: 50px;
  padding: 15px;
  color: white;
  position: relative;
}
.c-map-control-view__panel--active {
  background-color: #00a355;
}

.c-map-control-view__counter {
  position: absolute;
  background-color: #FF6F18;
  font-weight: bold;
  text-align: center;
  top: 5px;
  right: 4px;
  padding: 1px;
  min-width: 18px;
  min-height: 18px;
  border-radius: 9px;
  font-size: 11px;
  line-height: 14px;
  display: block;
}

.c-map-control-view__panel-content {
  width: 320px;
  position: fixed;
  left: 50px;
  top: 60px;
  bottom: 0px;
  background-color: white;
  padding: 15px;
  z-index: 1000;
  overflow-y: scroll;
  /* Ember Power Select styling specific to the map sidebar */
}
.c-map-control-view__panel-content--search .ember-power-select-trigger {
  max-width: 204px;
}
@media (max-width: 599px) {
  .c-map-control-view__panel-content {
    width: unset;
  }
}
.c-map-control-view__panel-content .c-form-date-field__input--small {
  padding: 0 5px;
}

.c-map-control-view__panel-content-title {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-map-control-view__panel-content-title .c-secondary-action {
  margin-left: 4px;
}

.c-map-control-view__coordinates-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-map-control-view__coordinates-input {
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  height: 36px;
  width: 47%;
  padding: 7px 11px;
  font-size: 1.4rem;
  color: #434343;
}

.c-map-control-view__layer-toggle {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.c-map-control-view__layer-toggle .ember-checkbox {
  margin-right: 8px;
}

.c-map-control-view__layer-toggle-label {
  font-size: 1.2rem;
}

.c-map-control-view__goto-item {
  margin-bottom: 20px;
}

.c-map-control-view__container .ember-power-select-trigger {
  padding-right: 35px;
}

.c-map-control-view__search-address__input {
  flex-grow: 1;
}
.c-map-control-view__search-address__input .ember-power-select-trigger {
  max-width: 229px;
}
@media (max-width: 599px) {
  .c-map-control-view__search-address__input .ember-power-select-trigger {
    max-width: 300px;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-map-control-view__search-address__input .ember-power-select-trigger {
    max-width: 212px;
  }
}
@supports (-ms-ime-align: auto) {
  .c-map-control-view__search-address__input .ember-power-select-trigger {
    max-width: 212px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-map-control-view__search-address__button {
    margin-left: 1rem;
  }
}
@supports (-ms-ime-align: auto) {
  .c-map-control-view__search-address__button {
    margin-left: 1rem;
  }
}
@media (max-width: 599px) {
  .c-map-control-view__search-address__button {
    margin-left: 4%;
  }
}

.c-close-panel__trigger {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  cursor: pointer;
}
.c-close-panel__trigger:hover {
  background: none;
}

.c-map-control-view_panel-content-header {
  display: flex;
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}

.c-map-control-view__panel-content--search .generc-search-filter__search-action {
  margin-bottom: 10px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .c-map-control-view__panel-content--search .generc-search-filter__search-action {
    margin-bottom: 20px;
  }
}
@supports (-ms-ime-align: auto) {
  .c-map-control-view__panel-content--search .generc-search-filter__search-action {
    margin-bottom: 20px;
  }
}

.c-map-control-view__search-address {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 599px) {
  .c-map-control-view__goto-item .c-primary-action {
    padding-top: 11px;
    padding-bottom: 11px;
  }
}

.generic-search-filter__container {
  margin: 10px 0 30px 0;
  padding: 20px 15px;
  background-color: #F1F3F6;
  border: none;
}

.generic-search-filter__pills {
  display: flex;
  max-width: 850px;
  flex-wrap: wrap;
  align-items: center;
}

.generic-search-filter__pill {
  border-radius: 15px;
  padding: 5px 12px;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
  margin: 5px 5px 5px 0;
  background-color: white;
  border: 1px solid #AAA;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
  line-height: 18px;
  font-weight: 400;
  color: #6d6d6d;
  max-width: 100%;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
.generic-search-filter__pill .c-icon {
  display: inline-block;
  margin-left: 4px;
}
.generic-search-filter__pill .value {
  font-weight: 700;
}
.generic-search-filter__pill .c-icon {
  vertical-align: baseline;
}
.generic-search-filter__pill--active {
  background-color: #008650;
  border-color: #008650;
  color: white;
}

.generic-search-filter__inputs {
  max-width: 440px;
  margin-bottom: 25px;
}
.generic-search-filter__inputs--map-mode {
  max-width: 272px;
}

.generic-search-filter__input-group {
  margin-top: 1em;
  margin-bottom: 1em;
}

.generic-search-filter__input-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 4px;
  margin-bottom: 6px;
}

.generic-search-filter__input {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 2px;
  margin-bottom: 8px;
}

.generic-search-filter__input-action {
  margin-left: 6px;
  margin-top: 3px;
  padding: 4px;
  color: #008650;
}

.generic-search-filter__input-date-range {
  display: flex;
  align-items: center;
  color: #434343;
}
.generic-search-filter__input-date-range input[disabled] {
  background: inherit;
  color: #434343;
  border: 1px solid #e6e6e6;
}

.generic-search-filter__input-date-spacer {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.generic-search-filter__input-text {
  border-radius: 2px;
  flex-grow: 1;
}

.generic-search-filter__input-typeahead {
  width: 100%;
  height: 36px;
  padding: 5px 11px;
  border: 1px solid #d5d5d5;
  color: #434343;
}
@media (min-width: 600px) {
  .generic-search-filter__input-typeahead {
    white-space: nowrap;
  }
}
.generic-search-filter__input-typeahead .ember-power-select-selected-item {
  margin-left: 10;
}
.generic-search-filter__input-typeahead .ember-power-select-clear-btn {
  vertical-align: middle;
  width: 16px;
  height: 32px;
  top: 0px;
  text-align: center;
  display: inline-block;
  line-height: 28px;
  color: #aaaaaa;
  font-size: 1.8rem;
}
.generic-search-filter__input-typeahead .ember-power-select-status-icon {
  right: 9px;
}

.generic-search-filter__help-text {
  margin-top: 15px;
  margin-bottom: 25px;
}

.generic-search-filter__input-date-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
}

.generic-search-filter__input-date-from,
.generic-search-filter__input-date-to {
  flex: 1 1 0%;
}

.generic-search-filter__actions {
  padding: 10px 0px 0px 5px;
}
.generic-search-filter__actions :not(:last-child) {
  margin-right: 5px;
}

.generic-search-option {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: baseline;
}
@media (max-width: 599px) {
  .generic-search-option {
    margin-bottom: 10px;
  }
}

.generic-search-option__views {
  display: flex;
}
@media (max-width: 599px) {
  .generic-search-option__views {
    flex-direction: column;
  }
}

.generic-search-option__views__input {
  font-size: 1.3rem;
}
@media (max-width: 599px) {
  .generic-search-option__views__input {
    margin-bottom: 10px;
  }
}

.generic-search-option__views__input__label {
  margin-right: 10px;
  margin-left: 2px;
}

.c-icon {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
}

.c-icon__svg {
  display: block;
  fill: currentColor;
}

.c-icon--primary-color {
  color: #008650;
}

.c-rounded-icon {
  display: block;
  width: 22px;
  height: 22px;
  background: #00a355;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  padding: 3px 0 0 0;
  border: 1px solid #fff;
  margin-left: -11px;
}

.c-rounded-icon-table-cell {
  display: block;
  width: 22px;
  height: 22px;
  background: #00a355;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  padding: 4px 3px 0 4px;
  border: 1px solid #fff;
}

.c-bread-crumbs {
  padding: 0;
  margin: 0 0 5px 0;
  list-style: none;
}

.c-bread-crumbs__item {
  display: inline-block;
  position: relative;
  padding-right: 15px;
}
.c-bread-crumbs__item:after {
  content: "›";
  display: block;
  position: absolute;
  top: 0;
  right: 4px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.c-bread-crumbs--has-crumbs .c-bread-crumbs__item:last-child {
  padding-right: 0;
}
.c-bread-crumbs--has-crumbs .c-bread-crumbs__item:last-child:after {
  content: none;
}

.c-bread-crumbs__crumb {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
  text-decoration: none;
}
@media (max-width: 599px) {
  .c-bread-crumbs__crumb {
    font-size: 1rem;
  }
}

.c-bread-crumbs__crumb--active {
  font-weight: 700;
}

.c-compact-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  overflow: auto;
  background-color: #f1f3f6;
}
@media (min-width: 900px) {
  .c-compact-menu {
    display: none;
  }
}

.c-compact-menu__toggle-btn {
  display: block;
  width: 100%;
  padding: 15px 10px 10px 10px;
  margin-bottom: 10px;
  border: none;
  color: #008650;
  background: none;
}

.c-compact-menu__tasks {
  list-style: none;
  padding: 15px 0 0 0;
  margin: 0;
  position: relative;
}
.c-compact-menu__tasks:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 3px;
  background-color: #d1d1d1;
  transform: translate(-9px, -1px);
}

.c-compact-menu__tasks--first {
  padding-top: 0;
}
.c-compact-menu__tasks--first:after {
  content: none;
}

.c-compact-menu__task {
  display: block;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
}
.c-compact-menu__task:after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 26px;
  left: 50%;
  margin-left: -1px;
  z-index: 0;
  background-color: #008650;
}
.c-compact-menu__task:last-child:after {
  content: none;
}

.c-compact-menu__task-link {
  display: inline-block;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 10;
  border-radius: 100%;
  border: 2px solid #008650;
  background-color: #fff;
}

.c-compact-menu__task-link--active {
  background-color: #008650;
}

.c-mobile-workflow-menu {
  float: left;
  width: 100%;
  clear: both;
  margin: 10px auto 0 auto;
  background-color: #fff;
}

.c-mobile-workflow-menu__trigger {
  display: block;
  position: relative;
  width: 100%;
  text-align: left;
  border-radius: 2px;
  padding: 14px 25px 14px 14px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  border: none;
  background-color: #008650;
  color: #fff;
}

.c-mobile-workflow-menu__trigger-icon {
  position: absolute;
  right: 14px;
  top: 13px;
}

.c-mobile-workflow-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-mobile-workflow-menu__item {
  display: block;
}
.c-mobile-workflow-menu__item:first-child .c-mobile-workflow-menu__link {
  padding-top: 14px;
}
.c-mobile-workflow-menu__item:last-child .c-mobile-workflow-menu__link {
  padding-bottom: 14px;
}

.c-mobile-workflow-menu__item--emphasised {
  background-color: rgba(0, 134, 80, 0.1);
}

.c-mobile-workflow-menu__link {
  display: block;
  padding: 7px 14px;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
  font-weight: 700;
  color: #4B4C4E;
}

.c-mobile-workflow-menu__link--active {
  color: #008650;
}

.c-mobile-workflow-menu__link--disabled {
  color: rgba(0, 0, 0, 0.3);
  cursor: default;
}

.c-nav-bar {
  padding-top: 16px;
  padding-bottom: 16px;
  position: relative;
  z-index: 900;
  background-color: #008650;
  color: #fff;
}
@media (max-width: 599px) {
  .c-nav-bar {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

.c-nav-bar__container {
  box-sizing: content-box;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.c-nav-bar__container:after {
  content: "";
  display: table;
  clear: both;
}

.c-nav-bar__logo {
  display: inline;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 599px) {
  .c-nav-bar__logo {
    padding: 4px 0;
    display: inline-block;
  }
}

.c-nav-bar__logo-img {
  display: inline-block;
  vertical-align: middle;
  height: 40px;
}
@media (max-width: 599px) {
  .c-nav-bar__logo-img {
    height: 30px;
  }
}

.c-nav-bar__logo-text {
  display: none;
}
@media (min-width: 768px) {
  .c-nav-bar__logo-text {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    line-height: 1.9;
    font-weight: 700;
    text-transform: uppercase;
  }
}

.c-nav-bar__council-name-text {
  display: none;
}
@media (min-width: 768px) {
  .c-nav-bar__council-name-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    font-size: 1.5rem;
    line-height: 1.9;
    font-weight: 700;
  }
}

.c-nav-bar__menu-container {
  float: right;
}

.c-nav-dropdown {
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 600px) {
  .c-nav-dropdown {
    position: relative;
  }
}

.c-nav-dropdown__trigger {
  position: relative;
  cursor: pointer;
}

.c-nav-dropdown__count {
  width: 24px;
  height: 24px;
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 100%;
  background-color: #E26521;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  user-select: none;
}
@media (max-width: 599px) {
  .c-nav-dropdown__count {
    width: 20px;
    height: 20px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

/*
  Drop down content is displayed full width on mobile.

  Fixed width applied from phone screen up. Right
  aligned until viewport width allows for it to center
  on trigger icon above and not cut off any content.
*/
.c-nav-dropdown__content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 50%;
  width: 336px;
  margin-right: -168px;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 1px 3px 4px rgba(0, 0, 0, 0.2);
}
.c-nav-dropdown__content:before {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  top: -8px;
  margin-right: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 8px solid #fff;
}
@media (max-width: 599px) {
  .c-nav-dropdown__content {
    width: 100%;
    top: 100%;
    right: 0;
    margin-right: 0;
  }
  .c-nav-dropdown__content:before {
    display: none;
  }
}

.c-nav-dropdown--open .c-nav-dropdown__content {
  display: block;
}

.c-nav-dropdown__heading {
  margin: 0;
  padding: 12px 0;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #434343;
  text-align: center;
}

.c-nav-dropdown__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.c-nav-dropdown__more-link {
  padding: 12px;
  color: #008650;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.c-nav-list {
  padding: 10px 0;
  margin: 0;
  list-style: none;
  background-color: #077d4c;
}
@media (min-width: 600px) {
  .c-nav-list {
    overflow: hidden;
    border-radius: 0 0 3px 3px;
  }
}

.c-nav-list__heading {
  padding: 6px 16px;
  font-weight: bold;
  margin-top: 10px;
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.7;
}

.c-nav-list__link {
  display: block;
  padding: 6px 16px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 250ms ease;
}
.c-nav-list__link:hover {
  text-decoration: underline;
}

.c-nav-menu {
  display: inline-block;
  margin-left: 10px;
}
@media (min-width: 600px) {
  .c-nav-menu {
    position: relative;
  }
}
@media (max-width: 899px) {
  .c-nav-menu {
    margin-left: 15px;
  }
}

.c-nav-menu__trigger,
.c-nav-menu__trigger-text,
.c-nav-menu__trigger-icon {
  display: inline-block;
  vertical-align: middle;
}

.c-nav-menu__trigger-icon {
  line-height: 1;
}

.c-nav-menu__trigger {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  line-height: 38px;
  cursor: pointer;
}
.c-nav-menu__trigger:hover {
  background: none;
}
@media (min-width: 900px) {
  .c-nav-menu__trigger {
    padding: 0 10px;
  }
}

.c-nav-menu__trigger-text {
  margin-right: 10px;
}
@media (max-width: 599px) {
  .c-nav-menu__trigger-text {
    display: none;
  }
}

.c-nav-menu__content {
  display: none;
}

.c-nav-menu--open .c-nav-menu__content {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
}
@media (min-width: 600px) {
  .c-nav-menu--open .c-nav-menu__content {
    padding-top: 16px;
  }
}

.c-nav-search, .c-nav-search {
  display: inline-block;
}
@media (min-width: 600px) {
  .c-nav-search, .c-nav-search {
    position: relative;
  }
}

.c-nav-search__trigger,
.c-nav-search__trigger-text,
.c-nav-search__trigger-icon {
  display: inline-block;
  vertical-align: middle;
}

.c-nav-search__trigger-icon {
  line-height: 1;
}

.c-nav-search__trigger {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  line-height: 38px;
  cursor: pointer;
}
.c-nav-search__trigger:hover {
  background: none;
}
@media (min-width: 900px) {
  .c-nav-search__trigger {
    padding: 0 10px;
  }
}

.c-nav-search__trigger-text {
  margin-right: 10px;
}
@media (max-width: 599px) {
  .c-nav-search__trigger-text {
    display: none;
  }
}

.c-nav-search__content {
  display: none;
  padding-top: 16px;
}

.c-nav-search--open .c-nav-search__content {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100%;
  background-color: #077d4c;
  padding: 1em;
  width: 366px;
}
@media (min-width: 600px) {
  .c-nav-search--open .c-nav-search__content {
    margin-top: 16px;
    border-radius: 0 0 3px 3px;
  }
}

.c-nav-search__options {
  margin-top: 0.5em;
  font-size: 1.3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.c-nav-search__radio-label {
  padding-left: 0.5em;
  margin-right: 1em;
}

.c-nav-search__results {
  background: white;
  color: black;
  margin-bottom: 14px;
}

.c-nav-search__result-row {
  display: block;
  height: 36px;
  line-height: 36px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}
.c-nav-search__result-row:hover {
  background-color: #e4f1eb;
}
.c-nav-search__result-row:focus, .c-nav-search__result-row:active {
  background-color: #86bfa4;
}

.c-nav-search__input-label {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.c-nav-search__text-input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
}
@media only screen and (max-width: 320px) {
  .c-nav-search__text-input {
    font-size: 16px;
  }
}

.c-skip-to-content-link {
  display: block;
  padding: 10px;
  background: #008650;
  position: absolute;
  top: -3000px;
  left: -3000px;
  z-index: 1100;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
}
.c-skip-to-content-link:focus {
  top: 0;
  left: 0;
}

.c-workflow-menu {
  padding: 6px 6px 0 6px;
  margin: 0 0 15px 0;
  position: relative;
  border-radius: 2px;
  list-style: none;
  background-color: #f1f3f6;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-workflow-menu:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 899px) {
  .c-workflow-menu {
    display: none;
  }
}

.c-workflow-menu__item {
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}
.c-workflow-menu__item:last-child {
  margin-right: 0;
}

.c-workflow-menu__item--separator {
  flex-basis: 0;
  flex-grow: 1;
}

.c-workflow-menu__link {
  display: block;
  padding: 9px 7px;
  border-radius: 2px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  color: #4B4C4E;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.09);
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}
.c-workflow-menu__link:hover, .c-workflow-menu__link.c-workflow-menu__link--active {
  background-color: #008650;
  border-color: #008650;
  color: #fff;
}

/**
* Specific links in the processing menu are highlighted a
* different colour as they're slightly different than the
* rest of the steps.
*/
.c-workflow-menu__link--emphasised {
  background-color: rgba(0, 134, 80, 0.1);
  border-color: rgba(134, 191, 164, 0.22);
}

.c-workflow-menu__link--disabled,
.c-workflow-menu__link--disabled:hover {
  background-color: #f1f3f6;
  border-color: #dfdfdf;
  color: #c0c0c0;
  box-shadow: none;
  cursor: default;
}

.c-task-menu {
  position: relative;
  z-index: 10;
}

.c-task-menu__heading {
  display: block;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 15px 0;
  font-weight: 700;
  text-decoration: none;
}

.c-task-menu__not-available-message {
  margin: 0 0 25px 0;
  font-size: 1.4rem;
  line-height: 1.4;
  font-style: italic;
  color: #959595;
}

.c-task-menu__panel .c-task-menu__panel .c-task-menu__panel {
  height: 0;
  overflow: hidden;
}

.c-task-menu__panel .c-task-menu__sub-menu--open .c-task-menu__sub-menu--open .c-task-menu__panel {
  height: auto;
}

.c-task-menu__tasks {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.c-task-menu__task {
  display: block;
  position: relative;
  max-width: 90%;
  margin-bottom: 13px;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.09);
  border-radius: 2px;
  transition: all 200ms ease;
}
.c-task-menu__task:hover {
  box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.28);
}
@media (max-width: 599px) {
  .c-task-menu__task {
    max-width: 94%;
  }
}
.c-task-menu__task .c-task-menu__task {
  max-width: 100%;
  box-shadow: none;
  margin-bottom: 0;
}
.c-task-menu__task .c-task-menu__task .c-task-menu__task-number {
  display: none;
}

.c-task-menu__complete-icon {
  position: absolute;
  top: 18px;
  right: 8px;
  display: block;
  width: 16px;
  height: 16px;
  padding: 3px;
}
@media (max-width: 599px) {
  .c-task-menu__complete-icon {
    top: 13px;
  }
}

.c-task-menu__task--active {
  background-color: #fff;
  max-width: 98%;
  box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.28);
}
.c-task-menu__task--active .c-task-menu__task-link {
  font-size: 1.6rem;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
}
.c-task-menu__task--active .c-task-menu__task-number {
  max-width: 24px;
}
@media (max-width: 599px) {
  .c-task-menu__task--active .c-task-menu__complete-icon {
    top: 18px;
  }
}

.c-task-menu__panel > .c-task-menu__tasks > .c-task-menu__sub-menu--open {
  max-width: 98%;
  box-shadow: 1px 3px 4px 0 rgba(0, 0, 0, 0.28);
  background-color: #F1F3F6;
}
.c-task-menu__panel > .c-task-menu__tasks > .c-task-menu__sub-menu--open .c-task-menu__sub-menu--open {
  max-width: 100%;
  box-shadow: none;
  background: #fff;
}

.c-task-menu__panel > .c-task-menu__tasks > .c-task-menu__sub-menu--open > .c-task-menu__task-link {
  background: #fff;
  font-weight: 700;
  font-size: 1.6rem;
}

.c-task-menu__task-link {
  display: block;
  padding: 17px 27px 17px 17px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #434343;
  text-decoration: none;
}
@media (max-width: 599px) {
  .c-task-menu__task-link {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.c-task-menu__current-action {
  padding: 0 27px 17px 17px;
  font-style: italic;
  background-color: #fff;
}

.c-task-menu__task-number {
  float: left;
  max-width: 20px;
  margin-right: 7px;
}

.c-task-menu__task-label {
  float: left;
  width: calc(100% - 40px);
}

.c-task-menu__sub-menu-trigger {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: block;
  width: 100%;
  text-align: left;
  padding: 15px 17px;
  border-top: 1px solid #D5D7DA;
  cursor: pointer;
}
.c-task-menu__sub-menu-trigger:hover {
  background: none;
}

.c-task-menu__sub-menu-trigger--active {
  padding: 15px 17px 6px 17px;
  font-weight: 700;
}

.c-task-menu__sub-menu-trigger-icon {
  margin-right: 5px;
}

.c-task-menu__sub-menu {
  background-color: #F1F3F6;
}
.c-task-menu__sub-menu .c-task-menu__tasks {
  margin: 0 0 20px 34px;
}
.c-task-menu__sub-menu .c-task-menu__task {
  margin-bottom: 5px;
  margin-right: 30px;
}
.c-task-menu__sub-menu .c-task-menu__task-link {
  padding: 5px 7px;
  font-size: 1.4rem;
  font-weight: 400;
}
.c-task-menu__sub-menu .c-task-menu__task-label {
  float: none;
  width: auto;
}
.c-task-menu__sub-menu .c-task-menu__task--active .c-task-menu__task-link {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  border: 2px solid #86bfa4;
  border-radius: 3px;
}

.c-task-menu__sub-menu--open {
  background-color: #fff;
}
.c-task-menu__sub-menu--open .c-task-menu__task {
  background-color: transparent;
}
.c-task-menu__sub-menu--open .c-task-menu__task .c-task-menu__complete-icon {
  top: 50%;
  margin-top: -8px;
  right: -20px;
}

.c-user-menu {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
@media (min-width: 600px) {
  .c-user-menu {
    position: relative;
  }
}
@media (max-width: 899px) {
  .c-user-menu {
    margin-left: 15px;
  }
}

.c-user-menu__trigger,
.c-user-menu__trigger-text,
.c-user-menu__trigger-icon {
  display: inline-block;
  vertical-align: middle;
}

.c-user-menu__trigger {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  position: relative;
  line-height: 38px;
  cursor: pointer;
}
.c-user-menu__trigger:hover {
  background: none;
}
@media (min-width: 900px) {
  .c-user-menu__trigger {
    padding: 0 10px;
  }
}

.c-user-menu__content {
  display: none;
}

.c-user-menu--open .c-user-menu__content {
  display: block;
  position: absolute;
  top: 100%;
  right: 0;
}
@media (min-width: 600px) {
  .c-user-menu--open .c-user-menu__content {
    padding-top: 16px;
    max-width: initial;
  }
}

.c-user-menu__trigger-text {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 115px;
  white-space: nowrap;
}
@media (max-width: 599px) {
  .c-user-menu__trigger-text {
    display: none;
  }
}
@media (min-width: 900px) {
  .c-user-menu__trigger-text {
    max-width: 200px;
  }
}

.c-user-menu__login-btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  vertical-align: middle;
  margin-right: 2px;
}
.c-user-menu__login-btn:hover {
  background: none;
}

.c-user-menu__username {
  background-color: #077d4c;
  padding: 15px 15px 0 15px;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  max-width: 100%;
}
@media (min-width: 900px) {
  .c-user-menu__username {
    max-width: 266px;
  }
}

.c-content-footer {
  margin: 80px auto 20px auto;
  color: #6d6d6d;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
}

.c-content-footer__content {
  padding-bottom: 20px;
  line-height: 1.4;
  font-style: italic;
}
@media (min-width: 600px) {
  .c-content-footer__content {
    text-align: left;
  }
}

.c-content-footer__baseline {
  padding-top: 20px;
  border-top: 1px solid #e4e4e4;
}

.c-content-footer__copyright {
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .c-content-footer__copyright {
    float: left;
  }
}

.c-content-footer__link {
  display: inline-block;
  margin-left: 15px;
}
@media (min-width: 600px) {
  .c-content-footer__link {
    float: right;
  }
}

.c-dashboard-module {
  margin: 30px 0;
  padding: 20px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
}
.c-dashboard-module:after {
  content: "";
  display: table;
  clear: both;
}

.c-dashboard-module--shaded {
  background-color: #F1F3F6;
  border: none;
}

.c-dashboard-module__heading {
  font-size: 2rem;
  margin: 0 0 20px 0;
}
@media (min-width: 600px) {
  .c-dashboard-module__heading .c-secondary-action {
    margin-left: 4px;
  }
}

.c-dashboard-module__accent-img {
  display: none;
}
@media (min-width: 600px) {
  .c-dashboard-module__accent-img {
    display: block;
    float: left;
    width: 70px;
    height: auto;
    margin: 5px 20px 5px 10px;
  }
}

@media (min-width: 600px) {
  .c-dashboard-module__text-content {
    float: left;
    width: calc(100% - 100px);
  }
}

.c-landing-panel-maintenance {
  background: #FAEBC7;
  border-radius: 5px;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 10px;
  border: solid 1px #F8E1AB;
}
.c-landing-panel-maintenance:after {
  content: "";
  display: table;
  clear: both;
}

.c-landing-panel-maintenance__main-heading {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #5D4719;
}
@media (max-width: 599px) {
  .c-landing-panel-maintenance__main-heading {
    font-size: 2.4rem;
  }
}

.c-landing-panel-maintenance__text-content {
  color: #5D4719;
}
@media (min-width: 768px) {
  .c-landing-panel-maintenance__text-content {
    float: left;
    width: calc(100% - 250px);
  }
}

.c-landing-panel {
  padding: 40px 30px;
}
.c-landing-panel:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  .c-landing-panel {
    padding: 80px 60px;
  }
}

.c-landing-panel--alternate-bg {
  background-color: #F1F3F6;
}

.c-landing-panel__body-text {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 30px;
}

.c-landing-panel__main-heading {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .c-landing-panel__main-heading {
    font-size: 2.4rem;
  }
}

.c-landing-panel--half-text-half-image {
  position: relative;
}
@media (min-width: 768px) {
  .c-landing-panel--half-text-half-image {
    padding-right: calc(50% + 60px);
    min-height: 400px;
  }
}

.c-landing-panel__image-half {
  display: block;
  width: 100%;
  min-height: 200px;
  margin-bottom: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 768px) {
  .c-landing-panel__image-half {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    margin: 0;
  }
}

.c-landing-panel__icon {
  max-width: 150px;
  margin: 0 auto 20px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .c-landing-panel__icon {
    max-width: none;
    width: 250px;
    margin: 0 0 40px 0;
  }
}

@media (min-width: 768px) {
  .c-landing-panel__icon--left {
    float: left;
    padding-right: 70px;
  }
}

@media (min-width: 768px) {
  .c-landing-panel__icon--right {
    float: right;
    padding-left: 70px;
  }
}

.c-landing-panel__icon-image {
  display: inline-block;
  width: 100%;
  height: auto;
}

@media (min-width: 1260px) {
  .c-landing-panel--has-icon {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media (min-width: 768px) {
  .c-landing-panel--has-icon .c-landing-panel__text-content {
    float: left;
    width: calc(100% - 250px);
  }
}

.c-page-header {
  padding-top: 15px;
  background-color: #f8f8f8;
  border-bottom: 1px solid #d1d1d1;
}
@media (max-width: 899px) {
  .c-page-header {
    padding-top: 10px;
  }
}
.c-page-header.pad-bottom {
  padding-bottom: 15px;
}
@media (max-width: 899px) {
  .c-page-header.pad-bottom {
    padding-bottom: 10px;
  }
}

.c-page-header__container {
  box-sizing: content-box;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.c-page-header__sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
}

/*
  Page header top includes breadcrumbs, user details,
  application status etc.
*/
@media (max-width: 599px) {
  .c-page-header__top {
    display: none;
  }
}

@media (min-width: 768px) {
  .c-page-header__navigation {
    float: left;
    white-space: nowrap;
  }
}

.c-page-header__user-details {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .c-page-header__user-details {
    float: right;
    max-width: calc(100% - 290px);
    margin-bottom: 0;
    text-align: right;
  }
}

.c-page-header__actions {
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .c-page-header__actions {
    float: right;
    margin: 0;
  }
}

.c-page-header__status {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .c-page-header__status {
    text-align: right;
    margin-bottom: 10px;
  }
}
@media (min-width: 1260px) {
  .c-page-header__status {
    float: right;
    margin-left: 7px;
  }
}

.c-page-header__major-status-tag {
  float: left;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .c-page-header__major-status-tag {
    float: none;
    margin-right: 0;
  }
}

.c-page-header__minor-status-tags {
  float: left;
  line-height: 30px;
}
@media (min-width: 768px) {
  .c-page-header__minor-status-tags {
    float: right;
    margin-left: 7px;
    line-height: 1;
  }
}
@media (min-width: 1260px) {
  .c-page-header__minor-status-tags {
    float: right;
    margin-left: 7px;
    line-height: 30px;
  }
}

.c-page-header__view-other {
  display: block;
  clear: both;
  margin: 10px 0;
  float: left;
}
@media (min-width: 768px) {
  .c-page-header__view-other {
    float: right;
    clear: none;
    margin: 0;
    line-height: 20px;
  }
}
@media (min-width: 1260px) {
  .c-page-header__view-other {
    line-height: 30px;
    margin-right: 7px;
  }
}

.c-page-header__days-details {
  display: none;
}
@media (min-width: 768px) {
  .c-page-header__days-details {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.l-page-header__processing-pills-wrapper {
  display: flex;
  flex-direction: column;
}

.c-page-header__target-details {
  display: none;
}
@media (min-width: 768px) {
  .c-page-header__target-details {
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.c-page-header__next-target {
  font-weight: 700;
}

.c-page-header__headings {
  margin-bottom: 10px;
}

.c-page-header__main-heading {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 768px) {
  .c-page-header__main-heading {
    font-size: 2.4rem;
    margin: 0;
  }
}

.c-page-header__sub-heading {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .c-page-header__sub-heading {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-page-header__sub-heading {
    font-size: 1.6rem;
  }
}

.c-page-header__sub-heading-small-margin {
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
@media (max-width: 599px) {
  .c-page-header__sub-heading-small-margin {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-page-header__sub-heading-small-margin {
    font-size: 1.6rem;
  }
}

.c-page-header__small-sub-heading {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  .c-page-header__small-sub-heading {
    display: none;
  }
}
@media (min-width: 768px) {
  .c-page-header__small-sub-heading {
    font-size: 1.3rem;
  }
}

.c-application-header__container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1260px) {
  .c-application-header__container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-application__details {
  display: block;
}

.c-application__public-submission {
  display: block;
  background-color: #e1e1e1;
  border-radius: 2px;
  color: #434343;
  padding: 10px;
  width: 510px;
  margin-bottom: 15px;
}

.c-public-submission-header__main-heading-text {
  font-size: 1.8rem;
}

.c-public-submission-header__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-bottom: 5px;
}

.c-side-panel {
  padding: 10px 15px 50px 20px;
}
@media (min-width: 900px) {
  .c-side-panel {
    padding: 10px 0 20px 13px;
    position: relative;
    z-index: 10;
  }
  .c-side-panel:after {
    content: "";
    display: block;
    width: 20px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
  }
}

.c-side-panel__header {
  padding-bottom: 16px;
  border-bottom: 3px solid #86bfa4;
  margin-bottom: 16px;
}
.c-side-panel__header:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 900px) {
  .c-side-panel__header {
    display: none;
  }
}

.c-side-panel__logo-img {
  float: left;
  width: 95px;
  height: 40px;
}
@media (max-width: 599px) {
  .c-side-panel__logo-img {
    height: 30px;
    width: 75px;
  }
}

.c-side-panel__close-btn {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  float: right;
  padding: 11px 3px;
  line-height: 1;
  transform: scale(1.4);
}
.c-side-panel__close-btn:hover {
  background: none;
}
@media (max-width: 599px) {
  .c-side-panel__close-btn {
    padding: 6px 0 6px 6px;
    transform: none;
  }
}

.c-tab-nav {
  padding: 0;
  margin: 10px 0 5px 0;
  list-style: none;
}
.c-tab-nav:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 768px) {
  .c-tab-nav {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .c-tab-nav--in-page {
    padding: 0 10px;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #E1E1E1;
  }
}

.c-tab-nav__item {
  float: left;
  margin: 0 4px 4px 0;
}
@media (min-width: 768px) {
  .c-tab-nav__item {
    margin: 0 2px 0 0;
  }
}

.c-tab-nav__link {
  display: block;
  position: relative;
  padding: 8px 10px;
  border-radius: 3px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: #565656;
  background-color: #E1E1E1;
  border: 1px solid #E1E1E1;
  outline: none;
  cursor: pointer;
  transition: all 250ms ease;
}
@media (min-width: 768px) {
  .c-tab-nav__link {
    border-radius: 3px 3px 0 0;
  }
  .c-tab-nav__link:hover {
    color: #fff;
    background-color: #008650;
    border-color: #008650;
  }
  .c-tab-nav__link:hover:after {
    content: "";
    display: block;
    width: calc(100% + 2px);
    height: 1px;
    position: absolute;
    left: -1px;
    bottom: -2px;
    background-color: #008650;
  }
}
@media (min-width: 1260px) {
  .c-tab-nav__link {
    font-size: 1.4rem;
    padding: 10px 25px;
  }
}

.c-tab-nav--compact .c-tab-nav__link {
  font-size: 1.3rem;
  padding-left: 18px;
  padding-right: 18px;
}

.c-tab-nav__link--active {
  background-color: #fff;
  border-top: 3px solid #008650;
  padding-top: 6px;
}
@media (min-width: 768px) {
  .c-tab-nav__link--active {
    border-bottom: 1px solid #fff;
  }
  .c-tab-nav__link--active:hover {
    color: #565656;
    border-color: #E1E1E1;
    border-top-color: #008650;
    border-bottom-color: #fff;
    background-color: #fff;
  }
  .c-tab-nav__link--active:after, .c-tab-nav__link--active:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background-color: #fff;
  }
}
@media (min-width: 1260px) {
  .c-tab-nav__link--active {
    padding-top: 8px;
  }
}

.c-tab-content {
  margin: 0 0 30px 0;
  padding: 20px 15px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
}
.c-tab-content:after {
  content: "";
  display: table;
  clear: both;
}

.c-link-list {
  margin: 30px 0;
}

.c-link-list--narrow-margins {
  margin: 20px 0;
}

.c-link-list__heading {
  font-size: 1.4rem;
  line-height: 1;
  margin: 0 0 15px 0;
}

.c-link-list__list {
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.c-link-list__item {
  display: block;
  margin: 7px 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.c-link-list__item--emphasised + .c-link-list__item--emphasised {
  margin-top: 12px;
}

.c-link-list__item--emphasised + .c-link-list__item:not(.c-link-list__item--emphasised) {
  /* Sam was here */
  margin-top: 30px;
}

.c-link-list__link {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  color: #008650;
  cursor: pointer;
  text-decoration: underline;
  transition: color 300ms ease;
}
.c-link-list__link:hover {
  background: none;
}
.c-link-list__link:hover {
  color: #00a355;
}
.c-link-list__link:disabled,
.c-link-list__link .disabeld {
  pointer-events: none;
  color: #959595;
  cursor: default;
}

.c-link-list__item-text {
  display: inline-block;
  vertical-align: middle;
}

.c-link-list__item--emphasised .c-link-list__link,
.c-link-list__link--bold {
  font-size: 1.4rem;
  font-weight: 700;
}

.c-link-list__item-text {
  display: inline-block;
  vertical-align: middle;
}

.c-link-list__link-desc {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px 0 0;
}

.c-link-list__item-disabled {
  color: #008650;
  margin: 7px 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.c-modal-content__body-content .c-link-list__list .c-link-list__link {
  text-align: left;
}

.c-summary-list {
  display: block;
  margin: 0;
}

.c-summary-list:after {
  content: "";
  display: table;
  clear: both;
}

.c-summary-list__detail {
  float: left;
  clear: left;
  width: 70%;
  margin: 10px 0;
}

.c-summary-list__detail-text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.c-summary-list__actions {
  float: right;
  width: 30%;
  margin: 10px 0;
  text-align: right;
}

.c-summary-list__action {
  font-size: 1.4rem;
  line-height: 21px;
}

.c-table {
  position: relative;
  margin: 0 0 20px 0;
  width: 100%;
  height: auto !important;
  border-spacing: 0;
  border-collapse: collapse;
}

.c-table--spacer {
  height: 12px;
}

.c-table__row,
.lt-row {
  background-color: #fff;
  transition: background-color 200ms ease;
  /**
  * Hack to prevent loading spinner causing component height
  * to change in quick succession. Not easy to fix in Ember Light
  * Table add-on but may be worth revisiting at some point.
  */
}
.c-table__row:hover,
.lt-row:hover {
  background-color: #f8f8f8;
}
.c-table__row.lt-is-loading td,
.lt-row.lt-is-loading td {
  height: 369px;
}

.c-table__row--headings:hover {
  background-color: inherit;
}

.c-table__cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 10px 5px;
  text-align: left;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #e1e1e1;
}

.c-table__cell--view {
  border-bottom: none;
  border-top: 6px solid #fff;
  background-color: #f1f3f6;
}

.c-table__cell--wrap {
  overflow: auto;
  text-overflow: clip;
  white-space: normal;
}

.c-table-cell__cropped-content {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-table__cell--heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #6d6d6d;
  border-bottom: 2px solid #86bfa4;
}

.c-table__cell--view-heading {
  background: none;
  color: #434343;
}

.c-table--small-headings .c-table__cell--heading {
  font-size: 1.2rem;
}
@media (max-width: 599px) {
  .c-table--small-headings .c-table__cell--heading {
    font-size: 1rem;
  }
}

.c-table__row--clickable {
  cursor: pointer;
}
.c-table__row--clickable .c-table__cell--actions {
  cursor: default;
}

.c-table__row--toggle-column {
  padding: 0;
}

.c-table__toggle-expandable-row {
  display: block;
  padding: 10px 5px;
}

.c-table__cell--actions {
  width: 70px;
  text-align: right;
  white-space: nowrap;
  text-overflow: initial;
}

.c-table__action {
  vertical-align: top;
  margin-left: 10px;
  text-align: inherit;
}
.c-table__action:first-child {
  margin-left: 0;
}

.c-table__cell-list {
  margin: 0 0 10px 0;
}

.c-table__cell-list-label {
  font-weight: 700;
}

.c-table__cell-list-value {
  margin-bottom: 10px;
}

.c-table__heading-text {
  display: inline-block;
  vertical-align: middle;
}

.c-table__sort-trigger {
  display: inline-block;
  float: none !important;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  margin-left: 5px;
  border-radius: 2px;
  background-color: #e1e1e1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px;
  background-image: url("/assets/img/chevron-down.svg");
}

.c-table__sort-trigger--ascending {
  background-image: url("/assets/img/chevron-up.svg");
}

.c-table__sort-trigger--descending {
  background-image: url("/assets/img/chevron-down.svg");
}

.c-table__file-icon--infected {
  color: #E26521;
}

.c-table__export-link {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.c-table__export-link {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 5px;
}

.c-table-ordering {
  border-collapse: separate;
  border-spacing: 0px 4px;
  background: white;
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border-radius: 3px;
  border: solid 1px #DDDDDD;
}

.c-table-ordering__cell {
  padding-left: 10px;
  border-radius: 3px 0px 0px 3px;
  border-top: solid 1px #DDDDDD;
  border-bottom: solid 1px #DDDDDD;
  border-left: solid 1px #DDDDDD;
}

.c-table-ordering__cell-right {
  border-radius: 0px 3px 3px 0px;
  font-size: 14px;
  border-top: solid 1px #DDDDDD;
  border-bottom: solid 1px #DDDDDD;
  border-right: solid 1px #DDDDDD;
  font-weight: bold;
}

.c-table-ordering__cell-buttons-container {
  padding-left: 5px;
}

.c-table-ordering__cell-buttons-container-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-editable-heading {
  margin-bottom: 10px;
}

.c-editable-heading__text-container {
  white-space: wrap;
}

.c-editable-heading__input {
  display: block;
  width: 100%;
  max-width: 650px;
  padding: 7px 11px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: "texgyreheros", "helvetica", "arial";
  font-size: 1.4rem;
  line-height: 1;
  height: 36px;
  width: 100px;
  display: inline-block;
  vertical-align: middle;
}

.c-editable-heading__form {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.c-editable-heading__edit-link {
  margin-left: 10px;
}
@media (max-width: 899px) {
  .c-editable-heading__edit-link {
    display: none;
  }
}

.c-page-heading {
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0 0 25px 0;
}
@media (max-width: 599px) {
  .c-page-heading {
    font-size: 2rem;
  }
}

.c-page-heading__text {
  font-size: 2.3rem;
  line-height: 1.2;
  margin: 0;
}
@media (min-width: 600px) {
  .c-page-heading__text {
    float: left;
  }
}

.c-page-heading--has-actions .c-page-heading__text {
  line-height: 34px;
}

@media (max-width: 599px) {
  .c-page-heading__actions {
    padding-top: 10px;
  }
}
@media (min-width: 600px) {
  .c-page-heading__actions {
    float: right;
  }
}

.c-section-heading {
  margin: 40px 0 30px 0;
  padding-bottom: 10px;
  border-bottom: 3px solid #86bfa4;
}
@media (max-width: 599px) {
  .c-section-heading {
    font-size: 1.8rem;
  }
}

.c-section-heading__text {
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 600px) {
  .c-section-heading__text {
    float: left;
  }
}

.c-section-heading--has-actions .c-section-heading__text {
  line-height: 34px;
}

@media (max-width: 599px) {
  .c-section-heading__actions {
    padding-top: 10px;
  }
}
@media (min-width: 600px) {
  .c-section-heading__actions {
    float: right;
  }
}

.c-section-heading__status {
  margin-right: 10px;
}

.c-sub-heading {
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 35px 0 25px 0;
}

.c-sub-heading--view {
  font-size: 2rem;
  padding-top: 25px;
  border-top: 1px solid #d1d1d1;
}

.c-section-heading + .ember-view .c-sub-heading--view {
  padding-top: 0;
  border-top: 0;
}

.c-sub-heading__heading-text {
  display: inline-block;
  vertical-align: middle;
}

.c-sub-heading--nested {
  margin: 0 0 15px 0;
}

/**
*  ================
*   6. TRUMPS
*  ================
*
*  Trump styles should include utilities/helper classes with the ability to
*  override any styles declared higher up in the ITCSS architecture.
*
*  This is also where you can hide your hacky classes that just get the job done.
*  These can be found in _shame.scss ;)
*
*/
.cp-Panel {
  border-left: 4px solid #008650;
  border-bottom: 2px solid #008650;
  margin-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}
.cp-Panel .cp-Panel {
  background: #F1F3F6;
  border: none;
}
.cp-Panel .cp-Panel .cp-Panel-toggle-chevron {
  color: rgba(67, 67, 67, 0.7);
}

.cp-Panel-toggle {
  display: block;
  text-decoration: none;
  padding: 10px 40px 10px 0;
  position: relative;
}

.cp-Panel-toggle-chevron {
  color: #008650;
  position: absolute;
  right: 15px;
  top: 13px;
}

.cp-is-open .cp-Panel-toggle {
  font-size: 1.8rem;
}
.cp-is-open .cp-Panel-toggle-chevron {
  transform: rotate(180deg);
}
.cp-is-open .cp-Panel-body {
  padding: 0 0 30px 0;
}

.cp-is-closed .cp-Panel-toggle {
  font-size: 1.4rem;
}
.cp-is-closed .cp-Panel-toggle-chevron {
  transform: rotate(0);
}
.cp-is-closed .cp-Panel-body {
  padding: 0;
}

@media (min-width: 768px) {
  .cp-Panel {
    padding-left: 15px;
    padding-right: 0;
  }
  .cp-is-open > .cp-Panel-body {
    padding-bottom: 15px;
  }
  .cp-Panel .cp-Panel .cp-Panel-body {
    padding-right: 15px;
  }
  .cp-Panel-toggle {
    padding-right: 230px;
  }
}
/*
*  ================
*   HELPERS
*  ================
*
*  Reusable helper classes - use sparingly. Unless a simple style is really
*  common across a lot of components it should live with the component rather
*  than here.
*
*  NOTE: Helper classes should prepended with an `h`, e.g. .h-clearfix etc.
*
*/
.h-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.h-text-link {
  cursor: pointer;
  color: #008650;
}

.h-button-link {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  cursor: pointer;
  color: #008650;
}
.h-button-link:hover {
  background: none;
}

.h-jiggle {
  animation-name: shake;
  animation-duration: 600ms;
  animation-fill-mode: both;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-2px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(2px, 0, 0);
  }
}
.h-print-only {
  display: none !important;
}

@media print {
  html,
  body {
    overflow-x: visible;
    height: auto;
    position: static;
  }
  .h-hide-for-print {
    display: none;
  }
  .h-print-only {
    display: block !important;
  }
  .c-print-header {
    margin-bottom: 20px;
  }
  .c-print-header__address {
    display: inline-block;
    vertical-align: top;
    font-size: 1rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-style: normal;
  }
  .c-print-header__list {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #ccc;
    font-size: 1rem;
    line-height: 1.4;
  }
  .c-print-header__list:after {
    content: "";
    display: table;
    clear: both;
  }
  .c-print-header__list-key {
    float: left;
    clear: left;
    min-width: 50px;
    margin: 0;
    text-transform: uppercase;
  }
  .c-print-header__list-item {
    float: left;
    margin: 0;
  }
  .c-print-header__logo-col {
    text-align: right;
  }
  .c-print-header__logo {
    display: inline-block;
    width: 100%;
  }
  .l-form-container-inner {
    max-width: none;
    padding: 0;
  }
  .c-print-heading {
    font-size: 2.8rem;
  }
  .c-table-cell-print__no-wrap {
    overflow: unset;
    text-overflow: unset;
    white-space: pre-line;
  }
}
/*
*  ================
*   HACKS
*  ================
*  Hacks that you're *definitely* going to tidy up later right? ;) Any hacks should
*  be well commented so that it's clear why and where they're being used. This
*  makes them easier to fix/deprecate down the road.
*
*  Hacky classes should be prefixed with the underscore character. For example,
*  `._just-do-what-i-want` or `._appease-ie`
*/
/*
  Fix for unnecessary scroll bar being added for couple of pixels:
*/
.ember-light-table {
  overflow: visible;
}

/*
  Hacky fix for issue with file upload add-on which stops user being able to
  tab to element:
*/
.c-form-upload-field__container {
  position: relative;
}
.c-form-upload-field__container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 238px;
  height: 100%;
  background: #fff;
}
.c-form-upload-field__container.c-form-upload-field__container--file-uploaded:after {
  content: none;
}

.file-upload input[type=file] {
  display: block !important;
  position: absolute;
  height: 34px;
  z-index: -1;
}

.c-form-upload-field__button,
.c-form-upload-field__message {
  position: relative;
  z-index: 10;
}

/*
  Class prevents page from scrolling behind full-screen menu
  panel on mobile. Is toggled on/off with menu panel in the
  content-container component.
*/
@media (max-width: 599px) {
  ._hide-overflow {
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
}
._hide-overflow .l-content-container {
  z-index: 901;
}

/*
  Overrides for out-of-date browser message add-on
*/
#buorg {
  font-family: "texgyreheros", "helvetica", "arial";
  background-color: #D50010;
  background-image: none;
  color: #fff;
  font-weight: 700;
  text-align: center;
  border: none;
}
#buorg #buorgul {
  display: inline-block;
  vertical-align: middle;
  padding: 10px 16px;
  border-radius: 2px;
  border: none;
  background-color: #fff;
  box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2), inset 0 -2px 0 0 rgba(0, 0, 0, 0.14);
  color: #333;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
#buorg #buorgig {
  display: inline-block;
  padding: 0;
  border: none;
  background: none;
  box-shadow: none;
  font-family: "texgyreheros", "helvetica", "arial";
  font-weight: 400;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
  padding: 0 10px;
  margin-left: 10px;
  background-color: none !important;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.6rem;
  line-height: 34px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
#buorg #buorgig:hover {
  background: none;
}

/**
 * Overrides for Leaflet popup styles
*/
.leaflet-popup-content-wrapper {
  border-radius: 2px;
}

.leaflet-popup-content {
  margin: 10px;
}

.c-map-container--full .leaflet-top.leaflet-right {
  z-index: 500;
  top: 60px;
  right: 10px;
}
@media (max-width: 599px) {
  .c-map-container--full .leaflet-top.leaflet-right {
    position: fixed;
  }
}
.c-map-container--full .leaflet-bottom.leaflet-right {
  z-index: 500;
  left: 50px;
}
@media (max-width: 599px) {
  .c-map-container--full .leaflet-bottom.leaflet-right {
    position: fixed;
  }
}

.leaflet-touch-zoom {
  touch-action: none;
}

/**
 * Always show scrollbar to prevent the page from jumping around
 * (not @jooleearr approved so I'm putting it in the css file of shame - Sam)
 */
html {
  overflow-y: scroll;
}

/**
 * Remove extra space from the bottom of the "Viewing a property" menu item
 * Sorry Julia :)
 */
.c-task-menu__tasks .c-task-menu__tasks .c-task-menu__tasks .c-task-menu__tasks:only-child {
  margin-bottom: 0;
}

.c-task-menu__tasks .c-task-menu__tasks .c-task-menu__tasks .c-task-menu__tasks:only-child .c-task-menu__current-action {
  padding-bottom: 0;
}

/**
 * Styles added for varation applications
 */
.c-form-select-field__input--multiline {
  height: auto;
}
.c-form-select-field__input--multiline .ember-power-select-clear-btn {
  position: absolute;
  top: 50%;
  margin-top: -17px;
}
.c-form-select-field__input--multiline .ember-power-select-selected-item {
  width: calc(100% - 30px);
}

.ember-power-select-placeholder {
  line-height: 20px;
  margin: 0;
  color: black;
}

.c-form-select-field__number {
  display: inline-block;
  min-width: 4em;
}

._style-guide [data-test-save] {
  display: none;
}

._style-guide__component-example {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  position: relative;
  margin-top: 15px;
  margin: 40px 0;
}
._style-guide__component-example:before {
  content: "Component Example";
  position: absolute;
  bottom: 100%;
  left: 5px;
  background: #e1e1e1;
  display: block;
  padding: 4px 10px;
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px 2px 0 0;
  line-height: 1;
}

._style-guide__example-separator {
  margin-bottom: 20px;
}

._style-guide__code-snippet {
  display: inline-block;
  padding: 2px 5px;
  background: #f3f3f3;
  border-radius: 3px;
  color: #45494c;
  font-size: 1.4rem;
  font-family: monospace;
  border: 1px solid #e1e1e1;
}

._style-guide__code-block {
  position: relative;
  padding: 15px;
  margin-top: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 2px;
  background: #45494C;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: courier, monospace;
}
._style-guide__code-block:before {
  content: "Component Usage";
  position: absolute;
  bottom: 100%;
  left: 5px;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  border-radius: 2px 2px 0 0;
  background: #FFF;
  display: block;
  padding: 4px 10px;
  font-size: 1rem;
  font-family: "texgyreheros", "helvetica", "arial";
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

._style-guide__code-comment {
  color: #9e9e9e;
}

._style-guide__img {
  display: block;
  width: 100%;
}
._style-guide__img img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

._style-guide > .c-page-heading {
  margin-top: 20px;
}

.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-select-dropdown * {
  box-sizing: border-box;
}

.ember-power-select-trigger {
  position: relative;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  border-radius: 4px;
  background-color: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
  text-overflow: ellipsis;
  min-height: 1.75em;
  user-select: none;
  -webkit-user-select: none;
  color: inherit;
  /* Minimum clearfix for modern browsers */
}
.ember-power-select-trigger:after {
  content: "";
  display: table;
  clear: both;
}
.ember-power-select-trigger .ember-power-select-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ember-power-select-trigger:focus,
.ember-power-select-trigger--active {
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  border-left: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-basic-dropdown-trigger--below.ember-power-select-trigger[aria-expanded=true],
.ember-basic-dropdown-trigger--in-place.ember-power-select-trigger[aria-expanded=true] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-basic-dropdown-trigger--above.ember-power-select-trigger[aria-expanded=true] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-placeholder {
  color: #999999;
  display: block;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ember-power-select-status-icon {
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 4px 0 4px;
  border-color: #aaaaaa transparent transparent transparent;
}
.ember-basic-dropdown-trigger[aria-expanded=true] .ember-power-select-status-icon {
  transform: rotate(180deg);
}

.ember-power-select-clear-btn {
  position: absolute;
  cursor: pointer;
}

.ember-power-select-multiple-options {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container {
  flex-grow: 1;
  display: flex;
}
.ember-power-select-multiple-options li.ember-power-select-trigger-multiple-input-container input {
  flex-grow: 1;
}

.ember-power-select-trigger-multiple-input {
  font-family: inherit;
  font-size: inherit;
  border: none;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  text-indent: 2px;
  /* There's a browser bug where this selectos cannot be chained with commas */
}
.ember-power-select-trigger-multiple-input:disabled {
  background-color: #eeeeee;
}
.ember-power-select-trigger-multiple-input::placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-webkit-input-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-moz-placeholder {
  opacity: 1;
  color: #999999;
}
.ember-power-select-trigger-multiple-input::-ms-input-placeholder {
  opacity: 1;
  color: #999999;
}

.ember-power-select-multiple-option {
  border: 1px solid gray;
  border-radius: 4px;
  color: #333333;
  background-color: #e4e4e4;
  padding: 0 4px;
  line-height: 1.45;
  margin: 2px 0 2px 3px;
}

.ember-power-select-multiple-remove-btn {
  cursor: pointer;
}
.ember-power-select-multiple-remove-btn:not(:hover) {
  opacity: 0.5;
}

.ember-power-select-search {
  padding: 4px;
}

.ember-power-select-search-input {
  border: 1px solid #aaaaaa;
  border-radius: 0;
  width: 100%;
  font-size: inherit;
  line-height: inherit;
  padding: 0 5px;
}
.ember-power-select-search-input:focus {
  border: 1px solid #aaaaaa;
  box-shadow: none;
}

.ember-power-select-search-input-field {
  width: 100%;
  height: 100%;
  padding: 0 8px;
  font-family: inherit;
  font-size: inherit;
  border: none;
  display: block;
  line-height: inherit;
  -webkit-appearance: none;
  outline: none;
  background-color: transparent;
}

.ember-power-select-dropdown {
  border-left: 1px solid #aaaaaa;
  border-right: 1px solid #aaaaaa;
  line-height: 1.75;
  border-radius: 4px;
  box-shadow: none;
  overflow: hidden;
  color: inherit;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--above {
  border-top: 1px solid #aaaaaa;
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--below,
.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  border-top: none;
  border-bottom: 1px solid #aaaaaa;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ember-power-select-dropdown.ember-basic-dropdown-content--in-place {
  width: 100%;
}

.ember-power-select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}
.ember-power-select-options[role=listbox] {
  overflow-y: auto; /* in firefox in windows this can cause a word-break issue. Try `overflow-y: scroll` if that happens */
  -webkit-overflow-scrolling: touch;
  max-height: 12.25em;
}

.ember-power-select-option {
  cursor: pointer;
  padding: 0 8px;
}

.ember-power-select-group[aria-disabled=true] {
  color: #999999;
  cursor: not-allowed;
}

.ember-power-select-group[aria-disabled=true] .ember-power-select-option,
.ember-power-select-option[aria-disabled=true] {
  color: #999999;
  pointer-events: none;
  cursor: not-allowed;
}

.ember-power-select-option[aria-selected=true] {
  background-color: #dddddd;
}

.ember-power-select-option[aria-current=true] {
  background-color: #5897fb;
  color: #ffffff;
}

.ember-power-select-group-name {
  cursor: default;
  font-weight: bold;
}

.ember-power-select-trigger[aria-disabled=true] {
  background-color: #eeeeee;
}

.ember-power-select-trigger {
  padding: 0 16px 0 0;
}

.ember-power-select-selected-item,
.ember-power-select-placeholder {
  margin-left: 8px;
}

.ember-power-select-status-icon {
  right: 5px;
}

.ember-power-select-clear-btn {
  right: 25px;
}

.ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-left: 40px;
}
.ember-power-select-group .ember-power-select-option {
  padding-left: 24px;
}
.ember-power-select-group .ember-power-select-group-name {
  padding-left: 8px;
}

.ember-power-select-trigger[dir=rtl] {
  padding: 0 0 0 16px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-selected-item,
.ember-power-select-trigger[dir=rtl] .ember-power-select-placeholder {
  margin-right: 8px;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-multiple-option {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-trigger-multiple-input {
  float: right;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-status-icon {
  left: 5px;
  right: initial;
}
.ember-power-select-trigger[dir=rtl] .ember-power-select-clear-btn {
  left: 25px;
  right: initial;
}

.ember-power-select-visually-hidden {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-group-name {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group .ember-power-select-option {
  padding-right: 40px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-option {
  padding-right: 24px;
}
.ember-power-select-dropdown[dir=rtl] .ember-power-select-group .ember-power-select-group-name {
  padding-right: 8px;
}

.ember-basic-dropdown {
  position: relative;
}

.ember-basic-dropdown,
.ember-basic-dropdown-content,
.ember-basic-dropdown-content * {
  box-sizing: border-box;
}

.ember-basic-dropdown-content {
  position: absolute;
  width: auto;
  z-index: 1000;
  background-color: #ffffff;
}

.ember-basic-dropdown-content--left {
  left: 0;
}

.ember-basic-dropdown-content--right {
  right: 0;
}

.ember-basic-dropdown-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  pointer-events: none;
}

.ember-basic-dropdown-content-wormhole-origin {
  display: inline;
}

.ember-power-calendar {
  box-sizing: border-box;
  position: relative;
  font-size: 14px;
  line-height: 1.4286;
}

.ember-power-calendar-nav {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  line-height: 2;
}

.ember-power-calendar-nav * {
  box-sizing: border-box;
}

.ember-power-calendar-days,
.ember-power-calendar-days * {
  box-sizing: border-box;
}

.ember-power-calendar-nav-title {
  flex: 1;
  text-align: center;
}

.ember-power-calendar-row {
  display: flex;
  justify-content: space-between;
}

.ember-power-calendar-weekday {
  appearance: none;
  flex: 1 1 100%;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 0;
}

.ember-power-calendar-day {
  appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  flex: 1 1 100%;
  font-size: inherit;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.ember-power-calendar-nav-control {
  appearance: none;
  background-color: transparent;
  background-color: initial;
  border: none;
  border: initial;
  outline: none;
  outline: initial;
  line-height: 1;
  font-size: 150%;
}
.ember-power-calendar-nav-control:focus {
  transform: scale(1.2);
}

.ember-power-calendar-day--selected,
.ember-power-calendar-day--selected:not([disabled]):hover {
  font-weight: bold;
}

.ember-power-calendar-day--interactive[disabled] {
  opacity: 0.4;
}