/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *





 */
/* BASICS */

.CodeMirror {
  /* Set height, width, borders, and global font properties here */
  font-family: monospace;
  height: 300px;
  color: black;
  direction: ltr;
}

/* PADDING */

.CodeMirror-lines {
  padding: 4px 0; /* Vertical padding around content */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px; /* Horizontal padding of content */
}

.CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  background-color: white; /* The little square between H and V scrollbars */
}

/* GUTTER */

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}
.CodeMirror-linenumbers {}
.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker { color: black; }
.CodeMirror-guttermarker-subtle { color: #999; }

/* CURSOR */

.CodeMirror-cursor {
  border-left: 1px solid black;
  border-right: none;
  width: 0;
}
/* Shown when moving in bi-directional text */
.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}
.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}
.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}
.cm-fat-cursor .CodeMirror-line::selection,
.cm-fat-cursor .CodeMirror-line > span::selection, 
.cm-fat-cursor .CodeMirror-line > span > span::selection { background: transparent; }
.cm-fat-cursor .CodeMirror-line::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span::-moz-selection,
.cm-fat-cursor .CodeMirror-line > span > span::-moz-selection { background: transparent; }
.cm-fat-cursor { caret-color: transparent; }
@-moz-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@-webkit-keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}
@keyframes blink {
  0% {}
  50% { background-color: transparent; }
  100% {}
}

/* Can style cursor different in overwrite (non-insert) mode */
.CodeMirror-overwrite .CodeMirror-cursor {}

.cm-tab { display: inline-block; text-decoration: inherit; }

.CodeMirror-rulers {
  position: absolute;
  left: 0; right: 0; top: -50px; bottom: 0;
  overflow: hidden;
}
.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0; bottom: 0;
  position: absolute;
}

/* DEFAULT THEME */

.cm-s-default .cm-header {color: blue;}
.cm-s-default .cm-quote {color: #090;}
.cm-negative {color: #d44;}
.cm-positive {color: #292;}
.cm-header, .cm-strong {font-weight: bold;}
.cm-em {font-style: italic;}
.cm-link {text-decoration: underline;}
.cm-strikethrough {text-decoration: line-through;}

.cm-s-default .cm-keyword {color: #708;}
.cm-s-default .cm-atom {color: #219;}
.cm-s-default .cm-number {color: #164;}
.cm-s-default .cm-def {color: #00f;}
.cm-s-default .cm-variable,
.cm-s-default .cm-punctuation,
.cm-s-default .cm-property,
.cm-s-default .cm-operator {}
.cm-s-default .cm-variable-2 {color: #05a;}
.cm-s-default .cm-variable-3, .cm-s-default .cm-type {color: #085;}
.cm-s-default .cm-comment {color: #a50;}
.cm-s-default .cm-string {color: #a11;}
.cm-s-default .cm-string-2 {color: #f50;}
.cm-s-default .cm-meta {color: #555;}
.cm-s-default .cm-qualifier {color: #555;}
.cm-s-default .cm-builtin {color: #30a;}
.cm-s-default .cm-bracket {color: #997;}
.cm-s-default .cm-tag {color: #170;}
.cm-s-default .cm-attribute {color: #00c;}
.cm-s-default .cm-hr {color: #999;}
.cm-s-default .cm-link {color: #00c;}

.cm-s-default .cm-error {color: #f00;}
.cm-invalidchar {color: #f00;}

.CodeMirror-composing { border-bottom: 2px solid; }

/* Default styles for common addons */

div.CodeMirror span.CodeMirror-matchingbracket {color: #0b0;}
div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #a22;}
.CodeMirror-matchingtag { background: rgba(255, 150, 0, .3); }
.CodeMirror-activeline-background {background: #e8f2ff;}

/* STOP */

/* The rest of this file contains styles related to the mechanics of
   the editor. You probably shouldn't touch them. */

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: white;
}

.CodeMirror-scroll {
  overflow: scroll !important; /* Things will break if this is overridden */
  /* 50px is the magic margin used to hide the element's real scrollbars */
  /* See overflow: hidden in .CodeMirror */
  margin-bottom: -50px; margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: none; /* Prevent dragging from highlighting the element */
  position: relative;
  z-index: 0;
}
.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

/* The fake, visible scrollbars. Used to force redraw during scrolling
   before actual scrolling happens, thus preventing shaking and
   flickering artifacts. */
.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-gutter-filler {
  position: absolute;
  z-index: 6;
  display: none;
  outline: none;
}
.CodeMirror-vscrollbar {
  right: 0; top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}
.CodeMirror-hscrollbar {
  bottom: 0; left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}
.CodeMirror-scrollbar-filler {
  right: 0; bottom: 0;
}
.CodeMirror-gutter-filler {
  left: 0; bottom: 0;
}

.CodeMirror-gutters {
  position: absolute; left: 0; top: 0;
  min-height: 100%;
  z-index: 3;
}
.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}
.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: none !important;
  border: none !important;
}
.CodeMirror-gutter-background {
  position: absolute;
  top: 0; bottom: 0;
  z-index: 4;
}
.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}
.CodeMirror-gutter-wrapper ::selection { background-color: transparent }
.CodeMirror-gutter-wrapper ::-moz-selection { background-color: transparent }

.CodeMirror-lines {
  cursor: text;
  min-height: 1px; /* prevents collapsing before first draw */
}
.CodeMirror pre.CodeMirror-line,
.CodeMirror pre.CodeMirror-line-like {
  /* Reset some styles that the rest of the page might have set */
  -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0;
  border-width: 0;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}
.CodeMirror-wrap pre.CodeMirror-line,
.CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px; /* Force widget margins to stay inside of the container */
}

.CodeMirror-widget {}

.CodeMirror-rtl pre { direction: rtl; }

.CodeMirror-code {
  outline: none;
}

/* Force content-box sizing for the elements where we expect it */
.CodeMirror-scroll,
.CodeMirror-sizer,
.CodeMirror-gutter,
.CodeMirror-gutters,
.CodeMirror-linenumber {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}
.CodeMirror-measure pre { position: static; }

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}
div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected { background: #d9d9d9; }
.CodeMirror-focused .CodeMirror-selected { background: #d7d4f0; }
.CodeMirror-crosshair { cursor: crosshair; }
.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection { background: #d7d4f0; }
.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection { background: #d7d4f0; }

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, .4);
}

/* Used to force a border model for a node */
.cm-force-border { padding-right: .1px; }

@media print {
  /* Hide the cursor when printing */
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}

/* See issue #2901 */
.cm-tab-wrap-hack:after { content: ''; }

/* Help users use markselection to safely style text background */
span.CodeMirror-selectedtext { background: none; }
.cm-s-twilight.CodeMirror { background: #141414; color: #f7f7f7; } /**/
.cm-s-twilight div.CodeMirror-selected { background: #323232; } /**/
.cm-s-twilight .CodeMirror-line::selection, .cm-s-twilight .CodeMirror-line > span::selection, .cm-s-twilight .CodeMirror-line > span > span::selection { background: rgba(50, 50, 50, 0.99); }
.cm-s-twilight .CodeMirror-line::-moz-selection, .cm-s-twilight .CodeMirror-line > span::-moz-selection, .cm-s-twilight .CodeMirror-line > span > span::-moz-selection { background: rgba(50, 50, 50, 0.99); }

.cm-s-twilight .CodeMirror-gutters { background: #222; border-right: 1px solid #aaa; }
.cm-s-twilight .CodeMirror-guttermarker { color: white; }
.cm-s-twilight .CodeMirror-guttermarker-subtle { color: #aaa; }
.cm-s-twilight .CodeMirror-linenumber { color: #aaa; }
.cm-s-twilight .CodeMirror-cursor { border-left: 1px solid white; }

.cm-s-twilight .cm-keyword { color: #f9ee98; } /**/
.cm-s-twilight .cm-atom { color: #FC0; }
.cm-s-twilight .cm-number { color:  #ca7841; } /**/
.cm-s-twilight .cm-def { color: #8DA6CE; }
.cm-s-twilight span.cm-variable-2, .cm-s-twilight span.cm-tag { color: #607392; } /**/
.cm-s-twilight span.cm-variable-3, .cm-s-twilight span.cm-def, .cm-s-twilight span.cm-type { color: #607392; } /**/
.cm-s-twilight .cm-operator { color: #cda869; } /**/
.cm-s-twilight .cm-comment { color:#777; font-style:italic; font-weight:normal; } /**/
.cm-s-twilight .cm-string { color:#8f9d6a; font-style:italic; } /**/
.cm-s-twilight .cm-string-2 { color:#bd6b18; } /*?*/
.cm-s-twilight .cm-meta { background-color:#141414; color:#f7f7f7; } /*?*/
.cm-s-twilight .cm-builtin { color: #cda869; } /*?*/
.cm-s-twilight .cm-tag { color: #997643; } /**/
.cm-s-twilight .cm-attribute { color: #d6bb6d; } /*?*/
.cm-s-twilight .cm-header { color: #FF6400; }
.cm-s-twilight .cm-hr { color: #AEAEAE; }
.cm-s-twilight .cm-link { color:#ad9361; font-style:italic; text-decoration:none; } /**/
.cm-s-twilight .cm-error { border-bottom: 1px solid red; }

.cm-s-twilight .CodeMirror-activeline-background { background: #27282E; }
.cm-s-twilight .CodeMirror-matchingbracket { outline:1px solid grey; color:white !important; }
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600");
/* line 9, node_modules/govuk-frontend/govuk/core/_links.scss */
a, .govuk-link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

/*! Copyright (c) 2011 by Margaret Calvert & Henrik Kubel. All rights reserved. The font has been customised for exclusive use on gov.uk. This cut is not commercially available. */
/* stylelint-disable-line scss/comment-no-loud  */
@font-face {
  font-family: "GDS Transport";
  font-style: normal;
  font-weight: normal;
  src: url(/images/light-94a07e06a1-v2.woff2) format("woff2"), url(/images/light-f591b13f7d-v2.woff) format("woff");
  font-display: fallback;
}

@font-face {
  font-family: "GDS Transport";
  font-style: normal;
  font-weight: bold;
  src: url(/images/bold-b542beb274-v2.woff2) format("woff2"), url(/images/bold-affa96571d-v2.woff) format("woff");
  font-display: fallback;
}

@media print {
  /* line 9, node_modules/govuk-frontend/govuk/core/_links.scss */
  a, .govuk-link {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:focus, .govuk-link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 80, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:link, .govuk-link:link {
  color: #1d70b8;
}

/* line 84, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:visited, .govuk-link:visited {
  color: #4c2c92;
}

/* line 88, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:hover, .govuk-link:hover {
  color: #003078;
}

/* line 92, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:active, .govuk-link:active {
  color: #0b0c0c;
}

/* line 98, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
a:focus, .govuk-link:focus {
  color: #0b0c0c;
}

@media print {
  /* line 416, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
  a[href^="/"]:after, .govuk-link[href^="/"]:after, a[href^="http://"]:after, .govuk-link[href^="http://"]:after, a[href^="https://"]:after, .govuk-link[href^="https://"]:after {
    content: " (" attr(href) ")";
    font-size: 90%;
    word-wrap: break-word;
  }
}

/* line 227, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--muted:link, .govuk-link--muted:visited {
  color: #505a5f;
}

/* line 232, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--muted:hover, .govuk-link--muted:active {
  color: #0b0c0c;
}

/* line 239, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--muted:focus {
  color: #0b0c0c;
}

/* line 270, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--text-colour:link, .govuk-link--text-colour:visited {
  color: #0b0c0c;
}

@media print {
  /* line 270, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
  .govuk-link--text-colour:link, .govuk-link--text-colour:visited {
    color: #000000;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--text-colour:hover {
  color: rgba(11, 12, 12, 0.99);
}

/* line 281, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--text-colour:active, .govuk-link--text-colour:focus {
  color: #0b0c0c;
}

@media print {
  /* line 281, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
  .govuk-link--text-colour:active, .govuk-link--text-colour:focus {
    color: #000000;
  }
}

/* line 313, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--inverse:link, .govuk-link--inverse:visited {
  color: #ffffff;
}

/* line 320, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--inverse:hover, .govuk-link--inverse:active {
  color: rgba(255, 255, 255, 0.99);
}

/* line 325, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--inverse:focus {
  color: #0b0c0c;
}

/* line 399, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-underline:not(:hover):not(:active) {
  text-decoration: none;
}

/* line 360, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-visited-state:link {
  color: #1d70b8;
}

/* line 364, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-visited-state:visited {
  color: #1d70b8;
}

/* line 368, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-visited-state:hover {
  color: #003078;
}

/* line 372, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-visited-state:active {
  color: #0b0c0c;
}

/* line 378, node_modules/govuk-frontend/govuk/core/../helpers/_links.scss */
.govuk-link--no-visited-state:focus {
  color: #0b0c0c;
}

/* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 0;
  list-style-type: none;
}

@media print {
  /* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 9, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list {
    margin-bottom: 20px;
  }
}

/* line 18, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list .govuk-list {
  margin-top: 10px;
}

/* line 23, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list > li {
  margin-bottom: 5px;
}

/* line 34, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list--bullet {
  padding-left: 20px;
  list-style-type: disc;
}

/* line 39, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list--number {
  padding-left: 20px;
  list-style-type: decimal;
}

/* line 44, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list--bullet > li,
.govuk-list--number > li {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  /* line 44, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list--bullet > li,
.govuk-list--number > li {
    margin-bottom: 5px;
  }
}

/* line 53, node_modules/govuk-frontend/govuk/core/_lists.scss */
.govuk-list--spaced > li {
  margin-bottom: 10px;
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/core/_lists.scss */
  .govuk-list--spaced > li {
    margin-bottom: 15px;
  }
}

/* line 10, node_modules/govuk-frontend/govuk/core/_template.scss */
.govuk-template {
  background-color: #f3f2f1;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media screen {
  /* line 10, node_modules/govuk-frontend/govuk/core/_template.scss */
  .govuk-template {
    overflow-y: scroll;
  }
}

/* line 29, node_modules/govuk-frontend/govuk/core/_template.scss */
.govuk-template__body {
  margin: 0;
  background-color: #ffffff;
}

/* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-heading-xl {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  display: block;
  margin-top: 0;
  margin-bottom: 30px;
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-xl {
    color: #000000;
  }
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-xl {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-xl {
    margin-bottom: 50px;
  }
}

/* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-heading-l {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}

@media print {
  /* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-l {
    color: #000000;
  }
}

@media print {
  /* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-l {
    font-size: 24pt;
    line-height: 1.05;
  }
}

@media (min-width: 40.0625em) {
  /* line 25, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-l {
    margin-bottom: 30px;
  }
}

/* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-heading-m {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-m {
    color: #000000;
  }
}

@media print {
  /* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-m {
    font-size: 18pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 39, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-m {
    margin-bottom: 20px;
  }
}

/* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-heading-s {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-s {
    color: #000000;
  }
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-s {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-s {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-heading-s {
    margin-bottom: 20px;
  }
}

/* line 69, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-caption-xl {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-bottom: 5px;
  color: #505a5f;
}

@media print {
  /* line 69, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-xl {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 69, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-xl {
    font-size: 27px;
    font-size: 1.6875rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 69, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-xl {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 79, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-caption-l {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: block;
  margin-bottom: 5px;
  color: #505a5f;
}

@media print {
  /* line 79, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 79, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 79, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 79, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-l {
    margin-bottom: 0;
  }
}

/* line 92, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-caption-m {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  color: #505a5f;
}

@media print {
  /* line 92, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 92, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 92, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-caption-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-body-lead, .govuk-body-l {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-top: 0;
  margin-bottom: 20px;
}

@media print {
  /* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-lead, .govuk-body-l {
    color: #000000;
  }
}

@media print {
  /* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-lead, .govuk-body-l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-lead, .govuk-body-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-lead, .govuk-body-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 102, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-lead, .govuk-body-l {
    margin-bottom: 30px;
  }
}

/* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
p, .govuk-body, .govuk-body-m {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p, .govuk-body, .govuk-body-m {
    color: #000000;
  }
}

@media print {
  /* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p, .govuk-body, .govuk-body-m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p, .govuk-body, .govuk-body-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p, .govuk-body, .govuk-body-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 114, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p, .govuk-body, .govuk-body-m {
    margin-bottom: 20px;
  }
}

/* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-body-s {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-s {
    color: #000000;
  }
}

@media print {
  /* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-s {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-s {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-s {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media (min-width: 40.0625em) {
  /* line 126, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-s {
    margin-bottom: 20px;
  }
}

/* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-body-xs {
  color: #0b0c0c;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-xs {
    color: #000000;
  }
}

@media print {
  /* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-xs {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-xs {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

@media print {
  /* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-xs {
    font-size: 12pt;
    line-height: 1.2;
  }
}

@media (min-width: 40.0625em) {
  /* line 138, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-xs {
    margin-bottom: 20px;
  }
}

/* line 166, node_modules/govuk-frontend/govuk/core/_typography.scss */
.govuk-body-l + .govuk-heading-l, .govuk-body-lead + .govuk-heading-l {
  padding-top: 5px;
}

@media (min-width: 40.0625em) {
  /* line 166, node_modules/govuk-frontend/govuk/core/_typography.scss */
  .govuk-body-l + .govuk-heading-l, .govuk-body-lead + .govuk-heading-l {
    padding-top: 10px;
  }
}

/* line 174, node_modules/govuk-frontend/govuk/core/_typography.scss */
p + .govuk-heading-l, .govuk-body-m + .govuk-heading-l, .govuk-body + .govuk-heading-l,
.govuk-body-s + .govuk-heading-l,
.govuk-list + .govuk-heading-l {
  padding-top: 15px;
}

@media (min-width: 40.0625em) {
  /* line 174, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p + .govuk-heading-l, .govuk-body-m + .govuk-heading-l, .govuk-body + .govuk-heading-l,
.govuk-body-s + .govuk-heading-l,
.govuk-list + .govuk-heading-l {
    padding-top: 20px;
  }
}

/* line 180, node_modules/govuk-frontend/govuk/core/_typography.scss */
p + .govuk-heading-m, .govuk-body-m + .govuk-heading-m, .govuk-body + .govuk-heading-m,
.govuk-body-s + .govuk-heading-m,
.govuk-list + .govuk-heading-m,
p + .govuk-heading-s,
.govuk-body-m + .govuk-heading-s,
.govuk-body + .govuk-heading-s,
.govuk-body-s + .govuk-heading-s,
.govuk-list + .govuk-heading-s {
  padding-top: 5px;
}

@media (min-width: 40.0625em) {
  /* line 180, node_modules/govuk-frontend/govuk/core/_typography.scss */
  p + .govuk-heading-m, .govuk-body-m + .govuk-heading-m, .govuk-body + .govuk-heading-m,
.govuk-body-s + .govuk-heading-m,
.govuk-list + .govuk-heading-m,
p + .govuk-heading-s,
.govuk-body-m + .govuk-heading-s,
.govuk-body + .govuk-heading-s,
.govuk-body-s + .govuk-heading-s,
.govuk-list + .govuk-heading-s {
    padding-top: 10px;
  }
}

/* line 9, node_modules/govuk-frontend/govuk/core/_section-break.scss */
.govuk-section-break {
  margin: 0;
  border: 0;
}

/* line 26, node_modules/govuk-frontend/govuk/core/_section-break.scss */
.govuk-section-break--xl {
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (min-width: 40.0625em) {
  /* line 26, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--xl {
    margin-top: 50px;
  }
}

@media (min-width: 40.0625em) {
  /* line 26, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--xl {
    margin-bottom: 50px;
  }
}

/* line 35, node_modules/govuk-frontend/govuk/core/_section-break.scss */
.govuk-section-break--l {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 35, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--l {
    margin-top: 30px;
  }
}

@media (min-width: 40.0625em) {
  /* line 35, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--l {
    margin-bottom: 30px;
  }
}

/* line 44, node_modules/govuk-frontend/govuk/core/_section-break.scss */
.govuk-section-break--m {
  margin-top: 15px;
  margin-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 44, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--m {
    margin-top: 20px;
  }
}

@media (min-width: 40.0625em) {
  /* line 44, node_modules/govuk-frontend/govuk/core/_section-break.scss */
  .govuk-section-break--m {
    margin-bottom: 20px;
  }
}

/* line 55, node_modules/govuk-frontend/govuk/core/_section-break.scss */
.govuk-section-break--visible {
  border-bottom: 1px solid #bfc1c3;
}

/* line 12, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
.govuk-button-group {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 40.0625em) {
  /* line 12, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group {
    margin-bottom: 15px;
  }
}

/* line 51, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
.govuk-button-group .govuk-link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  display: inline-block;
  max-width: 100%;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}

@media print {
  /* line 51, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group .govuk-link {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 51, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group .govuk-link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1;
  }
}

@media print {
  /* line 51, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group .govuk-link {
    font-size: 14pt;
    line-height: 19px;
  }
}

/* line 64, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
.govuk-button-group .govuk-button {
  margin-bottom: 17px;
}

@media (min-width: 40.0625em) {
  /* line 12, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group {
    margin-right: -15px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  /* line 91, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group .govuk-button,
.govuk-button-group .govuk-link {
    margin-right: 15px;
  }
  /* line 96, node_modules/govuk-frontend/govuk/objects/_button-group.scss */
  .govuk-button-group .govuk-link {
    text-align: left;
  }
}

/* line 4, node_modules/govuk-frontend/govuk/objects/_form-group.scss */
.govuk-form-group {
  margin-bottom: 20px;
}

/* line 10, node_modules/govuk-frontend/govuk/objects/../helpers/_clearfix.scss */
.govuk-form-group:after {
  content: "";
  display: block;
  clear: both;
}

@media (min-width: 40.0625em) {
  /* line 4, node_modules/govuk-frontend/govuk/objects/_form-group.scss */
  .govuk-form-group {
    margin-bottom: 30px;
  }
}

/* line 8, node_modules/govuk-frontend/govuk/objects/_form-group.scss */
.govuk-form-group .govuk-form-group:last-of-type {
  margin-bottom: 0;
}

/* line 13, node_modules/govuk-frontend/govuk/objects/_form-group.scss */
.govuk-form-group--error {
  padding-left: 15px;
  border-left: 5px solid #d4351c;
}

/* line 17, node_modules/govuk-frontend/govuk/objects/_form-group.scss */
.govuk-form-group--error .govuk-form-group {
  padding: 0;
  border: 0;
}

/* line 4, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-row {
  margin-right: -15px;
  margin-left: -15px;
}

/* line 10, node_modules/govuk-frontend/govuk/objects/../helpers/_clearfix.scss */
.govuk-grid-row:after {
  content: "";
  display: block;
  clear: both;
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-quarter {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-quarter {
    width: 25%;
    float: left;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-third {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-third {
    width: 33.3333%;
    float: left;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-half {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-half {
    width: 50%;
    float: left;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-two-thirds {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-two-thirds {
    width: 66.6666%;
    float: left;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-three-quarters {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-three-quarters {
    width: 75%;
    float: left;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-full {
  box-sizing: border-box;
  width: 100%;
  padding: 0 15px;
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-full {
    width: 100%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-quarter-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-quarter-from-desktop {
    width: 25%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-third-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-third-from-desktop {
    width: 33.3333%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-one-half-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-one-half-from-desktop {
    width: 50%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-two-thirds-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-two-thirds-from-desktop {
    width: 66.6666%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-three-quarters-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-three-quarters-from-desktop {
    width: 75%;
    float: left;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
.govuk-grid-column-full-from-desktop {
  box-sizing: border-box;
  padding: 0 15px;
}

@media (min-width: 48.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/objects/_grid.scss */
  .govuk-grid-column-full-from-desktop {
    width: 100%;
    float: left;
  }
}

/* line 53, node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss */
.govuk-main-wrapper {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss */
  .govuk-main-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* line 64, node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss */
.govuk-main-wrapper--auto-spacing:first-child,
.govuk-main-wrapper--l {
  padding-top: 30px;
}

@media (min-width: 40.0625em) {
  /* line 64, node_modules/govuk-frontend/govuk/objects/_main-wrapper.scss */
  .govuk-main-wrapper--auto-spacing:first-child,
.govuk-main-wrapper--l {
    padding-top: 50px;
  }
}

/* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
.govuk-width-container {
  max-width: 1020px;
  margin-right: 15px;
  margin-left: 15px;
}

@supports (margin: max(calc(0px))) {
  /* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
  .govuk-width-container {
    margin-right: max(15px, calc(15px + env(safe-area-inset-right)));
    margin-left: max(15px, calc(15px + env(safe-area-inset-left)));
  }
}

@media (min-width: 40.0625em) {
  /* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
  .govuk-width-container {
    margin-right: 30px;
    margin-left: 30px;
  }
  @supports (margin: max(calc(0px))) {
    /* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
    .govuk-width-container {
      margin-right: max(30px, calc(15px + env(safe-area-inset-right)));
      margin-left: max(30px, calc(15px + env(safe-area-inset-left)));
    }
  }
}

@media (min-width: 1080px) {
  /* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
  .govuk-width-container {
    margin-right: auto;
    margin-left: auto;
  }
  @supports (margin: max(calc(0px))) {
    /* line 85, node_modules/govuk-frontend/govuk/objects/_width-container.scss */
    .govuk-width-container {
      margin-right: auto;
      margin-left: auto;
    }
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/input/../error-message/_index.scss */
.govuk-error-message {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 15px;
  clear: both;
  color: #d4351c;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../error-message/_index.scss */
  .govuk-error-message {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../error-message/_index.scss */
  .govuk-error-message {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../error-message/_index.scss */
  .govuk-error-message {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
.govuk-hint {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  margin-bottom: 15px;
  color: #505a5f;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
  .govuk-hint {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
  .govuk-hint {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
  .govuk-hint {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 22, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
.govuk-label:not(.govuk-label--m):not(.govuk-label--l):not(.govuk-label--xl) + .govuk-hint {
  margin-bottom: 10px;
}

/* line 36, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
.govuk-fieldset__legend:not(.govuk-fieldset__legend--m):not(.govuk-fieldset__legend--l):not(.govuk-fieldset__legend--xl) + .govuk-hint {
  margin-bottom: 10px;
}

/* line 41, node_modules/govuk-frontend/govuk/components/input/../hint/_index.scss */
.govuk-fieldset__legend + .govuk-hint {
  margin-top: -5px;
}

/* line 2, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  display: block;
  margin-bottom: 5px;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label {
    color: #000000;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label--xl {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  margin-bottom: 15px;
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--xl {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}

/* line 18, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label--l {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  margin-bottom: 15px;
}

@media print {
  /* line 18, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 18, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 18, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}

/* line 23, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label--m {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 10px;
}

@media print {
  /* line 23, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 23, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 23, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 28, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label--s {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 28, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--s {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 28, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 28, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
  .govuk-label--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 38, node_modules/govuk-frontend/govuk/components/input/../label/_index.scss */
.govuk-label-wrapper {
  margin: 0;
}

/* line 6, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  height: 2.5rem;
  margin-top: 0;
  padding: 5px;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 6, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 28, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input:focus {
  outline: 3px solid #ffdd00;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

/* line 46, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input::-webkit-outer-spin-button,
.govuk-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* line 52, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input[type="number"] {
  -moz-appearance: textfield;
}

/* line 56, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--error {
  border: 2px solid #d4351c;
}

/* line 59, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--error:focus {
  border-color: #0b0c0c;
}

/* line 68, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-30 {
  max-width: 59ex;
}

/* line 72, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-20 {
  max-width: 41ex;
}

/* line 76, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-10 {
  max-width: 23ex;
}

/* line 80, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-5 {
  max-width: 10.8ex;
}

/* line 84, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-4 {
  max-width: 9ex;
}

/* line 88, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-3 {
  max-width: 7.2ex;
}

/* line 92, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input--width-2 {
  max-width: 5.4ex;
}

/* line 96, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* line 102, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input__wrapper .govuk-input {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

/* line 109, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input__wrapper .govuk-input:focus {
  z-index: 1;
}

@media (max-width: 19.99em) {
  /* line 96, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__wrapper {
    display: block;
  }
  /* line 118, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__wrapper .govuk-input {
    max-width: 100%;
  }
}

/* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
.govuk-input__prefix,
.govuk-input__suffix {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  display: inline-block;
  min-width: 40px;
  min-width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  padding: 5px;
  border: 2px solid #0b0c0c;
  background-color: #dee0e2;
  text-align: center;
  white-space: nowrap;
  cursor: default;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media print {
  /* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix,
.govuk-input__suffix {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix,
.govuk-input__suffix {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix,
.govuk-input__suffix {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (max-width: 40.0525em) {
  /* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix,
.govuk-input__suffix {
    line-height: 1.6;
  }
}

@media (max-width: 19.99em) {
  /* line 125, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix,
.govuk-input__suffix {
    display: block;
    height: 100%;
    white-space: normal;
  }
}

@media (max-width: 19.99em) {
  /* line 169, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix {
    border-bottom: 0;
  }
}

@media (min-width: 20em) {
  /* line 169, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__prefix {
    border-right: 0;
  }
}

@media (max-width: 19.99em) {
  /* line 181, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__suffix {
    border-top: 0;
  }
}

@media (min-width: 20em) {
  /* line 181, node_modules/govuk-frontend/govuk/components/input/_index.scss */
  .govuk-input__suffix {
    border-left: 0;
  }
}

/* line 8, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
.govuk-file-upload {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  max-width: 100%;
  margin-left: -5px;
  padding: 5px;
}

@media print {
  /* line 8, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
  .govuk-file-upload {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 8, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
  .govuk-file-upload {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 8, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
  .govuk-file-upload {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 8, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
  .govuk-file-upload {
    color: #000000;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
.govuk-file-upload::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

/* line 26, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
.govuk-file-upload:focus {
  outline: 3px solid #ffdd00;
  box-shadow: inset 0 0 0 4px #0b0c0c;
}

/* line 44, node_modules/govuk-frontend/govuk/components/file-upload/_index.scss */
.govuk-file-upload:focus-within {
  outline: 3px solid #ffdd00;
  box-shadow: inset 0 0 0 4px #0b0c0c;
}

/* line 2, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
.govuk-skip-link {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: block;
  padding: 10px 15px;
}

/* line 69, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_visually-hidden.scss */
.govuk-skip-link:active, .govuk-skip-link:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  white-space: inherit !important;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
  .govuk-skip-link {
    font-family: sans-serif;
  }
}

/* line 270, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_links.scss */
.govuk-skip-link:link, .govuk-skip-link:visited {
  color: #0b0c0c;
}

@media print {
  /* line 270, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_links.scss */
  .govuk-skip-link:link, .govuk-skip-link:visited {
    color: #000000;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_links.scss */
.govuk-skip-link:hover {
  color: rgba(11, 12, 12, 0.99);
}

/* line 281, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_links.scss */
.govuk-skip-link:active, .govuk-skip-link:focus {
  color: #0b0c0c;
}

@media print {
  /* line 281, node_modules/govuk-frontend/govuk/components/skip-link/../../helpers/_links.scss */
  .govuk-skip-link:active, .govuk-skip-link:focus {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
  .govuk-skip-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
  .govuk-skip-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@supports (padding: max(calc(0px))) {
  /* line 2, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
  .govuk-skip-link {
    padding-right: max(15px, calc(15px + env(safe-area-inset-right)));
    padding-left: max(15px, calc(15px + env(safe-area-inset-left)));
  }
}

/* line 25, node_modules/govuk-frontend/govuk/components/skip-link/_index.scss */
.govuk-skip-link:focus {
  outline: 3px solid #ffdd00;
  outline-offset: 0;
  background-color: #ffdd00;
  box-shadow: none;
}

/* line 2, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag {
  display: inline-block;
  outline: 2px solid transparent;
  outline-offset: -2px;
  color: #ffffff;
  background-color: #005ea5;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding-top: 5px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 8px;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
  .govuk-tag {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
  .govuk-tag {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
  .govuk-tag {
    font-size: 14pt;
    line-height: 1;
  }
}

/* line 38, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--inactive {
  background-color: #6f777b;
}

/* line 42, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--grey {
  color: #4e5356;
  background: #f1f1f2;
}

/* line 47, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--purple {
  color: #252a6f;
  background: #d5d7e8;
}

/* line 52, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--turquoise {
  color: #10403c;
  background: #bfe3e0;
}

/* line 57, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--blue {
  color: #004274;
  background: #ccdfed;
}

/* line 62, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--yellow {
  color: #594319;
  background: #ffefd1;
}

/* line 67, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--orange {
  color: #6e3619;
  background: #fcd6c3;
}

/* line 72, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--red {
  color: #7c0a15;
  background: #efcfd2;
}

/* line 77, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--pink {
  color: #80224d;
  background: #f7d7e6;
}

/* line 82, node_modules/govuk-frontend/govuk/components/phase-banner/../tag/_index.scss */
.govuk-tag--green {
  color: #00502a;
  background: #cce0d7;
}

/* line 4, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
.govuk-phase-banner {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #bfc1c3;
}

/* line 11, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
.govuk-phase-banner__content {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  display: table;
  margin: 0;
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
  .govuk-phase-banner__content {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
  .govuk-phase-banner__content {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
  .govuk-phase-banner__content {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
  .govuk-phase-banner__content {
    color: #000000;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
.govuk-phase-banner__content__tag {
  margin-right: 10px;
}

/* line 23, node_modules/govuk-frontend/govuk/components/phase-banner/_index.scss */
.govuk-phase-banner__text {
  display: table-cell;
  vertical-align: middle;
}

/* line 4, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary {
  color: #0b0c0c;
  padding: 15px;
  margin-bottom: 30px;
  border: 5px solid #d4351c;
}

@media print {
  /* line 4, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 4, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary {
    padding: 20px;
  }
}

@media (min-width: 40.0625em) {
  /* line 4, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary {
    margin-bottom: 50px;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary:focus {
  outline: 3px solid #ffdd00;
}

/* line 16, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary__title {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-top: 0;
  margin-bottom: 15px;
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__title {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 16, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 16, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__title {
    margin-bottom: 20px;
  }
}

/* line 23, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary__body {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 23, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__body {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 23, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 23, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__body {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 26, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary__body p {
  margin-top: 0;
  margin-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 26, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__body p {
    margin-bottom: 20px;
  }
}

/* line 33, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary__list {
  margin-top: 0;
  margin-bottom: 0;
}

/* line 38, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
.govuk-error-summary__list a {
  font-weight: 600;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

@media print {
  /* line 38, node_modules/govuk-frontend/govuk/components/error-summary/_index.scss */
  .govuk-error-summary__list a {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-error-summary__list a:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 131, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-error-summary__list a:link, .govuk-error-summary__list a:visited {
  color: #d4351c;
}

/* line 136, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-error-summary__list a:hover {
  color: #942514;
}

/* line 140, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-error-summary__list a:active {
  color: #d4351c;
}

/* line 146, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-error-summary__list a:focus {
  color: #0b0c0c;
}

/* line 6, node_modules/govuk-frontend/govuk/components/select/_index.scss */
.govuk-select {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  max-width: 100%;
  height: 40px;
  height: 2.5rem;
  padding: 5px;
  border: 2px solid #0b0c0c;
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/select/_index.scss */
  .govuk-select {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 6, node_modules/govuk-frontend/govuk/components/select/_index.scss */
  .govuk-select {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/select/_index.scss */
  .govuk-select {
    font-size: 14pt;
    line-height: 1.25;
  }
}

/* line 18, node_modules/govuk-frontend/govuk/components/select/_index.scss */
.govuk-select:focus {
  outline: 3px solid #ffdd00;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

/* line 35, node_modules/govuk-frontend/govuk/components/select/_index.scss */
.govuk-select option:active,
.govuk-select option:checked,
.govuk-select:focus::-ms-value {
  color: #ffffff;
  background-color: #005ea5;
}

/* line 42, node_modules/govuk-frontend/govuk/components/select/_index.scss */
.govuk-select--error {
  border: 2px solid #d4351c;
}

/* line 45, node_modules/govuk-frontend/govuk/components/select/_index.scss */
.govuk-select--error:focus {
  border-color: #0b0c0c;
}

/* line 18, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  color: #0b0c0c;
  margin-top: 15px;
  margin-bottom: 10px;
}

@media print {
  /* line 18, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 18, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 18, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media print {
  /* line 18, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs {
    color: #000000;
  }
}

/* line 26, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* line 10, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_clearfix.scss */
.govuk-breadcrumbs__list:after {
  content: "";
  display: block;
  clear: both;
}

/* line 34, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__list-item {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  margin-left: 10px;
  padding-left: 15.655px;
  float: left;
}

/* line 49, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__list-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3.31px;
  width: 7px;
  height: 7px;
  margin: auto 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: solid;
  border-width: 1px 1px 0 0;
  border-color: #505a5f;
}

/* line 98, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__list-item:first-child {
  margin-left: 0;
  padding-left: 0;
}

/* line 102, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__list-item:first-child:before {
  content: none;
  display: none;
}

/* line 109, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
.govuk-breadcrumbs__link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

@media print {
  /* line 109, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs__link {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
.govuk-breadcrumbs__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 270, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
.govuk-breadcrumbs__link:link, .govuk-breadcrumbs__link:visited {
  color: #0b0c0c;
}

@media print {
  /* line 270, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
  .govuk-breadcrumbs__link:link, .govuk-breadcrumbs__link:visited {
    color: #000000;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
.govuk-breadcrumbs__link:hover {
  color: rgba(11, 12, 12, 0.99);
}

/* line 281, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
.govuk-breadcrumbs__link:active, .govuk-breadcrumbs__link:focus {
  color: #0b0c0c;
}

@media print {
  /* line 281, node_modules/govuk-frontend/govuk/components/breadcrumbs/../../helpers/_links.scss */
  .govuk-breadcrumbs__link:active, .govuk-breadcrumbs__link:focus {
    color: #000000;
  }
}

@media (max-width: 40.0525em) {
  /* line 116, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs--collapse-on-mobile .govuk-breadcrumbs__list-item {
    display: none;
  }
  /* line 119, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs--collapse-on-mobile .govuk-breadcrumbs__list-item:first-child, .govuk-breadcrumbs--collapse-on-mobile .govuk-breadcrumbs__list-item:last-child {
    display: inline-block;
  }
  /* line 124, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs--collapse-on-mobile .govuk-breadcrumbs__list-item:before {
    top: 6px;
    margin: 0;
  }
  /* line 130, node_modules/govuk-frontend/govuk/components/breadcrumbs/_index.scss */
  .govuk-breadcrumbs--collapse-on-mobile .govuk-breadcrumbs__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/* line 10, node_modules/govuk-frontend/govuk/components/fieldset/../../helpers/_clearfix.scss */
.govuk-fieldset:after {
  content: "";
  display: block;
  clear: both;
}

@supports not (caret-color: auto) {
  /* line 13, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset,
x:-moz-any-link {
    display: table-cell;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__legend {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  box-sizing: border-box;
  display: table;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 0;
  white-space: normal;
}

@media print {
  /* line 19, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 19, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 19, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 19, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend {
    color: #000000;
  }
}

/* line 37, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__legend--xl {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  margin-bottom: 15px;
}

@media print {
  /* line 37, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--xl {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 37, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

@media print {
  /* line 37, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}

/* line 42, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__legend--l {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  margin-bottom: 15px;
}

@media print {
  /* line 42, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 42, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 42, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}

/* line 47, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__legend--m {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 15px;
}

@media print {
  /* line 47, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 47, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 47, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 52, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__legend--s {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 52, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--s {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 52, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 52, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
  .govuk-fieldset__legend--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 59, node_modules/govuk-frontend/govuk/components/fieldset/_index.scss */
.govuk-fieldset__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

/* line 12, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
.govuk-back-link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  display: inline-block;
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 14px;
}

@media (min-width: 40.0625em) {
  /* line 12, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
  .govuk-back-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 12, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
  .govuk-back-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media print {
  /* line 12, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
  .govuk-back-link {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
.govuk-back-link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 270, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
.govuk-back-link:link, .govuk-back-link:visited {
  color: #0b0c0c;
}

@media print {
  /* line 270, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
  .govuk-back-link:link, .govuk-back-link:visited {
    color: #000000;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
.govuk-back-link:hover {
  color: rgba(11, 12, 12, 0.99);
}

/* line 281, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
.govuk-back-link:active, .govuk-back-link:focus {
  color: #0b0c0c;
}

@media print {
  /* line 281, node_modules/govuk-frontend/govuk/components/back-link/../../helpers/_links.scss */
  .govuk-back-link:active, .govuk-back-link:focus {
    color: #000000;
  }
}

/* line 28, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
.govuk-back-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 3px;
  width: 7px;
  height: 7px;
  margin: auto 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  border: solid;
  border-width: 1px 1px 0 0;
  border-color: #505a5f;
}

/* line 76, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
.govuk-back-link:focus:before {
  border-color: #0b0c0c;
}

/* line 80, node_modules/govuk-frontend/govuk/components/back-link/_index.scss */
.govuk-back-link:after {
  content: "";
  position: absolute;
  top: -14px;
  right: 0;
  bottom: -14px;
  left: 0;
}

/* line 2, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs {
  margin-top: 5px;
  margin-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs {
    margin-top: 5px;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs {
    margin-bottom: 30px;
  }
}

/* line 7, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__title {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-bottom: 10px;
}

@media print {
  /* line 7, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__title {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 7, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 7, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 7, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__title {
    color: #000000;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__list {
    margin-bottom: 30px;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__list-item {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-left: 25px;
}

@media print {
  /* line 20, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__list-item {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 20, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__list-item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 20, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__list-item {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 24, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__list-item:before {
  color: #0b0c0c;
  content: "\2014 ";
  margin-left: -25px;
  padding-right: 5px;
}

@media print {
  /* line 24, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__list-item:before {
    color: #000000;
  }
}

/* line 32, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__tab {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
  display: inline-block;
  margin-bottom: 10px;
}

@media print {
  /* line 32, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__tab {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 80, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:link {
  color: #1d70b8;
}

/* line 84, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:visited {
  color: #4c2c92;
}

/* line 88, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:hover {
  color: #003078;
}

/* line 92, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:active {
  color: #0b0c0c;
}

/* line 98, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
.govuk-tabs__tab:focus {
  color: #0b0c0c;
}

/* line 40, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
.govuk-tabs__panel {
  margin-bottom: 30px;
}

@media (min-width: 40.0625em) {
  /* line 40, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .govuk-tabs__panel {
    margin-bottom: 50px;
  }
}

@media (min-width: 40.0625em) {
  /* line 48, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__list {
    margin-bottom: 0;
    border-bottom: 1px solid #bfc1c3;
  }
  /* line 10, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_clearfix.scss */
  .js-enabled .govuk-tabs__list:after {
    content: "";
    display: block;
    clear: both;
  }
  /* line 54, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__title {
    display: none;
  }
  /* line 58, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__list-item {
    position: relative;
    margin-right: 5px;
    margin-bottom: 0;
    margin-left: 0;
    padding: 10px 20px;
    float: left;
    background-color: #dee0e2;
    text-align: center;
  }
  /* line 70, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__list-item:before {
    content: none;
  }
  /* line 75, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__list-item--selected {
    position: relative;
    margin-top: -5px;
    margin-bottom: -1px;
    padding-top: 14px;
    padding-right: 19px;
    padding-bottom: 16px;
    padding-left: 19px;
    border: 1px solid #bfc1c3;
    border-bottom: 0;
    background-color: #ffffff;
  }
  /* line 94, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__list-item--selected .govuk-tabs__tab {
    text-decoration: none;
  }
  /* line 99, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__tab {
    margin-bottom: 0;
  }
  /* line 270, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
  .js-enabled .govuk-tabs__tab:link, .js-enabled .govuk-tabs__tab:visited {
    color: #0b0c0c;
  }
}

@media print and (min-width: 40.0625em) {
  /* line 270, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
  .js-enabled .govuk-tabs__tab:link, .js-enabled .govuk-tabs__tab:visited {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 277, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
  .js-enabled .govuk-tabs__tab:hover {
    color: rgba(11, 12, 12, 0.99);
  }
  /* line 281, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
  .js-enabled .govuk-tabs__tab:active, .js-enabled .govuk-tabs__tab:focus {
    color: #0b0c0c;
  }
}

@media print and (min-width: 40.0625em) {
  /* line 281, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_links.scss */
  .js-enabled .govuk-tabs__tab:active, .js-enabled .govuk-tabs__tab:focus {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 104, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__tab:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  /* line 114, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__panel {
    margin-bottom: 0;
    padding: 30px 20px;
    border: 1px solid #bfc1c3;
    border-top: 0;
  }
}

@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  /* line 114, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__panel {
    margin-bottom: 0;
  }
}

@media (min-width: 40.0625em) {
  /* line 120, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__panel > :last-child {
    margin-bottom: 0;
  }
  /* line 125, node_modules/govuk-frontend/govuk/components/tabs/_index.scss */
  .js-enabled .govuk-tabs__panel--hidden {
    display: none;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__item {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  position: relative;
  min-height: 40px;
  margin-bottom: 10px;
  padding-left: 40px;
  clear: left;
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__item {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 27, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__item:last-child,
.govuk-checkboxes__item:last-of-type {
  margin-bottom: 0;
}

/* line 32, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
}

/* line 66, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__label {
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 15px 5px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 78, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__label:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  background: transparent;
}

/* line 94, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__label:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 11px;
  left: 9px;
  width: 23px;
  height: 12px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: solid;
  border-width: 0 0 5px 5px;
  border-top-color: transparent;
  opacity: 0;
  background: transparent;
}

/* line 121, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__hint {
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 128, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__input:focus + .govuk-checkboxes__label:before {
  border-width: 4px;
  outline: 3px solid transparent;
  outline-offset: 1px;
  box-shadow: 0 0 0 3px #ffdd00;
}

@media screen and (forced-colors: active), (-ms-high-contrast: active) {
  /* line 128, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__input:focus + .govuk-checkboxes__label:before {
    outline-color: Highlight;
  }
}

/* line 148, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__input:checked + .govuk-checkboxes__label:after {
  opacity: 1;
}

/* line 153, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__input:disabled,
.govuk-checkboxes__input:disabled + .govuk-checkboxes__label {
  cursor: default;
}

/* line 158, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__input:disabled + .govuk-checkboxes__label {
  opacity: .5;
}

/* line 166, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__divider {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 40px;
  margin-bottom: 10px;
  text-align: center;
}

@media print {
  /* line 166, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__divider {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 166, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 166, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 166, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__divider {
    color: #000000;
  }
}

/* line 189, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__conditional {
  margin-bottom: 15px;
  margin-left: 18px;
  padding-left: 33px;
  border-left: 4px solid #bfc1c3;
}

@media (min-width: 40.0625em) {
  /* line 189, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes__conditional {
    margin-bottom: 20px;
  }
}

/* line 195, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.js-enabled .govuk-checkboxes__conditional--hidden {
  display: none;
}

/* line 199, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes__conditional > :last-child {
  margin-bottom: 0;
}

/* line 213, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__item {
  min-height: 0;
  margin-bottom: 0;
  padding-left: 34px;
  float: left;
}

/* line 10, node_modules/govuk-frontend/govuk/components/checkboxes/../../helpers/_clearfix.scss */
.govuk-checkboxes--small .govuk-checkboxes__item:after {
  content: "";
  display: block;
  clear: both;
}

/* line 230, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__input {
  left: -10px;
}

/* line 245, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__label {
  margin-top: -2px;
  padding: 13px 15px 13px 1px;
  float: left;
}

@media (min-width: 40.0625em) {
  /* line 245, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes--small .govuk-checkboxes__label {
    padding: 11px 15px 10px 1px;
  }
}

/* line 259, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__label:before {
  top: 8px;
  width: 24px;
  height: 24px;
}

/* line 268, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__label:after {
  top: 15px;
  left: 6px;
  width: 12px;
  height: 6.5px;
  border-width: 0 0 3px 3px;
}

/* line 284, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__hint {
  padding: 0;
  clear: both;
}

/* line 290, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__conditional {
  margin-left: 10px;
  padding-left: 20px;
  clear: both;
}

/* line 303, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label:before {
  box-shadow: 0 0 0 10px #bfc1c3;
}

/* line 312, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
.govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label:before {
  box-shadow: 0 0 0 3px #ffdd00, 0 0 0 10px #bfc1c3;
}

@media (hover: none), (pointer: coarse) {
  /* line 325, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:not(:disabled) + .govuk-checkboxes__label:before {
    box-shadow: initial;
  }
  /* line 329, node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss */
  .govuk-checkboxes--small .govuk-checkboxes__item:hover .govuk-checkboxes__input:focus + .govuk-checkboxes__label:before {
    box-shadow: 0 0 0 3px #ffdd00;
  }
}

/* line 11, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  border-bottom: 10px solid #ffffff;
  color: #ffffff;
  background: #0b0c0c;
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 11, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 11, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header {
    font-size: 14pt;
    line-height: 1.2;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__container--full-width {
  padding: 0 15px;
  border-color: #1d70b8;
}

/* line 23, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__container--full-width .govuk-header__menu-button {
  right: 15px;
}

/* line 28, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__container {
  position: relative;
  margin-bottom: -10px;
  padding-top: 10px;
  border-bottom: 10px solid #1d70b8;
}

/* line 10, node_modules/govuk-frontend/govuk/components/header/../../helpers/_clearfix.scss */
.govuk-header__container:after {
  content: "";
  display: block;
  clear: both;
}

/* line 36, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype {
  display: inline-block;
  margin-right: 5px;
}

@media (forced-colors: active) {
  /* line 36, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__logotype {
    forced-color-adjust: none;
    color: linktext;
  }
}

/* line 52, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype:last-child {
  margin-right: 0;
}

/* line 57, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype-crown {
  position: relative;
  top: -1px;
  margin-right: 1px;
  fill: currentColor;
  vertical-align: top;
}

/* line 68, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype-crown[width="32"] {
  top: -3px;
  margin-right: 2px;
}

/* line 73, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype-crown-fallback-image {
  width: 36px;
  height: 32px;
  border: 0;
  vertical-align: bottom;
}

/* line 83, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logotype-crown-fallback-image[width="32"] {
  width: 32px;
  height: 30px;
}

/* line 88, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__product-name {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: inline-table;
}

@media print {
  /* line 88, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__product-name {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 88, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__product-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

@media print {
  /* line 88, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__product-name {
    font-size: 18pt;
    line-height: 1;
  }
}

/* line 93, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
}

@media print {
  /* line 93, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link {
    font-family: sans-serif;
  }
}

/* line 313, node_modules/govuk-frontend/govuk/components/header/../../helpers/_links.scss */
.govuk-header__link:link, .govuk-header__link:visited {
  color: #ffffff;
}

/* line 320, node_modules/govuk-frontend/govuk/components/header/../../helpers/_links.scss */
.govuk-header__link:hover, .govuk-header__link:active {
  color: rgba(255, 255, 255, 0.99);
}

/* line 325, node_modules/govuk-frontend/govuk/components/header/../../helpers/_links.scss */
.govuk-header__link:focus {
  color: #0b0c0c;
}

/* line 106, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 0.1em;
}

/* line 115, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 120, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link--homepage {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  font-size: 30px;
  line-height: 1;
}

@media print {
  /* line 120, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link--homepage {
    font-family: sans-serif;
  }
}

/* line 130, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link--homepage:link, .govuk-header__link--homepage:visited {
  text-decoration: none;
}

/* line 135, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link--homepage:hover, .govuk-header__link--homepage:active {
  margin-bottom: -3px;
  border-bottom: 3px solid;
}

/* line 145, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link--homepage:focus {
  margin-bottom: 0;
  border-bottom: 0;
}

/* line 151, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__link--service-name {
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
}

@media print {
  /* line 151, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link--service-name {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 151, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link--service-name {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 151, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link--service-name {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 157, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logo,
.govuk-header__content {
  box-sizing: border-box;
}

/* line 162, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__logo {
  margin-bottom: 10px;
  padding-right: 50px;
}

@media (min-width: 40.0625em) {
  /* line 162, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__logo {
    margin-bottom: 10px;
  }
}

@media (min-width: 48.0625em) {
  /* line 162, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__logo {
    width: 33.33%;
    padding-right: 15px;
    float: left;
    vertical-align: top;
  }
}

@media (min-width: 48.0625em) {
  /* line 174, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__content {
    width: 66.66%;
    padding-left: 15px;
    float: left;
  }
}

/* line 182, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__menu-button {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  display: none;
  position: absolute;
  top: 20px;
  right: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: none;
  cursor: pointer;
}

@media print {
  /* line 182, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__menu-button {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 182, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__menu-button {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 182, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__menu-button {
    font-size: 14pt;
    line-height: 1.2;
  }
}

/* line 195, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__menu-button:hover {
  -webkit-text-decoration: solid underline 3px;
  text-decoration: solid underline 3px;
  text-underline-offset: 0.1em;
}

/* line 204, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__menu-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 208, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__menu-button:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 8.66px 5px 0 5px;
  border-top-color: inherit;
  content: "";
  margin-left: 5px;
}

@media (min-width: 40.0625em) {
  /* line 182, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__menu-button {
    top: 15px;
  }
}

/* line 220, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__menu-button--open:after {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-width: 0 5px 8.66px 5px;
  border-bottom-color: inherit;
}

/* line 225, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation {
  margin-bottom: 10px;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 40.0625em) {
  /* line 225, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation {
    margin-bottom: 10px;
  }
}

/* line 234, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.js-enabled .govuk-header__menu-button {
  display: block;
}

@media (min-width: 48.0625em) {
  /* line 234, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .js-enabled .govuk-header__menu-button {
    display: none;
  }
}

/* line 241, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.js-enabled .govuk-header__navigation {
  display: none;
}

@media (min-width: 48.0625em) {
  /* line 241, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .js-enabled .govuk-header__navigation {
    display: block;
  }
}

/* line 248, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.js-enabled .govuk-header__navigation--open {
  display: block;
}

@media (min-width: 48.0625em) {
  /* line 253, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation--end {
    margin: 0;
    padding: 5px 0;
    text-align: right;
  }
}

/* line 261, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation--no-service-name {
  padding-top: 40px;
}

/* line 265, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation-item {
  padding: 10px 0;
  border-bottom: 1px solid #2e3133;
}

@media (min-width: 48.0625em) {
  /* line 265, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation-item {
    display: inline-block;
    margin-right: 15px;
    padding: 5px 0;
    border: 0;
  }
}

/* line 276, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation-item a {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  white-space: nowrap;
}

@media print {
  /* line 276, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation-item a {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 276, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation-item a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 276, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__navigation-item a {
    font-size: 14pt;
    line-height: 1.2;
  }
}

/* line 284, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation-item--active a:link, .govuk-header__navigation-item--active a:hover, .govuk-header__navigation-item--active a:visited {
  color: #1d8feb;
}

/* line 292, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation-item--active a:focus {
  color: #0b0c0c;
}

/* line 298, node_modules/govuk-frontend/govuk/components/header/_index.scss */
.govuk-header__navigation-item:last-child {
  margin-right: 0;
}

@media print {
  /* line 303, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header {
    border-bottom-width: 0;
    color: #0b0c0c;
    background: transparent;
  }
  /* line 310, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__logotype-crown-fallback-image {
    display: none;
  }
  /* line 315, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link:link, .govuk-header__link:visited {
    color: #0b0c0c;
  }
  /* line 321, node_modules/govuk-frontend/govuk/components/header/_index.scss */
  .govuk-header__link:after {
    display: none;
  }
}

/* line 6, app/assets/stylesheets/components/header/_header.scss */
.govuk-header {
  border-bottom: 0;
  background: #9b1a47;
}

/* line 11, app/assets/stylesheets/components/header/_header.scss */
.govuk-header__container {
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 0;
}

/* line 20, app/assets/stylesheets/components/header/_header.scss */
.govuk-header__navigation-item--active a:link, .govuk-header__navigation-item--active a:hover, .govuk-header__navigation-item--active a:visited {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 48.0525em) {
  /* line 20, app/assets/stylesheets/components/header/_header.scss */
  .govuk-header__navigation-item--active a:link, .govuk-header__navigation-item--active a:hover, .govuk-header__navigation-item--active a:visited {
    text-decoration: none;
  }
}

@media (max-width: 40.0525em) {
  /* line 32, app/assets/stylesheets/components/header/_header.scss */
  .govuk-header__navigation-item {
    border-bottom: 1px solid #921943;
  }
}

/* line 38, app/assets/stylesheets/components/header/_header.scss */
.govuk-header__link--homepage {
  display: block;
  width: 122px;
  height: 102px;
  background-image: url(/assets/vertical_logo-24e3cbe055dcf4b51fc0712d7760c6fa5e03000b003e3e8327f81eeea01b594f.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 48.0525em) {
  /* line 38, app/assets/stylesheets/components/header/_header.scss */
  .govuk-header__link--homepage {
    width: auto;
    height: 32px;
    background-image: url(/assets/horizontal_logo-0e7cd25a098f2f05c697d9a02d60ea1ea1ebb18c77a1ecff76c697345fb24465.png);
    background-size: contain;
  }
}

@media (max-width: 40.0525em) {
  /* line 38, app/assets/stylesheets/components/header/_header.scss */
  .govuk-header__link--homepage {
    height: 34px;
    margin-bottom: 15px;
  }
}

/* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #bfc1c3;
  color: #0b0c0c;
  background: #f3f2f1;
}

@media print {
  /* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media (min-width: 40.0625em) {
  /* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer {
    padding-top: 40px;
  }
}

@media (min-width: 40.0625em) {
  /* line 25, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer {
    padding-bottom: 25px;
  }
}

/* line 35, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

@media print {
  /* line 35, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__link {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
.govuk-footer__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 270, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
.govuk-footer__link:link, .govuk-footer__link:visited {
  color: #0b0c0c;
}

@media print {
  /* line 270, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
  .govuk-footer__link:link, .govuk-footer__link:visited {
    color: #000000;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
.govuk-footer__link:hover {
  color: rgba(11, 12, 12, 0.99);
}

/* line 281, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
.govuk-footer__link:active, .govuk-footer__link:focus {
  color: #0b0c0c;
}

@media print {
  /* line 281, node_modules/govuk-frontend/govuk/components/footer/../../helpers/_links.scss */
  .govuk-footer__link:active, .govuk-footer__link:focus {
    color: #000000;
  }
}

/* line 62, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__section-break {
  margin: 0;
  margin-bottom: 30px;
  border: 0;
  border-bottom: 1px solid #bfc1c3;
}

@media (min-width: 40.0625em) {
  /* line 62, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__section-break {
    margin-bottom: 50px;
  }
}

/* line 69, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* line 89, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__meta-item {
  margin-right: 15px;
  margin-bottom: 25px;
  margin-left: 15px;
}

/* line 95, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__meta-item--grow {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 40.0525em) {
  /* line 95, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__meta-item--grow {
    -webkit-flex-basis: 320px;
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
  }
}

/* line 107, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__licence-logo {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  forced-color-adjust: auto;
}

@media (max-width: 48.0525em) {
  /* line 107, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__licence-logo {
    margin-bottom: 15px;
  }
}

/* line 119, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__licence-description {
  display: inline-block;
}

/* line 123, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__copyright-logo {
  display: inline-block;
  min-width: 125px;
  padding-top: 112px;
  background-image: url(/assets/govuk-frontend/govuk/assets/images/govuk-crest-87038e62e594b5f83ea40e0fb480fe7a5f41ba0db3917f709dfb39043f19a0f7.png);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: 125px 102px;
  text-align: center;
  white-space: nowrap;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* line 123, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__copyright-logo {
    background-image: url(/assets/govuk-frontend/govuk/assets/images/govuk-crest-2x-f88404651d3e759ad54ebb8fa59ce10dafa0f8788571c8a9adc7597dd9823220.png);
  }
}

/* line 138, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__inline-list {
  margin-top: 0;
  margin-bottom: 15px;
  padding: 0;
}

/* line 144, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__meta-custom {
  margin-bottom: 20px;
}

/* line 148, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__inline-list-item {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 5px;
}

/* line 154, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__heading {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #bfc1c3;
}

@media (min-width: 40.0625em) {
  /* line 154, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 40.0525em) {
  /* line 154, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__heading {
    padding-bottom: 10px;
  }
}

/* line 163, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 175, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__section {
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 30px;
  margin-left: 15px;
  vertical-align: top;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}

@media (max-width: 48.0525em) {
  /* line 175, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__section {
    -webkit-flex-basis: 200px;
    -ms-flex-preferred-size: 200px;
    flex-basis: 200px;
  }
}

@media (min-width: 48.0625em) {
  /* line 202, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__section:first-child:nth-last-child(2) {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
  }
}

/* line 210, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 30px;
  column-gap: 30px;
}

/* line 220, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__list .govuk-footer__link:hover {
  text-decoration-thickness: auto;
}

@media (min-width: 48.0625em) {
  /* line 226, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__list--columns-2 {
    -webkit-column-count: 2;
    column-count: 2;
  }
  /* line 231, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__list--columns-3 {
    -webkit-column-count: 3;
    column-count: 3;
  }
}

/* line 237, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__list-item {
  margin-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 237, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
  .govuk-footer__list-item {
    margin-bottom: 20px;
  }
}

/* line 241, node_modules/govuk-frontend/govuk/components/footer/_index.scss */
.govuk-footer__list-item:last-child {
  margin-bottom: 0;
}

/* line 3, app/assets/stylesheets/components/footer/_footer.scss */
.govuk-footer {
  margin-top: 60px;
}

/* line 7, app/assets/stylesheets/components/footer/_footer.scss */
.govuk-footer__copyright-logo {
  display: block;
  height: 30px;
  background-image: url(/assets/copyright_logo-13c2671d77d427727972a31471d2b5016fe7b51de568baa0457c7ce9ebbd863d.png);
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 48.0525em) {
  /* line 7, app/assets/stylesheets/components/footer/_footer.scss */
  .govuk-footer__copyright-logo {
    width: auto;
    background-image: url(/assets/copyright_logo-13c2671d77d427727972a31471d2b5016fe7b51de568baa0457c7ce9ebbd863d.png);
    background-size: contain;
  }
}

@media (max-width: 40.0525em) {
  /* line 7, app/assets/stylesheets/components/footer/_footer.scss */
  .govuk-footer__copyright-logo {
    height: 24px;
    margin-bottom: 15px;
  }
}

/* line 3, app/assets/stylesheets/components/tags/_tags.scss */
.govuk-tag {
  padding-bottom: 4px;
  background-color: #016065;
  line-height: 1em;
}

/* line 9, app/assets/stylesheets/components/tags/_tags.scss */
.govuk-tag__failure {
  background-color: #b10e1e;
}

/* line 13, app/assets/stylesheets/components/tags/_tags.scss */
.govuk-tag__warning {
  background-color: #de8f1a;
}

/* line 17, app/assets/stylesheets/components/tags/_tags.scss */
.govuk-tag__success {
  background-color: #0eb163;
}

/* line 21, app/assets/stylesheets/components/tags/_tags.scss */
.govuk-tag__notice {
  background-color: #6f777b;
}

/* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.1875;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 22px;
  padding: 8px 10px 7px;
  border: 2px solid transparent;
  border-radius: 0;
  color: #ffffff;
  background-color: #006435;
  box-shadow: 0 2px 0 #002815;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  -webkit-appearance: none;
}

@media print {
  /* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1;
  }
}

@media print {
  /* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button {
    font-size: 14pt;
    line-height: 19px;
  }
}

@media (min-width: 40.0625em) {
  /* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button {
    margin-bottom: 32px;
  }
}

@media (min-width: 40.0625em) {
  /* line 24, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button {
    width: auto;
  }
}

/* line 55, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:link, .govuk-button:visited, .govuk-button:active, .govuk-button:hover {
  color: #ffffff;
  text-decoration: none;
}

/* line 64, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 69, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:hover {
  background-color: #00502a;
}

/* line 73, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:active {
  top: 2px;
}

/* line 82, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:focus {
  border-color: #ffdd00;
  outline: 3px solid transparent;
  box-shadow: inset 0 0 0 1px #ffdd00;
}

/* line 110, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:focus:not(:active):not(:hover) {
  border-color: #ffdd00;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 2px 0 #0b0c0c;
}

/* line 122, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -4px;
  left: -2px;
  background: transparent;
}

/* line 146, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button:active:before {
  top: -4px;
}

/* line 151, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--disabled,
.govuk-button[disabled="disabled"],
.govuk-button[disabled] {
  opacity: 0.5;
}

/* line 156, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--disabled:hover,
.govuk-button[disabled="disabled"]:hover,
.govuk-button[disabled]:hover {
  background-color: #006435;
  cursor: default;
}

/* line 161, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--disabled:active,
.govuk-button[disabled="disabled"]:active,
.govuk-button[disabled]:active {
  top: 0;
  box-shadow: 0 2px 0 #002815;
}

/* line 170, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--secondary {
  background-color: #dee0e2;
  box-shadow: 0 2px 0 #858688;
}

/* line 174, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--secondary, .govuk-button--secondary:link, .govuk-button--secondary:visited, .govuk-button--secondary:active, .govuk-button--secondary:hover {
  color: #0b0c0c;
}

/* line 193, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--secondary:hover {
  background-color: #c8cacb;
}

/* line 196, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--secondary[disabled]:hover {
  background-color: #dee0e2;
}

/* line 202, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--warning {
  background-color: #b10e1e;
  box-shadow: 0 2px 0 #47060c;
}

/* line 206, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--warning, .govuk-button--warning:link, .govuk-button--warning:visited, .govuk-button--warning:active, .govuk-button--warning:hover {
  color: #ffffff;
}

/* line 225, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--warning:hover {
  background-color: #8e0b18;
}

/* line 228, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--warning[disabled]:hover {
  background-color: #b10e1e;
}

/* line 234, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button--start {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: auto;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 40.0625em) {
  /* line 234, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button--start {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1;
  }
}

@media print {
  /* line 234, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button--start {
    font-size: 18pt;
    line-height: 1;
  }
}

/* line 256, node_modules/govuk-frontend/govuk/components/button/_index.scss */
.govuk-button__start-icon {
  margin-left: 5px;
  vertical-align: middle;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  forced-color-adjust: auto;
}

@media (min-width: 48.0625em) {
  /* line 256, node_modules/govuk-frontend/govuk/components/button/_index.scss */
  .govuk-button__start-icon {
    margin-left: 10px;
  }
}

/* line 10, app/assets/stylesheets/components/button/_button.scss */
.govuk-button {
  color: #ffffff;
  background-color: #016065;
}

/* line 15, app/assets/stylesheets/components/button/_button.scss */
.govuk-button:link, .govuk-button:visited, .govuk-button:active, .govuk-button:hover {
  color: #ffffff;
}

/* line 28, app/assets/stylesheets/components/button/_button.scss */
.govuk-button:hover, .govuk-button:focus {
  background-color: #01484c;
}

/* line 34, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--disabled,
.govuk-button[disabled="disabled"],
.govuk-button[disabled] {
  background: #016065;
}

/* line 39, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--disabled:hover,
.govuk-button[disabled="disabled"]:hover,
.govuk-button[disabled]:hover {
  background-color: #016065;
}

/* line 43, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--disabled:active,
.govuk-button[disabled="disabled"]:active,
.govuk-button[disabled]:active {
  top: 0;
  box-shadow: 0 2px 0 #001819;
  -webkit-box-shadow: 0 2px 0 #001819;
}

/* line 53, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link {
  border: none;
  padding: 0;
  margin-bottom: 0;
  text-decoration: underline;
  color: #005ea5;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 53, app/assets/stylesheets/components/button/_button.scss */
  .govuk-button--as-link {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 53, app/assets/stylesheets/components/button/_button.scss */
  .govuk-button--as-link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 53, app/assets/stylesheets/components/button/_button.scss */
  .govuk-button--as-link {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 60, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link:link {
  color: #1d70b8;
}

/* line 64, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link:visited {
  color: #4c2c92;
}

/* line 68, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link:hover {
  color: #003078;
}

/* line 72, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link:active {
  color: #0b0c0c;
}

/* line 75, app/assets/stylesheets/components/button/_button.scss */
.govuk-button--as-link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 1, app/assets/stylesheets/components/progress_indicator/_progress_indicator.scss */
.ccs-progress-indicator {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  justify-content: center;
}

/* line 8, app/assets/stylesheets/components/progress_indicator/_progress_indicator.scss */
.ccs-progress-indicator svg {
  width: 100px;
  height: 100px;
}

@media (max-width: 19.99em) {
  /* line 8, app/assets/stylesheets/components/progress_indicator/_progress_indicator.scss */
  .ccs-progress-indicator svg {
    width: 50px;
    height: 50px;
  }
}

/* line 17, app/assets/stylesheets/components/progress_indicator/_progress_indicator.scss */
.ccs-progress-indicator__stroke {
  stroke: #9b1a47;
}

/* line 2, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
.govuk-panel {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 35px;
  border: 5px solid transparent;
  text-align: center;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (max-width: 40.0525em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel {
    padding: 10px;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}

/* line 31, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
.govuk-panel--confirmation {
  color: #ffffff;
  background: #006435;
}

@media print {
  /* line 31, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel--confirmation {
    border-color: currentColor;
    color: #000000;
    background: none;
  }
}

/* line 42, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
.govuk-panel__title {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
}

@media print {
  /* line 42, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__title {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 42, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__title {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

@media print {
  /* line 42, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__title {
    font-size: 32pt;
    line-height: 1.15;
  }
}

/* line 49, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
.govuk-panel__title:last-child {
  margin-bottom: 0;
}

/* line 53, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
.govuk-panel__body {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__body {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__body {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/components/panel/_index.scss */
  .govuk-panel__body {
    font-size: 24pt;
    line-height: 1.05;
  }
}

/* line 3, app/assets/stylesheets/components/panel/_panel.scss */
.govuk-panel--confirmation {
  background: #016065;
}

/* line 1, app/assets/stylesheets/components/task/_task.scss */
.ccs-task {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid #bfc1c3;
  background-color: #ffffff;
  flex-direction: column;
}

/* line 9, app/assets/stylesheets/components/task/_task.scss */
h3 {
  margin-bottom: 5px;
}

/* line 13, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__information {
  display: flex;
  flex-direction: row-reverse;
}

/* line 18, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__body {
  flex-grow: 2;
}

/* line 22, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__statuses {
  text-align: right;
  align-items: flex-end;
  flex-grow: 1;
}

/* line 28, app/assets/stylesheets/components/task/_task.scss */
.css-task__information--empty {
  max-width: 66.666%;
  flex-direction: row;
}

/* line 33, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__action {
  display: flex;
  flex-direction: row-reverse;
}

@media (max-width: 40.0525em) {
  /* line 33, app/assets/stylesheets/components/task/_task.scss */
  .ccs-task__action {
    flex-direction: column;
  }
}

/* line 41, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__action--primary {
  text-align: right;
  flex-grow: 3;
  align-items: flex-end;
}

/* line 47, app/assets/stylesheets/components/task/_task.scss */
.ccs-task__action--secondary {
  align-items: flex-end;
  flex-grow: 1;
}

/* line 52, app/assets/stylesheets/components/task/_task.scss */
.ccs-task:last-of-type {
  border-bottom: 1px solid #bfc1c3;
}

/* line 1, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
.ccs-task-signpost {
  margin-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 1, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
  .ccs-task-signpost {
    margin-bottom: 15px;
  }
}

/* line 5, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
.ccs-task-signpost__heading {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  color: #6f777b;
}

@media print {
  /* line 5, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
  .ccs-task-signpost__heading {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 5, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
  .ccs-task-signpost__heading {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 5, app/assets/stylesheets/components/task_signpost/_task_signpost.scss */
  .ccs-task-signpost__heading {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
.ccs-pagination {
  display: flex;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 15px;
  margin-top: 40px;
}

@media print {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (max-width: 40.0525em) {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    flex-direction: column;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    margin-bottom: 20px;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination {
    margin-top: 60px;
  }
}

/* line 12, app/assets/stylesheets/components/pagination/_pagination.scss */
.ccs-pagination__summary {
  flex-grow: 1;
}

/* line 16, app/assets/stylesheets/components/pagination/_pagination.scss */
.ccs-pagination__pager {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  flex-grow: 1;
  justify-content: flex-end;
}

@media (max-width: 40.0525em) {
  /* line 16, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__pager {
    justify-content: flex-start;
    margin-top: 15px;
  }
}

@media (max-width: 40.0525em) and (min-width: 40.0625em) {
  /* line 16, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__pager {
    margin-top: 20px;
  }
}

/* line 29, app/assets/stylesheets/components/pagination/_pagination.scss */
.css-pagination__item {
  display: block;
}

/* line 33, app/assets/stylesheets/components/pagination/_pagination.scss */
.ccs-pagination__link {
  padding: 0 .53em;
}

/* line 37, app/assets/stylesheets/components/pagination/_pagination.scss */
.ccs-pagination__link--current,
.ccs-pagination__link--current:hover,
.ccs-pagination__link--current:active,
.ccs-pagination__link--current:visited {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  text-decoration: none;
  cursor: default;
}

@media print {
  /* line 37, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__link--current,
.ccs-pagination__link--current:hover,
.ccs-pagination__link--current:active,
.ccs-pagination__link--current:visited {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 37, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__link--current,
.ccs-pagination__link--current:hover,
.ccs-pagination__link--current:active,
.ccs-pagination__link--current:visited {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 37, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__link--current,
.ccs-pagination__link--current:hover,
.ccs-pagination__link--current:active,
.ccs-pagination__link--current:visited {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 37, app/assets/stylesheets/components/pagination/_pagination.scss */
  .ccs-pagination__link--current,
.ccs-pagination__link--current:hover,
.ccs-pagination__link--current:active,
.ccs-pagination__link--current:visited {
    color: #000000;
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
.govuk-inset-text, .ccs-in-service-alert {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
  clear: both;
  border-left: 10px solid #bfc1c3;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    margin-top: 30px;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
  .govuk-inset-text, .ccs-in-service-alert {
    margin-bottom: 30px;
  }
}

/* line 15, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
.govuk-inset-text > :first-child, .ccs-in-service-alert > :first-child {
  margin-top: 0;
}

/* line 19, node_modules/govuk-frontend/govuk/components/inset-text/_index.scss */
.govuk-inset-text > :only-child, .ccs-in-service-alert > :only-child,
.govuk-inset-text > :last-child,
.ccs-in-service-alert > :last-child {
  margin-bottom: 0;
}

/* line 14, app/assets/stylesheets/components/in_service_alerts/_in_service_alerts.scss */
.ccs-in-service-alert--notice {
  border-left-color: #6f777b;
  background-color: #f4f5f5;
}

/* line 18, app/assets/stylesheets/components/in_service_alerts/_in_service_alerts.scss */
.ccs-in-service-alert--failure {
  border-left-color: #b10e1e;
  background-color: #fcdbdf;
}

/* line 22, app/assets/stylesheets/components/in_service_alerts/_in_service_alerts.scss */
.ccs-in-service-alert--success {
  border-left-color: #0eb163;
  background-color: #dbfcec;
}

/* line 26, app/assets/stylesheets/components/in_service_alerts/_in_service_alerts.scss */
.ccs-in-service-alert--warning {
  border-left-color: #de8f1a;
  background-color: #f9e6cb;
}

/* line 1, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__wrapper {
  position: relative;
}

/* line 5, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__hint,
.autocomplete__input {
  -webkit-appearance: none;
  border: 2px solid;
  border-radius: 0;
  /* Safari 10 on iOS adds implicit border rounding. */
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  margin-bottom: 0;
  /* BUG: Safari 10 on macOS seems to add an implicit margin. */
  width: 100%;
}

/* line 17, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__input {
  background-color: transparent;
  position: relative;
}

/* line 22, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__hint {
  color: #BFC1C3;
  position: absolute;
}

/* line 27, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__input--default {
  padding: 4px;
}

/* line 31, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__input--focused {
  outline-offset: 0;
  outline: 3px solid #ffbf47;
}

/* line 36, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__input--show-all-values {
  padding: 4px 34px 4px 4px;
  cursor: pointer;
}

/* line 41, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__dropdown-arrow-down {
  z-index: -1;
  display: inline-block;
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  top: 10px;
}

/* line 51, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__menu {
  background-color: #fff;
  border: 2px solid #0B0C0C;
  border-top: 0;
  color: #34384B;
  margin: 0;
  max-height: 342px;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
  width: calc(100% - 4px);
}

/* line 64, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__menu--visible {
  display: block;
}

/* line 68, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__menu--hidden {
  display: none;
}

/* line 72, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__menu--overlay {
  box-shadow: rgba(0, 0, 0, 0.256863) 0px 2px 6px;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 100;
}

/* line 80, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__menu--inline {
  position: relative;
}

/* line 84, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option {
  border-bottom: solid #BFC1C3;
  border-width: 1px 0;
  cursor: pointer;
  display: block;
  position: relative;
}

/* line 92, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option > * {
  pointer-events: none;
}

/* line 96, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option:first-of-type {
  border-top-width: 0;
}

/* line 100, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option:last-of-type {
  border-bottom-width: 0;
}

/* line 104, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option--odd {
  background-color: #FAFAFA;
}

/* line 108, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option--focused,
.autocomplete__option:hover {
  background-color: #005EA5;
  border-color: #005EA5;
  color: white;
  outline: none;
}

/* line 116, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__option--no-results {
  background-color: #FAFAFA;
  color: #646b6f;
  cursor: not-allowed;
}

/* line 122, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__hint,
.autocomplete__input,
.autocomplete__option {
  font-size: 16px;
  line-height: 1.25;
}

/* line 129, node_modules/accessible-autocomplete/src/autocomplete.css */
.autocomplete__hint,
.autocomplete__option {
  padding: 4px;
}

@media (min-width: 641px) {
  /* line 135, node_modules/accessible-autocomplete/src/autocomplete.css */
  .autocomplete__hint,
.autocomplete__input,
.autocomplete__option {
    font-size: 19px;
    line-height: 1.31579;
  }
}

/* line 3, app/assets/stylesheets/components/autocomplete/_autocomplete.scss */
.autocomplete__option--focused,
.autocomplete__option:hover {
  background-color: #016065;
}

/* line 8, app/assets/stylesheets/components/autocomplete/_autocomplete.scss */
.autocomplete__option {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 8, app/assets/stylesheets/components/autocomplete/_autocomplete.scss */
  .autocomplete__option {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 8, app/assets/stylesheets/components/autocomplete/_autocomplete.scss */
  .autocomplete__option {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 8, app/assets/stylesheets/components/autocomplete/_autocomplete.scss */
  .autocomplete__option {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 1, app/assets/stylesheets/components/search/_search.scss */
.ccs-search-form-group {
  display: flex;
}

@media (max-width: 40.0525em) {
  /* line 1, app/assets/stylesheets/components/search/_search.scss */
  .ccs-search-form-group {
    display: block;
  }
}

/* line 1, app/assets/stylesheets/components/actions/_page-actions.scss */
.govuk-page-actions--actions {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media print {
  /* line 1, app/assets/stylesheets/components/actions/_page-actions.scss */
  .govuk-page-actions--actions {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 1, app/assets/stylesheets/components/actions/_page-actions.scss */
  .govuk-page-actions--actions {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 1, app/assets/stylesheets/components/actions/_page-actions.scss */
  .govuk-page-actions--actions {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 8, app/assets/stylesheets/components/actions/_page-actions.scss */
.govuk-page-actions--action {
  margin-bottom: 10px;
}

/* line 1, app/assets/stylesheets/components/actions/_table-actions.scss */
.govuk-table-actions--actions {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media print {
  /* line 1, app/assets/stylesheets/components/actions/_table-actions.scss */
  .govuk-table-actions--actions {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 1, app/assets/stylesheets/components/actions/_table-actions.scss */
  .govuk-table-actions--actions {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 1, app/assets/stylesheets/components/actions/_table-actions.scss */
  .govuk-table-actions--actions {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 9, app/assets/stylesheets/components/actions/_table-actions.scss */
.govuk-table-actions--action {
  margin-right: 20px;
}

/* line 13, app/assets/stylesheets/components/actions/_table-actions.scss */
.govuk-table-actions--action:last-child {
  margin-right: 0;
}

/* line 2, app/assets/stylesheets/components/code/fdl.scss */
.simple_form.new_framework .govuk-error-summary__list a[href='#framework_definition_source'], .simple_form.edit_framework .govuk-error-summary__list a[href='#framework_definition_source'] {
  white-space: pre-wrap;
  text-decoration: none;
  font-weight: normal;
}

/* line 9, app/assets/stylesheets/components/code/fdl.scss */
.framework_definition_source .govuk-error-message {
  display: none;
}

/* line 13, app/assets/stylesheets/components/code/fdl.scss */
.govuk-textarea--fdl-source, .CodeMirror {
  min-height: 40em;
  min-width: 100%;
}

/* line 18, app/assets/stylesheets/components/code/fdl.scss */
.CodeMirror {
  font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
}

/* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 100%;
  margin-bottom: 20px;
  border-spacing: 0;
  border-collapse: collapse;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table {
    margin-bottom: 30px;
  }
}

/* line 12, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__header {
  font-weight: 600;
}

/* line 16, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__header,
.govuk-table__cell {
  padding: 10px 20px 10px 0;
  border-bottom: 1px solid #bfc1c3;
  text-align: left;
  vertical-align: top;
}

/* line 30, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__cell--numeric {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
  font-weight: 400;
}

@media print {
  /* line 30, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__cell--numeric {
    font-family: sans-serif;
  }
}

@supports (font-variant-numeric: tabular-nums) {
  /* line 30, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__cell--numeric {
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant-numeric: tabular-nums;
  }
}

/* line 34, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__header--numeric,
.govuk-table__cell--numeric {
  text-align: right;
}

/* line 39, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__header:last-child,
.govuk-table__cell:last-child {
  padding-right: 0;
}

/* line 44, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__caption {
  font-weight: 600;
  display: table-caption;
  text-align: left;
}

/* line 53, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__caption--xl {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.09375;
  margin-bottom: 15px;
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--xl {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 53, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.0416666667;
  }
}

@media print {
  /* line 53, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}

/* line 58, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__caption--l {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.0416666667;
  margin-bottom: 15px;
}

@media print {
  /* line 58, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--l {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 58, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--l {
    font-size: 36px;
    font-size: 2.25rem;
    line-height: 1.1111111111;
  }
}

@media print {
  /* line 58, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}

/* line 63, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__caption--m {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-bottom: 15px;
}

@media print {
  /* line 63, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--m {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 63, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 63, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 68, node_modules/govuk-frontend/govuk/components/table/_index.scss */
.govuk-table__caption--s {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}

@media print {
  /* line 68, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--s {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 68, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 68, node_modules/govuk-frontend/govuk/components/table/_index.scss */
  .govuk-table__caption--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (max-width: 768px) {
  /* line 3, app/assets/stylesheets/components/table/_table.scss */
  .govuk-table {
    display: block;
    height: 100%;
    overflow: auto;
  }
}

/* line 11, app/assets/stylesheets/components/table/_table.scss */
.govuk-table__cell--numeric {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

@media print {
  /* line 11, app/assets/stylesheets/components/table/_table.scss */
  .govuk-table__cell--numeric {
    font-family: sans-serif;
  }
}

/* line 15, app/assets/stylesheets/components/table/_table.scss */
.rmi-govuk-table__cell {
  position: relative;
}

/* line 3, app/assets/stylesheets/components/tabs/_tabs.scss */
.govuk-tabs__tab {
  text-decoration: none;
}

/*------------------------------------*\
  #Accordion
\*------------------------------------*/
/* line 4, app/assets/stylesheets/components/accordion/_accordion.scss */
.govuk-accordion__section-button {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.1;
}

@media print {
  /* line 4, app/assets/stylesheets/components/accordion/_accordion.scss */
  .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 4, app/assets/stylesheets/components/accordion/_accordion.scss */
  .govuk-accordion__section-button {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

@media print {
  /* line 4, app/assets/stylesheets/components/accordion/_accordion.scss */
  .govuk-accordion__section-button {
    font-size: 20pt;
    line-height: 1.1;
  }
}

/* line 10, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__section-header {
  padding-bottom: 0.0625rem;
  z-index: 100;
}

/* line 17, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__section-button {
  padding-top: 1.25rem;
}

/* line 23, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__section-content {
  padding-top: 0;
  padding-bottom: 1.875rem;
}

/* line 30, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__icon:after,
.js-enabled .govuk-accordion__icon:before {
  width: 12.5%;
  height: 12.5%;
  border-width: 1px;
}

/* line 38, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__icon:before {
  width: 100%;
}

/* line 42, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__icon:after {
  height: 100%;
}

/* line 46, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .govuk-accordion__section + .govuk-accordion__section {
  border: 0;
}

/* line 53, app/assets/stylesheets/components/accordion/_accordion.scss */
.govuk-accordion__section--expanded + .govuk-accordion__section {
  border-color: transparent;
}

/* line 59, app/assets/stylesheets/components/accordion/_accordion.scss */
.govuk-accordion__controls {
  margin-bottom: 10px;
}

/* line 67, app/assets/stylesheets/components/accordion/_accordion.scss */
.ccs-accordion .govuk-accordion__icon {
  background-image: url(/assets/accordion-arrows-18d6c6dafd9c9e44426dada3cd013224af6d6e774e992287dc75231494aa7336.svg);
  background-position: 0 1px;
  background-repeat: no-repeat;
  background-size: 16px auto;
}

/* line 74, app/assets/stylesheets/components/accordion/_accordion.scss */
.ccs-accordion .govuk-accordion__icon:before, .ccs-accordion .govuk-accordion__icon:after {
  display: none;
}

/* line 81, app/assets/stylesheets/components/accordion/_accordion.scss */
.ccs-accordion .govuk-accordion__section--expanded .govuk-accordion__icon {
  background-position: 0 -74px;
}

/* line 88, app/assets/stylesheets/components/accordion/_accordion.scss */
.ccs-accordion--clean .govuk-accordion__controls {
  display: none;
}

/* line 92, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .ccs-accordion--clean {
  border-bottom: 0 none;
}

/* line 96, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .ccs-accordion__section--clean {
  border-top: 0 none;
  padding-bottom: 0.125rem;
}

/* line 102, app/assets/stylesheets/components/accordion/_accordion.scss */
.ccs-accordion__section-button {
  font-size: 1.1875rem;
  font-weight: 600;
}

/* line 107, app/assets/stylesheets/components/accordion/_accordion.scss */
.js-enabled .ccs-accordion__section-button {
  color: #0B0C0C;
}

/* line 111, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-table-accordion-content {
  display: none;
}

/* line 115, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-table-accordion-content--expanded {
  display: table-row-group;
}

/* line 119, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-govuk-table-accordion-expanded::after {
  height: 0 !important;
}

/* line 123, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-govuk-table__body .govuk-accordion__icon {
  right: 0px !important;
  top: 22px !important;
}

/* line 128, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-govuk-table__body .govuk-accordion__icon:before {
  height: 0 !important;
  border-width: 1px !important;
}

/* line 133, app/assets/stylesheets/components/accordion/_accordion.scss */
.rmi-govuk-table__body .govuk-accordion__icon:after {
  width: 0 !important;
  border-width: 1px !important;
}

/*------------------------------------*\
  #Enclosure
\*------------------------------------*/
/* line 5, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.apollo-enclosure {
  padding: 1.5625rem;
  background-color: #F6F6F6;
}

/* line 10, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.apollo-enclosure + .apollo-enclosure {
  margin-top: 1.5625rem;
}

/* line 18, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.apollo-enclosure--white {
  background-color: transparent;
}

/* line 24, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.apollo-enclosure--further-competition + .apollo-enclosure--further-competition {
  margin-top: 0;
}

/* line 30, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.apollo-enclosure--framework-lots {
  padding: 0.5rem 1.625rem 0.875rem 1.625rem;
}

/* line 39, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.govuk-form-group--enclosure {
  padding: 0.9375rem 1.25rem 1.25rem 1.25rem;
  background-color: #F6F6F6;
}

/* line 44, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.govuk-form-group--enclosure .govuk-checkboxes,
.govuk-form-group--enclosure .govuk-radios {
  margin: 0 -0.75rem -0.5625rem -0.75rem;
}

/**
 * modify the padding so that the focus state reaches the edges of the box
 * (the focus state is set on `.govuk-accordion__section-header`)
 */
/* line 59, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.ccs-form-group--enclosure--tight {
  padding-left: 0;
  padding-right: 0;
}

/* line 64, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.ccs-form-group--enclosure--tight .govuk-accordion__section-header,
.ccs-form-group--enclosure--tight .govuk-accordion__section-content {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* line 76, app/assets/stylesheets/components/enclosure/_enclosure.scss */
.ccs-results-notification {
  margin-bottom: 1.25rem;
}

@media (min-width: 62.5em) {
  /* line 83, app/assets/stylesheets/components/enclosure/_enclosure.scss */
  .apollo-enclosure--padded {
    padding: 2.125rem 1.8125rem 2.875rem 2.875rem;
  }
}

/*------------------------------------*\
  #Checkboxes
\*------------------------------------*/
/* line 12, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__item--small {
  background-color: white;
  min-height: 24px;
  margin-bottom: 0;
  padding: 10px 0 10px 34px;
}

/* line 21, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__item--small + .govuk-checkboxes__item--small,
.govuk-checkboxes__conditional--small + .govuk-checkboxes__item--small {
  border-top: 1px solid #D9D9D9;
}

/* line 28, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__item--small .govuk-checkboxes__label {
  padding: 0px 15px 0px;
  line-height: 24px;
  word-break: break-word;
}

/* line 36, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__input--small,
.govuk-checkboxes__input--small + .govuk-checkboxes__label::before {
  height: 24px !important;
  width: 24px !important;
  top: 10px;
  left: 10px;
}

/* line 46, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__input--small + .govuk-checkboxes__label::after {
  top: 16.6px;
  left: 17px;
  width: 11px;
  height: 6px;
  border-width: 0 0 3px 3px;
}

/* line 57, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__conditional {
  background-color: white;
  padding-left: 10px;
  position: relative;
}

/* line 63, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__conditional::before, .govuk-checkboxes__conditional::after {
  content: " ";
  display: block;
}

/* line 71, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__conditional::before {
  height: calc(100% + 20px);
  width: 18px;
  background-color: white;
  position: absolute;
  top: 0;
  left: -22px;
}

/* line 83, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.govuk-checkboxes__conditional::after {
  height: 20px;
  width: calc(100% + 4px);
  background-color: white;
  position: absolute;
  bottom: -20px;
  left: -4px;
}

/* line 98, app/assets/stylesheets/components/checkboxes/_checkboxes.scss */
.ccs-checkboxes--scrollable {
  max-height: 24.625rem;
  min-height: 14.625rem;
  overflow: auto;
}

/*------------------------------------*\
  #Filters-Intro
\*------------------------------------*/
/* line 5, app/assets/stylesheets/components/filters_intro/_filters-intro.scss */
.ccs-clear-filters {
  float: right;
  line-height: 1.8;
}

/* line 10, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_clearfix.scss */
.govuk-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* line 2, node_modules/govuk-frontend/govuk/utilities/_visually-hidden.scss */
.govuk-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

/* line 6, node_modules/govuk-frontend/govuk/utilities/_visually-hidden.scss */
.govuk-visually-hidden-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* line 69, node_modules/govuk-frontend/govuk/components/tabs/../../helpers/_visually-hidden.scss */
.govuk-visually-hidden-focusable:active, .govuk-visually-hidden-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  white-space: inherit !important;
}

/* line 9, node_modules/govuk-frontend/govuk/overrides/_display.scss */
.govuk-\!-display-inline {
  display: inline !important;
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_display.scss */
.govuk-\!-display-inline-block {
  display: inline-block !important;
}

/* line 17, node_modules/govuk-frontend/govuk/overrides/_display.scss */
.govuk-\!-display-block {
  display: block !important;
}

/* line 21, node_modules/govuk-frontend/govuk/overrides/_display.scss */
.govuk-\!-display-none {
  display: none !important;
}

@media print {
  /* line 26, node_modules/govuk-frontend/govuk/overrides/_display.scss */
  .govuk-\!-display-none-print {
    display: none !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-0 {
  margin: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-0 {
    margin: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-0 {
    margin-top: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-0 {
    margin-right: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-0 {
    margin-bottom: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-0 {
    margin-left: 0 !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-1 {
  margin: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-1 {
    margin: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-1 {
  margin-top: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-1 {
    margin-top: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-1 {
  margin-right: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-1 {
    margin-right: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-1 {
  margin-bottom: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-1 {
    margin-bottom: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-1 {
  margin-left: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-1 {
    margin-left: 5px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-2 {
  margin: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-2 {
    margin: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-2 {
  margin-top: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-2 {
    margin-top: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-2 {
  margin-right: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-2 {
    margin-right: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-2 {
  margin-bottom: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-2 {
    margin-bottom: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-2 {
  margin-left: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-2 {
    margin-left: 10px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-3 {
  margin: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-3 {
    margin: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-3 {
  margin-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-3 {
    margin-top: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-3 {
  margin-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-3 {
    margin-right: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-3 {
  margin-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-3 {
    margin-bottom: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-3 {
  margin-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-3 {
    margin-left: 15px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-4 {
  margin: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-4 {
    margin: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-4 {
  margin-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-4 {
    margin-top: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-4 {
  margin-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-4 {
    margin-right: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-4 {
  margin-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-4 {
    margin-bottom: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-4 {
  margin-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-4 {
    margin-left: 20px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-5 {
  margin: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-5 {
    margin: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-5 {
  margin-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-5 {
    margin-top: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-5 {
  margin-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-5 {
    margin-right: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-5 {
  margin-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-5 {
    margin-bottom: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-5 {
  margin-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-5 {
    margin-left: 25px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-6 {
  margin: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-6 {
    margin: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-6 {
  margin-top: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-6 {
    margin-top: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-6 {
  margin-right: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-6 {
    margin-right: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-6 {
  margin-bottom: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-6 {
    margin-bottom: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-6 {
  margin-left: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-6 {
    margin-left: 30px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-7 {
  margin: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-7 {
    margin: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-7 {
  margin-top: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-7 {
    margin-top: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-7 {
  margin-right: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-7 {
    margin-right: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-7 {
  margin-bottom: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-7 {
    margin-bottom: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-7 {
  margin-left: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-7 {
    margin-left: 40px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-8 {
  margin: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-8 {
    margin: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-8 {
  margin-top: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-8 {
    margin-top: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-8 {
  margin-right: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-8 {
    margin-right: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-8 {
  margin-bottom: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-8 {
    margin-bottom: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-8 {
  margin-left: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-8 {
    margin-left: 50px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-9 {
  margin: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-9 {
    margin: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-top-9 {
  margin-top: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-top-9 {
    margin-top: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-right-9 {
  margin-right: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-right-9 {
    margin-right: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-bottom-9 {
  margin-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-bottom-9 {
    margin-bottom: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-margin-left-9 {
  margin-left: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-margin-left-9 {
    margin-left: 60px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-0 {
  padding: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-0 {
    padding: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-0 {
  padding-top: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-0 {
    padding-top: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-0 {
  padding-right: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-0 {
    padding-right: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-0 {
    padding-bottom: 0 !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-0 {
  padding-left: 0 !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-0 {
    padding-left: 0 !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-1 {
  padding: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-1 {
    padding: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-1 {
  padding-top: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-1 {
    padding-top: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-1 {
  padding-right: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-1 {
    padding-right: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-1 {
  padding-bottom: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-1 {
    padding-bottom: 5px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-1 {
  padding-left: 5px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-1 {
    padding-left: 5px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-2 {
  padding: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-2 {
    padding: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-2 {
  padding-top: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-2 {
    padding-top: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-2 {
  padding-right: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-2 {
    padding-right: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-2 {
  padding-bottom: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-2 {
    padding-bottom: 10px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-2 {
  padding-left: 10px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-2 {
    padding-left: 10px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-3 {
  padding: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-3 {
    padding: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-3 {
  padding-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-3 {
    padding-top: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-3 {
  padding-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-3 {
    padding-right: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-3 {
  padding-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-3 {
    padding-bottom: 15px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-3 {
  padding-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-3 {
    padding-left: 15px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-4 {
  padding: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-4 {
    padding: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-4 {
  padding-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-4 {
    padding-top: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-4 {
  padding-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-4 {
    padding-right: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-4 {
  padding-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-4 {
    padding-bottom: 20px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-4 {
  padding-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-4 {
    padding-left: 20px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-5 {
  padding: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-5 {
    padding: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-5 {
  padding-top: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-5 {
    padding-top: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-5 {
  padding-right: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-5 {
    padding-right: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-5 {
  padding-bottom: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-5 {
    padding-bottom: 25px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-5 {
  padding-left: 15px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-5 {
    padding-left: 25px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-6 {
  padding: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-6 {
    padding: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-6 {
  padding-top: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-6 {
    padding-top: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-6 {
  padding-right: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-6 {
    padding-right: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-6 {
  padding-bottom: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-6 {
    padding-bottom: 30px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-6 {
  padding-left: 20px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-6 {
    padding-left: 30px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-7 {
  padding: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-7 {
    padding: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-7 {
  padding-top: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-7 {
    padding-top: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-7 {
  padding-right: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-7 {
    padding-right: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-7 {
  padding-bottom: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-7 {
    padding-bottom: 40px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-7 {
  padding-left: 25px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-7 {
    padding-left: 40px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-8 {
  padding: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-8 {
    padding: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-8 {
  padding-top: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-8 {
    padding-top: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-8 {
  padding-right: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-8 {
    padding-right: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-8 {
  padding-bottom: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-8 {
    padding-bottom: 50px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-8 {
  padding-left: 30px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-8 {
    padding-left: 50px !important;
  }
}

/* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-9 {
  padding: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 46, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-9 {
    padding: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-top-9 {
  padding-top: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-top-9 {
    padding-top: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-right-9 {
  padding-right: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-right-9 {
    padding-right: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-bottom-9 {
  padding-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-bottom-9 {
    padding-bottom: 60px !important;
  }
}

/* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
.govuk-\!-padding-left-9 {
  padding-left: 40px !important;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/overrides/_spacing.scss */
  .govuk-\!-padding-left-9 {
    padding-left: 60px !important;
  }
}

/* line 9, node_modules/govuk-frontend/govuk/overrides/_text-align.scss */
.govuk-\!-text-align-left {
  text-align: left !important;
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_text-align.scss */
.govuk-\!-text-align-centre {
  text-align: center !important;
}

/* line 17, node_modules/govuk-frontend/govuk/overrides/_text-align.scss */
.govuk-\!-text-align-right {
  text-align: right !important;
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-80 {
  font-size: 53px !important;
  font-size: 3.3125rem !important;
  line-height: 1.0377358491 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-80 {
    font-size: 80px !important;
    font-size: 5rem !important;
    line-height: 1 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-80 {
    font-size: 53pt !important;
    line-height: 1.1 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-56 {
  font-size: 45px !important;
  font-size: 2.8125rem !important;
  line-height: 1.1111111111 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-56 {
    font-size: 56px !important;
    font-size: 3.5rem !important;
    line-height: 1.0714285714 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-56 {
    font-size: 45pt !important;
    line-height: 1.1 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-48 {
  font-size: 32px !important;
  font-size: 2rem !important;
  line-height: 1.09375 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-48 {
    font-size: 48px !important;
    font-size: 3rem !important;
    line-height: 1.0416666667 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-48 {
    font-size: 32pt !important;
    line-height: 1.15 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-36 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.0416666667 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-36 {
    font-size: 36px !important;
    font-size: 2.25rem !important;
    line-height: 1.1111111111 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-36 {
    font-size: 24pt !important;
    line-height: 1.05 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-27 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.1111111111 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-27 {
    font-size: 27px !important;
    font-size: 1.6875rem !important;
    line-height: 1.1111111111 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-27 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-24 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.1111111111 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-24 {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-24 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-22 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.1 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-22 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    line-height: 1.0909090909 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-22 {
    font-size: 20pt !important;
    line-height: 1.1 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-20 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.05 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-20 {
    font-size: 20px !important;
    font-size: 1.25rem !important;
    line-height: 1.05 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-20 {
    font-size: 20pt !important;
    line-height: 1.05 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-19 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
    line-height: 1.3157894737 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-19 {
    font-size: 14pt !important;
    line-height: 1.15 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-18 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.2777777778 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-18 {
    font-size: 18px !important;
    font-size: 1.125rem !important;
    line-height: 1.2777777778 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-18 {
    font-size: 18pt !important;
    line-height: 1.2 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-17featured {
  font-size: 17px !important;
  font-size: 1.0625rem !important;
  line-height: 1.4117647059 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-17featured {
    font-size: 17px !important;
    font-size: 1.0625rem !important;
    line-height: 1.4117647059 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-17featured {
    font-size: 17pt !important;
    line-height: 1.4 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-17search {
  font-size: 17px !important;
  font-size: 1.0625rem !important;
  line-height: 1 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-17search {
    font-size: 17px !important;
    font-size: 1.0625rem !important;
    line-height: 1 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-17search {
    font-size: 17pt !important;
    line-height: 1 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-16 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.1428571429 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.25 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-16 {
    font-size: 14pt !important;
    line-height: 1.2 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-15 {
  font-size: 15px !important;
  font-size: 0.9375rem !important;
  line-height: 1.2666666667 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-15 {
    font-size: 15px !important;
    font-size: 0.9375rem !important;
    line-height: 1.2666666667 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-15 {
    font-size: 15pt !important;
    line-height: 1.2 !important;
  }
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-size-14 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    line-height: 1.4285714286 !important;
  }
}

@media print {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
  .govuk-\!-font-size-14 {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
}

/* line 20, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-weight-regular {
  font-weight: 400 !important;
}

/* line 24, node_modules/govuk-frontend/govuk/overrides/_typography.scss */
.govuk-\!-font-weight-bold {
  font-weight: 600 !important;
}

/* line 9, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-full {
  width: 100% !important;
}

/* line 13, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-three-quarters {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  /* line 13, node_modules/govuk-frontend/govuk/overrides/_width.scss */
  .govuk-\!-width-three-quarters {
    width: 75% !important;
  }
}

/* line 21, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-two-thirds {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  /* line 21, node_modules/govuk-frontend/govuk/overrides/_width.scss */
  .govuk-\!-width-two-thirds {
    width: 66.66% !important;
  }
}

/* line 29, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-one-half {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  /* line 29, node_modules/govuk-frontend/govuk/overrides/_width.scss */
  .govuk-\!-width-one-half {
    width: 50% !important;
  }
}

/* line 37, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-one-third {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  /* line 37, node_modules/govuk-frontend/govuk/overrides/_width.scss */
  .govuk-\!-width-one-third {
    width: 33.33% !important;
  }
}

/* line 45, node_modules/govuk-frontend/govuk/overrides/_width.scss */
.govuk-\!-width-one-quarter {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  /* line 45, node_modules/govuk-frontend/govuk/overrides/_width.scss */
  .govuk-\!-width-one-quarter {
    width: 25% !important;
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion {
  margin-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion {
    margin-bottom: 30px;
  }
}

/* line 7, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section {
  padding-top: 15px;
}

/* line 11, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section-header {
  padding-top: 15px;
  padding-bottom: 15px;
}

/* line 16, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section-heading {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin-top: 0;
  margin-bottom: 0;
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-heading {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 16, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-heading {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 26, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section-button {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  display: inline-block;
  margin-bottom: 0;
  padding-top: 15px;
}

@media print {
  /* line 26, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 26, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-button {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 26, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .govuk-accordion__section-button {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 33, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section-summary {
  margin-top: 10px;
  margin-bottom: 0;
}

/* line 39, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.govuk-accordion__section-content > :last-child {
  margin-bottom: 0;
}

/* line 45, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion {
  border-bottom: 1px solid #bfc1c3;
}

/* line 51, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section {
  padding-top: 0;
}

/* line 56, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-content {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 56, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__section-content {
    padding-top: 15px;
  }
}

@media (min-width: 40.0625em) {
  /* line 56, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__section-content {
    padding-bottom: 15px;
  }
}

/* line 63, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__section-content {
  display: block;
}

/* line 68, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__open-all {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border-width: 0;
  color: #1d70b8;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

@media print {
  /* line 68, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 68, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__open-all {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 68, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__open-all {
    font-size: 14pt;
    line-height: 1.2;
  }
}

@media print {
  /* line 68, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__open-all {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 80, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:link {
  color: #1d70b8;
}

/* line 84, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:visited {
  color: #4c2c92;
}

/* line 88, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:hover {
  color: #003078;
}

/* line 92, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:active {
  color: #0b0c0c;
}

/* line 98, node_modules/govuk-frontend/govuk/components/../helpers/_links.scss */
.js-enabled .govuk-accordion__open-all:focus {
  color: #0b0c0c;
}

/* line 84, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__open-all::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 91, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-header {
  position: relative;
  padding-right: 40px;
  border-top: 1px solid #bfc1c3;
  cursor: pointer;
}

/* line 100, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-button {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0;
  border-width: 0;
  color: #1d70b8;
  background: none;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
}

@media print {
  /* line 100, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__section-button {
    font-family: sans-serif;
  }
}

/* line 113, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-button:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 118, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 125, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* line 134, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section-button:hover:not(:focus) {
  color: #003078;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

@media (hover: none) {
  /* line 147, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
  .js-enabled .govuk-accordion__section-button:hover {
    text-decoration: none;
  }
}

/* line 152, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__controls {
  text-align: right;
}

/* line 158, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__icon {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: 16px;
  margin-top: -8px;
}

/* line 167, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__icon:after,
.js-enabled .govuk-accordion__icon:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25%;
  height: 25%;
  margin: auto;
  border: 2px solid transparent;
  background-color: #0b0c0c;
}

/* line 183, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__icon:before {
  width: 100%;
}

/* line 187, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__icon:after {
  height: 100%;
}

/* line 192, node_modules/govuk-frontend/govuk/components/accordion/_index.scss */
.js-enabled .govuk-accordion__section--expanded .govuk-accordion__icon:after {
  content: " ";
  display: none;
}

/* line 6, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
.govuk-textarea {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  box-sizing: border-box;
  display: block;
  width: 100%;
  min-height: 40px;
  margin-bottom: 20px;
  padding: 5px;
  resize: vertical;
  border: 2px solid #0b0c0c;
  border-radius: 0;
  -webkit-appearance: none;
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
  .govuk-textarea {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 6, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
  .govuk-textarea {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
  .govuk-textarea {
    font-size: 14pt;
    line-height: 1.25;
  }
}

@media (min-width: 40.0625em) {
  /* line 6, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
  .govuk-textarea {
    margin-bottom: 30px;
  }
}

/* line 23, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
.govuk-textarea:focus {
  outline: 3px solid #ffdd00;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

/* line 40, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
.govuk-textarea--error {
  border: 2px solid #d4351c;
}

/* line 43, node_modules/govuk-frontend/govuk/components/character-count/../textarea/_index.scss */
.govuk-textarea--error:focus {
  border-color: #0b0c0c;
}

/* line 7, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
.govuk-character-count {
  margin-bottom: 20px;
}

@media (min-width: 40.0625em) {
  /* line 7, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
  .govuk-character-count {
    margin-bottom: 30px;
  }
}

/* line 10, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
.govuk-character-count .govuk-form-group,
.govuk-character-count .govuk-textarea {
  margin-bottom: 5px;
}

/* line 16, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
.govuk-character-count__message {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
  .govuk-character-count__message {
    font-family: sans-serif;
  }
}

@supports (font-variant-numeric: tabular-nums) {
  /* line 16, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
  .govuk-character-count__message {
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant-numeric: tabular-nums;
  }
}

/* line 22, node_modules/govuk-frontend/govuk/components/character-count/_index.scss */
.govuk-character-count__message--disabled {
  visibility: hidden;
}

/* line 6, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
.govuk-cookie-banner {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  padding-top: 20px;
  border-bottom: 10px solid transparent;
  background-color: #dee0e2;
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
  .govuk-cookie-banner {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 6, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
  .govuk-cookie-banner {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 6, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
  .govuk-cookie-banner {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 22, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
.govuk-cookie-banner[hidden] {
  display: none;
}

/* line 26, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
.govuk-cookie-banner__message {
  margin-bottom: -10px;
}

/* line 30, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
.govuk-cookie-banner__message[hidden] {
  display: none;
}

/* line 36, node_modules/govuk-frontend/govuk/components/cookie-banner/_index.scss */
.govuk-cookie-banner__message:focus {
  outline: none;
}

/* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin: 0;
  margin-bottom: 20px;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list {
    margin-bottom: 30px;
  }
}

@media (max-width: 40.0525em) {
  /* line 14, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__row {
    margin-bottom: 15px;
    border-bottom: 1px solid #bfc1c3;
  }
}

@media (min-width: 40.0625em) {
  /* line 14, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__row {
    display: table-row;
  }
}

/* line 24, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__key,
.govuk-summary-list__value,
.govuk-summary-list__actions {
  margin: 0;
}

@media (min-width: 40.0625em) {
  /* line 24, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__key,
.govuk-summary-list__value,
.govuk-summary-list__actions {
    display: table-cell;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bfc1c3;
  }
}

/* line 38, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__actions {
  margin-bottom: 15px;
}

@media (min-width: 40.0625em) {
  /* line 38, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__actions {
    width: 20%;
    padding-right: 0;
    text-align: right;
  }
}

/* line 47, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__key,
.govuk-summary-list__value {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 54, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__key {
  margin-bottom: 5px;
  font-weight: 600;
}

@media (min-width: 40.0625em) {
  /* line 54, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__key {
    width: 30%;
  }
}

@media (max-width: 40.0525em) {
  /* line 62, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__value {
    margin-bottom: 15px;
  }
}

@media (min-width: 40.0625em) {
  /* line 62, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__value {
    width: 50%;
  }
}

@media (min-width: 40.0625em) {
  /* line 72, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__value:last-child {
    width: 70%;
  }
}

/* line 78, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__value > p {
  margin-bottom: 10px;
}

/* line 82, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__value > :last-child {
  margin-bottom: 0;
}

/* line 86, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__actions-list {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* line 92, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__actions-list-item {
  display: inline;
  margin-right: 10px;
  padding-right: 10px;
}

/* line 100, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__actions-list-item:not(:last-child) {
  border-right: 1px solid #bfc1c3;
}

/* line 104, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
.govuk-summary-list__actions-list-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border: 0;
}

@media (max-width: 40.0525em) {
  /* line 113, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list--no-border .govuk-summary-list__row {
    border: 0;
  }
}

@media (min-width: 40.0625em) {
  /* line 119, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list--no-border .govuk-summary-list__key,
.govuk-summary-list--no-border .govuk-summary-list__value,
.govuk-summary-list--no-border .govuk-summary-list__actions {
    padding-bottom: 11px;
    border: 0;
  }
}

@media (max-width: 40.0525em) {
  /* line 130, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__row--no-border {
    border: 0;
  }
}

@media (min-width: 40.0625em) {
  /* line 136, node_modules/govuk-frontend/govuk/components/summary-list/_index.scss */
  .govuk-summary-list__row--no-border .govuk-summary-list__key,
.govuk-summary-list__row--no-border .govuk-summary-list__value,
.govuk-summary-list__row--no-border .govuk-summary-list__actions {
    padding-bottom: 11px;
    border: 0;
  }
}

/* line 7, node_modules/govuk-frontend/govuk/components/date-input/_index.scss */
.govuk-date-input {
  font-size: 0;
}

/* line 10, node_modules/govuk-frontend/govuk/components/../helpers/_clearfix.scss */
.govuk-date-input:after {
  content: "";
  display: block;
  clear: both;
}

/* line 13, node_modules/govuk-frontend/govuk/components/date-input/_index.scss */
.govuk-date-input__item {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 0;
}

/* line 19, node_modules/govuk-frontend/govuk/components/date-input/_index.scss */
.govuk-date-input__label {
  display: block;
}

/* line 23, node_modules/govuk-frontend/govuk/components/date-input/_index.scss */
.govuk-date-input__input {
  margin-bottom: 0;
}

/* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  margin-bottom: 20px;
  display: block;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
  .govuk-details {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
  .govuk-details {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
  .govuk-details {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
  .govuk-details {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/details/_index.scss */
  .govuk-details {
    margin-bottom: 30px;
  }
}

/* line 10, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  padding-left: 25px;
  color: #1d70b8;
  cursor: pointer;
}

/* line 26, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary:hover {
  color: #003078;
}

/* line 30, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 36, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary-text {
  text-decoration: underline;
}

/* line 45, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary:focus .govuk-details__summary-text {
  text-decoration: none;
}

/* line 51, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary::-webkit-details-marker {
  display: none;
}

/* line 56, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__summary:before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 7px 0 7px 12.124px;
  border-left-color: inherit;
}

/* line 68, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details[open] > .govuk-details__summary:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  -webkit-clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 12.124px 7px 0 7px;
  border-top-color: inherit;
}

/* line 73, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__text {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 20px;
  border-left: 5px solid #bfc1c3;
}

/* line 80, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__text p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 85, node_modules/govuk-frontend/govuk/components/details/_index.scss */
.govuk-details__text > :last-child {
  margin-bottom: 0;
}

/* line 2, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 30px;
  border: 5px solid #1d70b8;
  background-color: #1d70b8;
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 2, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner {
    margin-bottom: 50px;
  }
}

/* line 10, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner:focus {
  outline: 3px solid #ffdd00;
}

/* line 15, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__header {
  padding: 2px 15px 5px;
  border-bottom: 1px solid transparent;
}

@media (min-width: 40.0625em) {
  /* line 15, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__header {
    padding: 2px 20px 5px;
  }
}

/* line 26, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__title {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

@media print {
  /* line 26, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__title {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 26, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 26, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 36, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__content {
  color: #0b0c0c;
  padding: 15px;
  background-color: #ffffff;
}

@media print {
  /* line 36, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__content {
    color: #000000;
  }
}

@media (min-width: 40.0625em) {
  /* line 36, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__content {
    padding: 20px;
  }
}

/* line 49, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__content > * {
  box-sizing: border-box;
  max-width: 645px;
}

/* line 62, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__content > :last-child {
  margin-bottom: 0;
}

/* line 67, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__heading {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.1111111111;
  margin: 0 0 15px 0;
  padding: 0;
}

@media print {
  /* line 67, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__heading {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 67, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media print {
  /* line 67, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__heading {
    font-size: 18pt;
    line-height: 1.15;
  }
}

/* line 75, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner__link {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}

@media print {
  /* line 75, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
  .govuk-notification-banner__link {
    font-family: sans-serif;
  }
}

/* line 19, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:focus {
  outline: 3px solid transparent;
  color: #0b0c0c;
  background-color: #ffdd00;
  box-shadow: 0 -2px #ffdd00, 0 4px #0b0c0c;
  text-decoration: none;
}

/* line 360, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:link {
  color: #1d70b8;
}

/* line 364, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:visited {
  color: #1d70b8;
}

/* line 368, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:hover {
  color: #003078;
}

/* line 372, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:active {
  color: #0b0c0c;
}

/* line 378, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner__link:focus {
  color: #0b0c0c;
}

/* line 80, node_modules/govuk-frontend/govuk/components/notification-banner/_index.scss */
.govuk-notification-banner--success {
  border-color: #00703c;
  background-color: #00703c;
}

/* line 179, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner--success .govuk-notification-banner__link:link, .govuk-notification-banner--success .govuk-notification-banner__link:visited {
  color: #00703c;
}

/* line 184, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner--success .govuk-notification-banner__link:hover {
  color: #004e2a;
}

/* line 188, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner--success .govuk-notification-banner__link:active {
  color: #00703c;
}

/* line 194, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_links.scss */
.govuk-notification-banner--success .govuk-notification-banner__link:focus {
  color: #0b0c0c;
}

/* line 16, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__item {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  display: block;
  position: relative;
  min-height: 40px;
  margin-bottom: 10px;
  padding-left: 40px;
  clear: left;
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__item {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 16, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 16, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}

/* line 30, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__item:last-child,
.govuk-radios__item:last-of-type {
  margin-bottom: 0;
}

/* line 35, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__input {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  top: -2px;
  left: -2px;
  width: 44px;
  height: 44px;
  margin: 0;
  opacity: 0;
}

/* line 69, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__label {
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 15px 5px;
  cursor: pointer;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* line 80, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__label:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

/* line 99, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__label:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 0;
  height: 0;
  border: 10px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  background: currentColor;
}

/* line 115, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__hint {
  display: block;
  padding-right: 15px;
  padding-left: 15px;
}

/* line 122, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__input:focus + .govuk-radios__label:before {
  border-width: 4px;
  outline: 3px solid transparent;
  outline-offset: 1px;
  box-shadow: 0 0 0 4px #ffdd00;
}

@media screen and (forced-colors: active), (-ms-high-contrast: active) {
  /* line 122, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__input:focus + .govuk-radios__label:before {
    outline-color: Highlight;
  }
}

/* line 142, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__input:checked + .govuk-radios__label:after {
  opacity: 1;
}

/* line 147, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__input:disabled,
.govuk-radios__input:disabled + .govuk-radios__label {
  cursor: default;
}

/* line 152, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__input:disabled + .govuk-radios__label {
  opacity: .5;
}

@media (min-width: 40.0625em) {
  /* line 10, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_clearfix.scss */
  .govuk-radios--inline:after {
    content: "";
    display: block;
    clear: both;
  }
  /* line 164, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios--inline .govuk-radios__item {
    margin-right: 20px;
    float: left;
    clear: none;
  }
}

/* line 173, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--inline.govuk-radios--conditional .govuk-radios__item {
  margin-right: 0;
  float: none;
}

/* line 184, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__divider {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  width: 40px;
  margin-bottom: 10px;
  text-align: center;
}

@media print {
  /* line 184, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__divider {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 184, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 184, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 184, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__divider {
    color: #000000;
  }
}

/* line 207, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__conditional {
  margin-bottom: 15px;
  margin-left: 18px;
  padding-left: 33px;
  border-left: 4px solid #bfc1c3;
}

@media (min-width: 40.0625em) {
  /* line 207, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios__conditional {
    margin-bottom: 20px;
  }
}

/* line 213, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.js-enabled .govuk-radios__conditional--hidden {
  display: none;
}

/* line 217, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios__conditional > :last-child {
  margin-bottom: 0;
}

/* line 231, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__item {
  min-height: 0;
  margin-bottom: 0;
  padding-left: 34px;
  float: left;
}

/* line 10, node_modules/govuk-frontend/govuk/components/error-summary/../../core/../helpers/_clearfix.scss */
.govuk-radios--small .govuk-radios__item:after {
  content: "";
  display: block;
  clear: both;
}

/* line 248, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__input {
  left: -10px;
}

/* line 263, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__label {
  margin-top: -2px;
  padding: 13px 15px 13px 1px;
  float: left;
}

@media (min-width: 40.0625em) {
  /* line 263, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios--small .govuk-radios__label {
    padding: 11px 15px 10px 1px;
  }
}

/* line 277, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__label:before {
  top: 8px;
  width: 24px;
  height: 24px;
}

/* line 286, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__label:after {
  top: 15px;
  left: 7px;
  border-width: 5px;
}

/* line 300, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__hint {
  padding: 0;
  clear: both;
  pointer-events: none;
}

/* line 307, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__conditional {
  margin-left: 10px;
  padding-left: 20px;
  clear: both;
}

/* line 314, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__divider {
  width: 24px;
  margin-bottom: 5px;
}

/* line 325, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label:before {
  box-shadow: 0 0 0 10px #bfc1c3;
}

/* line 334, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
.govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label:before {
  box-shadow: 0 0 0 4px #ffdd00, 0 0 0 10px #bfc1c3;
}

@media (hover: none), (pointer: coarse) {
  /* line 347, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:not(:disabled) + .govuk-radios__label:before {
    box-shadow: initial;
  }
  /* line 351, node_modules/govuk-frontend/govuk/components/radios/_index.scss */
  .govuk-radios--small .govuk-radios__item:hover .govuk-radios__input:focus + .govuk-radios__label:before {
    box-shadow: 0 0 0 4px #ffdd00;
  }
}

/* line 2, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
.govuk-warning-text {
  position: relative;
  margin-bottom: 20px;
  padding: 10px 0;
}

@media (min-width: 40.0625em) {
  /* line 2, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text {
    margin-bottom: 30px;
  }
}

/* line 8, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
.govuk-warning-text__assistive {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

/* line 12, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
.govuk-warning-text__icon {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  left: 0;
  min-width: 35px;
  min-height: 35px;
  margin-top: -7px;
  border: 3px solid #0b0c0c;
  border-radius: 50%;
  color: #ffffff;
  background: #0b0c0c;
  font-size: 30px;
  line-height: 29px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  forced-color-adjust: none;
}

@media print {
  /* line 12, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__icon {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 12, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__icon {
    margin-top: -5px;
  }
}

@media screen and (forced-colors: active) {
  /* line 12, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__icon {
    border-color: windowText;
    color: windowText;
    background: transparent;
  }
}

/* line 60, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
.govuk-warning-text__text {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  color: #0b0c0c;
  display: block;
  padding-left: 45px;
}

@media print {
  /* line 60, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__text {
    font-family: sans-serif;
  }
}

@media (min-width: 40.0625em) {
  /* line 60, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__text {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.3157894737;
  }
}

@media print {
  /* line 60, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__text {
    font-size: 14pt;
    line-height: 1.15;
  }
}

@media print {
  /* line 60, node_modules/govuk-frontend/govuk/components/warning-text/_index.scss */
  .govuk-warning-text__text {
    color: #000000;
  }
}
