@charset "UTF-8";
/* stylelint-disable color-no-hex */
/* stylelint-enable color-no-hex */
/* stylelint-disable string-quotes, order/properties-alphabetical-order */
/* stylelint-disable indentation */
/* stylelint-disable color-no-hex */
/* ==========================================================================
   GENERIC / #BOX-SIZING
   ========================================================================== */
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * http://paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* stylelint-disable indentation */
/* ==========================================================================
   ELEMENTS / #FORMS
   ========================================================================== */
/**
 * Make sure our form elements don’t use any UA-specific font styles: we want
 * them to use ours. This may need reverting as more design information becomes
 * available, and we start putting together more complete forms.
 */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* ==========================================================================
   ELEMENTS / #LINKS
   ========================================================================== */
/**
 * Our basic `<a>` elements only need very minimal styling.
 * It uses the @mixin nhsuk-link-style-default within tools/links.
 * Anything more opinionated (e.g. buttons, calls-to-action, etc.) will need a
 * class defining in the Components layer.
 *
 * 1. Outputs full link URL for print.
 * 2. Point unit used for print.
 */
a {
  color: #005eb8;
}

a:visited {
  color: #330072;
}

a:hover {
  color: #7c2855;
  text-decoration: none;
}

a:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

a:focus:hover {
  text-decoration: none;
}

a:focus:visited {
  color: #212b32;
}

a:focus .nhsuk-icon {
  fill: #212b32;
}

a:active {
  color: #002f5c;
}

@media print {
  a:after {
    color: #212b32;
    content: " (Link: " attr(href) ")"; /* [1] */
    font-size: 14pt; /* [2] */
  }
}
.nhsuk-link--no-visited-state:link {
  color: #005eb8;
}

.nhsuk-link--no-visited-state:visited {
  color: #005eb8;
}

.nhsuk-link--no-visited-state:hover {
  color: #7c2855;
}

.nhsuk-link--no-visited-state:active {
  color: #002f5c;
}

.nhsuk-link--no-visited-state:focus {
  color: #212b32;
}

/* ==========================================================================
   ELEMENTS / #PAGE
   ========================================================================== */
/**
 * High-level, page-level styling.
 *
 * 1. The reason for this is to prevent "centering jumps" when navigating back
 *    and forth between pages with enough content to have a vertical scroll bar
 *    and pages that do not.
 * 2. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 * 3. Override the user agent style margin of 8px.
 * 4. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background-color: #d8dde0;
  overflow-y: scroll; /* [1] */
  font-family: Frutiger W01, Arial, Sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "Frutiger W01";
  font-style: normal;
  font-weight: 400;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
  font-display: swap;
  font-family: "Frutiger W01";
  font-style: normal;
  font-weight: 600;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}
body {
  background-color: #f0f4f5;
  color: #212b32;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale; /* [2] */
  -webkit-font-smoothing: antialiased; /* [2] */
  line-height: 1.5;
  margin: 0; /* [3] */
  min-height: 100%; /* [4] */
}

/* ==========================================================================
   ELEMENTS / #TABLES
   ========================================================================== */
/**
 * 1. Force `<table>`s to be full-width by default.
 */
table {
  margin-bottom: 40px;
  border-spacing: 0;
  vertical-align: top;
  width: 100%; /* [1] */
}

@media (min-width: 40.0625em) {
  table {
    margin-bottom: 48px;
  }
}
@media print {
  table {
    page-break-inside: avoid;
  }
}
thead th {
  border-bottom: 2px solid #d8dde0;
}

th,
td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-top: 8px;
  border-bottom: 1px solid #d8dde0;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  th,
  td {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  th,
  td {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-right: 24px;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-top: 16px;
  }
}
th:last-child,
td:last-child {
  padding-right: 0;
}

th {
  font-weight: 600;
}

caption {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  text-align: left;
}

@media (min-width: 40.0625em) {
  caption {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  caption {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-form-group {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group {
    margin-bottom: 24px;
  }
}
.nhsuk-form-group .nhsuk-form-group:last-of-type {
  margin-bottom: 0;
}

.nhsuk-form-group--wrapper {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group--wrapper {
    margin-bottom: 32px;
  }
}
.nhsuk-form-group--error {
  border-left: 4px solid #d5281b;
  padding-left: 16px;
}

.nhsuk-form-group--error .nhsuk-form-group {
  border: 0;
  padding: 0;
}

/* ==========================================================================
   OBJECTS / #GRID
   ========================================================================== */
.nhsuk-grid-row {
  margin-left: -16px;
  margin-right: -16px;
}

.nhsuk-grid-row:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-grid-column-one-quarter {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-one-quarter {
    float: left;
    width: 25%;
  }
}
.nhsuk-grid-column-one-third {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-one-third {
    float: left;
    width: 33.3333%;
  }
}
.nhsuk-grid-column-one-half {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-one-half {
    float: left;
    width: 50%;
  }
}
.nhsuk-grid-column-two-thirds {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-two-thirds {
    float: left;
    width: 66.6666%;
  }
}
.nhsuk-grid-column-three-quarters {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-three-quarters {
    float: left;
    width: 75%;
  }
}
.nhsuk-grid-column-full {
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-grid-column-full {
    float: left;
    width: 100%;
  }
}
/* ==========================================================================
   OBJECTS / #MAIN-WRAPPER
   ========================================================================== */
/**
 * Page wrapper for the grid system
 *
 * Usage:
 * <div class="nhsuk-width-container">
 *   <div class="nhsuk-main-wrapper">
 *    <!-- Wrapper for the main content of your page which applies padding
 *         to the top / bottom -->
 *   </div>
 * </div>
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. In IE11 the `main` element can be used, but is not recognized  –
 *    meaning it's not defined in IE's default style sheet,
 *    so it uses CSS initial value, which is inline.
 */
.nhsuk-main-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
  display: block; /* [1] */
}

@media (min-width: 40.0625em) {
  .nhsuk-main-wrapper {
    padding-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-main-wrapper {
    padding-bottom: 48px;
  }
}
.nhsuk-main-wrapper > *:first-child {
  margin-top: 0;
}

.nhsuk-main-wrapper > *:last-child {
  margin-bottom: 0;
}

.nhsuk-main-wrapper--l {
  padding-top: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-main-wrapper--l {
    padding-top: 56px;
  }
}
.nhsuk-main-wrapper--s {
  padding-bottom: 24px;
  padding-top: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-main-wrapper--s {
    padding-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-main-wrapper--s {
    padding-top: 32px;
  }
}
/* ==========================================================================
   OBJECTS / #WIDTH-CONTAINER
   ========================================================================== */
/**
 * Page width for the grid system
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. On mobile, add half width gutters
 * 2. Limit the width of the container to the page width
 * 3. From desktop, add full width gutters
 * 4. As soon as the viewport is greater than the width of the page plus the
 *    gutters, just centre the content instead of adding gutters.
 * 5. Full width container, spanning the entire width of the viewport
 */
.nhsuk-width-container {
  margin: 0 16px; /* [1] */
  max-width: 960px; /* [2] */
  /* [4] */
}

@media (min-width: 48.0625em) {
  .nhsuk-width-container {
    margin: 0 32px; /* [3] */
  }
}
@media (min-width: 1024px) {
  .nhsuk-width-container {
    margin: 0 auto;
  }
}
.nhsuk-width-container-fluid {
  margin: 0 16px;
  max-width: 100%; /* [5] */
}

@media (min-width: 48.0625em) {
  .nhsuk-width-container-fluid {
    margin: 0 32px; /* [3] */
  }
}
/* ==========================================================================
   STYLES / #ICONS
   ========================================================================== */
.nhsuk-icon {
  height: 34px;
  width: 34px;
}

.nhsuk-icon__search {
  fill: #005eb8;
}

.nhsuk-icon__chevron-left {
  fill: #005eb8;
}

.nhsuk-icon__chevron-right {
  fill: #005eb8;
}

.nhsuk-icon__close {
  fill: #005eb8;
}

.nhsuk-icon__cross {
  fill: #d5281b;
}

.nhsuk-icon__tick {
  stroke: #007f3b;
}

.nhsuk-icon__arrow-right {
  fill: #005eb8;
}

.nhsuk-icon__arrow-left {
  fill: #005eb8;
}

.nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
}

.nhsuk-icon__chevron-down {
  fill: #005eb8;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nhsuk-icon__chevron-down path {
  fill: #ffffff;
}

.nhsuk-icon__chevron-up {
  fill: #005eb8;
}

.nhsuk-icon__chevron-up path {
  fill: #ffffff;
}

.nhsuk-icon__emdash path {
  fill: #aeb7bd;
}

.nhsuk-icon__plus {
  fill: #005eb8;
}

.nhsuk-icon__minus {
  fill: #005eb8;
}

.nhsuk-icon--size-25 {
  height: 42.5px;
  width: 42.5px;
}

.nhsuk-icon--size-50 {
  height: 51px;
  width: 51px;
}

.nhsuk-icon--size-75 {
  height: 59.5px;
  width: 59.5px;
}

.nhsuk-icon--size-100 {
  height: 68px;
  width: 68px;
}

/* ==========================================================================
   STYLES / #LISTS
   ========================================================================== */
/**
 * 1. 'Random number' used to align ul and ol left with content.
 * 2. 'Random number' used to give sufficient spacing between text and icon.
 * 3. 'Random number' used to align icon and text.
 */
ol, ul, .nhsuk-list {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
  list-style-type: none;
  margin-top: 0;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  ol, ul, .nhsuk-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  ol, ul, .nhsuk-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  ol, ul, .nhsuk-list {
    margin-bottom: 24px;
  }
}
ol > li, ul > li, .nhsuk-list > li {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  ol > li, ul > li, .nhsuk-list > li {
    margin-bottom: 8px;
  }
}
ol > li:last-child, ul > li:last-child, .nhsuk-list > li:last-child {
  margin-bottom: 0;
}

ul, .nhsuk-list--bullet {
  list-style-type: disc;
  padding-left: 20px; /* [1] */
}

ol, .nhsuk-list--number {
  list-style-type: decimal;
  padding-left: 20px; /* [1] */
}

.nhsuk-list--tick,
.nhsuk-list--cross {
  list-style: none;
  margin-top: 0;
  padding-left: 40px; /* [2] */
  position: relative;
}

.nhsuk-list--tick svg,
.nhsuk-list--cross svg {
  left: -4px; /* [3] */
  margin-top: -5px; /* [3] */
  position: absolute;
}

/* ==========================================================================
   STYLES / #SECTION-BREAK
   ========================================================================== */
/**
 * 1. Extended the section-break--l code for usage of a semantic <hr> with
 * no class name.
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 */
hr, .nhsuk-section-break {
  border: 0;
  margin: 0;
}

.nhsuk-section-break--xl {
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-section-break--xl {
    margin-top: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-section-break--xl {
    margin-bottom: 56px;
  }
}
hr, .nhsuk-section-break--l {
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  hr, .nhsuk-section-break--l {
    margin-top: 40px;
  }
}
@media (min-width: 40.0625em) {
  hr, .nhsuk-section-break--l {
    margin-bottom: 40px;
  }
}
.nhsuk-section-break--m {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-section-break--m {
    margin-top: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-section-break--m {
    margin-bottom: 24px;
  }
}
hr, .nhsuk-section-break--visible {
  border-bottom: 1px solid #d8dde0;
}

hr {
  /* [1] */
}

/* ==========================================================================
   STYLES / #TYPOGRAPHY
   ========================================================================== */
/* Headings */
h1,
.nhsuk-heading-xl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  h1,
  .nhsuk-heading-xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  h1,
  .nhsuk-heading-xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h1,
  .nhsuk-heading-xl {
    margin-bottom: 48px;
  }
}
h2,
.nhsuk-heading-l {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h2,
  .nhsuk-heading-l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  h2,
  .nhsuk-heading-l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  h2,
  .nhsuk-heading-l {
    margin-bottom: 24px;
  }
}
h3,
.nhsuk-heading-m {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h3,
  .nhsuk-heading-m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  h3,
  .nhsuk-heading-m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h3,
  .nhsuk-heading-m {
    margin-bottom: 24px;
  }
}
h4,
.nhsuk-heading-s {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h4,
  .nhsuk-heading-s {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  h4,
  .nhsuk-heading-s {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h4,
  .nhsuk-heading-s {
    margin-bottom: 24px;
  }
}
h5,
.nhsuk-heading-xs {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h5,
  .nhsuk-heading-xs {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  h5,
  .nhsuk-heading-xs {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h5,
  .nhsuk-heading-xs {
    margin-bottom: 24px;
  }
}
h6,
.nhsuk-heading-xxs {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h6,
  .nhsuk-heading-xxs {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  h6,
  .nhsuk-heading-xxs {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h6,
  .nhsuk-heading-xxs {
    margin-bottom: 24px;
  }
}
/* Captions to be used inside headings */
.nhsuk-caption-xl {
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  color: #4c6272;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-xl {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-caption-xl {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.nhsuk-caption-l {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #4c6272;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-caption-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-caption-m {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #4c6272;
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-caption-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-caption--bottom {
  margin-bottom: 0;
  margin-top: 4px;
}

/* Body (paragraphs) */
.nhsuk-body-l {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  margin-top: 0;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-body-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-body-l {
    margin-bottom: 32px;
  }
}
address, p,
.nhsuk-body-m {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  address, p,
  .nhsuk-body-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  address, p,
  .nhsuk-body-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  address, p,
  .nhsuk-body-m {
    margin-bottom: 24px;
  }
}
p,
.nhsuk-body-m {
  color: inherit;
}

.nhsuk-body-s {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-s {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-body-s {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-body-s {
    margin-bottom: 24px;
  }
}
address {
  font-style: normal;
}

/**
 * Lede text
 *
 * 1. Apply lede text styling to p and ul within the lede element
 * 2. Reduces the spacing between the page heading and the lede text
 */
.nhsuk-lede-text {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 40px;
  /* [1] */
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-lede-text {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-lede-text {
    margin-bottom: 48px;
  }
}
.nhsuk-lede-text p,
.nhsuk-lede-text ul {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text p,
  .nhsuk-lede-text ul {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-lede-text p,
  .nhsuk-lede-text ul {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-lede-text--small {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text--small {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-lede-text--small {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-lede-text--small {
    margin-bottom: 32px;
  }
}
/* [2] */
h1 + .nhsuk-lede-text,
h1 + .nhsuk-lede-text--small {
  margin-top: -8px;
}

/**
 * Contextual adjustments
 *
 * Add top padding to headings that appear directly after paragraphs.
 *
 * 1. Removes the padding-top because of the lede-text's increased margin-bottom
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/nhsuk-frontend
 */
.nhsuk-body-l + h2,
.nhsuk-body-l + .nhsuk-heading-l {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-l + h2,
  .nhsuk-body-l + .nhsuk-heading-l {
    padding-top: 8px;
  }
}
p + h2,
.nhsuk-body-m + h2, address + h2,
p + .nhsuk-heading-l,
.nhsuk-body-m + .nhsuk-heading-l,
address + .nhsuk-heading-l,
.nhsuk-body-s + h2,
.nhsuk-body-s + .nhsuk-heading-l,
.nhsuk-list + h2,
ul + h2,
ol + h2,
.nhsuk-list + .nhsuk-heading-l,
ul + .nhsuk-heading-l,
ol + .nhsuk-heading-l {
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  p + h2,
  .nhsuk-body-m + h2, address + h2,
  p + .nhsuk-heading-l,
  .nhsuk-body-m + .nhsuk-heading-l,
  address + .nhsuk-heading-l,
  .nhsuk-body-s + h2,
  .nhsuk-body-s + .nhsuk-heading-l,
  .nhsuk-list + h2,
  ul + h2,
  ol + h2,
  .nhsuk-list + .nhsuk-heading-l,
  ul + .nhsuk-heading-l,
  ol + .nhsuk-heading-l {
    padding-top: 24px;
  }
}
p + h3,
.nhsuk-body-m + h3, address + h3,
p + .nhsuk-heading-m,
.nhsuk-body-m + .nhsuk-heading-m,
address + .nhsuk-heading-m,
.nhsuk-body-s + h3,
.nhsuk-body-s + .nhsuk-heading-m,
.nhsuk-list + h3,
ul + h3,
ol + h3,
.nhsuk-list + .nhsuk-heading-m,
ul + .nhsuk-heading-m,
ol + .nhsuk-heading-m,
p + h4,
.nhsuk-body-m + h4,
address + h4,
p + .nhsuk-heading-s,
.nhsuk-body-m + .nhsuk-heading-s,
address + .nhsuk-heading-s,
.nhsuk-body-s + h4,
.nhsuk-body-s + .nhsuk-heading-s,
.nhsuk-list + h4,
ul + h4,
ol + h4,
.nhsuk-list + .nhsuk-heading-s,
ul + .nhsuk-heading-s,
ol + .nhsuk-heading-s {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  p + h3,
  .nhsuk-body-m + h3, address + h3,
  p + .nhsuk-heading-m,
  .nhsuk-body-m + .nhsuk-heading-m,
  address + .nhsuk-heading-m,
  .nhsuk-body-s + h3,
  .nhsuk-body-s + .nhsuk-heading-m,
  .nhsuk-list + h3,
  ul + h3,
  ol + h3,
  .nhsuk-list + .nhsuk-heading-m,
  ul + .nhsuk-heading-m,
  ol + .nhsuk-heading-m,
  p + h4,
  .nhsuk-body-m + h4,
  address + h4,
  p + .nhsuk-heading-s,
  .nhsuk-body-m + .nhsuk-heading-s,
  address + .nhsuk-heading-s,
  .nhsuk-body-s + h4,
  .nhsuk-body-s + .nhsuk-heading-s,
  .nhsuk-list + h4,
  ul + h4,
  ol + h4,
  .nhsuk-list + .nhsuk-heading-s,
  ul + .nhsuk-heading-s,
  ol + .nhsuk-heading-s {
    padding-top: 8px;
  }
}
/* [1] */
.nhsuk-lede-text + h2,
.nhsuk-lede-text + .nhsuk-heading-l {
  padding-top: 0;
}

/* Font weight for <strong> and <b> */
strong,
b {
  font-weight: 600;
}

/* ==========================================================================
   UTILITIES / #CLEARFIX
   ========================================================================== */
/**
 * Automatically clear an elements
 * child elements
 *
 * Usage: class="nhsuk-u-clear"
 * See tools/mixins
 */
.nhsuk-u-clear:after {
  clear: both;
  content: "";
  display: block;
}

/* ==========================================================================
   UTILITIES / #DISPLAY
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-display-block {
  display: block !important;
}

.nhsuk-u-display-inline-block {
  display: inline-block !important;
}

/* ==========================================================================
   UTILITIES / #FLOAT
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-float-left {
  float: left !important;
}

.nhsuk-u-float-right {
  float: right !important;
}

/* ==========================================================================
   UTILITIES / #GRID
   ========================================================================== */
/**
 * Force grid widths on all screen sizes
 * By default all grid elements will go to 100% width
 * on screen sizes below tablet, these utilities can force
 * custom widths on all screen sizes
 *
 * Usage: class="nhsuk-u-one-half"
 */
/* stylelint-disable declaration-no-important */
.nhsuk-u-one-half {
  float: left;
  width: 50% !important;
}

.nhsuk-u-one-third {
  float: left;
  width: 33.3333333333% !important;
}

.nhsuk-u-two-thirds {
  float: left;
  width: 66.6666666667% !important;
}

.nhsuk-u-one-quarter {
  float: left;
  width: 25% !important;
}

.nhsuk-u-three-quarters {
  float: left;
  width: 75% !important;
}

/**
 * Force grid widths on screen sizes on tablet
 * and above
 *
 * By default all grid elements will go to 100% width
 * on every screen size, these utilities can force
 * custom widths on screen sizes on tablet
 * and above
 *
 * Usage: class="nhsuk-u-one-half-tablet"
 */
.nhsuk-u-one-half-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-half-tablet {
    float: left;
    width: 50% !important;
  }
}
.nhsuk-u-one-third-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-third-tablet {
    float: left;
    width: 33.3333333333% !important;
  }
}
.nhsuk-u-two-thirds-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-two-thirds-tablet {
    float: left;
    width: 66.6666666667% !important;
  }
}
.nhsuk-u-one-quarter-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-quarter-tablet {
    float: left;
    width: 25% !important;
  }
}
.nhsuk-u-three-quarters-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-three-quarters-tablet {
    float: left;
    width: 75% !important;
  }
}
/* ==========================================================================
   UTILITIES / #LINK-NOWRAP
   ========================================================================== */
/**
 * Prevent long anchor links from line breaking
 * on smaller screens
 *
 * Usage: class="nhsuk-u-nowrap"
 */
@media (max-width: 40.0525em) {
  .nhsuk-u-nowrap {
    white-space: nowrap;
  }
}
/**
 * Adds a grey border to the bottom of an <li> tag
 *
 * Usage: class="nhsuk-list--border"
 */
.nhsuk-list--border li {
  border-bottom: 1px solid #d8dde0;
  padding: 8px 0 16px;
}

/* ==========================================================================
   UTILITIES / #READING-WIDTH
   ========================================================================== */
/**
 * Reading width mixin, add a maximum width
 * to large pieces of content
 *
 * Usage: class="nhsuk-u-reading-width"
 * See tools/mixins
 */
.nhsuk-u-reading-width {
  max-width: 44em;
}

.nhsuk-u-margin-0 {
  margin: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-0 {
    margin: 0 !important;
  }
}
.nhsuk-u-margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-0 {
    margin-top: 0 !important;
  }
}
.nhsuk-u-margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-0 {
    margin-right: 0 !important;
  }
}
.nhsuk-u-margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-0 {
    margin-bottom: 0 !important;
  }
}
.nhsuk-u-margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-0 {
    margin-left: 0 !important;
  }
}
.nhsuk-u-margin-1 {
  margin: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-1 {
    margin: 4px !important;
  }
}
.nhsuk-u-margin-top-1 {
  margin-top: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-1 {
    margin-top: 4px !important;
  }
}
.nhsuk-u-margin-right-1 {
  margin-right: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-1 {
    margin-right: 4px !important;
  }
}
.nhsuk-u-margin-bottom-1 {
  margin-bottom: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-1 {
    margin-bottom: 4px !important;
  }
}
.nhsuk-u-margin-left-1 {
  margin-left: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-1 {
    margin-left: 4px !important;
  }
}
.nhsuk-u-margin-2 {
  margin: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-2 {
    margin: 8px !important;
  }
}
.nhsuk-u-margin-top-2 {
  margin-top: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-2 {
    margin-top: 8px !important;
  }
}
.nhsuk-u-margin-right-2 {
  margin-right: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-2 {
    margin-right: 8px !important;
  }
}
.nhsuk-u-margin-bottom-2 {
  margin-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-2 {
    margin-bottom: 8px !important;
  }
}
.nhsuk-u-margin-left-2 {
  margin-left: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-2 {
    margin-left: 8px !important;
  }
}
.nhsuk-u-margin-3 {
  margin: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-3 {
    margin: 16px !important;
  }
}
.nhsuk-u-margin-top-3 {
  margin-top: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-3 {
    margin-top: 16px !important;
  }
}
.nhsuk-u-margin-right-3 {
  margin-right: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-3 {
    margin-right: 16px !important;
  }
}
.nhsuk-u-margin-bottom-3 {
  margin-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-3 {
    margin-bottom: 16px !important;
  }
}
.nhsuk-u-margin-left-3 {
  margin-left: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-3 {
    margin-left: 16px !important;
  }
}
.nhsuk-u-margin-4 {
  margin: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-4 {
    margin: 24px !important;
  }
}
.nhsuk-u-margin-top-4 {
  margin-top: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-4 {
    margin-top: 24px !important;
  }
}
.nhsuk-u-margin-right-4 {
  margin-right: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-4 {
    margin-right: 24px !important;
  }
}
.nhsuk-u-margin-bottom-4 {
  margin-bottom: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-4 {
    margin-bottom: 24px !important;
  }
}
.nhsuk-u-margin-left-4 {
  margin-left: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-4 {
    margin-left: 24px !important;
  }
}
.nhsuk-u-margin-5 {
  margin: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-5 {
    margin: 32px !important;
  }
}
.nhsuk-u-margin-top-5 {
  margin-top: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-5 {
    margin-top: 32px !important;
  }
}
.nhsuk-u-margin-right-5 {
  margin-right: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-5 {
    margin-right: 32px !important;
  }
}
.nhsuk-u-margin-bottom-5 {
  margin-bottom: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-5 {
    margin-bottom: 32px !important;
  }
}
.nhsuk-u-margin-left-5 {
  margin-left: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-5 {
    margin-left: 32px !important;
  }
}
.nhsuk-u-margin-6 {
  margin: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-6 {
    margin: 40px !important;
  }
}
.nhsuk-u-margin-top-6 {
  margin-top: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-6 {
    margin-top: 40px !important;
  }
}
.nhsuk-u-margin-right-6 {
  margin-right: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-6 {
    margin-right: 40px !important;
  }
}
.nhsuk-u-margin-bottom-6 {
  margin-bottom: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-6 {
    margin-bottom: 40px !important;
  }
}
.nhsuk-u-margin-left-6 {
  margin-left: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-6 {
    margin-left: 40px !important;
  }
}
.nhsuk-u-margin-7 {
  margin: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-7 {
    margin: 48px !important;
  }
}
.nhsuk-u-margin-top-7 {
  margin-top: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-7 {
    margin-top: 48px !important;
  }
}
.nhsuk-u-margin-right-7 {
  margin-right: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-7 {
    margin-right: 48px !important;
  }
}
.nhsuk-u-margin-bottom-7 {
  margin-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-7 {
    margin-bottom: 48px !important;
  }
}
.nhsuk-u-margin-left-7 {
  margin-left: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-7 {
    margin-left: 48px !important;
  }
}
.nhsuk-u-margin-8 {
  margin: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-8 {
    margin: 56px !important;
  }
}
.nhsuk-u-margin-top-8 {
  margin-top: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-8 {
    margin-top: 56px !important;
  }
}
.nhsuk-u-margin-right-8 {
  margin-right: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-8 {
    margin-right: 56px !important;
  }
}
.nhsuk-u-margin-bottom-8 {
  margin-bottom: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-8 {
    margin-bottom: 56px !important;
  }
}
.nhsuk-u-margin-left-8 {
  margin-left: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-8 {
    margin-left: 56px !important;
  }
}
.nhsuk-u-margin-9 {
  margin: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-9 {
    margin: 64px !important;
  }
}
.nhsuk-u-margin-top-9 {
  margin-top: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-top-9 {
    margin-top: 64px !important;
  }
}
.nhsuk-u-margin-right-9 {
  margin-right: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-right-9 {
    margin-right: 64px !important;
  }
}
.nhsuk-u-margin-bottom-9 {
  margin-bottom: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-bottom-9 {
    margin-bottom: 64px !important;
  }
}
.nhsuk-u-margin-left-9 {
  margin-left: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-margin-left-9 {
    margin-left: 64px !important;
  }
}
.nhsuk-u-padding-0 {
  padding: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-0 {
    padding: 0 !important;
  }
}
.nhsuk-u-padding-top-0 {
  padding-top: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-0 {
    padding-top: 0 !important;
  }
}
.nhsuk-u-padding-right-0 {
  padding-right: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-0 {
    padding-right: 0 !important;
  }
}
.nhsuk-u-padding-bottom-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-0 {
    padding-bottom: 0 !important;
  }
}
.nhsuk-u-padding-left-0 {
  padding-left: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-0 {
    padding-left: 0 !important;
  }
}
.nhsuk-u-padding-1 {
  padding: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-1 {
    padding: 4px !important;
  }
}
.nhsuk-u-padding-top-1 {
  padding-top: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-1 {
    padding-top: 4px !important;
  }
}
.nhsuk-u-padding-right-1 {
  padding-right: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-1 {
    padding-right: 4px !important;
  }
}
.nhsuk-u-padding-bottom-1 {
  padding-bottom: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-1 {
    padding-bottom: 4px !important;
  }
}
.nhsuk-u-padding-left-1 {
  padding-left: 4px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-1 {
    padding-left: 4px !important;
  }
}
.nhsuk-u-padding-2 {
  padding: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-2 {
    padding: 8px !important;
  }
}
.nhsuk-u-padding-top-2 {
  padding-top: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-2 {
    padding-top: 8px !important;
  }
}
.nhsuk-u-padding-right-2 {
  padding-right: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-2 {
    padding-right: 8px !important;
  }
}
.nhsuk-u-padding-bottom-2 {
  padding-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-2 {
    padding-bottom: 8px !important;
  }
}
.nhsuk-u-padding-left-2 {
  padding-left: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-2 {
    padding-left: 8px !important;
  }
}
.nhsuk-u-padding-3 {
  padding: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-3 {
    padding: 16px !important;
  }
}
.nhsuk-u-padding-top-3 {
  padding-top: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-3 {
    padding-top: 16px !important;
  }
}
.nhsuk-u-padding-right-3 {
  padding-right: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-3 {
    padding-right: 16px !important;
  }
}
.nhsuk-u-padding-bottom-3 {
  padding-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-3 {
    padding-bottom: 16px !important;
  }
}
.nhsuk-u-padding-left-3 {
  padding-left: 8px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-3 {
    padding-left: 16px !important;
  }
}
.nhsuk-u-padding-4 {
  padding: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-4 {
    padding: 24px !important;
  }
}
.nhsuk-u-padding-top-4 {
  padding-top: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-4 {
    padding-top: 24px !important;
  }
}
.nhsuk-u-padding-right-4 {
  padding-right: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-4 {
    padding-right: 24px !important;
  }
}
.nhsuk-u-padding-bottom-4 {
  padding-bottom: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-4 {
    padding-bottom: 24px !important;
  }
}
.nhsuk-u-padding-left-4 {
  padding-left: 16px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-4 {
    padding-left: 24px !important;
  }
}
.nhsuk-u-padding-5 {
  padding: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-5 {
    padding: 32px !important;
  }
}
.nhsuk-u-padding-top-5 {
  padding-top: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-5 {
    padding-top: 32px !important;
  }
}
.nhsuk-u-padding-right-5 {
  padding-right: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-5 {
    padding-right: 32px !important;
  }
}
.nhsuk-u-padding-bottom-5 {
  padding-bottom: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-5 {
    padding-bottom: 32px !important;
  }
}
.nhsuk-u-padding-left-5 {
  padding-left: 24px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-5 {
    padding-left: 32px !important;
  }
}
.nhsuk-u-padding-6 {
  padding: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-6 {
    padding: 40px !important;
  }
}
.nhsuk-u-padding-top-6 {
  padding-top: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-6 {
    padding-top: 40px !important;
  }
}
.nhsuk-u-padding-right-6 {
  padding-right: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-6 {
    padding-right: 40px !important;
  }
}
.nhsuk-u-padding-bottom-6 {
  padding-bottom: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-6 {
    padding-bottom: 40px !important;
  }
}
.nhsuk-u-padding-left-6 {
  padding-left: 32px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-6 {
    padding-left: 40px !important;
  }
}
.nhsuk-u-padding-7 {
  padding: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-7 {
    padding: 48px !important;
  }
}
.nhsuk-u-padding-top-7 {
  padding-top: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-7 {
    padding-top: 48px !important;
  }
}
.nhsuk-u-padding-right-7 {
  padding-right: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-7 {
    padding-right: 48px !important;
  }
}
.nhsuk-u-padding-bottom-7 {
  padding-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-7 {
    padding-bottom: 48px !important;
  }
}
.nhsuk-u-padding-left-7 {
  padding-left: 40px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-7 {
    padding-left: 48px !important;
  }
}
.nhsuk-u-padding-8 {
  padding: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-8 {
    padding: 56px !important;
  }
}
.nhsuk-u-padding-top-8 {
  padding-top: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-8 {
    padding-top: 56px !important;
  }
}
.nhsuk-u-padding-right-8 {
  padding-right: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-8 {
    padding-right: 56px !important;
  }
}
.nhsuk-u-padding-bottom-8 {
  padding-bottom: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-8 {
    padding-bottom: 56px !important;
  }
}
.nhsuk-u-padding-left-8 {
  padding-left: 48px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-8 {
    padding-left: 56px !important;
  }
}
.nhsuk-u-padding-9 {
  padding: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-9 {
    padding: 64px !important;
  }
}
.nhsuk-u-padding-top-9 {
  padding-top: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-top-9 {
    padding-top: 64px !important;
  }
}
.nhsuk-u-padding-right-9 {
  padding-right: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-right-9 {
    padding-right: 64px !important;
  }
}
.nhsuk-u-padding-bottom-9 {
  padding-bottom: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-bottom-9 {
    padding-bottom: 64px !important;
  }
}
.nhsuk-u-padding-left-9 {
  padding-left: 56px !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-padding-left-9 {
    padding-left: 64px !important;
  }
}
/* ==========================================================================
   UTILITIES / #TEXT-ALIGN
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-text-align-left {
  text-align: left !important;
}

.nhsuk-u-text-align-centre {
  text-align: center !important;
}

.nhsuk-u-text-align-right {
  text-align: right !important;
}

/* ==========================================================================
   UTILITIES / #TYPOGRAPHY
   ========================================================================== */
/**
 * Font size and line height
 *
 * Generate typography override classes for each responsive font map in the
 * typography scale eg .nhsuk-u-font-size-48
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 */
.nhsuk-u-font-size-64 {
  font-size: 48px !important;
  font-size: 3rem !important;
  line-height: 1.16667 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-64 {
    font-size: 64px !important;
    font-size: 4rem !important;
    line-height: 1.125 !important;
  }
}
@media print {
  .nhsuk-u-font-size-64 {
    font-size: 53pt !important;
    line-height: 1.1 !important;
  }
}
.nhsuk-u-font-size-48 {
  font-size: 32px !important;
  font-size: 2rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-48 {
    font-size: 48px !important;
    font-size: 3rem !important;
    line-height: 1.16667 !important;
  }
}
@media print {
  .nhsuk-u-font-size-48 {
    font-size: 32pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-32 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.33333 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-32 {
    font-size: 32px !important;
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }
}
@media print {
  .nhsuk-u-font-size-32 {
    font-size: 24pt !important;
    line-height: 1.05 !important;
  }
}
.nhsuk-u-font-size-24 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-24 {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.33333 !important;
  }
}
@media print {
  .nhsuk-u-font-size-24 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-22 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.55556 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-22 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    line-height: 1.45455 !important;
  }
}
@media print {
  .nhsuk-u-font-size-22 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-19 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
    line-height: 1.47368 !important;
  }
}
@media print {
  .nhsuk-u-font-size-19 {
    font-size: 14pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-16 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.71429 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
}
@media print {
  .nhsuk-u-font-size-16 {
    font-size: 14pt !important;
    line-height: 1.2 !important;
  }
}
.nhsuk-u-font-size-14 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.66667 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    line-height: 1.71429 !important;
  }
}
@media print {
  .nhsuk-u-font-size-14 {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
}
/* Weights
   ========================================================================== */
/**
 * Generate font weight override classes for normal and bold
 * eg .nhsuk-u-font-weight-normal
 */
.nhsuk-u-font-weight-normal {
  font-weight: 400 !important;
}

.nhsuk-u-font-weight-bold {
  font-weight: 600 !important;
}

/* Colours
   ========================================================================== */
/**
 * Secondary text colour $nhsuk-secondary-text-color
 * eg <p class="nhsuk-u-secondary-text-color">Published on: 15 March 2018</p>
 */
.nhsuk-u-secondary-text-color {
  color: #4c6272 !important; /* stylelint-disable-line declaration-no-important */
}

/* ==========================================================================
   UTILITIES / #VISUALLY-HIDDEN
   ========================================================================== */
/**
 * Hide elements visually but keep it in the DOM
 *
 * Usage: class="nhsuk-u-visually-hidden"
 * See tools/mixins
 */
.nhsuk-u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ==========================================================================
   UTILITIES / #WIDTH
   ========================================================================== */
/**
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 * Force element widths on all screen sizes
 *
 * Usage: class="nhsuk-u-width-full"
 */
/* stylelint-disable declaration-no-important */
.nhsuk-u-width-full {
  width: 100% !important;
}

.nhsuk-u-width-three-quarters {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-three-quarters {
    width: 75% !important;
  }
}
.nhsuk-u-width-two-thirds {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-two-thirds {
    width: 66.66% !important;
  }
}
.nhsuk-u-width-one-half {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-half {
    width: 50% !important;
  }
}
.nhsuk-u-width-one-third {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-third {
    width: 33.33% !important;
  }
}
.nhsuk-u-width-one-quarter {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-quarter {
    width: 25% !important;
  }
}
/* ==========================================================================
   COMPONENTS/ #ACTION-LINK
   ========================================================================== */
/**
 * 1. Display is inline-block so the top and bottom margins/paddings are
 *    respected.
 * 2. 'Random number' is used to properly have sufficient space between icon
 *    and text.
 * 3. Position is relative so the arrow icon can display absolute.
 * 4. Text decoration none used to override default <a> styling.
 * 5. Box shadow 8px used instead of the default 4px.
 * 6. Text decoration underline used to override default <a> styling.
 */
.nhsuk-action-link {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-action-link {
    margin-bottom: 40px;
  }
}
.nhsuk-action-link__link {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  display: inline-block; /* [1] */
  font-weight: 600;
  padding-left: 38px; /* [2] */
  position: relative; /* [3] */
  text-decoration: none; /* [4] */
}

@media (min-width: 40.0625em) {
  .nhsuk-action-link__link {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  .nhsuk-action-link__link {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-action-link__link:hover .nhsuk-action-link__text {
  text-decoration: underline; /* [6] */
}

.nhsuk-action-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-action-link__link:focus:hover .nhsuk-action-link__text {
  color: #212b32;
  text-decoration: none;
}

@media (max-width: 40.0525em) {
  .nhsuk-action-link__link {
    padding-left: 26px; /* [2] */
  }
}
@media print {
  .nhsuk-action-link__link {
    color: #212b32;
  }
  .nhsuk-action-link__link:visited {
    color: #212b32;
  }
}
.nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
  height: 36px;
  left: -3px;
  position: absolute;
  top: -2px;
  width: 36px;
}

@media print {
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:active, .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:focus, .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:visited {
    color: #212b32;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    height: 24px;
    left: -2px;
    margin-bottom: 0;
    top: 2px;
    width: 24px;
  }
}
/* ==========================================================================
   COMPONENTS/ #BACK-LINK
   ========================================================================== */
/**
 * 1. Allow space for the arrow.
 * 2. Align the icon with the start of the back link.
 * 3. Align the icon with the middle of the text.
 */
.nhsuk-back-link {
  margin-bottom: 16px;
}

.nhsuk-back-link__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #005eb8;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 16px; /* 1 */
  position: relative;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-back-link__link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-back-link__link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-back-link__link:visited {
  color: #330072;
}

.nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-back-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-back-link__link:focus:hover {
  text-decoration: none;
}

.nhsuk-back-link__link:focus:visited {
  color: #212b32;
}

.nhsuk-back-link__link:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-back-link__link:active {
  color: #002f5c;
}

.nhsuk-back-link__link .nhsuk-icon__chevron-left {
  height: 24px;
  left: -8px; /* 2 */
  position: absolute;
  top: -1px; /* 3 */
  width: 24px;
}

.nhsuk-back-link__link:visited {
  color: #005eb8;
}

.nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: underline;
}

.nhsuk-back-link__link:hover .nhsuk-icon__chevron-left {
  fill: #7c2855;
}

.nhsuk-back-link__link:focus .nhsuk-icon__chevron-left {
  fill: #212b32;
}

/* ==========================================================================
    COMPONENTS / #BREADCRUMB
   ========================================================================== */
/**
 * 1. Hide the breadcrumb on print stylesheets.
 * 2. Bespoke spacing numbers used as there is no 20px
 *    spacing mapped in settings/spacing.
 * 3. Don't show the full breadcrumb below tablet size.
 * 4. Typography sizing mixin, see core/tools/_typography
 * 5. and core/settings/_typography for size maps.
 * 5. .. but show a back to index page link.
 */
.nhsuk-breadcrumb {
  /* [1] */
  padding-bottom: 16px;
  padding-top: 20px; /* [2] */
}

@media print {
  .nhsuk-breadcrumb {
    display: none;
  }
}
.nhsuk-breadcrumb .nhsuk-icon__chevron-right {
  fill: #aeb7bd;
  height: 18px;
  position: relative;
  top: 5px;
  width: 18px;
}

@media (min-width: 61.875em) {
  .nhsuk-breadcrumb .nhsuk-icon__chevron-right {
    margin: 0 3px 0 5px;
  }
}
.nhsuk-breadcrumb .nhsuk-icon__chevron-left {
  float: left;
  height: 24px;
  left: -8px;
  position: relative;
  width: 24px;
}

.nhsuk-breadcrumb + .nhsuk-width-container .nhsuk-main-wrapper {
  padding-top: 0;
}

.nhsuk-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 40.0525em) {
  .nhsuk-breadcrumb__list {
    display: none; /* [3] */
  }
}
.nhsuk-breadcrumb__item {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  /* [4] */
  display: inline-block;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-breadcrumb__item {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-breadcrumb__item:not(:last-child):after {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__chevron-right' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' height='18' width='18' viewBox='0 0 24 24' aria-hidden='true'%3E%3Cpath d='M15.5 12a1 1 0 0 1-.29.71l-5 5a1 1 0 0 1-1.42-1.42l4.3-4.29-4.3-4.29a1 1 0 0 1 1.42-1.42l5 5a1 1 0 0 1 .29.71z'%3E%3C/path%3E%3C/svg%3E") right 0 top 4px no-repeat;
  content: "";
  display: inline-block;
  height: 18px;
  margin-left: 10px;
  margin-right: 2px;
  width: 18px;
}

.nhsuk-breadcrumb__link:visited {
  color: #005eb8;
}

.nhsuk-breadcrumb__link:visited:hover {
  color: #7c2855;
}

.nhsuk-breadcrumb__link:focus:hover {
  color: #212b32;
}

.nhsuk-breadcrumb__back {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  /* [4] */
  margin: 0;
  padding-left: 16px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__back {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-breadcrumb__back {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__back {
    display: none; /* [5] */
  }
}
.nhsuk-breadcrumb__back:before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__chevron-left' xmlns='http://www.w3.org/2000/svg' fill='%23005eb8' height='24' width='24' viewBox='8 0 24 24' aria-hidden='true'%3E%3Cpath d='M8.5 12c0-.3.1-.5.3-.7l5-5c.4-.4 1-.4 1.4 0s.4 1 0 1.4L10.9 12l4.3 4.3c.4.4.4 1 0 1.4s-1 .4-1.4 0l-5-5c-.2-.2-.3-.4-.3-.7z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

.nhsuk-breadcrumb__backlink:visited {
  color: #005eb8;
}

.nhsuk-breadcrumb__backlink:visited:hover {
  color: #7c2855;
}

/* ==========================================================================
   COMPONENTS/ #BUTTON
   ========================================================================== */
/**
 * 1. Ensure that any global link styles are overridden.
 * 2. Fix unwanted button padding in Firefox.
 * 3. Use a pseudo element to expand the click target area to include the
 *    button's shadow as well, in case users try to click it.
 */
.nhsuk-button {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 28px;
  -webkit-appearance: none;
  background-color: #007f3b;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: 0 4px 0 #00401e;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin-top: 0;
  padding: 12px 16px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: auto;
  /* 2 */
  /* 3 */
  /* 4 */
}

@media (min-width: 40.0625em) {
  .nhsuk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-button {
    margin-bottom: 36px;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-button {
    padding: 8px 16px;
  }
}
.nhsuk-button:link, .nhsuk-button:visited, .nhsuk-button:active, .nhsuk-button:hover {
  color: #ffffff;
  text-decoration: none;
}

.nhsuk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.nhsuk-button:hover {
  background-color: #00662f;
}

.nhsuk-button:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button:focus:visited {
  color: #212b32;
}

.nhsuk-button:focus:visited:active {
  color: #ffffff;
}

.nhsuk-button:active {
  background: #00401e;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button::before {
  background: transparent;
  bottom: -6px;
  content: "";
  display: block;
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

.nhsuk-button:active::before {
  top: -6px;
}

/**
 * Button variations
 */
.nhsuk-button--secondary {
  background-color: #4c6272;
  box-shadow: 0 4px 0 #263139;
}

.nhsuk-button--secondary:hover {
  background-color: #384853;
}

.nhsuk-button--secondary:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button--secondary:active {
  background: #263139;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button--secondary.nhsuk-button--disabled {
  background-color: #4c6272;
}

.nhsuk-button--reverse {
  background-color: #ffffff;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
}

.nhsuk-button--reverse:hover {
  background-color: #f2f2f2;
  color: #212b32;
}

.nhsuk-button--reverse:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button--reverse:active {
  background: #212b32;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button--reverse:link {
  color: #212b32;
}

.nhsuk-button--reverse:link:active {
  color: #ffffff;
}

.nhsuk-button--reverse.nhsuk-button--disabled {
  background-color: #ffffff;
}

.nhsuk-button--reverse.nhsuk-button--disabled:focus {
  background-color: #ffffff;
}

/**
 * Button disabled states
 */
/* stylelint-disable string-quotes */
.nhsuk-button--disabled,
.nhsuk-button[disabled=disabled],
.nhsuk-button[disabled] {
  background-color: #007f3b;
  opacity: 0.5;
  pointer-events: none;
}

.nhsuk-button--disabled:hover,
.nhsuk-button[disabled=disabled]:hover,
.nhsuk-button[disabled]:hover {
  background-color: #007f3b;
  cursor: default;
}

.nhsuk-button--disabled:focus,
.nhsuk-button[disabled=disabled]:focus,
.nhsuk-button[disabled]:focus {
  background-color: #007f3b;
  outline: none;
}

.nhsuk-button--disabled:active,
.nhsuk-button[disabled=disabled]:active,
.nhsuk-button[disabled]:active {
  box-shadow: 0 4px 0 #00401e;
  top: 0;
}

.nhsuk-button--secondary[disabled=disabled],
.nhsuk-button--secondary[disabled] {
  background-color: #4c6272;
  opacity: 0.5;
}

.nhsuk-button--secondary[disabled=disabled]:hover,
.nhsuk-button--secondary[disabled]:hover {
  background-color: #4c6272;
  cursor: default;
}

.nhsuk-button--secondary[disabled=disabled]:focus,
.nhsuk-button--secondary[disabled]:focus {
  outline: none;
}

.nhsuk-button--secondary[disabled=disabled]:active,
.nhsuk-button--secondary[disabled]:active {
  box-shadow: 0 4px 0 #263139;
  top: 0;
}

.nhsuk-button--reverse[disabled=disabled],
.nhsuk-button--reverse[disabled] {
  background-color: #ffffff;
  opacity: 0.5;
}

.nhsuk-button--reverse[disabled=disabled]:hover,
.nhsuk-button--reverse[disabled]:hover {
  background-color: #ffffff;
  cursor: default;
}

.nhsuk-button--reverse[disabled=disabled]:focus,
.nhsuk-button--reverse[disabled]:focus {
  outline: none;
}

.nhsuk-button--reverse[disabled=disabled]:active,
.nhsuk-button--reverse[disabled]:active {
  box-shadow: 0 4px 0 #212b32;
  top: 0;
}

/* ==========================================================================
   COMPONENTS / #CARD
   ========================================================================== */
/**
 * 1. Is needed for the :active top positioning, and invisible clickable overlay.
 * 2. Border is used to create a divider between the white content
 *    box and an image.
 * 3. Creates the 'pressed down' effect when clicked.
 * 4. Removes padding-top from headings directly after the card group.
 * 5. Includes the border width to achieve the correct left alignment.
 * 6. Stops the heading from spanning the full width of the card.
 * 7. Removes padding top for the feature heading positioning.
 * 8. Default care card colour set to blue (non-urgent care card) -
 *    using the @mixin care-card tools/_mixins.scss.
 *    The same mixin is used for each care card, setting the background
 *    colour,text colour and print border width with the variables.
 * 9. 'Random number' for the heading triangle.
 * 10. 'Random number' for the heading triangle positioning.
 * 11. 'Random number' used for spacing to compensate for the triangle.
 * 12. Needed to enable the triangle to show correctly in high contrast mode.
 * 13. Prevent additional padding on headings
 * 14. Give the action link icon sufficient contrast when used in the emergency variant
 * 15. Reset the positioning to the default [1] to display heading triangle on a coloured background.
 * 16. Emergency care card <a> needs to be white because the background colour is black.
 * 17. Trick IE10 into rendering the invisible clickable area. Without this it does not.
 */
.nhsuk-card {
  margin-bottom: 40px;
  background: #ffffff;
  border: 1px solid #d8dde0;
  position: relative; /* [1] */
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-card {
    margin-bottom: 48px;
  }
}
.nhsuk-card__img {
  border-bottom: 1px solid #f0f4f5; /* [2] */
  display: block;
  width: 100%;
}

@media print {
  .nhsuk-card__img {
    display: none;
  }
}
.nhsuk-card__content {
  padding: 24px;
}

.nhsuk-card__content > *:first-child {
  margin-top: 0;
}

.nhsuk-card__content > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-card__content {
    padding: 32px;
  }
}
.nhsuk-card__heading,
.nhsuk-card__metadata,
.nhsuk-card__description {
  margin-bottom: 16px;
}

/* Clickable card
  ========================================================================== */
.nhsuk-card--clickable {
  border-bottom-width: 4px;
}

.nhsuk-card--clickable .nhsuk-card__heading a::before,
.nhsuk-card--clickable .nhsuk-card__link::before {
  background-color: rgba(255, 255, 255, 0); /* [17] */
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nhsuk-card--clickable:active {
  border-color: #aeb7bd;
  bottom: -1px; /* [3] */
}

/* Card group
  ========================================================================== */
/**
* Card group allows you to have a row of cards.
*
* Flexbox is used to make each card in a row the same height.
*/
.nhsuk-card-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group {
    margin-bottom: 40px;
  }
}
.nhsuk-card-group + h2,
.nhsuk-card-group + .nhsuk-heading-l,
.nhsuk-card-group + h3,
.nhsuk-card-group + .nhsuk-heading-m {
  padding-top: 0; /* [4] */
}

.nhsuk-card-group__item {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group__item {
    flex: 0 0 100%;
  }
}
.nhsuk-card-group__item .nhsuk-card {
  margin-bottom: 32px;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group__item .nhsuk-card {
    margin-bottom: 16px;
  }
  .nhsuk-card-group__item:last-child .nhsuk-card {
    margin-bottom: 0;
  }
}
/* Card feature
  ========================================================================== */
.nhsuk-card--feature {
  margin-top: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-card--feature {
    margin-top: 48px;
  }
}
.nhsuk-card__heading--feature {
  background: #005eb8;
  color: #ffffff;
  display: inline-block;
  left: -25px; /* [5] */
  margin-bottom: 8px;
  margin-right: -24px; /* [6] */
  padding: 8px 24px;
  position: relative;
  top: -8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-card__heading--feature {
    left: -33px; /* [5] */
    margin-right: -32px; /* [6] */
    padding: 8px 32px;
    top: -16px;
  }
}
.nhsuk-card__content--feature {
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */ /* [7] */
}

/* Care card
  ========================================================================== */
.nhsuk-card--care {
  margin-top: 40px;
  /* [8] */
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care {
    margin-top: 48px;
  }
}
.nhsuk-card--care .nhsuk-card--care__heading-container {
  background-color: #005eb8;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care {
    border: 4px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care__heading-container {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading-container {
    padding-left: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading-container {
    padding-right: 32px;
  }
}
.nhsuk-card--care__heading {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
  padding-top: 0; /* [13] */
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-card--care__heading {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media print {
  .nhsuk-card--care__heading {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-card--care__heading:active, .nhsuk-card--care__heading:focus, .nhsuk-card--care__heading:visited {
    color: #212b32;
  }
}
.nhsuk-card--care__arrow {
  bottom: -10px; /* [9] */
  display: block;
  height: 20px; /* [9] */
  left: 30px; /* [10] */
  overflow: hidden;
  position: absolute;
  transform: rotate(45deg);
  width: 20px; /* [9] */
}

@media print {
  .nhsuk-card--care__arrow {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-card--care__arrow {
    left: 38px; /* [10] */
  }
}
.nhsuk-card--care__arrow:before, .nhsuk-card--care__arrow:after {
  border: solid 32px #005eb8; /* [9] */
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  transform: rotate(45deg); /* [12] */
  width: 0;
}

.nhsuk-card--care--urgent .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care--urgent {
    border: 6px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care--urgent .nhsuk-card--care__arrow:before, .nhsuk-card--care--urgent .nhsuk-card--care__arrow:after {
  border-color: #d5281b;
}

.nhsuk-card--care--emergency .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care--emergency {
    border: 8px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care--emergency .nhsuk-card--care__arrow:before, .nhsuk-card--care--emergency .nhsuk-card--care__arrow:after {
  border-color: #d5281b;
}

.nhsuk-card--care--emergency .nhsuk-card__content {
  background-color: #212b32;
  border: 0;
  color: #ffffff;
  position: static; /* [15] */
}

.nhsuk-card--care--emergency .nhsuk-card__content a {
  color: #ffffff; /* [16] */
}

.nhsuk-card--care--emergency .nhsuk-card__content a:focus {
  color: #212b32; /* [16] */
}

.nhsuk-card--care--emergency .nhsuk-details,
.nhsuk-card--care--emergency .nhsuk-details__summary {
  color: #ffffff;
}

.nhsuk-card--care--emergency .nhsuk-details__summary:hover {
  color: #ffffff;
}

.nhsuk-card--care--emergency .nhsuk-details__summary:focus {
  color: #212b32;
}

.nhsuk-card--care--emergency .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #ffffff; /* [14] */
}

/* Card primary
  ========================================================================== */
.nhsuk-card__content--primary {
  padding-right: 75px;
}

@media (min-width: 48.0625em) {
  .nhsuk-card__content--primary {
    height: 100%;
  }
}
.nhsuk-card__content--primary .nhsuk-icon {
  display: block;
  fill: #005eb8;
  margin-top: -nhsuk-spacing(2);
  position: absolute;
  right: 24px;
  top: 50%;
}

/* Card secondary
  ========================================================================== */
.nhsuk-card--secondary {
  background: transparent;
  border-bottom: 4px solid #d8dde0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.nhsuk-card__content--secondary {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

/* ==========================================================================
   COMPONENTS / #CONTENTS-LIST
   ========================================================================== */
/**
 * 1. Creates a grey line before each list
 *    item using a ASCII number for the symbol.
 */
.nhsuk-contents-list {
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-contents-list {
    margin-bottom: 48px;
  }
}
.nhsuk-contents-list__list {
  list-style: none;
  padding: 0;
}

.nhsuk-contents-list__item {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__emdash' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' width='19' height='1' aria-hidden='true'%3E%3Cpath d='M0 0h19v1H0z'%3E%3C/path%3E%3C/svg%3E") left 0.75rem no-repeat;
  padding: 0 0 0 32px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-contents-list__item {
    background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__emdash' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' width='16' height='1' aria-hidden='true'%3E%3Cpath d='M0 0h19v1H0z'%3E%3C/path%3E%3C/svg%3E") left 0.875rem no-repeat;
  }
}
.nhsuk-contents-list__link {
  display: inline-block;
}

.nhsuk-contents-list__current {
  font-weight: 600;
}

/* ==========================================================================
   COMPONENTS/ #DATE-INPUT
   ========================================================================== */
/**
 * 1. font-size: 0 removes whitespace caused by inline-block
 */
.nhsuk-date-input {
  font-size: 0; /* 1 */
}

.nhsuk-date-input:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-date-input__item {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 24px;
}

.nhsuk-date-input__label {
  display: block;
}

.nhsuk-date-input__input {
  margin-bottom: 0;
}

/* ==========================================================================
   COMPONENTS / #DETAILS
   ========================================================================== */
/**
 * Details component.
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. Style the summary to look like a link...
 * 2. Make the focus outline shrink-wrap the text content of the summary
 * 3. Absolutely position the marker against this element
 * 3. Allow for absolutely positioned marker and align with disclosed text
 * 4. Only underline the text, not the arrow
 * 5. Remove the default details marker so we can style our own consistently and
 *    ensure it displays in Firefox
 * 6. Custom padding to left align the details text with the summary
 */
.nhsuk-details {
  color: #212b32;
  margin-bottom: 16px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

@media print {
  .nhsuk-details {
    color: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-details {
    margin-bottom: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-details {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-details {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-details__summary {
  color: #005eb8; /* [1] */
  cursor: pointer;
  display: inline-block; /* [2] */
  padding-left: 24px;
  position: relative; /* [3] */
}

.nhsuk-details__summary:hover {
  color: #7c2855;
}

.nhsuk-details__summary:before {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 7px 0 7px 12.124px;
  border-left-color: inherit;
}

.nhsuk-details__summary:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-details__summary:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-details__summary:hover .nhsuk-details__summary-text, .nhsuk-details__summary:focus .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-details[open] > .nhsuk-details__summary:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 12.124px 7px 0 7px;
  border-top-color: inherit;
}

.nhsuk-details__summary-text {
  text-decoration: underline; /* [4] */
}

.nhsuk-details__summary::-webkit-details-marker {
  display: none; /* [5] */
}

.nhsuk-details__text {
  border-left: 4px solid #d8dde0;
  margin-top: 8px;
  padding: 16px;
  padding-left: 20px; /* [6] */
}

.nhsuk-details__text > *:first-child {
  margin-top: 0;
}

.nhsuk-details__text > *:last-child {
  margin-bottom: 0;
}

/**
 * Expander variation.
 *
 * 1. !important used because the icon is populated
 *    by the JavaScript polyfill
 * 2. Remove the default hover, focus and active
 *    styles for this component.
 * 3. -2px left margin to align the icon to the content.
 * 4. When a group of details is used reduce the
 *    margin between them so they sit together.
 */
.nhsuk-expander {
  background-color: #ffffff;
  border: 1px solid #d8dde0;
  border-bottom-width: 4px;
}

.nhsuk-expander:hover {
  border-color: #aeb7bd;
}

.nhsuk-expander .nhsuk-details__summary {
  background-color: #ffffff;
  border-top: 4px solid transparent;
  display: block;
  padding: 20px 24px 24px;
}

@media (max-width: 40.0525em) {
  .nhsuk-expander .nhsuk-details__summary {
    padding: 12px 16px 16px;
  }
}
.nhsuk-expander .nhsuk-details__summary:before {
  display: none !important; /* stylelint-disable-line declaration-no-important */ /* [1] */
}

.nhsuk-expander .nhsuk-details__summary:hover .nhsuk-details__summary-text {
  color: #7c2855;
}

.nhsuk-expander .nhsuk-details__summary:focus {
  box-shadow: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background: #ffeb3b url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__plus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat;
}

.nhsuk-expander .nhsuk-details__summary-text {
  color: #005eb8;
  cursor: pointer;
  display: inline-block;
  padding: 4px 4px 4px 38px;
  position: relative;
}

.nhsuk-expander .nhsuk-details__summary-text:before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__plus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat;
  content: "";
  display: inline-block;
  height: 32px;
  left: 0;
  position: absolute;
  top: calc(50% - 16px);
  width: 32px;
}

.nhsuk-expander .nhsuk-details__text {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
  border-left: 0;
  margin-left: 0;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-bottom: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-left: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-right: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-top: 0;
  }
}
.nhsuk-expander[open] {
  border-bottom-width: 1px;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus:hover .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus .nhsuk-details__summary-text::before {
  background: #ffeb3b url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__minus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat; /* [3] */
}

.nhsuk-expander[open] .nhsuk-details__summary-text::before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__minus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat; /* [3] */
}

.nhsuk-expander-group {
  /* [4] */
  margin-bottom: 16px;
}

.nhsuk-expander-group > .nhsuk-details {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander-group > .nhsuk-details {
    margin-bottom: 8px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander-group {
    margin-bottom: 24px;
  }
}
.nhsuk-details + h2,
.nhsuk-details + .nhsuk-heading-l {
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-details + h2,
  .nhsuk-details + .nhsuk-heading-l {
    padding-top: 24px;
  }
}
/* ==========================================================================
   COMPONENTS / #DO-DONT-LIST
   ========================================================================== */
/**
 * Do and Don't lists help users understand more easily what they should
 * and shouldn't do.
 *
 * 1. Uses @mixin panel-with-label from tools/_mixins.
 * 2. Uses @mixin heading-label from tools/_mixins.
 */
.nhsuk-do-dont-list {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #ffffff;
  color: #212b32;
  border: 1px solid #d8dde0;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
  /* [1] */
}

.nhsuk-do-dont-list > *:first-child {
  margin-top: 0;
}

.nhsuk-do-dont-list > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    padding: 32px;
  }
}
@media print {
  .nhsuk-do-dont-list {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-do-dont-list__label {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #005eb8;
  color: #ffffff;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
  /* [2] */
}

@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-do-dont-list__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    background: none;
    color: #212b32;
    top: 0;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-do-dont-list__label:active, .nhsuk-do-dont-list__label:focus, .nhsuk-do-dont-list__label:visited {
    color: #212b32;
  }
}
/* ==========================================================================
   COMPONENTS/ #ERROR-MESSAGE
   ========================================================================== */
.nhsuk-error-message {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: both;
  color: #d5281b;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-message {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-error-message {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* ==========================================================================
   COMPONENTS/ #ERROR-SUMMARY
   ========================================================================== */
/**
 * 1. Cross-component class - adjusts styling of list component.
 * 2. Override default link styling to use error colour
 */
.nhsuk-error-summary {
  padding: 16px;
  margin-bottom: 48px;
  border: 4px solid #d5281b;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    padding: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    margin-bottom: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    border: 4px solid #d5281b;
  }
}
.nhsuk-error-summary:focus {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
  outline: 4px solid transparent;
}

.nhsuk-error-summary__title {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-error-summary__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary__title {
    margin-bottom: 24px;
  }
}
.nhsuk-error-summary__body {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-error-summary__body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-error-summary__body p {
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__body p {
    margin-bottom: 24px;
  }
}
.nhsuk-error-summary__list {
  /* 1 */
  margin-bottom: 0;
  margin-top: 0;
}

.nhsuk-error-summary__list a {
  font-weight: 600;
  /* 2 */
}

.nhsuk-error-summary__list a:link, .nhsuk-error-summary__list a:visited, .nhsuk-error-summary__list a:hover, .nhsuk-error-summary__list a:active {
  color: #d5281b;
}

.nhsuk-error-summary__list a:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

/* ==========================================================================
   COMPONENTS/ #FIELDSET
   ========================================================================== */
/**
 * 1. Fix legend text wrapping in Edge and IE versions:
 * 2. IE9-11 & Edge 12-13
 * 3. Hack to let legends or elements within legends have margins in webkit browsers.
 * 4. When the legend contains an H1, we want the H1 to inherit all styles from
 *    the legend. Effectively we want to be able to treat the heading as if it is
 *    not there.
 */
.nhsuk-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.nhsuk-fieldset:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-fieldset__legend {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  box-sizing: border-box; /* 1 */
  color: #212b32;
  display: table; /* 2 */
  margin-bottom: 8px;
  margin-top: 0;
  max-width: 100%; /* 1 */
  padding: 0;
  white-space: normal; /* 3 */
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-fieldset__legend {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Heading modifiers */
.nhsuk-fieldset__legend--xl {
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  .nhsuk-fieldset__legend--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__legend--l {
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-fieldset__legend--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.nhsuk-fieldset__legend--m {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-fieldset__legend--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__legend--s {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-fieldset__legend--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__heading {
  /* 4 */
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* ==========================================================================
   COMPONENTS / #FOOTER
   ========================================================================== */
.nhsuk-footer {
  padding-bottom: 24px;
  padding-top: 24px;
  background-color: #d8dde0;
  border-top: 4px solid #005eb8;
}

.nhsuk-footer:after {
  clear: both;
  content: "";
  display: block;
}

@media print {
  .nhsuk-footer {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer {
    padding-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer {
    padding-top: 32px;
  }
}
.nhsuk-footer__list {
  padding-bottom: 16px;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__list {
    padding-bottom: 24px;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__list {
    float: left;
    padding-bottom: 0;
    width: 75%;
  }
}
.nhsuk-footer__list-item {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__list-item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-footer__list-item {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__list-item {
    float: left;
    margin-right: 32px;
  }
}
.nhsuk-footer__list-item-link {
  color: #4c6272;
}

.nhsuk-footer__list-item-link:visited {
  color: #4c6272;
}

.nhsuk-footer__list-item-link:hover {
  color: #212b32;
}

.nhsuk-footer__copyright {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #4c6272;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__copyright {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-footer__copyright {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__copyright {
    float: right;
    text-align: right;
    width: 25%;
  }
}
/* ==========================================================================
   COMPONENTS / #HEADER
   ========================================================================== */
/**
 * The behaviour with regards to responsiveness is as follow:
 *
 * - Mobile to tablet view
 *   Menu toggle button visible and navigation links hidden, search toggle
     button visible and search form hidden
 *
 * - Tablet to desktop view
 *   Menu toggle button visible and navigation links hidden, search toggle
 *   button hidden and search form visible
 *
 * - Desktop+ view
 *   Menu toggle button hidden and navigation links visible, search toggle
 *   button hidden and search form visible
 *
 * 1. Custom height and width of the logo
 * 2. Custom height and width of form items
 * 3. Custom height and width of svg icons
 * 4. Remove inner border on buttons for Firefox, see
 *    https://github.com/necolas/normalize.css/issues/393
 * 5. Proprietary extension so form field looks the same in Safari
 * 6. Custom margin to move menu toggle past the search toggle button
 * 7. Custom border value between expanded search and expanded menu if both open at the same time
 * 8. Don't display the link address for the logo anchor, see
 *     core/elements/_links.scss
 * 9. Use non variable colour to follow NHS England guidelines on logo colour
 * 10. Remove random top margin in Safari
 * 11. Align close icon with nav item arrow icons
 * 12. Add nhsuk-spacing(9) to align right and left main nav with header
 */
.nhsuk-header {
  background-color: #005eb8;
}

.nhsuk-header:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-header__container {
  padding: 20px 0;
}

.nhsuk-header__container:after {
  clear: both;
  content: "";
  display: block;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__container {
    margin: 0;
    padding: 16px;
  }
}
.nhsuk-header__logo {
  float: left;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__logo {
    position: relative;
    z-index: 1;
  }
}
.nhsuk-header__logo .nhsuk-logo__background {
  fill: #ffffff;
}

@media print {
  .nhsuk-header__logo .nhsuk-logo__background {
    fill: #005eb8;
  }
}
.nhsuk-header__logo .nhsuk-logo__text {
  fill: #005eb8;
}

@media print {
  .nhsuk-header__logo .nhsuk-logo__text {
    fill: #ffffff;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-header__logo {
    padding-left: 0;
  }
}
.nhsuk-header__logo .nhsuk-logo {
  height: 40px;
  width: 100px;
  /* [1] */
  border: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-header__logo {
    max-width: 60%;
  }
}
@media (max-width: 450px) {
  .nhsuk-header__logo {
    max-width: 50%;
  }
}
.nhsuk-header__link {
  height: 40px;
  width: 100px;
  /* [1] */
  display: block;
}

.nhsuk-header__link:hover .nhsuk-logo {
  box-shadow: 0 0 0 4px #003d78;
}

.nhsuk-header__link:focus {
  box-shadow: none;
}

.nhsuk-header__link:focus .nhsuk-logo {
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

@media print {
  .nhsuk-header__link:after {
    content: ""; /* [8] */
  }
}
.nhsuk-header__link:hover, .nhsuk-header__link:active, .nhsuk-header__link:focus {
  background-color: transparent;
}

.nhsuk-header__content {
  position: relative;
}

.nhsuk-header__content:after {
  clear: both;
  content: "";
  display: block;
}

@media print {
  .nhsuk-header__content {
    display: none;
  }
}
.nhsuk-header__content.js-show {
  border-bottom: 4px solid #f0f4f5; /* [7] */
}

@media (min-width: 40.0625em) {
  .nhsuk-header__content {
    float: right;
  }
  .nhsuk-header__content.js-show {
    border-bottom: 0;
  }
}
.nhsuk-header__search {
  position: relative;
  text-align: right;
}

.nhsuk-header__search:after {
  clear: both;
  content: "";
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__search {
    float: left;
    margin-left: 8px;
  }
}
.nhsuk-header__search-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  min-height: 40px; /* [2] */
  padding: 4px 8px 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nhsuk-header__search-toggle::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__search-toggle:hover {
  background-color: #003d78;
  border-color: #f0f4f5;
  box-shadow: none;
}

.nhsuk-header__search-toggle:focus {
  border: 1px solid #ffeb3b !important; /* stylelint-disable-line declaration-no-important */ /* [2] */
}

.nhsuk-header__search-toggle:active, .nhsuk-header__search-toggle.is-active {
  background-color: #002f5c;
  border-color: #f0f4f5;
  color: #f0f4f5;
}

.nhsuk-header__search-toggle .nhsuk-icon__search {
  fill: #ffffff;
  height: 21px; /* [3] */
  width: 21px; /* [3] */
}

.nhsuk-header__search-toggle:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #ffeb3b, 0 4px 0 2px #212b32;
}

.nhsuk-header__search-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__search-toggle {
    display: none;
  }
}
.nhsuk-header__search-form {
  height: 100%;
  overflow: visible;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__search-form {
    background-color: #ffffff;
    display: flex;
    padding: 16px;
    width: 100%;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-header__search-wrap {
    display: none;
  }
  .nhsuk-header__search-wrap.js-show {
    clear: both;
    display: flex;
    margin-bottom: -20px;
    margin-left: -16px;
    margin-right: -16px;
    padding-top: 16px;
    text-align: left;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-header__search-wrap {
    display: block;
    line-height: 0;
  }
}
.nhsuk-search__input {
  -webkit-appearance: listbox; /* [5] */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  padding: 0 16px;
}

.nhsuk-search__input:focus {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
  outline: 4px solid transparent;
  outline-offset: 4px;
  padding: 0 9px;
}

.nhsuk-search__input::placeholder {
  color: #4c6272;
  font-size: 16px;
}

.nhsuk-search__input:-ms-input-placeholder {
  color: #4c6272;
  font-size: 16px;
}

.nhsuk-search__input::-webkit-input-placeholder {
  color: #4c6272;
  font-size: 16px;
}

@media (max-width: 40.0525em) {
  .nhsuk-search__input {
    border-bottom: 1px solid #aeb7bd;
    border-left: 1px solid #aeb7bd;
    border-right: 0;
    border-top: 1px solid #aeb7bd;
    flex-grow: 2;
    -ms-flex-positive: 2;
    font-size: inherit;
    height: 52px; /* [4] */
    margin: 0;
    outline: none;
    width: 100%; /* [4] */
    z-index: 1;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__input {
    border: 1px solid #ffffff;
    font-size: 16px;
    height: 40px; /* [2] */
    width: 200px; /* [2] */
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-search__input {
    width: 235px;
  }
}
.nhsuk-search__submit {
  border: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  float: right;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  padding: 0;
}

.nhsuk-search__submit::-moz-focus-inner {
  border: 0; /* [4] */
}

.nhsuk-search__submit:hover {
  cursor: pointer;
}

@media (max-width: 40.0525em) {
  .nhsuk-search__submit {
    background-color: #007f3b;
    height: 52px; /* [2] */
    margin: 0;
    padding: 8px 8px 0;
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    fill: #ffffff;
    height: 38px; /* [3] */
    width: 38px; /* [3] */
  }
  .nhsuk-search__submit:hover {
    background-color: #00662f;
  }
  .nhsuk-search__submit:focus {
    background-color: #ffeb3b;
    box-shadow: 0 -4px #ffeb3b, 0 4px #212b32;
    outline: 4px solid transparent;
    outline-offset: 4px;
  }
  .nhsuk-search__submit:focus:hover {
    background-color: #ffeb3b;
  }
  .nhsuk-search__submit:focus:hover .nhsuk-icon {
    fill: #212b32;
  }
  .nhsuk-search__submit:focus .nhsuk-icon {
    fill: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__submit {
    background-color: #f0f4f5;
    display: block;
    height: 40px; /* [2] */
    width: 44px; /* [2] */
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    height: 27px; /* [3] */
    width: 27px; /* [3] */
  }
  .nhsuk-search__submit:hover {
    background-color: #003d78;
    border: 1px solid #ffffff;
  }
  .nhsuk-search__submit:hover .nhsuk-icon__search {
    fill: #ffffff;
  }
  .nhsuk-search__submit:focus {
    background-color: #ffeb3b;
    border: 0;
    box-shadow: 0 4px 0 0 #212b32;
    color: #212b32;
    outline: 4px solid transparent; /* 1 */
    outline-offset: 4px;
    box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  }
  .nhsuk-search__submit:focus .nhsuk-icon {
    fill: #212b32;
  }
  .nhsuk-search__submit:active {
    background-color: #002f5c;
    border: 0;
  }
  .nhsuk-search__submit:active .nhsuk-icon__search {
    fill: #ffffff;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-search__close {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    height: 40px;
    padding: 0;
    width: 40px;
    margin-left: 8px;
    margin-right: -8px; /* [11] */
    margin-top: 8px;
  }
  .nhsuk-search__close .nhsuk-icon__close {
    fill: #005eb8;
    height: 40px;
    width: 40px;
  }
  .nhsuk-search__close::-moz-focus-inner {
    border: 0;
  }
  .nhsuk-search__close:hover .nhsuk-icon__close {
    fill: #3d4e5b;
  }
  .nhsuk-search__close:focus {
    background-color: #ffeb3b;
    box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
    color: #212b32;
    outline: 4px solid transparent;
    text-decoration: none;
  }
  .nhsuk-search__close:focus .nhsuk-icon__close {
    fill: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__close {
    display: none;
  }
}
.nhsuk-search__input--withdropdown {
  border-bottom-left-radius: 0;
}

.nhsuk-search__submit--withdropdown {
  border-bottom-right-radius: 0;
}

/* Main navigation
 *
 * Appears below the header strip
   ====================================================================== */
.nhsuk-header__menu {
  float: right;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__menu {
    float: left;
  }
}
.nhsuk-header__menu-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 0; /* [6] */
  padding: 7px 16px;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.nhsuk-header__menu-toggle::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__menu-toggle:hover {
  background-color: #003d78;
  border-color: #f0f4f5;
  box-shadow: none;
}

.nhsuk-header__menu-toggle:focus {
  border: 1px solid #ffeb3b !important; /* stylelint-disable-line declaration-no-important */ /* [2] */
}

.nhsuk-header__menu-toggle:active, .nhsuk-header__menu-toggle.is-active {
  background-color: #002f5c;
  border-color: #f0f4f5;
  color: #f0f4f5;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__menu-toggle {
    right: 48px;
  }
}
@media (min-width: 40.0625em) and (max-width: 61.865em) {
  .nhsuk-header__menu-toggle {
    margin-top: 0; /* [10] */
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__menu-toggle {
    display: none;
  }
}
.nhsuk-header__menu-toggle:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #ffeb3b, 0 4px 0 2px #212b32;
}

.nhsuk-header__menu-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

/* 'only' modifier for when there is only the menu in the header, no search
   ====================================================================== */
@media (max-width: 40.0525em) {
  .nhsuk-header__menu--only .nhsuk-header__menu-toggle {
    position: relative;
    right: auto;
    top: auto;
  }
}
.nhsuk-header__navigation {
  background-color: #ffffff;
  clear: both;
  display: none;
  overflow: hidden;
}

@media print {
  .nhsuk-header__navigation {
    display: none;
  }
}
.nhsuk-header__navigation.js-show {
  display: block;
}

@media (max-width: 61.865em) {
  .nhsuk-header__navigation.js-show {
    border-bottom: 4px solid #f0f4f5; /* [7] */
    border-top: 4px solid #f0f4f5; /* [7] */
  }
  .nhsuk-header__navigation.js-show .nhsuk-width-container {
    margin: 0 16px;
  }
}
@media (max-width: 48.0525em) {
  .nhsuk-header__navigation.js-show .nhsuk-width-container {
    margin: 0;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation {
    background-color: #005eb8;
    display: block;
    margin: 0 auto;
    max-width: 1024px; /* [12] */
  }
}
.nhsuk-header__navigation-title {
  font-weight: 600;
  margin-bottom: 0;
  padding: 16px;
  position: relative;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-title {
    display: none;
  }
}
.nhsuk-header__navigation-close {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  height: 40px;
  padding: 0;
  width: 40px;
  overflow: hidden;
  position: absolute;
  right: 8px;
  top: 8px;
  white-space: nowrap;
}

.nhsuk-header__navigation-close .nhsuk-icon__close {
  fill: #005eb8;
  height: 40px;
  width: 40px;
}

.nhsuk-header__navigation-close::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__navigation-close:hover .nhsuk-icon__close {
  fill: #3d4e5b;
}

.nhsuk-header__navigation-close:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-header__navigation-close:focus .nhsuk-icon__close {
  fill: #212b32;
}

.nhsuk-header__navigation-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%;
  }
}
.nhsuk-header__navigation-item {
  border-top: 1px solid #f0f4f5;
  margin-bottom: 0;
  position: relative;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-item {
    border-top: 0;
    margin: 0;
    text-align: center;
  }
  .nhsuk-header__navigation-item .nhsuk-icon__chevron-right {
    display: none;
  }
}
.nhsuk-header__navigation-link {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  color: #005eb8;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__navigation-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-header__navigation-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link {
    color: #ffffff;
    line-height: normal;
  }
}
.nhsuk-header__navigation-link .nhsuk-icon__chevron-right {
  fill: #aeb7bd;
  position: absolute;
  right: 4px;
  top: 11px;
}

.nhsuk-header__navigation-link:visited {
  color: #005eb8;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:visited {
    color: #ffffff;
  }
}
.nhsuk-header__navigation-link:hover {
  box-shadow: none;
  color: #005eb8;
  text-decoration: underline;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:hover {
    color: #ffffff;
  }
}
.nhsuk-header__navigation-link:hover .nhsuk-icon__chevron-right {
  fill: #005eb8;
}

.nhsuk-header__navigation-link:active, .nhsuk-header__navigation-link:focus {
  background-color: #ffeb3b;
  border-bottom: 4px solid #212b32;
  box-shadow: none;
  color: #212b32;
  outline: 4px solid transparent;
  outline-offset: 4px;
  text-decoration: none;
}

.nhsuk-header__navigation-link:active:hover, .nhsuk-header__navigation-link:focus:hover {
  background-color: #ffeb3b;
  color: #212b32;
}

.nhsuk-header__navigation-link:active:hover .nhsuk-icon__chevron-right, .nhsuk-header__navigation-link:focus:hover .nhsuk-icon__chevron-right {
  fill: #212b32;
}

.nhsuk-header__navigation-link:active:visited, .nhsuk-header__navigation-link:focus:visited {
  background-color: #ffeb3b;
  color: #212b32;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-item--for-mobile {
    display: none;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-list--small {
    justify-content: flex-start;
  }
}
/**
 * Transactional Header with service name
**/
.nhsuk-header__transactional-service-name {
  float: left;
  padding-left: 16px;
  padding-top: 3px;
}

@media (max-width: 61.865em) {
  .nhsuk-header__transactional-service-name {
    padding-left: 0;
    padding-top: 8px;
    width: 100%;
  }
}
.nhsuk-header__transactional-service-name--link {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:visited {
  color: #ffffff;
}

.nhsuk-header__transactional-service-name--link:hover {
  color: #ffffff;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:focus {
  color: #212b32;
  outline: 4px solid transparent;
  outline-offset: 4px;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:active {
  color: #002f5c;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__transactional-service-name--link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-header__transactional-service-name--link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-header__transactional-service-name--link:hover {
  text-decoration: underline;
}

.nhsuk-header--transactional .nhsuk-header__link {
  height: 32px;
  width: 80px;
  display: block;
}

.nhsuk-header--transactional .nhsuk-logo {
  height: 32px;
  width: 80px;
}

.nhsuk-header--transactional .nhsuk-header__transactional-service-name {
  float: left;
}

.nhsuk-header__link--service {
  height: auto;
  margin-bottom: -4px;
  text-decoration: none;
  width: auto;
}

@media (min-width: 61.875em) {
  .nhsuk-header__link--service {
    align-items: center;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 0;
    width: auto;
  }
}
.nhsuk-header__link--service:hover {
  background: none;
}

.nhsuk-header__link--service:hover .nhsuk-header__service-name {
  text-decoration: underline;
}

.nhsuk-header__link--service:focus {
  background: #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

.nhsuk-header__link--service:focus .nhsuk-header__service-name {
  color: #212b32;
  text-decoration: none;
}

.nhsuk-header__link--service:focus .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header__service-name {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  display: block;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__service-name {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-header__service-name {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__service-name {
    padding-left: 16px;
  }
}
@media (max-width: 61.865em) {
  .nhsuk-header__service-name {
    max-width: 220px;
  }
}
.nhsuk-header__logo--only {
  max-width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__logo--only .nhsuk-header__link--service {
    align-items: center;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 0;
    width: auto;
  }
  .nhsuk-header__logo--only .nhsuk-header__service-name {
    padding-left: 16px;
  }
}
/**
 * Organisational header
**/
.nhsuk-header--organisation .nhsuk-header__link {
  height: auto;
  text-decoration: none;
  width: auto;
}

.nhsuk-header--organisation .nhsuk-header__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.nhsuk-header--organisation .nhsuk-header__link:hover .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header--organisation .nhsuk-header__link:focus {
  background: #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-organisation-name,
.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-organisation-descriptor {
  color: #212b32;
}

.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header--organisation .nhsuk-header__link:focus:hover {
  text-decoration: none;
}

.nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
  height: 32px;
  width: 80px;
}

@media (max-width: 450px) {
  .nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
    height: 24px;
    width: 60px;
  }
}
@media (max-width: 375px) {
  .nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
    height: 20px;
    width: 50px;
  }
}
.nhsuk-header--organisation .nhsuk-header__navigation {
  max-width: 100%;
}

.nhsuk-organisation-name {
  color: #ffffff;
  display: block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.2px;
  line-height: 23px;
  margin-top: -2px;
}

@media print {
  .nhsuk-organisation-name {
    color: #212b32;
  }
}
@media (max-width: 450px) {
  .nhsuk-organisation-name {
    font-size: 17px;
    letter-spacing: 0.1px;
    line-height: 17px;
  }
}
@media (max-width: 375px) {
  .nhsuk-organisation-name {
    font-size: 13px;
    line-height: 13px;
  }
}
.nhsuk-organisation-name .nhsuk-organisation-name-split {
  display: block;
}

.nhsuk-organisation-descriptor {
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 21px;
}

@media print {
  .nhsuk-organisation-descriptor {
    color: #005eb8;
  }
}
@media (max-width: 450px) {
  .nhsuk-organisation-descriptor {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 375px) {
  .nhsuk-organisation-descriptor {
    font-size: 10px;
    line-height: 13px;
  }
}
.nhsuk-org-logo {
  border: 0;
  max-height: 100px;
  max-width: 280px;
}

@media (max-width: 450px) {
  .nhsuk-org-logo {
    max-width: 150px;
  }
}
.nhsuk-org-logo[src$=".svg"] {
  height: auto;
  max-width: 220px;
  width: 100%;
}

.nhsuk-header--white {
  background-color: #ffffff;
}

.nhsuk-header--white .nhsuk-logo .nhsuk-logo__background {
  fill: #005eb8;
}

.nhsuk-header--white .nhsuk-logo .nhsuk-logo__text {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-header__link:hover {
  color: #212b32;
  text-decoration: underline;
}

.nhsuk-header--white .nhsuk-header__link:hover .nhsuk-organisation-descriptor {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-search__submit {
  background-color: #005eb8;
}

.nhsuk-header--white .nhsuk-search__submit .nhsuk-icon__search {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-search__submit:hover {
  background-color: #004b93;
  border-color: #004b93;
}

.nhsuk-header--white .nhsuk-search__submit:focus {
  background-color: #ffeb3b;
}

.nhsuk-header--white .nhsuk-search__submit:focus .nhsuk-icon__search {
  fill: #212b32;
}

.nhsuk-header--white .nhsuk-search__input {
  border: 1px solid #aeb7bd;
}

.nhsuk-header--white .nhsuk-search__input:focus {
  border: 2px solid #212b32;
}

@media (max-width: 40.0525em) {
  .nhsuk-header--white .nhsuk-search__input:focus {
    border: 4px solid #212b32;
  }
}
.nhsuk-header--white .nhsuk-header__search-toggle,
.nhsuk-header--white .nhsuk-header__menu-toggle {
  border-color: #005eb8;
  color: #005eb8;
}

.nhsuk-header--white .nhsuk-header__search-toggle .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle .nhsuk-icon {
  fill: #005eb8;
}

.nhsuk-header--white .nhsuk-header__search-toggle.is-active, .nhsuk-header--white .nhsuk-header__search-toggle:hover,
.nhsuk-header--white .nhsuk-header__menu-toggle.is-active,
.nhsuk-header--white .nhsuk-header__menu-toggle:hover {
  border-color: #004b93;
  color: #ffffff;
}

.nhsuk-header--white .nhsuk-header__search-toggle.is-active .nhsuk-icon, .nhsuk-header--white .nhsuk-header__search-toggle:hover .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle.is-active .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle:hover .nhsuk-icon {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-header__search-toggle:focus,
.nhsuk-header--white .nhsuk-header__menu-toggle:focus {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-header__search-toggle:focus .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

@media (max-width: 40.0525em) {
  .nhsuk-header--white .nhsuk-header__search-form {
    padding-top: 0;
  }
}
.nhsuk-header--white .nhsuk-organisation-name {
  color: #000; /* [9] */ /* stylelint-disable-line color-no-hex */
}

.nhsuk-header--white .nhsuk-organisation-descriptor {
  color: #005eb8;
}

.nhsuk-header--white .nhsuk-header__transactional-service-name--link {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-header__navigation-list {
  border-top: 0;
}

.nhsuk-header--white .nhsuk-header__service-name {
  color: #212b32;
}

.nhsuk-header--white-nav .nhsuk-header__navigation {
  background-color: #ffffff;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-list {
  border-top: 1px solid #f0f4f5;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link {
  color: #005eb8;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:visited {
  color: #005eb8;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:focus {
  color: #212b32;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:focus:hover {
  background: #ffeb3b;
}

/* ==========================================================================
   COMPONENTS / #HERO
   ========================================================================== */
/**
 *  Hero component shared styles.
 *
 * 1. Position relative to support the description
 *    appearing over the image.
 * 2. Adds a border between the header and hero, if required
 */
.nhsuk-hero {
  background-color: #005eb8;
  color: #ffffff;
  position: relative; /* [1] */
}

@media print {
  .nhsuk-hero {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-hero:active, .nhsuk-hero:focus, .nhsuk-hero:visited {
    color: #212b32;
  }
}
.nhsuk-hero .nhsuk-hero--border {
  /* [2] */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nhsuk-hero__wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-hero__wrapper {
    padding-top: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero__wrapper {
    padding-bottom: 56px;
  }
}
/**
 *  Hero component image styles
 *
 * 3. Center the background image.
 * 4. Stop the height affecting print stylesheets.
 * 5. Show more of the image for larger screen sizes
 * 6. Overlay must be min same height as .nhsuk-hero--image to cover the image.
 * 7. Darken the background image with an overlay.
 * 12. Remove any heights/min heights in Windows high contrast mode.
 */
.nhsuk-hero--image {
  background-position: center right; /* [3] */
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen {
  .nhsuk-hero--image {
    /* [4] */
    min-height: 200px;
  }
}
@media only screen and (min-width: 40.0625em) {
  .nhsuk-hero--image {
    /* [4] */
    min-height: 320px; /* [5] */
  }
  .nhsuk-hero--image .nhsuk-hero__overlay {
    height: 320px; /* [6] */
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image {
    min-height: 0; /* [12] */
  }
}
.nhsuk-hero--image .nhsuk-hero__overlay {
  background-color: rgba(0, 47, 92, 0.1); /* [7] */
}

@media only screen {
  .nhsuk-hero--image .nhsuk-hero__overlay {
    /* [4] */
    min-height: 200px; /* [6] */
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image .nhsuk-hero__overlay {
    height: auto; /* [12] */
    min-height: 0; /* [12] */
  }
}
/**
 *  Hero component description styles.
 *
 * 8. 'Random number' for the triangle.
 * 9. 'Random number' for the triangle positioning.
 * 10. Needed to enable the triangle to show correctly in high contrast mode.
 * 11. Give the description box a max width.
 * 13. Remove the arrow in Windows high contrast mode.
 * 14. Reduce spacing and change positioning for Windows high contrast mode.
 * 15. Prevent text breaking out of box on smaller sizes
 */
.nhsuk-hero--image-description .nhsuk-hero-content {
  background-color: #005eb8;
  color: #ffffff;
  margin-bottom: 24px;
  padding: 24px;
  position: relative;
  top: 70px;
}

.nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
  bottom: -10px; /* [8] */
  display: block;
  height: 20px; /* [8] */
  left: 32px; /* [9] */
  overflow: hidden;
  position: absolute;
  transform: rotate(45deg);
  width: 20px; /* [8] */
}

@media print {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    left: 46px; /* [9] */
  }
}
.nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow:before, .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow:after {
  border: solid 32px #005eb8; /* [8] */
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  transform: rotate(45deg); /* [10] */
  width: 0;
}

@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    display: none; /* [13] */
  }
}
@media (min-width: 23.4375em) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    /* [15] */
    width: 85%;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    bottom: -48px; /* [8] */
    margin-bottom: 0;
    max-width: 35em; /* [11] */
    padding: 32px 40px;
    position: absolute;
    top: auto;
  }
  .nhsuk-hero--image-description .nhsuk-hero-content > *:first-child {
    margin-top: 0;
  }
  .nhsuk-hero--image-description .nhsuk-hero-content > *:last-child {
    margin-bottom: 0;
  }
}
@media print {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    color: #212b32;
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    /* [14] */
    bottom: 0;
    margin-bottom: 0;
    min-height: 0;
    padding: 32px 0 0;
    position: relative;
    top: 0;
  }
}
/* ==========================================================================
   COMPONENTS/ #HINT
   ========================================================================== */
.nhsuk-hint {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #4c6272;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-hint {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-hint {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-label:not(.nhsuk-label--m):not(.nhsuk-label--l):not(.nhsuk-label--xl) + .nhsuk-hint {
  margin-bottom: 8px;
}

.nhsuk-fieldset__legend:not(.nhsuk-fieldset__legend--m):not(.nhsuk-fieldset__legend--l):not(.nhsuk-fieldset__legend--xl) + .nhsuk-hint {
  margin-bottom: 8px;
}

.nhsuk-fieldset__legend + .nhsuk-hint {
  margin-top: -4px;
}

/* ==========================================================================
   COMPONENTS / #IMAGES
   ========================================================================== */
/**
 * 1. Overrides default browser margin values.
 * 2. Makes the image width two thirds of its container for desktop.
 * 3. Avoid image printing full width of a page.
 * 4. Removes top margin from subsequent nhsuk-image.
 */
.nhsuk-image {
  background-color: #ffffff;
  border-bottom: 1px solid #d8dde0;
  margin-left: 0; /* [1] */
  margin-right: 0; /* [1] */
  margin-bottom: 32px;
  margin-top: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-image {
    margin-bottom: 40px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-image {
    margin-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-image {
    width: 66.66667%; /* [2] */
  }
}
@media print {
  .nhsuk-image {
    width: 50%; /* [3] */
  }
}
.nhsuk-image + .nhsuk-image {
  margin-top: 0;
  /* [4] */
}

@media (min-width: 40.0625em) {
  .nhsuk-image + .nhsuk-image {
    margin-top: 0;
  }
}
.nhsuk-image__img {
  display: block;
  width: 100%;
}

.nhsuk-image__caption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  padding: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-image__caption {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-image__caption {
    font-size: 14pt;
    line-height: 1.2;
  }
}
/* ==========================================================================
   COMPONENTS/ #INPUT
   ========================================================================== */
/**
 * 1. Disable inner shadow and remove rounded corners
 * 2. setting any background-color makes text invisible when changing colours to dark
 *    backgrounds in Firefox (https://bugzilla.mozilla.org/show_bug.cgi?id=1335476)
 *    as background-color and color need to always be set together, color should
 *    not be set either.
 */
.nhsuk-input {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  -moz-appearance: none; /* 1 */
  -webkit-appearance: none; /* 1 */
  appearance: none; /* 1 */
  border: 2px solid #4c6272; /* 2 */
  border-radius: 0;
  box-sizing: border-box;
  height: 40px;
  margin-top: 0;
  padding: 4px;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-input:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-input::-webkit-outer-spin-button,
.nhsuk-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nhsuk-input[type=number] {
  /* stylelint-disable-line string-quotes */
  -moz-appearance: textfield;
}

.nhsuk-input--error {
  border: 2px solid #d5281b;
}

.nhsuk-input--width-30 {
  max-width: 59ex;
}

.nhsuk-input--width-20 {
  max-width: 41ex;
}

.nhsuk-input--width-10 {
  max-width: 23ex;
}

.nhsuk-input--width-5 {
  max-width: 10.8ex;
}

.nhsuk-input--width-4 {
  max-width: 9ex;
}

.nhsuk-input--width-3 {
  max-width: 7.2ex;
}

.nhsuk-input--width-2 {
  max-width: 5.4ex;
}

/* ==========================================================================
   COMPONENTS / #INSET-TEXT
   ========================================================================== */
/**
 * 1. Removes top margin from first element and bottom margin from last,
 *    to ensure correct spacing within the component.
 * 2. Restricts the width of the text to optimise the line length for
 *    readability.
 */
.nhsuk-inset-text {
  /* [1] */
  max-width: 44em;
  /* [2] */
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 16px;
  border-left: 8px solid #005eb8;
}

.nhsuk-inset-text > *:first-child {
  margin-top: 0;
}

.nhsuk-inset-text > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    padding: 24px;
  }
}
@media print {
  .nhsuk-inset-text {
    border-color: #212b32;
  }
}
/* ==========================================================================
   COMPONENTS/ #LABEL
   ========================================================================== */
.nhsuk-label {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-label {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Modifiers that make labels look more like their equivalent headings */
.nhsuk-label--xl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  .nhsuk-label--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--xl {
    margin-bottom: 48px;
  }
}
.nhsuk-label--l {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-label--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--l {
    margin-bottom: 24px;
  }
}
.nhsuk-label--m {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-label--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--m {
    margin-bottom: 24px;
  }
}
.nhsuk-label--s {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-label--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--s {
    margin-bottom: 24px;
  }
}
.nhsuk-label-wrapper {
  margin: 0;
}

/* ==========================================================================
   COMPONENTS / #PAGINATION
   ========================================================================== */
/**
 * 1. Padding to give the icon spacing.
 * 2. Append the word 'page' after next and
 *    previous on print stylesheets to make it easier
 *    to understand in print context.
 */
.nhsuk-pagination {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-pagination {
    margin-bottom: 48px;
  }
}
.nhsuk-pagination__list:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-pagination-item--previous {
  float: left;
  text-align: left;
  width: 50%;
}

.nhsuk-pagination-item--previous .nhsuk-icon {
  left: -6px;
}

.nhsuk-pagination-item--previous .nhsuk-pagination__title {
  padding-left: 32px; /* [1] */
}

.nhsuk-pagination-item--next {
  float: right;
  text-align: right;
  width: 50%;
}

.nhsuk-pagination-item--next .nhsuk-icon {
  right: -6px;
}

.nhsuk-pagination-item--next .nhsuk-pagination__title {
  padding-right: 32px; /* [1] */
}

.nhsuk-pagination__link {
  display: block;
  position: relative;
  text-decoration: none;
  width: 100%;
}

@media print {
  .nhsuk-pagination__link {
    color: #212b32;
  }
}
.nhsuk-pagination__link .nhsuk-icon {
  position: absolute;
  top: -2px;
}

@media print {
  .nhsuk-pagination__link .nhsuk-icon {
    color: #212b32;
    margin-top: 0;
  }
}
.nhsuk-pagination__link:hover {
  color: #7c2855;
}

.nhsuk-pagination__link:hover .nhsuk-icon {
  fill: #7c2855;
}

.nhsuk-pagination__link:hover .nhsuk-pagination__page {
  text-decoration: none;
}

.nhsuk-pagination__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-pagination__link:focus .nhsuk-pagination__page {
  text-decoration: none;
}

.nhsuk-pagination__link:focus:visited .nhsuk-icon, .nhsuk-pagination__link:focus:hover .nhsuk-icon, .nhsuk-pagination__link:focus:active .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-pagination__link:visited .nhsuk-icon {
  fill: #330072;
}

.nhsuk-pagination__link:visited:hover .nhsuk-icon {
  fill: #7c2855;
}

.nhsuk-pagination__link:visited:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-pagination__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-pagination__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media print {
  .nhsuk-pagination__title:after {
    content: " page"; /* [2] */
  }
}
.nhsuk-pagination__page {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
  text-decoration: underline;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination__page {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-pagination__page {
    font-size: 14pt;
    line-height: 1.2;
  }
}
/* ==========================================================================
   COMPONENTS/ #CHECKBOXES
   ========================================================================== */
/**
 * 1. remove 300ms pause on mobile.
 * 2. Fix bug in IE11 caused by transform rotate (-45deg).
 */
.nhsuk-checkboxes__item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: left;
  display: block;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 0 0 0 40px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-checkboxes__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-checkboxes__item:last-child,
.nhsuk-checkboxes__item:last-of-type {
  margin-bottom: 0;
}

.nhsuk-checkboxes__input {
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 1;
}

.nhsuk-checkboxes__label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 12px 4px;
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation;
}

.nhsuk-checkboxes__hint {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}

.nhsuk-checkboxes__input + .nhsuk-checkboxes__label::before {
  background: #ffffff;
  border: 2px solid #4c6272;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.nhsuk-checkboxes__input + .nhsuk-checkboxes__label::after {
  background: transparent;
  border: solid;
  border-top-color: transparent;
  border-width: 0 0 4px 4px;
  content: "";
  height: 10px;
  left: 10px;
  opacity: 0; /* 2 */
  position: absolute;
  top: 13px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 22px;
}

/*
 * Focus state
 *
 * 1. Since box-shadows are removed when users customise their colours
 *    We set a transparent outline that is shown instead.
 *    https://accessibility.blog.gov.uk/2017/03/27/how-users-change-colours-on-websites/
 */
.nhsuk-checkboxes__input:focus + .nhsuk-checkboxes__label::before {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
}

/* Selected state */
.nhsuk-checkboxes__input:checked + .nhsuk-checkboxes__label::after {
  opacity: 1;
}

/* Disabled state */
.nhsuk-checkboxes__input:disabled,
.nhsuk-checkboxes__input:disabled + .nhsuk-checkboxes__label {
  cursor: default;
}

.nhsuk-checkboxes__input:disabled + .nhsuk-checkboxes__label {
  opacity: 0.5;
}

/* Divider variant */
.nhsuk-checkboxes__divider {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
  text-align: center;
  width: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-checkboxes__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/*
 * Conditional
 *
 * 1. Calculate the amount of padding needed to keep the border
 *    centered against the checkbox.
 * 2. Move the border centered with the checkbox.
 * 3. Move the contents of the conditional inline with the label.
 */
/* 1 */
/* 2 */
/* 3 */
.nhsuk-checkboxes__conditional {
  margin-bottom: 16px;
  border-left: 4px solid #4c6272;
  margin-left: 18px;
  padding-left: 30px;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__conditional {
    margin-bottom: 24px;
  }
}
.nhsuk-checkboxes__conditional > :last-child {
  margin-bottom: 0;
}

.js-enabled .nhsuk-checkboxes__conditional--hidden {
  display: none;
}

/* ==========================================================================
   COMPONENTS/ #RADIOS
   ========================================================================== */
/**
 * 1. remove 300ms pause on mobile.
 * 2. Fix bug in IE11 caused by transform rotate (-45deg).
 */
.nhsuk-radios__item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: left;
  display: block;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 0 0 0 40px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-radios__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-radios__item:last-child,
.nhsuk-radios__item:last-of-type {
  margin-bottom: 0;
}

.nhsuk-radios__input {
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 1;
}

.nhsuk-radios__label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 12px 4px;
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 1 */
}

.nhsuk-radios__hint {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}

.nhsuk-radios__input + .nhsuk-radios__label::before {
  background: #ffffff;
  border: 2px solid #4c6272;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.nhsuk-radios__input + .nhsuk-radios__label::after {
  background: #4c6272;
  border: 10px solid #212b32;
  border-radius: 50%;
  content: "";
  height: 0;
  left: 10px;
  opacity: 0;
  position: absolute;
  top: 10px;
  width: 0;
}

/**
 * Focus state
 *
 * 1. Since box-shadows are removed when users customise their colours
 *    We set a transparent outline that is shown instead.
 *    https://accessibility.blog.gov.uk/2017/03/27/how-users-change-colours-on-websites/
 */
.nhsuk-radios__input:focus + .nhsuk-radios__label::before {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
}

/* Selected state */
.nhsuk-radios__input:checked + .nhsuk-radios__label::after {
  opacity: 1;
}

/* Disabled state */
.nhsuk-radios__input:disabled,
.nhsuk-radios__input:disabled + .nhsuk-radios__label {
  cursor: default;
}

.nhsuk-radios__input:disabled + .nhsuk-radios__label {
  opacity: 0.5;
}

/*
 * Inline variant
 *
 * 1. Prevent inline modifier being used with conditional reveals
 */
@media (min-width: 40.0625em) {
  .nhsuk-radios--inline:after {
    clear: both;
    content: "";
    display: block;
  }
  .nhsuk-radios--inline .nhsuk-radios__item {
    clear: none;
    float: left;
    margin-right: 24px;
  }
}
.nhsuk-radios--inline.nhsuk-radios--conditional {
  /* 1 */
}

.nhsuk-radios--inline.nhsuk-radios--conditional .nhsuk-radios__item {
  float: none;
  margin-right: 0;
}

/* Divider variant */
.nhsuk-radios__divider {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
  text-align: center;
  width: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-radios__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Conditional */
.nhsuk-radios__conditional {
  margin-bottom: 16px;
  border-left: 4px solid #4c6272;
  margin-left: 18px;
  padding-left: 30px;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__conditional {
    margin-bottom: 24px;
  }
}
.nhsuk-radios__conditional > :last-child {
  margin-bottom: 0;
}

.js-enabled .nhsuk-radios__conditional--hidden {
  display: none;
}

/* ==========================================================================
   COMPONENTS/ #SELECT
   ========================================================================== */
.nhsuk-select {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border: 2px solid #4c6272;
  box-sizing: border-box;
  height: 40px;
  max-width: 100%;
  padding: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-select {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-select {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-select:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-select option:active,
.nhsuk-select option:checked,
.nhsuk-select:focus::-ms-value {
  background-color: #005eb8;
  color: #ffffff;
}

.nhsuk-select--error {
  border: 2px solid #d5281b;
}

/* ==========================================================================
   COMPONENTS / #SKIP-LINK
   ========================================================================== */
/**
 * 1. Hides the skip link off the page,
 * 2. until the link gains focus from keyboard tabbing.
 */
.nhsuk-skip-link {
  left: -9999px; /* [1] */
  padding: 8px;
  position: absolute;
}

.nhsuk-skip-link:active, .nhsuk-skip-link:focus {
  left: 16px; /* [2] */
  top: 16px;
  z-index: 2;
}

.nhsuk-skip-link:visited {
  color: #212b32;
}

/* ==========================================================================
   COMPONENTS/ #SUMMARY-LIST
   ========================================================================== */
/**
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. Required to allow us to wrap words that overflow.
 * 2. Reset default user agent styles
 * 3. Automatic wrapping for unbreakable text (e.g. URLs)
 * 4. Fallback for older browsers only
 */
.nhsuk-summary-list {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0; /* [2] */
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-summary-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    display: table;
    table-layout: fixed; /* [1] */
    width: 100%;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    margin-bottom: 40px;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-summary-list__row {
    border-bottom: 1px solid #d8dde0;
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list__row {
    display: table-row;
  }
}
.nhsuk-summary-list__key,
.nhsuk-summary-list__value,
.nhsuk-summary-list__actions {
  margin: 0; /* [2] */
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__key,
  .nhsuk-summary-list__value,
  .nhsuk-summary-list__actions {
    border-bottom: 1px solid #d8dde0;
    display: table-cell;
    padding-bottom: 8px;
    padding-right: 24px;
    padding-top: 8px;
  }
}
.nhsuk-summary-list__actions {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__actions {
    padding-right: 0;
    text-align: right;
    width: 20%;
  }
}
.nhsuk-summary-list__key,
.nhsuk-summary-list__value {
  /* [3] */
  overflow-wrap: break-word;
  word-wrap: break-word; /* [4] */
}

.nhsuk-summary-list__key {
  font-weight: 600;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__key {
    width: 30%;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-summary-list__value {
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list__value {
    width: 50%;
  }
}
.nhsuk-summary-list__value > p {
  margin-bottom: 8px;
}

.nhsuk-summary-list__value > :last-child {
  margin-bottom: 0;
}

.nhsuk-summary-list__actions-list {
  margin: 0; /* [2] */
  padding: 0; /* [2] */
  width: 100%;
}

.nhsuk-summary-list__actions-list-item {
  display: inline;
  margin-right: 8px;
  padding-right: 8px;
}

.nhsuk-summary-list__actions-list-item:not(:last-child) {
  border-right: 1px solid #d8dde0;
}

.nhsuk-summary-list__actions-list-item:last-child {
  border: 0;
  margin-right: 0;
  padding-right: 0;
}

.nhsuk-summary-list--no-border .nhsuk-summary-list__key,
.nhsuk-summary-list--no-border .nhsuk-summary-list__value,
.nhsuk-summary-list--no-border .nhsuk-summary-list__actions,
.nhsuk-summary-list--no-border .nhsuk-summary-list__row {
  border: 0;
}

/* ==========================================================================
   COMPONENTS / #TABLE
   ========================================================================== */
/**
 * Table container is used to ensure the table does not break the container.
 *
 * 1. Margin is removed so there isn't double spacing.
 */
.nhsuk-table-container {
  margin-bottom: 40px;
  display: block;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: auto;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-table-container {
    margin-bottom: 48px;
  }
}
.nhsuk-table-container .nhsuk-table {
  margin: 0; /* [1] */
}

/* Table row hover
========================================================================== */
/**
 * Table row hover is used to aid readability for users.
 */
.nhsuk-table__row:hover {
  background-color: #f0f4f5;
}

/* Table panel with tab heading
========================================================================== */
/**
 * 1. Margin is removed so there isn't double spacing.
 */
.nhsuk-table__panel-with-heading-tab {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #ffffff;
  color: #212b32;
  border: 1px solid #d8dde0;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
}

.nhsuk-table__panel-with-heading-tab > *:first-child {
  margin-top: 0;
}

.nhsuk-table__panel-with-heading-tab > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    padding: 32px;
  }
}
@media print {
  .nhsuk-table__panel-with-heading-tab {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-table__panel-with-heading-tab .nhsuk-table-container,
.nhsuk-table__panel-with-heading-tab .nhsuk-table {
  margin: 0; /* [1] */
}

.nhsuk-table__heading-tab {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #005eb8;
  color: #ffffff;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-table__heading-tab {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-table__heading-tab {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-table__heading-tab {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-table__heading-tab {
    background: none;
    color: #212b32;
    top: 0;
  }
}
/* Responsive table
========================================================================== */
/**
 * 1. Hiding the thead on mobile
 * 2. Displaying the thead on desktop
 * 3. Removing default screen reader behaviour
 * 4. Assigning role of table-row on desktop to give default screen reader behaviour
 * 5. Using justify content to space out elements in the row on mobile
 * 6. Assigning a minimum width in case of black cell
 * 7. Aligning content to the right on mobile
 * 8. Aligning mobile header to left to split it from the data
 * 9. Hiding mobile specific header from desktop view
 * 10. Adding a display block value due to IE 11 not having full flex support
 */
.nhsuk-table-responsive {
  margin-bottom: 0;
  width: 100%;
}

.nhsuk-table-responsive thead {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* [1] */
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive thead {
    clip: auto;
    -webkit-clip-path: initial;
    clip-path: initial;
    display: table-header-group;
    height: auto;
    overflow: auto;
    position: relative;
    width: auto;
    /* [2] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
  font-weight: 600;
  padding-right: 16px;
  text-align: left; /* [8] */
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
    display: none; /* [9] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
  display: block; /* [3] */
  margin-bottom: 24px;
}

.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row:last-child {
  margin-bottom: 0;
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
    display: table-row; /* [4] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
  text-align: right;
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
    text-align: left;
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
  display: block;
  display: flex;
  justify-content: space-between; /* [5] */
  min-width: 1px; /* [6] */
}

@media all and (-ms-high-contrast: none) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    /* [10] */
    display: block;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    display: table-cell;
  }
}
@media (max-width: 48.0525em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    padding-right: 0;
    text-align: right; /* [7] */
  }
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td:last-child {
    border-bottom: 3px solid #d8dde0;
  }
}
/* Numeric tables
========================================================================== */
/**
 * Right aligns table cells for numeric tables.
 */
.nhsuk-table__header--numeric,
.nhsuk-table__cell--numeric {
  text-align: right;
}

/* ==========================================================================
   #TAG
   ========================================================================== */
.nhsuk-tag {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  background-color: #0055a6;
  border: 1px solid #0055a6;
  color: #ffffff;
  display: inline-block;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-tag {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}
@media print {
  .nhsuk-tag {
    font-size: 14pt;
    line-height: 1;
  }
}
/* Colour variants
  ========================================================================== */
.nhsuk-tag--white {
  background-color: #ffffff;
  border-color: #212b32;
  color: #212b32;
}

.nhsuk-tag--grey {
  background-color: #dbe0e3;
  border-color: #354550;
  color: #354550;
}

.nhsuk-tag--green {
  background-color: #cce5d8;
  border-color: #004c23;
  color: #004c23;
}

.nhsuk-tag--aqua-green {
  background-color: #ccedeb;
  border-color: #00524d;
  color: #00524d;
}

.nhsuk-tag--blue {
  background-color: #ccdff1;
  border-color: #004281;
  color: #004281;
}

.nhsuk-tag--purple {
  background-color: #d6cce3;
  border-color: #240050;
  color: #240050;
}

.nhsuk-tag--pink {
  background-color: #efd3e3;
  border-color: #57133a;
  color: #57133a;
}

.nhsuk-tag--red {
  background-color: #f7d4d1;
  border-color: #6b140e;
  color: #6b140e;
}

.nhsuk-tag--orange {
  background-color: #ffdc8e;
  border-color: #4d3708;
  color: #4d3708;
}

.nhsuk-tag--yellow {
  background-color: #fff59d;
  border-color: #4d4712;
  color: #4d4712;
}

/* Remove tag border
  ========================================================================== */
.nhsuk-tag--no-border {
  border: 0;
}

/* ==========================================================================
   COMPONENTS/ #TEXTAREA
   ========================================================================== */
.nhsuk-textarea {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-appearance: none;
  border: 2px solid #4c6272;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  min-height: 40px;
  padding: 4px;
  resize: vertical;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-textarea {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-textarea {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-textarea:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-textarea--error {
  border: 2px solid #d5281b;
}

/* ==========================================================================
   COMPONENTS / #WARNING-CALLOUT
   ========================================================================== */
/**
 * 1. Uses @mixin panel-with-label from tools/_mixins.
 * 2. Uses @mixin heading-label from tools/_mixins.
 */
.nhsuk-warning-callout {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #fff9c4;
  color: #212b32;
  border: 1px solid #ffeb3b;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
  /* [1] */
}

.nhsuk-warning-callout > *:first-child {
  margin-top: 0;
}

.nhsuk-warning-callout > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    padding: 32px;
  }
}
@media print {
  .nhsuk-warning-callout {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-warning-callout__label {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #ffeb3b;
  color: #212b32;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
  /* [2] */
}

@media (min-width: 40.0625em) {
  .nhsuk-warning-callout__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-warning-callout__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-warning-callout__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-warning-callout__label {
    background: none;
    color: #212b32;
    top: 0;
  }
}
.nhsuk-character-count {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-character-count {
    margin-bottom: 40px;
  }
}
.nhsuk-character-count .nhsuk-form-group,
.nhsuk-character-count .nhsuk-textarea {
  margin-bottom: 4px;
}

.nhsuk-character-count__message {
  margin-bottom: 0;
  margin-top: 0;
}

.nhsuk-character-count__message--disabled {
  visibility: hidden;
}

.nhsuk-tabs {
  margin-top: 4px;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs {
    margin-top: 4px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-tabs {
    margin-bottom: 40px;
  }
}
.nhsuk-tabs__title {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-tabs__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__list {
    margin-bottom: 40px;
  }
}
.nhsuk-tabs__list-item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__list-item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-tabs__list-item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-tabs__list-item:before {
  color: #212b32;
  content: "—";
  margin-left: -32px;
  padding-right: 4px;
}

.nhsuk-tabs__tab {
  color: #005eb8;
  display: inline-block;
  margin-bottom: 8px;
}

.nhsuk-tabs__tab:visited {
  color: #330072;
}

.nhsuk-tabs__tab:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-tabs__tab:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-tabs__tab:focus:hover {
  text-decoration: none;
}

.nhsuk-tabs__tab:focus:visited {
  color: #212b32;
}

.nhsuk-tabs__tab:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-tabs__tab:active {
  color: #002f5c;
}

.nhsuk-tabs__panel {
  margin-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__panel {
    margin-bottom: 56px;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__list {
    border-bottom: 1px solid #d8dde0;
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__list:after {
    clear: both;
    content: "";
    display: block;
  }
  .js-enabled .nhsuk-tabs__title {
    display: none;
  }
  .js-enabled .nhsuk-tabs__list-item {
    background-color: #d8dde0;
    float: left;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 4px;
    padding: 8px 24px;
    position: relative;
    text-align: center;
  }
  .js-enabled .nhsuk-tabs__list-item:before {
    content: none;
  }
  .js-enabled .nhsuk-tabs__list-item--selected {
    background-color: #ffffff;
    border: 1px solid #d8dde0;
    border-bottom: 0;
    margin-bottom: -1px;
    margin-top: -4px;
    padding-bottom: 13px;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 11px;
    position: relative;
  }
  .js-enabled .nhsuk-tabs__list-item--selected .nhsuk-tabs__tab {
    text-decoration: none;
  }
  .js-enabled .nhsuk-tabs__tab {
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__tab:link, .js-enabled .nhsuk-tabs__tab:visited {
    color: #212b32;
  }
  .js-enabled .nhsuk-tabs__tab:hover {
    color: rgba(33, 43, 50, 0.99);
  }
  .js-enabled .nhsuk-tabs__tab:active, .js-enabled .nhsuk-tabs__tab:focus {
    color: #212b32;
  }
  .js-enabled .nhsuk-tabs__tab:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .js-enabled .nhsuk-tabs__panel {
    margin-bottom: 0;
    background-color: #ffffff;
    border: 1px solid #d8dde0;
    border-top: 0;
    padding: 40px 24px;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__panel {
    margin-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__panel > :last-child {
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__panel--hidden {
    display: none;
  }
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote,
body,
caption,
dd,
dl,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
legend,
ol,
p,
pre,
table,
td,
th,
ul {
  margin: 0;
  padding: 0;
}

body,
button,
html,
input,
table,
td,
th {
  font-family: Frutiger W01, Arial, sans-serif;
}

html {
  background-color: #d8dde0;
  color: #231f20;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f0f4f5;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

[hidden] {
  display: none;
}

.util-visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.util-nofocus:focus {
  outline: none;
}

.util-bg-tint__yellow {
  background-color: #fdf2d5;
}

@media screen {
  .util-print-only {
    display: none;
  }
}
@media print {
  .util-print-hide {
    display: none;
  }
}
.util-digits {
  letter-spacing: -0.14em;
  padding-right: 0.14em;
}

.app-u-wrap {
  word-wrap: break-word;
}

.app-u-js-only {
  display: none !important;
}

.js-enabled .app-u-js-only {
  display: revert !important;
}

.js-enabled .app-u-js-disabled {
  display: none;
}

.app-u-reading-width-16 {
  max-width: 40em;
}

[class*=nhsuk-] * + * {
  margin-top: 0 !important;
}

[class*=nhsuk-] html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=nhsuk-] *,
[class*=nhsuk-] :after,
[class*=nhsuk-] :before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

[class*=nhsuk-] button,
[class*=nhsuk-] input,
[class*=nhsuk-] select,
[class*=nhsuk-] textarea {
  font-family: inherit;
}

[class*=nhsuk-] a {
  color: #005eb8;
}

[class*=nhsuk-] a:visited {
  color: #330072;
}

[class*=nhsuk-] a:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] a:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] a:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] a:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] a:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] a:active {
  color: #002f5c;
}

@media print {
  [class*=nhsuk-] a:after {
    color: #212b32;
    content: " (Link: " attr(href) ")";
    font-size: 14pt;
  }
}
[class*=nhsuk-] .nhsuk-link--no-visited-state:link,
[class*=nhsuk-] .nhsuk-link--no-visited-state:visited {
  color: #005eb8;
}

[class*=nhsuk-] .nhsuk-link--no-visited-state:hover {
  color: #7c2855;
}

[class*=nhsuk-] .nhsuk-link--no-visited-state:active {
  color: #002f5c;
}

[class*=nhsuk-] .nhsuk-link--no-visited-state:focus {
  color: #212b32;
}

[class*=nhsuk-] html {
  background-color: #d8dde0;
  font-family: Frutiger W01, Arial, Sans-serif;
  overflow-y: scroll;
}

@font-face {
  font-display: swap;
  font-family: Frutiger W01;
  font-style: normal;
  font-weight: 400;
  src: url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix);
  src: url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix) format("eot"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2) format("woff2"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff) format("woff"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf) format("truetype"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115) format("svg");
}
@font-face {
  font-display: swap;
  font-family: Frutiger W01;
  font-style: normal;
  font-weight: 600;
  src: url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix);
  src: url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix) format("eot"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2) format("woff2"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff) format("woff"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf) format("truetype"), url(https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca) format("svg");
}
[class*=nhsuk-] body {
  background-color: #f0f4f5;
  color: #212b32;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  margin: 0;
  min-height: 100%;
}

[class*=nhsuk-] table {
  border-spacing: 0;
  margin-bottom: 40px;
  vertical-align: top;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] table {
    margin-bottom: 48px;
  }
}
@media print {
  [class*=nhsuk-] table {
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] thead th {
  border-bottom: 2px solid #d8dde0;
}

[class*=nhsuk-] td,
[class*=nhsuk-] th {
  border-bottom: 1px solid #d8dde0;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-top: 8px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] td,
  [class*=nhsuk-] th {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] td,
  [class*=nhsuk-] th {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] td,
  [class*=nhsuk-] th {
    padding-bottom: 16px;
    padding-right: 24px;
    padding-top: 16px;
  }
}
[class*=nhsuk-] td:last-child,
[class*=nhsuk-] th:last-child {
  padding-right: 0;
}

[class*=nhsuk-] th {
  font-weight: 600;
}

[class*=nhsuk-] caption {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.55556;
  text-align: left;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] caption {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  [class*=nhsuk-] caption {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-form-group {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-form-group {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-form-group .nhsuk-form-group:last-of-type {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-form-group--wrapper {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-form-group--wrapper {
    margin-bottom: 32px;
  }
}
[class*=nhsuk-] .nhsuk-form-group--error {
  border-left: 4px solid #d5281b;
  padding-left: 16px;
}

[class*=nhsuk-] .nhsuk-form-group--error .nhsuk-form-group {
  border: 0;
  padding: 0;
}

[class*=nhsuk-] .nhsuk-grid-row {
  margin-left: -16px;
  margin-right: -16px;
}

[class*=nhsuk-] .nhsuk-grid-row:after {
  clear: both;
  content: "";
  display: block;
}

[class*=nhsuk-] .nhsuk-grid-column-one-quarter {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-one-quarter {
    float: left;
    width: 25%;
  }
}
[class*=nhsuk-] .nhsuk-grid-column-one-third {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-one-third {
    float: left;
    width: 33.3333%;
  }
}
[class*=nhsuk-] .nhsuk-grid-column-one-half {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-one-half {
    float: left;
    width: 50%;
  }
}
[class*=nhsuk-] .nhsuk-grid-column-two-thirds {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-two-thirds {
    float: left;
    width: 66.6666%;
  }
}
[class*=nhsuk-] .nhsuk-grid-column-three-quarters {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-three-quarters {
    float: left;
    width: 75%;
  }
}
[class*=nhsuk-] .nhsuk-grid-column-full {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-grid-column-full {
    float: left;
    width: 100%;
  }
}
[class*=nhsuk-] .nhsuk-main-wrapper {
  display: block;
  padding-bottom: 40px;
  padding-top: 40px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-main-wrapper {
    padding-bottom: 48px;
    padding-top: 48px;
  }
}
[class*=nhsuk-] .nhsuk-main-wrapper > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-main-wrapper > :last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-main-wrapper--l {
  padding-top: 48px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-main-wrapper--l {
    padding-top: 56px;
  }
}
[class*=nhsuk-] .nhsuk-main-wrapper--s {
  padding-bottom: 24px;
  padding-top: 24px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-main-wrapper--s {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
[class*=nhsuk-] .nhsuk-width-container {
  margin: 0 16px;
  max-width: 960px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-width-container {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  [class*=nhsuk-] .nhsuk-width-container {
    margin: 0 auto;
  }
}
[class*=nhsuk-] .nhsuk-width-container-fluid {
  margin: 0 16px;
  max-width: 100%;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-width-container-fluid {
    margin: 0 32px;
  }
}
[class*=nhsuk-] .nhsuk-list,
[class*=nhsuk-] ol,
[class*=nhsuk-] ul {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  list-style-type: none;
  margin-bottom: 16px;
  margin-top: 0;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-list,
  [class*=nhsuk-] ol,
  [class*=nhsuk-] ul {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-list,
  [class*=nhsuk-] ol,
  [class*=nhsuk-] ul {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-list,
  [class*=nhsuk-] ol,
  [class*=nhsuk-] ul {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-list > li,
[class*=nhsuk-] ol > li,
[class*=nhsuk-] ul > li {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-list > li,
  [class*=nhsuk-] ol > li,
  [class*=nhsuk-] ul > li {
    margin-bottom: 8px;
  }
}
[class*=nhsuk-] .nhsuk-list > li:last-child,
[class*=nhsuk-] ol > li:last-child,
[class*=nhsuk-] ul > li:last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-list--bullet,
[class*=nhsuk-] ul {
  list-style-type: disc;
  padding-left: 20px;
}

[class*=nhsuk-] .nhsuk-list--number,
[class*=nhsuk-] ol {
  list-style-type: decimal;
  padding-left: 20px;
}

[class*=nhsuk-] .nhsuk-list--cross,
[class*=nhsuk-] .nhsuk-list--tick {
  list-style: none;
  margin-top: 0;
  padding-left: 40px;
  position: relative;
}

[class*=nhsuk-] .nhsuk-list--cross svg,
[class*=nhsuk-] .nhsuk-list--tick svg {
  left: -4px;
  margin-top: -5px;
  position: absolute;
}

[class*=nhsuk-] .nhsuk-section-break,
[class*=nhsuk-] hr {
  border: 0;
  margin: 0;
}

[class*=nhsuk-] .nhsuk-section-break--xl {
  margin-bottom: 48px;
  margin-top: 48px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-section-break--xl {
    margin-bottom: 56px;
    margin-top: 56px;
  }
}
[class*=nhsuk-] .nhsuk-section-break--l,
[class*=nhsuk-] hr {
  margin-bottom: 32px;
  margin-top: 32px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-section-break--l,
  [class*=nhsuk-] hr {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
[class*=nhsuk-] .nhsuk-section-break--m {
  margin-bottom: 16px;
  margin-top: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-section-break--m {
    margin-bottom: 24px;
    margin-top: 24px;
  }
}
[class*=nhsuk-] .nhsuk-section-break--visible,
[class*=nhsuk-] hr {
  border-bottom: 1px solid #d8dde0;
}

[class*=nhsuk-] .nhsuk-heading-xl,
[class*=nhsuk-] h1 {
  display: block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 40px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xl,
  [class*=nhsuk-] h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-xl,
  [class*=nhsuk-] h1 {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xl,
  [class*=nhsuk-] h1 {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .nhsuk-heading-l,
[class*=nhsuk-] h2 {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-l,
  [class*=nhsuk-] h2 {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-l,
  [class*=nhsuk-] h2 {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-l,
  [class*=nhsuk-] h2 {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-heading-m,
[class*=nhsuk-] h3 {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-m,
  [class*=nhsuk-] h3 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-m,
  [class*=nhsuk-] h3 {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-m,
  [class*=nhsuk-] h3 {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-heading-s,
[class*=nhsuk-] h4 {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.55556;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-s,
  [class*=nhsuk-] h4 {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-s,
  [class*=nhsuk-] h4 {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-s,
  [class*=nhsuk-] h4 {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-heading-xs,
[class*=nhsuk-] h5 {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xs,
  [class*=nhsuk-] h5 {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-xs,
  [class*=nhsuk-] h5 {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xs,
  [class*=nhsuk-] h5 {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-heading-xxs,
[class*=nhsuk-] h6 {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xxs,
  [class*=nhsuk-] h6 {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-heading-xxs,
  [class*=nhsuk-] h6 {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-heading-xxs,
  [class*=nhsuk-] h6 {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-caption-xl {
  color: #4c6272;
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.33333;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-caption-xl {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-caption-xl {
    font-size: 24pt;
    line-height: 1.05;
  }
}
[class*=nhsuk-] .nhsuk-caption-l {
  color: #4c6272;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-caption-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-caption-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-caption-m {
  color: #4c6272;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-caption-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-caption-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-caption--bottom {
  margin-bottom: 0;
  margin-top: 4px;
}

[class*=nhsuk-] .nhsuk-body-l {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 24px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-body-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-l {
    margin-bottom: 32px;
  }
}
[class*=nhsuk-] .nhsuk-body-m,
[class*=nhsuk-] address,
[class*=nhsuk-] p {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-m,
  [class*=nhsuk-] address,
  [class*=nhsuk-] p {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-body-m,
  [class*=nhsuk-] address,
  [class*=nhsuk-] p {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-m,
  [class*=nhsuk-] address,
  [class*=nhsuk-] p {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-body-m,
[class*=nhsuk-] p {
  color: inherit;
}

[class*=nhsuk-] .nhsuk-body-s {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-s {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-body-s {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-s {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] address {
  font-style: normal;
}

[class*=nhsuk-] .nhsuk-lede-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-lede-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-lede-text {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-lede-text {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .nhsuk-lede-text p,
[class*=nhsuk-] .nhsuk-lede-text ul {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-lede-text p,
  [class*=nhsuk-] .nhsuk-lede-text ul {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-lede-text p,
  [class*=nhsuk-] .nhsuk-lede-text ul {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-lede-text--small {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-lede-text--small {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-lede-text--small {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-lede-text--small {
    margin-bottom: 32px;
  }
}
[class*=nhsuk-] h1 + .nhsuk-lede-text,
[class*=nhsuk-] h1 + .nhsuk-lede-text--small {
  margin-top: -8px;
}

[class*=nhsuk-] .nhsuk-body-l + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-body-l + h2 {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-l + .nhsuk-heading-l,
  [class*=nhsuk-] .nhsuk-body-l + h2 {
    padding-top: 8px;
  }
}
[class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-body-m + h2,
[class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-body-s + h2,
[class*=nhsuk-] .nhsuk-list + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-list + h2,
[class*=nhsuk-] address + .nhsuk-heading-l,
[class*=nhsuk-] address + h2,
[class*=nhsuk-] ol + .nhsuk-heading-l,
[class*=nhsuk-] ol + h2,
[class*=nhsuk-] p + .nhsuk-heading-l,
[class*=nhsuk-] p + h2,
[class*=nhsuk-] ul + .nhsuk-heading-l,
[class*=nhsuk-] ul + h2 {
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-l,
  [class*=nhsuk-] .nhsuk-body-m + h2,
  [class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-l,
  [class*=nhsuk-] .nhsuk-body-s + h2,
  [class*=nhsuk-] .nhsuk-list + .nhsuk-heading-l,
  [class*=nhsuk-] .nhsuk-list + h2,
  [class*=nhsuk-] address + .nhsuk-heading-l,
  [class*=nhsuk-] address + h2,
  [class*=nhsuk-] ol + .nhsuk-heading-l,
  [class*=nhsuk-] ol + h2,
  [class*=nhsuk-] p + .nhsuk-heading-l,
  [class*=nhsuk-] p + h2,
  [class*=nhsuk-] ul + .nhsuk-heading-l,
  [class*=nhsuk-] ul + h2 {
    padding-top: 24px;
  }
}
[class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-m,
[class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-s,
[class*=nhsuk-] .nhsuk-body-m + h3,
[class*=nhsuk-] .nhsuk-body-m + h4,
[class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-m,
[class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-s,
[class*=nhsuk-] .nhsuk-body-s + h3,
[class*=nhsuk-] .nhsuk-body-s + h4,
[class*=nhsuk-] .nhsuk-list + .nhsuk-heading-m,
[class*=nhsuk-] .nhsuk-list + .nhsuk-heading-s,
[class*=nhsuk-] .nhsuk-list + h3,
[class*=nhsuk-] .nhsuk-list + h4,
[class*=nhsuk-] address + .nhsuk-heading-m,
[class*=nhsuk-] address + .nhsuk-heading-s,
[class*=nhsuk-] address + h3,
[class*=nhsuk-] address + h4,
[class*=nhsuk-] ol + .nhsuk-heading-m,
[class*=nhsuk-] ol + .nhsuk-heading-s,
[class*=nhsuk-] ol + h3,
[class*=nhsuk-] ol + h4,
[class*=nhsuk-] p + .nhsuk-heading-m,
[class*=nhsuk-] p + .nhsuk-heading-s,
[class*=nhsuk-] p + h3,
[class*=nhsuk-] p + h4,
[class*=nhsuk-] ul + .nhsuk-heading-m,
[class*=nhsuk-] ul + .nhsuk-heading-s,
[class*=nhsuk-] ul + h3,
[class*=nhsuk-] ul + h4 {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-m,
  [class*=nhsuk-] .nhsuk-body-m + .nhsuk-heading-s,
  [class*=nhsuk-] .nhsuk-body-m + h3,
  [class*=nhsuk-] .nhsuk-body-m + h4,
  [class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-m,
  [class*=nhsuk-] .nhsuk-body-s + .nhsuk-heading-s,
  [class*=nhsuk-] .nhsuk-body-s + h3,
  [class*=nhsuk-] .nhsuk-body-s + h4,
  [class*=nhsuk-] .nhsuk-list + .nhsuk-heading-m,
  [class*=nhsuk-] .nhsuk-list + .nhsuk-heading-s,
  [class*=nhsuk-] .nhsuk-list + h3,
  [class*=nhsuk-] .nhsuk-list + h4,
  [class*=nhsuk-] address + .nhsuk-heading-m,
  [class*=nhsuk-] address + .nhsuk-heading-s,
  [class*=nhsuk-] address + h3,
  [class*=nhsuk-] address + h4,
  [class*=nhsuk-] ol + .nhsuk-heading-m,
  [class*=nhsuk-] ol + .nhsuk-heading-s,
  [class*=nhsuk-] ol + h3,
  [class*=nhsuk-] ol + h4,
  [class*=nhsuk-] p + .nhsuk-heading-m,
  [class*=nhsuk-] p + .nhsuk-heading-s,
  [class*=nhsuk-] p + h3,
  [class*=nhsuk-] p + h4,
  [class*=nhsuk-] ul + .nhsuk-heading-m,
  [class*=nhsuk-] ul + .nhsuk-heading-s,
  [class*=nhsuk-] ul + h3,
  [class*=nhsuk-] ul + h4 {
    padding-top: 8px;
  }
}
[class*=nhsuk-] .nhsuk-lede-text + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-lede-text + h2 {
  padding-top: 0;
}

[class*=nhsuk-] b,
[class*=nhsuk-] strong {
  font-weight: 600;
}

[class*=nhsuk-] .nhsuk-u-clear:after {
  clear: both;
  content: "";
  display: block;
}

[class*=nhsuk-] .nhsuk-u-display-block {
  display: block !important;
}

[class*=nhsuk-] .nhsuk-u-display-inline-block {
  display: inline-block !important;
}

[class*=nhsuk-] .nhsuk-u-float-left {
  float: left !important;
}

[class*=nhsuk-] .nhsuk-u-float-right {
  float: right !important;
}

[class*=nhsuk-] .nhsuk-u-one-half {
  float: left;
  width: 50% !important;
}

[class*=nhsuk-] .nhsuk-u-one-third {
  float: left;
  width: 33.3333333333% !important;
}

[class*=nhsuk-] .nhsuk-u-two-thirds {
  float: left;
  width: 66.6666666667% !important;
}

[class*=nhsuk-] .nhsuk-u-one-quarter {
  float: left;
  width: 25% !important;
}

[class*=nhsuk-] .nhsuk-u-three-quarters {
  float: left;
  width: 75% !important;
}

[class*=nhsuk-] .nhsuk-u-one-half-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-one-half-tablet {
    float: left;
    width: 50% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-one-third-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-one-third-tablet {
    float: left;
    width: 33.3333333333% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-two-thirds-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-two-thirds-tablet {
    float: left;
    width: 66.6666666667% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-one-quarter-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-one-quarter-tablet {
    float: left;
    width: 25% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-three-quarters-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-three-quarters-tablet {
    float: left;
    width: 75% !important;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-u-nowrap {
    white-space: nowrap;
  }
}
[class*=nhsuk-] .nhsuk-list--border li {
  border-bottom: 1px solid #d8dde0;
  padding: 8px 0 16px;
}

[class*=nhsuk-] .nhsuk-u-reading-width {
  max-width: 44em;
}

[class*=nhsuk-] .nhsuk-u-margin-0 {
  margin: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-0 {
    margin: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-0 {
  margin-top: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-0 {
    margin-top: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-0 {
  margin-right: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-0 {
    margin-right: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-0 {
  margin-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-0 {
    margin-bottom: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-0 {
  margin-left: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-0 {
    margin-left: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-1 {
  margin: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-1 {
    margin: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-1 {
  margin-top: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-1 {
    margin-top: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-1 {
  margin-right: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-1 {
    margin-right: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-1 {
  margin-bottom: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-1 {
    margin-bottom: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-1 {
  margin-left: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-1 {
    margin-left: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-2 {
  margin: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-2 {
    margin: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-2 {
  margin-top: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-2 {
    margin-top: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-2 {
  margin-right: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-2 {
    margin-right: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-2 {
  margin-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-2 {
    margin-bottom: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-2 {
  margin-left: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-2 {
    margin-left: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-3 {
  margin: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-3 {
    margin: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-3 {
  margin-top: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-3 {
    margin-top: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-3 {
  margin-right: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-3 {
    margin-right: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-3 {
  margin-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-3 {
    margin-bottom: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-3 {
  margin-left: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-3 {
    margin-left: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-4 {
  margin: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-4 {
    margin: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-4 {
  margin-top: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-4 {
    margin-top: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-4 {
  margin-right: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-4 {
    margin-right: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-4 {
  margin-bottom: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-4 {
    margin-bottom: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-4 {
  margin-left: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-4 {
    margin-left: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-5 {
  margin: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-5 {
    margin: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-5 {
  margin-top: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-5 {
    margin-top: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-5 {
  margin-right: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-5 {
    margin-right: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-5 {
  margin-bottom: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-5 {
    margin-bottom: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-5 {
  margin-left: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-5 {
    margin-left: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-6 {
  margin: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-6 {
    margin: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-6 {
  margin-top: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-6 {
    margin-top: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-6 {
  margin-right: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-6 {
    margin-right: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-6 {
  margin-bottom: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-6 {
    margin-bottom: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-6 {
  margin-left: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-6 {
    margin-left: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-7 {
  margin: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-7 {
    margin: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-7 {
  margin-top: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-7 {
    margin-top: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-7 {
  margin-right: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-7 {
    margin-right: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-7 {
  margin-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-7 {
    margin-bottom: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-7 {
  margin-left: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-7 {
    margin-left: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-8 {
  margin: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-8 {
    margin: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-8 {
  margin-top: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-8 {
    margin-top: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-8 {
  margin-right: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-8 {
    margin-right: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-8 {
  margin-bottom: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-8 {
    margin-bottom: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-8 {
  margin-left: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-8 {
    margin-left: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-9 {
  margin: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-9 {
    margin: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-top-9 {
  margin-top: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-top-9 {
    margin-top: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-right-9 {
  margin-right: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-right-9 {
    margin-right: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-bottom-9 {
  margin-bottom: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-bottom-9 {
    margin-bottom: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-margin-left-9 {
  margin-left: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-margin-left-9 {
    margin-left: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-0 {
  padding: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-0 {
    padding: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-0 {
  padding-top: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-0 {
    padding-top: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-0 {
  padding-right: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-0 {
    padding-right: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-0 {
    padding-bottom: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-0 {
  padding-left: 0 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-0 {
    padding-left: 0 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-1 {
  padding: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-1 {
    padding: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-1 {
  padding-top: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-1 {
    padding-top: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-1 {
  padding-right: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-1 {
    padding-right: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-1 {
  padding-bottom: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-1 {
    padding-bottom: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-1 {
  padding-left: 4px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-1 {
    padding-left: 4px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-2 {
  padding: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-2 {
    padding: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-2 {
  padding-top: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-2 {
    padding-top: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-2 {
  padding-right: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-2 {
    padding-right: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-2 {
  padding-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-2 {
    padding-bottom: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-2 {
  padding-left: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-2 {
    padding-left: 8px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-3 {
  padding: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-3 {
    padding: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-3 {
  padding-top: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-3 {
    padding-top: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-3 {
  padding-right: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-3 {
    padding-right: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-3 {
  padding-bottom: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-3 {
    padding-bottom: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-3 {
  padding-left: 8px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-3 {
    padding-left: 16px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-4 {
  padding: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-4 {
    padding: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-4 {
  padding-top: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-4 {
    padding-top: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-4 {
  padding-right: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-4 {
    padding-right: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-4 {
  padding-bottom: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-4 {
    padding-bottom: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-4 {
  padding-left: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-4 {
    padding-left: 24px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-5 {
  padding: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-5 {
    padding: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-5 {
  padding-top: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-5 {
    padding-top: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-5 {
  padding-right: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-5 {
    padding-right: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-5 {
  padding-bottom: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-5 {
    padding-bottom: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-5 {
  padding-left: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-5 {
    padding-left: 32px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-6 {
  padding: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-6 {
    padding: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-6 {
  padding-top: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-6 {
    padding-top: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-6 {
  padding-right: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-6 {
    padding-right: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-6 {
  padding-bottom: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-6 {
    padding-bottom: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-6 {
  padding-left: 32px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-6 {
    padding-left: 40px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-7 {
  padding: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-7 {
    padding: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-7 {
  padding-top: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-7 {
    padding-top: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-7 {
  padding-right: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-7 {
    padding-right: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-7 {
  padding-bottom: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-7 {
    padding-bottom: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-7 {
  padding-left: 40px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-7 {
    padding-left: 48px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-8 {
  padding: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-8 {
    padding: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-8 {
  padding-top: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-8 {
    padding-top: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-8 {
  padding-right: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-8 {
    padding-right: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-8 {
  padding-bottom: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-8 {
    padding-bottom: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-8 {
  padding-left: 48px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-8 {
    padding-left: 56px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-9 {
  padding: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-9 {
    padding: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-top-9 {
  padding-top: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-top-9 {
    padding-top: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-right-9 {
  padding-right: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-right-9 {
    padding-right: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-bottom-9 {
  padding-bottom: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-bottom-9 {
    padding-bottom: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-padding-left-9 {
  padding-left: 56px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-padding-left-9 {
    padding-left: 64px !important;
  }
}
[class*=nhsuk-] .nhsuk-u-text-align-left {
  text-align: left !important;
}

[class*=nhsuk-] .nhsuk-u-text-align-centre {
  text-align: center !important;
}

[class*=nhsuk-] .nhsuk-u-text-align-right {
  text-align: right !important;
}

[class*=nhsuk-] .nhsuk-u-font-size-64 {
  font-size: 48px !important;
  font-size: 3rem !important;
  line-height: 1.16667 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-64 {
    font-size: 64px !important;
    font-size: 4rem !important;
    line-height: 1.125 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-64 {
    font-size: 53pt !important;
    line-height: 1.1 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-48 {
  font-size: 32px !important;
  font-size: 2rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-48 {
    font-size: 48px !important;
    font-size: 3rem !important;
    line-height: 1.16667 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-48 {
    font-size: 32pt !important;
    line-height: 1.15 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-32 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.33333 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-32 {
    font-size: 32px !important;
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-32 {
    font-size: 24pt !important;
    line-height: 1.05 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-24 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-24 {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.33333 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-24 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-22 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.55556 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-22 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    line-height: 1.45455 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-22 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-19 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
    line-height: 1.47368 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-19 {
    font-size: 14pt !important;
    line-height: 1.15 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-16 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.71429 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-16 {
    font-size: 14pt !important;
    line-height: 1.2 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-size-14 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.66667 !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-font-size-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    line-height: 1.71429 !important;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-u-font-size-14 {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
}
[class*=nhsuk-] .nhsuk-u-font-weight-normal {
  font-weight: 400 !important;
}

[class*=nhsuk-] .nhsuk-u-font-weight-bold {
  font-weight: 600 !important;
}

[class*=nhsuk-] .nhsuk-u-secondary-text-color {
  color: #4c6272 !important;
}

[class*=nhsuk-] .nhsuk-u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[class*=nhsuk-] .nhsuk-u-width-full,
[class*=nhsuk-] .nhsuk-u-width-three-quarters {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-width-three-quarters {
    width: 75% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-width-two-thirds {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-width-two-thirds {
    width: 66.66% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-width-one-half {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-width-one-half {
    width: 50% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-width-one-third {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-width-one-third {
    width: 33.33% !important;
  }
}
[class*=nhsuk-] .nhsuk-u-width-one-quarter {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-u-width-one-quarter {
    width: 25% !important;
  }
}
[class*=nhsuk-] *,
[class*=nhsuk-] :after,
[class*=nhsuk-] :before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

[class*=nhsuk-] .local-header h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .local-header h1 {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  [class*=nhsuk-] .local-header h1 {
    font-size: 32pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .local-header {
  margin-bottom: 24px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .local-header {
    margin-bottom: 32px !important;
  }
}
[class*=nhsuk-] .button--link {
  color: #005eb8;
  display: inline;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  width: auto;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .button--link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .button--link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .button--link:visited {
  color: #330072;
}

[class*=nhsuk-] .button--link:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] .button--link:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .button--link:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .button--link:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .button--link:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .button--link:active {
  color: #002f5c;
}

[class*=nhsuk-] a.button,
[class*=nhsuk-] a.button:hover,
[class*=nhsuk-] a.button:visited {
  color: #fff;
}

[class*=nhsuk-] a.button:focus {
  color: #212b32;
}

[class*=nhsuk-] .callout > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .callout > :last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .app-cookies-footer--text {
  clear: both;
  color: #4c6272;
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 32px;
}

[class*=nhsuk-] .callout {
  padding: 24px;
}

@media (min-width: 769px) {
  [class*=nhsuk-] .callout {
    padding: 32px;
  }
}
[class*=nhsuk-] .nhsuk-card {
  background: #fff;
  border: 1px solid #d8dde0;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .nhsuk-card__img {
  border-bottom: 1px solid #f0f4f5;
  display: block;
  width: 100%;
}

@media print {
  [class*=nhsuk-] .nhsuk-card__img {
    display: none;
  }
}
[class*=nhsuk-] .nhsuk-card__content {
  padding: 24px;
}

[class*=nhsuk-] .nhsuk-card__content > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-card__content > :last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card__content {
    padding: 32px;
  }
}
[class*=nhsuk-] .nhsuk-card__description,
[class*=nhsuk-] .nhsuk-card__heading,
[class*=nhsuk-] .nhsuk-card__metadata {
  margin-bottom: 16px;
}

[class*=nhsuk-] .nhsuk-card--clickable {
  border-bottom-width: 4px;
}

[class*=nhsuk-] .nhsuk-card--clickable .nhsuk-card__heading a:before,
[class*=nhsuk-] .nhsuk-card--clickable .nhsuk-card__link:before {
  background-color: hsla(0, 0%, 100%, 0);
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

[class*=nhsuk-] .nhsuk-card--clickable:active {
  border-color: #aeb7bd;
  bottom: -1px;
}

[class*=nhsuk-] .nhsuk-card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 0;
}

@media (max-width: 48.0525em) {
  [class*=nhsuk-] .nhsuk-card-group {
    margin-bottom: 40px;
  }
}
[class*=nhsuk-] .nhsuk-card-group + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-card-group + .nhsuk-heading-m,
[class*=nhsuk-] .nhsuk-card-group + h2,
[class*=nhsuk-] .nhsuk-card-group + h3 {
  padding-top: 0;
}

[class*=nhsuk-] .nhsuk-card-group__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

@media (max-width: 48.0525em) {
  [class*=nhsuk-] .nhsuk-card-group__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
[class*=nhsuk-] .nhsuk-card-group__item .nhsuk-card {
  margin-bottom: 32px;
}

@media (max-width: 48.0525em) {
  [class*=nhsuk-] .nhsuk-card-group__item .nhsuk-card {
    margin-bottom: 16px;
  }
  [class*=nhsuk-] .nhsuk-card-group__item:last-child .nhsuk-card {
    margin-bottom: 0;
  }
}
[class*=nhsuk-] .nhsuk-card--feature {
  margin-top: 40px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card--feature {
    margin-top: 48px;
  }
}
[class*=nhsuk-] .nhsuk-card__heading--feature {
  background: #005eb8;
  color: #fff;
  display: inline-block;
  left: -25px;
  margin-bottom: 8px;
  margin-right: -24px;
  padding: 8px 24px;
  position: relative;
  top: -8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card__heading--feature {
    left: -33px;
    margin-right: -32px;
    padding: 8px 32px;
    top: -16px;
  }
}
[class*=nhsuk-] .nhsuk-card__content--feature {
  padding-top: 0 !important;
}

[class*=nhsuk-] .nhsuk-card--care {
  margin-top: 40px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card--care {
    margin-top: 48px;
  }
}
[class*=nhsuk-] .nhsuk-card--care .nhsuk-card--care__heading-container {
  background-color: #005eb8;
  color: #fff;
}

@media print {
  [class*=nhsuk-] .nhsuk-card--care {
    border: 4px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-card--care__heading-container {
  padding: 16px 24px;
  position: relative;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card--care__heading-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
[class*=nhsuk-] .nhsuk-card--care__heading {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  padding-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card--care__heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-card--care__heading {
    color: #212b32;
    font-size: 18pt;
    line-height: 1.15;
    fill: #212b32;
  }
  [class*=nhsuk-] .nhsuk-card--care__heading:active,
  [class*=nhsuk-] .nhsuk-card--care__heading:focus,
  [class*=nhsuk-] .nhsuk-card--care__heading:visited {
    color: #212b32;
  }
}
[class*=nhsuk-] .nhsuk-card--care__arrow {
  bottom: -10px;
  display: block;
  height: 20px;
  left: 30px;
  overflow: hidden;
  position: absolute;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 20px;
}

@media print {
  [class*=nhsuk-] .nhsuk-card--care__arrow {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-card--care__arrow {
    left: 38px;
  }
}
[class*=nhsuk-] .nhsuk-card--care__arrow:after,
[class*=nhsuk-] .nhsuk-card--care__arrow:before {
  border: 32px solid #005eb8;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 0;
}

[class*=nhsuk-] .nhsuk-card--care--urgent .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #fff;
}

@media print {
  [class*=nhsuk-] .nhsuk-card--care--urgent {
    border: 6px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-card--care--urgent .nhsuk-card--care__arrow:after,
[class*=nhsuk-] .nhsuk-card--care--urgent .nhsuk-card--care__arrow:before {
  border-color: #d5281b;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #fff;
}

@media print {
  [class*=nhsuk-] .nhsuk-card--care--emergency {
    border: 8px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card--care__arrow:after,
[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card--care__arrow:before {
  border-color: #d5281b;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card__content {
  background-color: #212b32;
  border: 0;
  color: #fff;
  position: static;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card__content a {
  color: #fff;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-card__content a:focus {
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-details,
[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-details__summary,
[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-details__summary:hover {
  color: #fff;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-details__summary:focus {
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-card--care--emergency .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #fff;
}

[class*=nhsuk-] .nhsuk-card__content--primary {
  padding-right: 75px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-card__content--primary {
    height: 100%;
  }
}
[class*=nhsuk-] .nhsuk-card__content--primary .nhsuk-icon {
  display: block;
  fill: #005eb8;
  margin-top: -8px;
  pointer-events: none;
  position: absolute;
  right: 24px;
  top: 50%;
}

[class*=nhsuk-] .nhsuk-card--secondary {
  background: transparent;
  border: 0;
  border-bottom: 4px solid #d8dde0;
}

[class*=nhsuk-] .nhsuk-card__content--secondary {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

[class*=nhsuk-] .nhsuk-character-count {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-character-count {
    margin-bottom: 40px;
  }
}
[class*=nhsuk-] .nhsuk-character-count .nhsuk-form-group,
[class*=nhsuk-] .nhsuk-character-count .nhsuk-textarea {
  margin-bottom: 4px;
}

[class*=nhsuk-] .nhsuk-character-count__message {
  margin-bottom: 0;
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-character-count__message--disabled {
  visibility: hidden;
}

[class*=nhsuk-] .nhsuk-action-link {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-action-link {
    margin-bottom: 40px;
  }
}
[class*=nhsuk-] .nhsuk-action-link__link {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  font-weight: 600;
  line-height: 1.55556;
  padding-left: 38px;
  position: relative;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-action-link__link {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-action-link__link {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-action-link__link:hover .nhsuk-action-link__text {
  text-decoration: underline;
}

[class*=nhsuk-] .nhsuk-action-link__link:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-action-link__link:focus:hover .nhsuk-action-link__text {
  color: #212b32;
  text-decoration: none;
}

@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-action-link__link {
    padding-left: 26px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-action-link__link,
  [class*=nhsuk-] .nhsuk-action-link__link:visited {
    color: #212b32;
  }
}
[class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
  height: 36px;
  left: -3px;
  position: absolute;
  top: -2px;
  width: 36px;
}

@media print {
  [class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    color: #212b32;
    fill: #212b32;
  }
  [class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:active,
  [class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:focus,
  [class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:visited {
    color: #212b32;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    height: 24px;
    left: -2px;
    margin-bottom: 0;
    top: 2px;
    width: 24px;
  }
}
[class*=nhsuk-] .nhsuk-back-link {
  margin-bottom: 16px;
}

[class*=nhsuk-] .nhsuk-back-link__link {
  background: none;
  border: 0;
  color: #005eb8;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  padding: 0 0 0 16px;
  position: relative;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-back-link__link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-back-link__link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .nhsuk-back-link__link:visited {
  color: #330072;
}

[class*=nhsuk-] .nhsuk-back-link__link:hover {
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-back-link__link:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-back-link__link:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-back-link__link:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-back-link__link:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .nhsuk-back-link__link:active {
  color: #002f5c;
}

[class*=nhsuk-] .nhsuk-back-link__link .nhsuk-icon__chevron-left {
  height: 24px;
  left: -8px;
  position: absolute;
  top: -1px;
  width: 24px;
}

[class*=nhsuk-] .nhsuk-back-link__link:visited {
  color: #005eb8;
}

[class*=nhsuk-] .nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: underline;
}

[class*=nhsuk-] .nhsuk-back-link__link:hover .nhsuk-icon__chevron-left {
  fill: #7c2855;
}

[class*=nhsuk-] .nhsuk-back-link__link:focus .nhsuk-icon__chevron-left {
  fill: #212b32;
}

[class*=nhsuk-] .nhsuk-button {
  -webkit-appearance: none;
  background-color: #007f3b;
  border: 2px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 0 #00401e;
  box-shadow: 0 4px 0 #00401e;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 28px;
  margin-top: 0;
  padding: 12px 16px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: auto;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-button {
    margin-bottom: 36px;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-button {
    padding: 8px 16px;
  }
}
[class*=nhsuk-] .nhsuk-button:active,
[class*=nhsuk-] .nhsuk-button:hover,
[class*=nhsuk-] .nhsuk-button:link,
[class*=nhsuk-] .nhsuk-button:visited {
  color: #fff;
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

[class*=nhsuk-] .nhsuk-button:hover {
  background-color: #00662f;
}

[class*=nhsuk-] .nhsuk-button:focus {
  background: #ffeb3b;
  -webkit-box-shadow: 0 4px 0 #212b32;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

[class*=nhsuk-] .nhsuk-button:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-button:focus:visited:active {
  color: #fff;
}

[class*=nhsuk-] .nhsuk-button:active {
  background: #00401e;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  top: 4px;
}

[class*=nhsuk-] .nhsuk-button:before {
  background: transparent;
  bottom: -6px;
  content: "";
  display: block;
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

[class*=nhsuk-] .nhsuk-button:active:before {
  top: -6px;
}

[class*=nhsuk-] .nhsuk-button--secondary {
  background-color: #4c6272;
  -webkit-box-shadow: 0 4px 0 #263139;
  box-shadow: 0 4px 0 #263139;
}

[class*=nhsuk-] .nhsuk-button--secondary:hover {
  background-color: #384853;
}

[class*=nhsuk-] .nhsuk-button--secondary:focus {
  background: #ffeb3b;
  -webkit-box-shadow: 0 4px 0 #212b32;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

[class*=nhsuk-] .nhsuk-button--secondary:active {
  background: #263139;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  top: 4px;
}

[class*=nhsuk-] .nhsuk-button--secondary.nhsuk-button--disabled {
  background-color: #4c6272;
}

[class*=nhsuk-] .nhsuk-button--reverse {
  background-color: #fff;
  -webkit-box-shadow: 0 4px 0 #212b32;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-button--reverse:hover {
  background-color: #f2f2f2;
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-button--reverse:focus {
  background: #ffeb3b;
  -webkit-box-shadow: 0 4px 0 #212b32;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

[class*=nhsuk-] .nhsuk-button--reverse:active {
  background: #212b32;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  top: 4px;
}

[class*=nhsuk-] .nhsuk-button--reverse:link {
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-button--reverse:link:active {
  color: #fff;
}

[class*=nhsuk-] .nhsuk-button--reverse.nhsuk-button--disabled,
[class*=nhsuk-] .nhsuk-button--reverse.nhsuk-button--disabled:focus {
  background-color: #fff;
}

[class*=nhsuk-] .nhsuk-button--disabled,
[class*=nhsuk-] .nhsuk-button[disabled=disabled],
[class*=nhsuk-] .nhsuk-button[disabled] {
  background-color: #007f3b;
  opacity: 0.5;
  pointer-events: none;
}

[class*=nhsuk-] .nhsuk-button--disabled:hover,
[class*=nhsuk-] .nhsuk-button[disabled=disabled]:hover,
[class*=nhsuk-] .nhsuk-button[disabled]:hover {
  background-color: #007f3b;
  cursor: default;
}

[class*=nhsuk-] .nhsuk-button--disabled:focus,
[class*=nhsuk-] .nhsuk-button[disabled=disabled]:focus,
[class*=nhsuk-] .nhsuk-button[disabled]:focus {
  background-color: #007f3b;
  outline: none;
}

[class*=nhsuk-] .nhsuk-button--disabled:active,
[class*=nhsuk-] .nhsuk-button[disabled=disabled]:active,
[class*=nhsuk-] .nhsuk-button[disabled]:active {
  -webkit-box-shadow: 0 4px 0 #00401e;
  box-shadow: 0 4px 0 #00401e;
  top: 0;
}

[class*=nhsuk-] .nhsuk-button--secondary[disabled=disabled],
[class*=nhsuk-] .nhsuk-button--secondary[disabled] {
  background-color: #4c6272;
  opacity: 0.5;
}

[class*=nhsuk-] .nhsuk-button--secondary[disabled=disabled]:hover,
[class*=nhsuk-] .nhsuk-button--secondary[disabled]:hover {
  background-color: #4c6272;
  cursor: default;
}

[class*=nhsuk-] .nhsuk-button--secondary[disabled=disabled]:focus,
[class*=nhsuk-] .nhsuk-button--secondary[disabled]:focus {
  outline: none;
}

[class*=nhsuk-] .nhsuk-button--secondary[disabled=disabled]:active,
[class*=nhsuk-] .nhsuk-button--secondary[disabled]:active {
  -webkit-box-shadow: 0 4px 0 #263139;
  box-shadow: 0 4px 0 #263139;
  top: 0;
}

[class*=nhsuk-] .nhsuk-button--reverse[disabled=disabled],
[class*=nhsuk-] .nhsuk-button--reverse[disabled] {
  background-color: #fff;
  opacity: 0.5;
}

[class*=nhsuk-] .nhsuk-button--reverse[disabled=disabled]:hover,
[class*=nhsuk-] .nhsuk-button--reverse[disabled]:hover {
  background-color: #fff;
  cursor: default;
}

[class*=nhsuk-] .nhsuk-button--reverse[disabled=disabled]:focus,
[class*=nhsuk-] .nhsuk-button--reverse[disabled]:focus {
  outline: none;
}

[class*=nhsuk-] .nhsuk-button--reverse[disabled=disabled]:active,
[class*=nhsuk-] .nhsuk-button--reverse[disabled]:active {
  -webkit-box-shadow: 0 4px 0 #212b32;
  box-shadow: 0 4px 0 #212b32;
  top: 0;
}

[class*=nhsuk-] .nhsuk-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

[class*=nhsuk-] .nhsuk-fieldset:after {
  clear: both;
  content: "";
  display: block;
}

[class*=nhsuk-] .nhsuk-fieldset__legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #212b32;
  display: table;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 0;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-fieldset__legend {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__legend--xl {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-fieldset__legend--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-fieldset__legend--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__legend--l {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-fieldset__legend--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-fieldset__legend--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__legend--m {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-fieldset__legend--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-fieldset__legend--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__legend--s {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-fieldset__legend--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-fieldset__legend--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__heading {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

[class*=nhsuk-] .nhsuk-hint {
  color: #4c6272;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-hint {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-hint {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-fieldset__legend:not(.nhsuk-fieldset__legend--m):not(.nhsuk-fieldset__legend--l):not(.nhsuk-fieldset__legend--xl) + .nhsuk-hint,
[class*=nhsuk-] .nhsuk-label:not(.nhsuk-label--m):not(.nhsuk-label--l):not(.nhsuk-label--xl) + .nhsuk-hint {
  margin-bottom: 8px;
}

[class*=nhsuk-] .nhsuk-fieldset__legend + .nhsuk-hint {
  margin-top: -4px;
}

[class*=nhsuk-] .nhsuk-input {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #4c6272;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  height: 40px;
  line-height: 1.5;
  margin-top: 0;
  padding: 4px;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-input:focus {
  border: 2px solid #212b32;
  -webkit-box-shadow: inset 0 0 0 2px;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b;
  outline-offset: 0;
}

[class*=nhsuk-] .nhsuk-input::-webkit-inner-spin-button,
[class*=nhsuk-] .nhsuk-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[class*=nhsuk-] .nhsuk-input[type=number] {
  -moz-appearance: textfield;
}

[class*=nhsuk-] .nhsuk-input--error {
  border: 2px solid #d5281b;
}

[class*=nhsuk-] .nhsuk-input--width-30 {
  max-width: 59ex;
}

[class*=nhsuk-] .nhsuk-input--width-20 {
  max-width: 41ex;
}

[class*=nhsuk-] .nhsuk-input--width-10 {
  max-width: 23ex;
}

[class*=nhsuk-] .nhsuk-input--width-5 {
  max-width: 10.8ex;
}

[class*=nhsuk-] .nhsuk-input--width-4 {
  max-width: 9ex;
}

[class*=nhsuk-] .nhsuk-input--width-3 {
  max-width: 7.2ex;
}

[class*=nhsuk-] .nhsuk-input--width-2 {
  max-width: 5.4ex;
}

[class*=nhsuk-] .nhsuk-input__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 19.99em) {
  [class*=nhsuk-] .nhsuk-input__wrapper {
    display: block;
  }
}
[class*=nhsuk-] .nhsuk-input__prefix,
[class*=nhsuk-] .nhsuk-input__suffix {
  background-color: #d8dde0;
  border: 2px solid #4c6272;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 40px;
  min-width: 2.5rem;
  padding: 4px;
  text-align: center;
  white-space: nowrap;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-input__prefix,
  [class*=nhsuk-] .nhsuk-input__suffix {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-input__prefix,
  [class*=nhsuk-] .nhsuk-input__suffix {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (max-width: 19.99em) {
  [class*=nhsuk-] .nhsuk-input__prefix,
  [class*=nhsuk-] .nhsuk-input__suffix {
    display: block;
    height: 100%;
    max-width: 9.1ex;
    white-space: normal;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-input__prefix,
  [class*=nhsuk-] .nhsuk-input__suffix {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
}
@media (max-width: 19.99em) {
  [class*=nhsuk-] .nhsuk-input__prefix {
    border-bottom: 0;
  }
}
@media (min-width: 20em) {
  [class*=nhsuk-] .nhsuk-input__prefix {
    border-right: 0;
  }
}
@media (max-width: 19.99em) {
  [class*=nhsuk-] .nhsuk-input__suffix {
    border-top: 0;
  }
}
@media (min-width: 20em) {
  [class*=nhsuk-] .nhsuk-input__suffix {
    border-left: 0;
  }
}
[class*=nhsuk-] .nhsuk-textarea {
  -webkit-appearance: none;
  border: 2px solid #4c6272;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  min-height: 40px;
  padding: 4px;
  resize: vertical;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-textarea {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-textarea {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-textarea:focus {
  border: 2px solid #212b32;
  -webkit-box-shadow: inset 0 0 0 2px;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b;
  outline-offset: 0;
}

[class*=nhsuk-] .nhsuk-textarea--error {
  border: 2px solid #d5281b;
}

[class*=nhsuk-] .nhsuk-inset-text {
  border-left: 8px solid #005eb8;
  margin-bottom: 40px;
  margin-top: 40px;
  max-width: 44em;
  padding: 16px;
}

[class*=nhsuk-] .nhsuk-inset-text > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-inset-text > :last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-inset-text {
    margin-bottom: 48px;
    margin-top: 48px;
    padding: 24px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-inset-text {
    border-color: #212b32;
  }
}
[class*=nhsuk-] .nhsuk-label {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-label {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-label--xl {
  display: block;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 40px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-label--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--xl {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .nhsuk-label--l {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-label--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--l {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-label--m {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-label--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--m {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-label--s {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-label--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-label--s {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-label-wrapper {
  margin: 0;
}

[class*=nhsuk-] .nhsuk-radios__item {
  clear: left;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 0 0 0 40px;
  position: relative;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-radios__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-radios__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-radios__item:last-child,
[class*=nhsuk-] .nhsuk-radios__item:last-of-type {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-radios__input {
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 1;
}

[class*=nhsuk-] .nhsuk-radios__label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 12px 4px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[class*=nhsuk-] .nhsuk-radios__hint {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}

[class*=nhsuk-] .nhsuk-radios__input + .nhsuk-radios__label:before {
  background: #fff;
  border: 2px solid #4c6272;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

[class*=nhsuk-] .nhsuk-radios__input + .nhsuk-radios__label:after {
  background: #4c6272;
  border: 10px solid #212b32;
  border-radius: 50%;
  content: "";
  height: 0;
  left: 10px;
  opacity: 0;
  position: absolute;
  top: 10px;
  width: 0;
}

[class*=nhsuk-] .nhsuk-radios__input:focus + .nhsuk-radios__label:before {
  border: 4px solid #212b32;
  -webkit-box-shadow: 0 0 0 4px #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b;
}

[class*=nhsuk-] .nhsuk-radios__input:checked + .nhsuk-radios__label:after {
  opacity: 1;
}

[class*=nhsuk-] .nhsuk-radios__input:disabled,
[class*=nhsuk-] .nhsuk-radios__input:disabled + .nhsuk-radios__label {
  cursor: default;
}

[class*=nhsuk-] .nhsuk-radios__input:disabled + .nhsuk-radios__label {
  opacity: 0.5;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-radios--inline:after {
    clear: both;
    content: "";
    display: block;
  }
  [class*=nhsuk-] .nhsuk-radios--inline .nhsuk-radios__item {
    clear: none;
    float: left;
    margin-right: 24px;
  }
}
[class*=nhsuk-] .nhsuk-radios--inline.nhsuk-radios--conditional .nhsuk-radios__item {
  float: none;
  margin-right: 0;
}

[class*=nhsuk-] .nhsuk-radios__divider {
  color: #212b32;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: center;
  width: 40px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-radios__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-radios__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-radios__conditional {
  border-left: 4px solid #4c6272;
  margin-bottom: 16px;
  margin-left: 18px;
  padding-left: 30px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-radios__conditional {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-radios__conditional > :last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .js-enabled .nhsuk-radios__conditional--hidden {
  display: none;
}

[class*=nhsuk-] .nhsuk-summary-list {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 32px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-summary-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list {
    display: table;
    margin-bottom: 40px;
    table-layout: fixed;
    width: 100%;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-summary-list__row {
    border-bottom: 1px solid #d8dde0;
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list__row {
    display: table-row;
  }
}
[class*=nhsuk-] .nhsuk-summary-list__actions,
[class*=nhsuk-] .nhsuk-summary-list__key,
[class*=nhsuk-] .nhsuk-summary-list__value {
  margin: 0;
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list__actions,
  [class*=nhsuk-] .nhsuk-summary-list__key,
  [class*=nhsuk-] .nhsuk-summary-list__value {
    border-bottom: 1px solid #d8dde0;
    display: table-cell;
    padding-bottom: 8px;
    padding-right: 24px;
    padding-top: 8px;
  }
}
[class*=nhsuk-] .nhsuk-summary-list__actions {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list__actions {
    padding-right: 0;
    text-align: right;
    width: 20%;
  }
}
[class*=nhsuk-] .nhsuk-summary-list__key,
[class*=nhsuk-] .nhsuk-summary-list__value {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

[class*=nhsuk-] .nhsuk-summary-list__key {
  font-weight: 600;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list__key {
    width: 30%;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-summary-list__value {
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-summary-list__value {
    width: 50%;
  }
}
[class*=nhsuk-] .nhsuk-summary-list__value > p {
  margin-bottom: 8px;
}

[class*=nhsuk-] .nhsuk-summary-list__value > :last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-summary-list__actions-list {
  margin: 0;
  padding: 0;
  width: 100%;
}

[class*=nhsuk-] .nhsuk-summary-list__actions-list-item {
  display: inline;
  margin-right: 8px;
  padding-right: 8px;
}

[class*=nhsuk-] .nhsuk-summary-list__actions-list-item:not(:last-child) {
  border-right: 1px solid #d8dde0;
}

[class*=nhsuk-] .nhsuk-summary-list__actions-list-item:last-child {
  border: 0;
  margin-right: 0;
  padding-right: 0;
}

[class*=nhsuk-] .nhsuk-summary-list--no-border .nhsuk-summary-list__actions,
[class*=nhsuk-] .nhsuk-summary-list--no-border .nhsuk-summary-list__key,
[class*=nhsuk-] .nhsuk-summary-list--no-border .nhsuk-summary-list__row,
[class*=nhsuk-] .nhsuk-summary-list--no-border .nhsuk-summary-list__value {
  border: 0;
}

[class*=nhsuk-] .nhsuk-error-message {
  clear: both;
  color: #d5281b;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-message {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-error-message {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-error-summary {
  border: 4px solid #d5281b;
  margin-bottom: 48px;
  padding: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-summary {
    border: 4px solid #d5281b;
    margin-bottom: 56px;
    padding: 24px;
  }
}
[class*=nhsuk-] .nhsuk-error-summary:focus {
  border: 4px solid #212b32;
  -webkit-box-shadow: 0 0 0 4px #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b;
  outline: 4px solid transparent;
}

[class*=nhsuk-] .nhsuk-error-summary__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-summary__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-error-summary__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-summary__title {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-error-summary__body {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-summary__body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-error-summary__body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-error-summary__body p {
  margin-bottom: 16px;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-error-summary__body p {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-error-summary__list {
  margin-bottom: 0;
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-error-summary__list a {
  font-weight: 600;
}

[class*=nhsuk-] .nhsuk-error-summary__list a:active,
[class*=nhsuk-] .nhsuk-error-summary__list a:hover,
[class*=nhsuk-] .nhsuk-error-summary__list a:link,
[class*=nhsuk-] .nhsuk-error-summary__list a:visited {
  color: #d5281b;
}

[class*=nhsuk-] .nhsuk-error-summary__list a:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-table-container {
  display: block;
  margin-bottom: 40px;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: auto;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-table-container {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .nhsuk-table-container .nhsuk-table {
  margin: 0;
}

[class*=nhsuk-] .nhsuk-table__row:hover {
  background-color: #f0f4f5;
}

[class*=nhsuk-] .nhsuk-table__panel-with-heading-tab {
  background-color: #fff;
  border: 1px solid #d8dde0;
  color: #212b32;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  padding-top: 0 !important;
}

[class*=nhsuk-] .nhsuk-table__panel-with-heading-tab > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-table__panel-with-heading-tab > :last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-table__panel-with-heading-tab {
    margin-bottom: 48px;
    margin-top: 48px;
    padding: 32px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-table__panel-with-heading-tab {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-table__panel-with-heading-tab .nhsuk-table,
[class*=nhsuk-] .nhsuk-table__panel-with-heading-tab .nhsuk-table-container {
  margin: 0;
}

[class*=nhsuk-] .nhsuk-table__heading-tab {
  background-color: #005eb8;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-table__heading-tab {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-table__heading-tab {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-table__heading-tab {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-table__heading-tab {
    background: none;
    color: #212b32;
    top: 0;
  }
}
[class*=nhsuk-] .nhsuk-table-responsive {
  margin-bottom: 0;
  width: 100%;
}

[class*=nhsuk-] .nhsuk-table-responsive thead {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-table-responsive thead {
    clip: auto;
    -webkit-clip-path: initial;
    clip-path: none;
    display: table-header-group;
    height: auto;
    overflow: auto;
    position: relative;
    width: auto;
  }
}
[class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
  font-weight: 600;
  padding-right: 16px;
  text-align: left;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
    display: none;
  }
}
[class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
  display: block;
  margin-bottom: 24px;
}

[class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row:last-child {
  margin-bottom: 0;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
    display: table-row;
  }
}
[class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
  text-align: right;
}

@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
    text-align: left;
  }
}
[class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-width: 1px;
}

@media (-ms-high-contrast: none) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    display: block;
  }
}
@media (min-width: 48.0625em) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    display: table-cell;
  }
}
@media (max-width: 48.0525em) {
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    padding-right: 0;
    text-align: right;
  }
  [class*=nhsuk-] .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td:last-child {
    border-bottom: 3px solid #d8dde0;
  }
}
[class*=nhsuk-] .nhsuk-table__cell--numeric,
[class*=nhsuk-] .nhsuk-table__header--numeric {
  text-align: right;
}

[class*=nhsuk-] .nhsuk-do-dont-list {
  background-color: #fff;
  border: 1px solid #d8dde0;
  color: #212b32;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  padding-top: 0 !important;
}

[class*=nhsuk-] .nhsuk-do-dont-list > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-do-dont-list > :last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-do-dont-list {
    margin-bottom: 48px;
    margin-top: 48px;
    padding: 32px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-do-dont-list {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-do-dont-list__label {
  background-color: #005eb8;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-do-dont-list__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-do-dont-list__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-do-dont-list__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-do-dont-list__label {
    background: none;
    color: #212b32;
    top: 0;
    fill: #212b32;
  }
  [class*=nhsuk-] .nhsuk-do-dont-list__label:active,
  [class*=nhsuk-] .nhsuk-do-dont-list__label:focus,
  [class*=nhsuk-] .nhsuk-do-dont-list__label:visited {
    color: #212b32;
  }
}
[class*=nhsuk-] .nhsuk-icon {
  height: 34px;
  width: 34px;
}

[class*=nhsuk-] .nhsuk-icon__chevron-left,
[class*=nhsuk-] .nhsuk-icon__chevron-right,
[class*=nhsuk-] .nhsuk-icon__close,
[class*=nhsuk-] .nhsuk-icon__search {
  fill: #005eb8;
}

[class*=nhsuk-] .nhsuk-icon__cross {
  fill: #d5281b;
}

[class*=nhsuk-] .nhsuk-icon__tick {
  stroke: #007f3b;
}

[class*=nhsuk-] .nhsuk-icon__arrow-left,
[class*=nhsuk-] .nhsuk-icon__arrow-right {
  fill: #005eb8;
}

[class*=nhsuk-] .nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
}

[class*=nhsuk-] .nhsuk-icon__chevron-down {
  fill: #fff;
  height: 24px;
  position: absolute;
  right: 4px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 24px;
}

[class*=nhsuk-] .nhsuk-icon__chevron-up {
  fill: #005eb8;
}

[class*=nhsuk-] .nhsuk-icon__chevron-up path {
  fill: #fff;
}

[class*=nhsuk-] .nhsuk-icon__emdash path {
  fill: #aeb7bd;
}

[class*=nhsuk-] .nhsuk-icon__minus,
[class*=nhsuk-] .nhsuk-icon__plus {
  fill: #005eb8;
}

[class*=nhsuk-] .nhsuk-icon--size-25 {
  height: 42.5px;
  width: 42.5px;
}

[class*=nhsuk-] .nhsuk-icon--size-50 {
  height: 51px;
  width: 51px;
}

[class*=nhsuk-] .nhsuk-icon--size-75 {
  height: 59.5px;
  width: 59.5px;
}

[class*=nhsuk-] .nhsuk-icon--size-100 {
  height: 68px;
  width: 68px;
}

[class*=nhsuk-] .nhsuk-warning-callout {
  background-color: #fff9c4;
  border: 1px solid #ffeb3b;
  color: #212b32;
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  padding-top: 0 !important;
}

[class*=nhsuk-] .nhsuk-warning-callout > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-warning-callout > :last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-warning-callout {
    margin-bottom: 48px;
    margin-top: 48px;
    padding: 32px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-warning-callout {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
[class*=nhsuk-] .nhsuk-warning-callout__label {
  background-color: #ffeb3b;
  color: #212b32;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-warning-callout__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-warning-callout__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  [class*=nhsuk-] .nhsuk-warning-callout__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-warning-callout__label {
    background: none;
    color: #212b32;
    top: 0;
  }
}
[class*=nhsuk-] .nhsuk-tag {
  background-color: #0055a6;
  border: 1px solid #0055a6;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding: 4px 8px;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-tag {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-tag {
    font-size: 14pt;
    line-height: 1;
  }
}
[class*=nhsuk-] .nhsuk-tag--white {
  background-color: #fff;
  border-color: #212b32;
  color: #212b32;
}

[class*=nhsuk-] .nhsuk-tag--grey {
  background-color: #dbe0e3;
  border-color: #354550;
  color: #354550;
}

[class*=nhsuk-] .nhsuk-tag--green {
  background-color: #cce5d8;
  border-color: #004c23;
  color: #004c23;
}

[class*=nhsuk-] .nhsuk-tag--aqua-green {
  background-color: #ccedeb;
  border-color: #00524d;
  color: #00524d;
}

[class*=nhsuk-] .nhsuk-tag--blue {
  background-color: #ccdff1;
  border-color: #004281;
  color: #004281;
}

[class*=nhsuk-] .nhsuk-tag--purple {
  background-color: #d6cce3;
  border-color: #240050;
  color: #240050;
}

[class*=nhsuk-] .nhsuk-tag--pink {
  background-color: #efd3e3;
  border-color: #57133a;
  color: #57133a;
}

[class*=nhsuk-] .nhsuk-tag--red {
  background-color: #f7d4d1;
  border-color: #6b140e;
  color: #6b140e;
}

[class*=nhsuk-] .nhsuk-tag--orange {
  background-color: #ffdc8e;
  border-color: #4d3708;
  color: #4d3708;
}

[class*=nhsuk-] .nhsuk-tag--yellow {
  background-color: #fff59d;
  border-color: #4d4712;
  color: #4d4712;
}

[class*=nhsuk-] .nhsuk-tag--no-border {
  border: 0;
}

[class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary,
[class*=nhsuk-] .service-details {
  background-color: #fff;
  border: 0;
  border-left: 0 solid #aeb7bd;
  padding: 16px 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary,
  [class*=nhsuk-] .service-details {
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
  }
}
[class*=nhsuk-] .service-details--actions {
  padding-top: 0;
}

[class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary .card__details,
[class*=nhsuk-] .service-details .card__details {
  font-weight: 400;
}

[class*=nhsuk-] .service-details__hint {
  color: #425563;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .service-details__hint {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .service-details__hint {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .service-listing__info {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .service-listing__info {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .service-listing__info {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .service-details__hours {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .service-details__hours {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .service-details__hours {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .service-details-container .service-map {
  border: 4px solid #fff;
  display: block;
  height: auto;
  width: 100%;
}

[class*=nhsuk-] .reference-number {
  font-family: monospace;
  font-size: 28px;
}

[class*=nhsuk-] .service-details__phone {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .service-details__phone {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  [class*=nhsuk-] .service-details__phone {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@supports (display: grid) {
  @media (min-width: 980px) {
    [class*=nhsuk-] .service-details-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      place-items: stretch;
    }
    [class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary,
    [class*=nhsuk-] .service-details {
      border-left-width: 4px;
      grid-column: 1;
    }
    [class*=nhsuk-] .service-details--actions {
      padding-top: 24px;
    }
    [class*=nhsuk-] .service-details-container .service-map {
      grid-column-end: 4;
      grid-column-start: 2;
      grid-row-end: 3;
      grid-row-start: 1;
    }
    [class*=nhsuk-] .service-details-wrapper {
      display: grid;
    }
  }
}
[class*=nhsuk-] .service-listing__toggle--hide,
[class*=nhsuk-] .service-listing__toggle--show {
  color: #005eb8;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
  text-decoration: underline;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .service-listing__toggle--hide,
  [class*=nhsuk-] .service-listing__toggle--show {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .service-listing__toggle--hide,
  [class*=nhsuk-] .service-listing__toggle--show {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .service-listing__toggle--hide:visited,
[class*=nhsuk-] .service-listing__toggle--show:visited {
  color: #330072;
}

[class*=nhsuk-] .service-listing__toggle--hide:hover,
[class*=nhsuk-] .service-listing__toggle--show:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] .service-listing__toggle--hide:focus,
[class*=nhsuk-] .service-listing__toggle--show:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .service-listing__toggle--hide:focus:hover,
[class*=nhsuk-] .service-listing__toggle--show:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .service-listing__toggle--hide:focus:visited,
[class*=nhsuk-] .service-listing__toggle--show:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .service-listing__toggle--hide:focus .nhsuk-icon,
[class*=nhsuk-] .service-listing__toggle--show:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .service-listing__toggle--hide:active,
[class*=nhsuk-] .service-listing__toggle--show:active {
  color: #002f5c;
}

[class*=nhsuk-] .other-services .service-details-container {
  padding-top: 0;
}

[class*=nhsuk-] .other-services .service-listing__info,
[class*=nhsuk-] .other-services .service-listing__name {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .other-services .service-listing__info,
  [class*=nhsuk-] .other-services .service-listing__name {
    margin-bottom: 16px;
  }
}
[class*=nhsuk-] .other-services .service-details__distance,
[class*=nhsuk-] .other-services .service-details__name,
[class*=nhsuk-] .other-services .service-listing .service-listing__toggle--hide,
[class*=nhsuk-] .other-services .service-listing[open] .service-listing__toggle--show {
  display: none;
}

[class*=nhsuk-] .other-services .service-listing .service-listing__toggle--show,
[class*=nhsuk-] .other-services .service-listing[open] .service-listing__toggle--hide {
  display: inline;
}

[class*=nhsuk-] .other-services .service-listing .measure {
  max-width: 360px;
}

[class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary {
  border-left-width: 4px;
  color: inherit;
  cursor: pointer;
  display: block;
  text-indent: 0;
}

[class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary .nhsuk-details__summary-text {
  text-decoration: none;
}

[class*=nhsuk-] .other-services .service-listing .nhsuk-details__summary:before {
  display: none;
}

[class*=nhsuk-] .other-services .service-listing[open] summary {
  margin-bottom: 4px;
}

[class*=nhsuk-] .other-services .service-listing {
  display: block;
  margin-bottom: 24px;
}

[class*=nhsuk-] .other-services .service-listing__name {
  font-weight: 600;
}

[class*=nhsuk-] .other-services .service-listing-chevron .card__details {
  font-weight: 400;
}

[class*=nhsuk-] .other-services .service-listing-chevron .card__details--times {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  [class*=nhsuk-] .other-services .service-listing {
    margin-bottom: 48px;
  }
}
[class*=nhsuk-] .disposition-unit-content > .nhsuk-details__summary {
  padding-left: 0;
  text-indent: 0;
}

[class*=nhsuk-] .disposition-unit-content > .nhsuk-details__summary [class^=nhsuk-heading-] {
  color: #231f20;
}

[class*=nhsuk-] .disposition-unit-content > .nhsuk-details__summary:before,
[class*=nhsuk-] .disposition-unit-content[open] > .nhsuk-details__summary:before {
  display: none;
}

[class*=nhsuk-] .disposition-unit-content .nhsuk-details__summary-text {
  text-decoration: none;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show {
  color: #005eb8;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
  text-decoration: underline;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide,
  [class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide,
  [class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:visited,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:visited {
  color: #330072;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:hover,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:focus,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:focus:hover,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:focus:visited,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:focus .nhsuk-icon,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide:active,
[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show:active {
  color: #002f5c;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--hide,
[class*=nhsuk-] .disposition-unit-content[open] .disposition-unit-content__toggle--show {
  display: none;
}

[class*=nhsuk-] .disposition-unit-content .disposition-unit-content__toggle--show,
[class*=nhsuk-] .disposition-unit-content[open] .disposition-unit-content__toggle--hide {
  display: inline-block;
}

[class*=nhsuk-] .form-group,
[class*=nhsuk-] .panel-group {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .form-group,
  [class*=nhsuk-] .panel-group {
    margin-bottom: 32px;
  }
}
[class*=nhsuk-] .panel-group:last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .panel-group .panel {
  margin-top: 16px !important;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .panel-group .panel {
    margin-top: 24px !important;
  }
}
[class*=nhsuk-] .form-group label {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .form-group label {
    margin-bottom: 8px;
  }
}
[class*=nhsuk-] .form-group h3 {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .form-group h3 {
    margin-bottom: 8px;
  }
}
[class*=nhsuk-] .address-picker {
  list-style: none;
  padding-left: 0;
}

[class*=nhsuk-] .address-option {
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .address-option {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .address-option button {
  border: 1px solid #d8dde0;
  border-left-width: 4px;
  padding: 16px 8px;
  width: 100%;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .address-option button {
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
  }
}
[class*=nhsuk-] .address-option button:focus,
[class*=nhsuk-] .address-option button:hover {
  background-color: #005eb8;
  border-color: #005eb8;
  color: #fff;
  outline: none;
}

[class*=nhsuk-] .address-option button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

[class*=nhsuk-] .summary-list dd,
[class*=nhsuk-] .summary-list dt {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

[class*=nhsuk-] .summary-list div {
  border-bottom: 1px solid #aeb7bd;
  padding-bottom: 8px;
  padding-top: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .summary-list div {
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) {
  [class*=nhsuk-] .summary-list {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  [class*=nhsuk-] .summary-list div {
    display: table-row;
  }
  [class*=nhsuk-] .summary-list dd,
  [class*=nhsuk-] .summary-list dt {
    border-bottom: 1px solid #aeb7bd;
    display: table-cell;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) and (min-width: 40.0625em) {
  [class*=nhsuk-] .summary-list dd,
  [class*=nhsuk-] .summary-list dt {
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) {
  [class*=nhsuk-] .summary-list dt {
    width: 30%;
  }
  [class*=nhsuk-] .summary-list dd {
    padding-left: 4rem;
    width: 70%;
  }
}
[class*=nhsuk-] .nhsuk-global-alert {
  background-color: #ffeb3b;
  padding-bottom: 24px;
  padding-top: 24px;
}

@media print {
  [class*=nhsuk-] .nhsuk-global-alert {
    display: none;
  }
}
[class*=nhsuk-] .nhsuk-global-alert__heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-global-alert__heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-global-alert__heading {
    font-size: 18pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .nhsuk-global-alert__content {
  position: relative;
}

[class*=nhsuk-] .nhsuk-global-alert__content > :first-child {
  margin-top: 0;
}

[class*=nhsuk-] .nhsuk-global-alert__content > :last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .nhsuk-global-alert__message {
  margin-bottom: 0;
  margin-top: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-global-alert__message {
    margin-top: 8px;
  }
}
[class*=nhsuk-] .nhsuk-global-alert__updated {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.66667;
  margin-top: 8px;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-global-alert__updated {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.71429;
    margin-top: 8px;
  }
}
@media print {
  [class*=nhsuk-] .nhsuk-global-alert__updated {
    font-size: 12pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .nhsuk-expander--radios {
  background-color: transparent;
  border: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

[class*=nhsuk-] .nhsuk-expander--radios .nhsuk-details__summary {
  background-color: transparent;
  border-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-top: 0;
}

[class*=nhsuk-] .nhsuk-expander--radios .nhsuk-details__summary-text {
  color: #231f20;
  font-size: 20px;
  padding: 10px 4px 8px 55px;
  text-decoration: none;
}

[class*=nhsuk-] .nhsuk-expander--radios[open] {
  margin-bottom: 30px;
}

[class*=nhsuk-] .nhsuk-expander--radios[open] .nhsuk-details__summary-text {
  margin-bottom: 15px;
}

[class*=nhsuk-] .nhsuk-expander--radios .nhsuk-details__text {
  padding: 0;
}

[class*=nhsuk-] .nhsuk-expander--radios .nhsuk-details__summary .nhsuk-details__summary-text:before,
[class*=nhsuk-] .nhsuk-expander--radios .nhsuk-details__summary:focus .nhsuk-details__summary-text:before,
[class*=nhsuk-] .nhsuk-expander--radios[open] .nhsuk-details__summary .nhsuk-details__summary-text:before,
[class*=nhsuk-] .nhsuk-expander--radios[open] .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background-size: 44px 44px;
  height: 44px;
  top: calc(50% - 22px);
  width: 44px;
}

[class*=nhsuk-] .nhsuk-expander--radios .slot-group,
[class*=nhsuk-] .slot-group {
  border-left: 5px solid #d8dde0;
  padding-bottom: 0;
  padding-left: 50px;
}

[class*=nhsuk-] .slot-group--inactive {
  border-left-color: transparent;
  color: #4c6272;
  font-size: 19px;
  margin-top: 20px !important;
}

[class*=nhsuk-] .price-list {
  margin: 24px 0;
}

[class*=nhsuk-] .price-list__row {
  border-bottom: 1px solid #d8dde0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

[class*=nhsuk-] .price-list__row:last-child {
  border-bottom: 0;
}

[class*=nhsuk-] .price-list__key {
  font-weight: 700;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 8px;
}

[class*=nhsuk-] .price-list__subtitle {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
  margin: 0;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .price-list__subtitle {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .price-list__subtitle {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .price-list__value {
  font-weight: 700;
  text-align: right;
}

[class*=nhsuk-] .app-two-tone-list {
  color: #4d555b;
}

[class*=nhsuk-] .app-two-tone-list__highlight {
  color: #212b32;
}

[class*=nhsuk-] .app-banner-details {
  list-style: none;
}

[class*=nhsuk-] .app-banner-details__summary {
  color: #005eb8;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  list-style: none;
  position: relative;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .app-banner-details__summary {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .app-banner-details__summary {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .app-banner-details__summary:visited {
  color: #330072;
}

[class*=nhsuk-] .app-banner-details__summary:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] .app-banner-details__summary:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .app-banner-details__summary:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .app-banner-details__summary:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .app-banner-details__summary:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .app-banner-details__summary:active {
  color: #002f5c;
}

[class*=nhsuk-] .app-banner-details__summary::-webkit-details-marker {
  display: none;
}

[class*=nhsuk-] .app-banner-details__summary:hover path {
  stroke: #7c2855;
}

[class*=nhsuk-] .app-banner-details__summary:active path {
  stroke: #002f5c;
}

[class*=nhsuk-] .app-banner-details__summary:focus path {
  stroke: #212b32;
}

[class*=nhsuk-] .app-banner-details__icon {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

[class*=nhsuk-] [open] .app-banner-details__icon {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

[class*=nhsuk-] .app-section-break {
  border-bottom: 4px solid #aeb7bd;
  margin-bottom: 32px;
  margin-top: 32px;
  text-align: left;
  width: 130px;
}

[class*=nhsuk-] .app-section-break--thin-wide {
  border-bottom: 2px solid #d8dde0;
  width: auto;
}

[class*=nhsuk-] .app-header {
  background-color: #005eb8;
}

[class*=nhsuk-] .app-header:after {
  clear: both;
  content: "";
  display: block;
}

[class*=nhsuk-] .app-header__container {
  padding: 20px 0;
}

[class*=nhsuk-] .app-header__container:after {
  clear: both;
  content: "";
  display: block;
}

@media (max-width: 40.0525em) {
  [class*=nhsuk-] .app-header__container {
    margin: 0;
    padding: 16px;
  }
}
[class*=nhsuk-] .app-header__logo {
  float: left;
}

@media (max-width: 40.0525em) {
  [class*=nhsuk-] .app-header__logo {
    position: relative;
    z-index: 1;
  }
}
[class*=nhsuk-] .app-header__logo .app-logo__background {
  fill: #fff;
}

@media print {
  [class*=nhsuk-] .app-header__logo .app-logo__background {
    fill: #005eb8;
  }
}
[class*=nhsuk-] .app-header__logo .app-logo__text {
  fill: #005eb8;
}

@media print {
  [class*=nhsuk-] .app-header__logo .app-logo__text {
    fill: #fff;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .app-header__logo {
    padding-left: 0;
  }
}
[class*=nhsuk-] .app-header__logo .app-logo {
  border: 0;
  height: 40px;
  width: 100px;
}

[class*=nhsuk-] .app-header__link {
  display: block;
  height: 40px;
  width: 100px;
}

[class*=nhsuk-] .app-header__link:hover .app-logo {
  -webkit-box-shadow: 0 0 0 4px #003d78;
  box-shadow: 0 0 0 4px #003d78;
}

[class*=nhsuk-] .app-header__link:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

[class*=nhsuk-] .app-header__link:focus .app-logo {
  -webkit-box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

@media print {
  [class*=nhsuk-] .app-header__link:after {
    content: "";
  }
}
[class*=nhsuk-] .app-header__link:active,
[class*=nhsuk-] .app-header__link:focus,
[class*=nhsuk-] .app-header__link:hover {
  background-color: transparent;
}

[class*=nhsuk-] .app-header__link--service {
  height: auto;
  margin-bottom: -4px;
  text-decoration: none;
  width: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 61.875em) {
  [class*=nhsuk-] .app-header__link--service {
    margin-bottom: 0;
  }
}
[class*=nhsuk-] .app-header__link--service:hover {
  background: none;
}

[class*=nhsuk-] .app-header__link--service:hover .app-header__service-name {
  text-decoration: underline;
}

[class*=nhsuk-] .app-header__link--service:focus {
  background: #ffeb3b;
  -webkit-box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

[class*=nhsuk-] .app-header__link--service:focus .app-header__service-name {
  color: #212b32;
  text-decoration: none;
}

[class*=nhsuk-] .app-header__link--service:focus .app-logo {
  -webkit-box-shadow: none;
  box-shadow: none;
}

[class*=nhsuk-] .app-header__service-name {
  color: #fff;
  display: block;
  font-size: 19px;
  font-size: 1.1875rem;
  padding-left: 16px;
}

@media (max-width: 61.865em) {
  [class*=nhsuk-] .app-header__service-name {
    max-width: 220px;
  }
}
[class*=nhsuk-] .app-footer {
  background-color: #d8dde0;
  border-top: 4px solid #005eb8;
  padding-bottom: 24px;
  padding-top: 24px;
}

[class*=nhsuk-] .app-footer:after {
  clear: both;
  content: "";
  display: block;
}

@media print {
  [class*=nhsuk-] .app-footer {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  [class*=nhsuk-] .app-footer {
    padding-bottom: 32px;
    padding-top: 32px;
  }
}
[class*=nhsuk-] .app-footer .nhsuk-section-break--visible {
  border-bottom-color: #768692;
}

[class*=nhsuk-] .app-footer .nhsuk-list {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.71429;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .app-footer .nhsuk-list {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  [class*=nhsuk-] .app-footer .nhsuk-list {
    font-size: 14pt;
    line-height: 1.2;
  }
}
[class*=nhsuk-] .app-footer a,
[class*=nhsuk-] .app-footer a:visited {
  color: #003087;
}

[class*=nhsuk-] .app-footer a:hover {
  color: #7c2855;
}

[class*=nhsuk-] .app-footer p {
  color: #231f20;
}

[class*=nhsuk-] .app-footer__ce-mark {
  margin-right: 4px;
  vertical-align: baseline;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .nhsuk-button {
    width: auto;
  }
}
[class*=nhsuk-] .app-button--tertiary {
  background: transparent;
  border: 2px solid #005eb8;
  -webkit-box-shadow: none;
  box-shadow: none;
  vertical-align: middle;
}

[class*=nhsuk-] .app-button--tertiary,
[class*=nhsuk-] .app-button--tertiary:link,
[class*=nhsuk-] .app-button--tertiary:visited {
  color: #005eb8;
}

[class*=nhsuk-] .app-button--tertiary g {
  stroke: #005eb8;
}

[class*=nhsuk-] .app-button--tertiary .app-button__icon,
[class*=nhsuk-] .app-button--tertiary span {
  vertical-align: middle;
}

[class*=nhsuk-] .app-button--tertiary .app-button__icon {
  margin-right: 4px;
}

[class*=nhsuk-] .app-button--tertiary:focus {
  border-color: #212b32;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #212b32;
}

[class*=nhsuk-] .app-button--tertiary:focus:hover {
  color: #fff;
}

[class*=nhsuk-] .app-button--tertiary:focus g {
  stroke: #212b32;
}

[class*=nhsuk-] .app-button--tertiary:active,
[class*=nhsuk-] .app-button--tertiary:hover {
  background-color: #005eb8;
  border-color: #fff;
  color: #fff;
  top: auto;
}

[class*=nhsuk-] .app-button--tertiary:active g,
[class*=nhsuk-] .app-button--tertiary:hover g {
  stroke: #fff;
}

[class*=nhsuk-] .app-button--tertiary:active {
  background-color: #002f5c;
}

[class*=nhsuk-] .app-button--link {
  background: none;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #005eb8;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  font-size: inherit;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: underline;
}

@media (min-width: 40.0625em) {
  [class*=nhsuk-] .app-button--link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  [class*=nhsuk-] .app-button--link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
[class*=nhsuk-] .app-button--link:visited {
  color: #330072;
}

[class*=nhsuk-] .app-button--link:hover {
  color: #7c2855;
  text-decoration: none;
}

[class*=nhsuk-] .app-button--link:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

[class*=nhsuk-] .app-button--link:focus:hover {
  text-decoration: none;
}

[class*=nhsuk-] .app-button--link:focus:visited {
  color: #212b32;
}

[class*=nhsuk-] .app-button--link:focus .nhsuk-icon {
  fill: #212b32;
}

[class*=nhsuk-] .app-button--link:active {
  color: #002f5c;
}

[class*=nhsuk-] .app-button--full-stop:after {
  color: #212b32;
  content: ".";
  position: absolute;
}

.nhsuk-details {
  color: #212b32;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media print {
  .nhsuk-details {
    color: #212b32;
  }
}
@media (min-width: 46.25em) {
  .nhsuk-details {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
    margin-bottom: 24px;
  }
}
@media print {
  .nhsuk-details {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-details__summary {
  color: #005eb8;
  cursor: pointer;
  display: inline-block;
  padding-left: 24px;
  position: relative;
}

.nhsuk-details__summary:hover {
  color: #7c2855;
}

.nhsuk-details__summary:before {
  border-color: transparent;
  border-left-color: inherit;
  border-style: solid;
  border-width: 7px 0 7px 12.124px;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 0;
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

.nhsuk-details__summary:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-details__summary:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-details__summary:focus .nhsuk-details__summary-text,
.nhsuk-details__summary:hover .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-details[open] > .nhsuk-details__summary:before {
  border-color: transparent;
  border-style: solid;
  border-top-color: inherit;
  border-width: 12.124px 7px 0;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  display: block;
  height: 0;
  width: 0;
}

.nhsuk-details__summary-text {
  text-decoration: underline;
}

.nhsuk-details__summary::-webkit-details-marker {
  display: none;
}

.nhsuk-details__text {
  border-left: 4px solid #d8dde0;
  margin-top: 8px;
  padding: 16px 16px 16px 20px;
}

.nhsuk-details__text > :first-child {
  margin-top: 0;
}

.nhsuk-details__text > :last-child {
  margin-bottom: 0;
}

.nhsuk-expander {
  background-color: #fff;
  border: solid #d8dde0;
  border-width: 1px 1px 4px;
}

.nhsuk-expander:hover {
  border-color: #aeb7bd;
}

.nhsuk-expander .nhsuk-details__summary {
  background-color: #fff;
  border-top: 4px solid transparent;
  display: block;
  padding: 20px 24px 24px;
}

@media (max-width: 46.24em) {
  .nhsuk-expander .nhsuk-details__summary {
    padding: 12px 16px 16px;
  }
}
.nhsuk-expander .nhsuk-details__summary:before {
  display: none !important;
}

.nhsuk-expander .nhsuk-details__summary:hover .nhsuk-details__summary-text {
  color: #7c2855;
}

.nhsuk-expander .nhsuk-details__summary:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background: #ffeb3b url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' aria-hidden='true' class='nhsuk-icon nhsuk-icon__plus' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8m-4-4h8'/%3E%3C/svg%3E") left -2px center no-repeat;
}

.nhsuk-expander .nhsuk-details__summary-text {
  color: #005eb8;
  cursor: pointer;
  display: inline-block;
  padding: 4px 4px 4px 38px;
  position: relative;
}

.nhsuk-expander .nhsuk-details__summary-text:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' aria-hidden='true' class='nhsuk-icon nhsuk-icon__plus' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8m-4-4h8'/%3E%3C/svg%3E") left -2px center no-repeat;
  content: "";
  display: inline-block;
  height: 32px;
  left: 0;
  position: absolute;
  top: calc(50% - 16px);
  width: 32px;
}

.nhsuk-expander .nhsuk-details__text {
  border-left: 0;
  margin-left: 0;
  margin-top: 0;
  padding: 0 16px 16px;
}

@media (min-width: 46.25em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
  }
}
.nhsuk-expander[open] {
  border-bottom-width: 1px;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus:hover .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background: #ffeb3b url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' aria-hidden='true' class='nhsuk-icon nhsuk-icon__minus' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'/%3E%3C/svg%3E") left -2px center no-repeat;
}

.nhsuk-expander[open] .nhsuk-details__summary-text:before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' aria-hidden='true' class='nhsuk-icon nhsuk-icon__minus' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'/%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'/%3E%3C/svg%3E") left -2px center no-repeat;
}

.nhsuk-expander-group {
  margin-bottom: 16px;
}

.nhsuk-expander-group > .nhsuk-details {
  margin-bottom: 8px;
}

@media (min-width: 46.25em) {
  .nhsuk-expander-group > .nhsuk-details {
    margin-bottom: 8px;
  }
  .nhsuk-expander-group {
    margin-bottom: 24px;
  }
}
[class*=nhsuk-] .nhsuk-details + .nhsuk-heading-l,
[class*=nhsuk-] .nhsuk-details + h2 {
  padding-top: 16px;
}

@media (min-width: 46.25em) {
  [class*=nhsuk-] .nhsuk-details + .nhsuk-heading-l,
  [class*=nhsuk-] .nhsuk-details + h2 {
    padding-top: 24px;
  }
}
.nhsuk-details__text {
  border: 0;
  padding: 16px 0 0;
}

.nhsuk-details__text,
.page-section .nhsuk-details__text {
  margin: 8px 0 0;
}

.callout .nhsuk-details__text,
.feedback .nhsuk-details__text,
.rationale .nhsuk-details__text {
  border-left: 4px solid #d8dde0;
  margin-top: 8px;
  padding: 16px 16px 16px 20px;
}

.callout .nhsuk-details__text {
  border-left: none;
}

.nhsuk-u-reading-width {
  max-width: 52.25em;
}

.app-u-color-secondary-text,
[class*=nhsuk-] .app-u-color-secondary-text {
  color: #415462;
}

.app-u-background-pink {
  background-color: #fceeec;
}

.js-enabled .nhsuk-radios__conditional--hidden {
  display: none;
}

.nhsuk-button:last-child {
  margin-bottom: 0;
}

[class*=nhsuk-] .app-tag--super {
  vertical-align: super;
}

[class*=nhsuk-] .nhsuk-button {
  width: 100%;
}

@media (min-width: 641px) {
  [class*=nhsuk-] .nhsuk-button {
    width: auto;
  }
}
.nhsuk-back-link__link {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.nhsuk-back-link__link:active {
  top: auto;
}

.grid-row {
  margin: 0 -16px;
}

.grid-row:after {
  clear: both;
  content: "";
  display: block;
}

@media (min-width: 769px) {
  .local-header .grid-row > *,
  .page-section .grid-row > * {
    margin-top: 0;
  }
}
.column--one-quarter {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-quarter {
    float: left;
    width: 25%;
  }
}
.column--one-third {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-third {
    float: left;
    width: 33.3333333333%;
  }
}
.column--one-half {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-half {
    float: left;
    width: 50%;
  }
}
.column--two-thirds {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--two-thirds {
    float: left;
    width: 66.6666666667%;
  }
}
.column--three-quarters {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--three-quarters {
    float: left;
    width: 75%;
  }
}
.column--one-quarter-right {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-quarter-right {
    float: right;
    width: 25%;
  }
}
.column--one-third-right {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-third-right {
    float: right;
    width: 33.3333333333%;
  }
}
.column--one-half-right {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--one-half-right {
    float: right;
    width: 50%;
  }
}
.column--two-thirds-right {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--two-thirds-right {
    float: right;
    width: 66.6666666667%;
  }
}
.column--three-quarters-right {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .column--three-quarters-right {
    float: right;
    width: 75%;
  }
}
.page-section {
  margin: 0 16px;
  max-width: 960px;
  padding: 16px 0;
}

@media (min-width: 769px) {
  .page-section {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  .page-section {
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .page-section {
    padding: 32px 0;
  }
}
.page-section + .page-section {
  padding-top: 0;
}

.page-section * + * {
  margin-top: 32px;
}

@media (min-width: 769px) {
  .page-section * + * {
    margin-top: 32px;
  }
}
.page-section [style="display: none;"] + *,
.page-section [type=hidden] + *,
.page-section br {
  margin-top: 0;
}

.page-section--collapse-bottom {
  padding-bottom: 0;
}

.measure {
  max-width: 40em;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

fieldset {
  border: 0;
  margin: 0;
  min-width: 0;
  padding: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell;
}

legend {
  color: #231f20;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  padding: 0;
  text-transform: none;
  width: 100%;
}

@media (min-width: 641px) {
  legend {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  legend {
    font-size: 20px;
    line-height: 32px;
  }
}
legend + * {
  -webkit-margin-top-collapse: separate;
}

legend + .inline-details {
  margin-top: 0;
}

textarea {
  border: 2px solid #768692;
  display: block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  padding: 0 4px;
  text-transform: none;
  width: 100%;
}

@media (min-width: 641px) {
  textarea {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  textarea {
    font-size: 20px;
    line-height: 32px;
  }
}
textarea:focus {
  outline: 3px solid #ffb81c;
}

select {
  border: 2px solid #e6e6e6;
  cursor: pointer;
  display: block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  height: 4rem;
  line-height: 32px;
  max-width: 20em;
  padding: 0 1rem;
  text-transform: none;
  width: 100%;
}

@media (min-width: 641px) {
  select {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  select {
    font-size: 20px;
    line-height: 32px;
  }
}
.field-validation-valid {
  display: none;
}

.field-validation-error {
  display: block;
}

.form-group--inline {
  display: inline-block;
  margin: 0 2em 0 0;
}

.field-validation-error:empty {
  display: none;
}

.form-group-error {
  border-left: 4px solid #b10e1e;
  margin-right: 15px;
  padding-left: 10px;
}

@media (min-width: 641px) {
  .form-group-error {
    border-left: 5px solid #b10e1e;
    padding-left: 16px;
  }
}
.field-validation-error + input[type=number],
.field-validation-error + input[type=text],
.form-control-error,
.form-group-validation-override-error-all .field-validation-error ~ div .form-textbox,
.input-validation-error[type],
[aria-invalid=true][type] {
  border: 4px solid #b10e1e;
}

.error-message,
.field-validation-error,
.form-group-validation-override .field-validation-valid {
  clear: both;
  color: #b10e1e;
  font-size: 19px;
  font-weight: 700;
  margin: 10px 0;
  padding: 2px 0;
}

.form-group-validation-override.form-group-error .field-validation-valid {
  display: inherit;
}

.form-label .error-message,
.form-label .field-validation-error,
.form-label-bold .error-message,
.form-label-bold .field-validation-error {
  padding-bottom: 0;
  padding-top: 4px;
}

.form-hint,
[class^=nhsuk-] .form-hint {
  color: #425563;
  display: block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  .form-hint,
  [class^=nhsuk-] .form-hint {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .form-hint,
  [class^=nhsuk-] .form-hint {
    font-size: 20px;
    line-height: 32px;
  }
}
h1.heading--large {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  font-weight: 700;
  line-height: 48px;
  text-transform: none;
}

@media (min-width: 641px) {
  h1.heading--large {
    font-size: 44px;
    line-height: 56px;
  }
}
@media (min-width: 769px) {
  h1.heading--large {
    font-size: 52px;
    line-height: 60px;
  }
}
h2.heading--large {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 28px;
  font-weight: 600;
  font-weight: 700;
  line-height: 48px;
  text-transform: none;
}

@media (min-width: 641px) {
  h2.heading--large {
    font-size: 32px;
    line-height: 56px;
  }
}
@media (min-width: 769px) {
  h2.heading--large {
    font-size: 36px;
    line-height: 60px;
  }
}
h1 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-transform: none;
}

@media (min-width: 641px) {
  h1 {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  h1 {
    font-size: 38px;
    line-height: 48px;
  }
}
h2 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: none;
}

@media (min-width: 641px) {
  h2 {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  h2 {
    font-size: 32px;
    line-height: 48px;
  }
}
h3 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  h3 {
    font-size: 24px;
    line-height: 32px;
  }
}
h4 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  h4 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  h4 {
    font-size: 20px;
    line-height: 32px;
  }
}
h5 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: none;
}

@media (min-width: 641px) {
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 769px) {
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
h6 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}

@media (min-width: 641px) {
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 769px) {
  h6 {
    font-size: 16px;
    line-height: 24px;
  }
}
.callout .heading--alert,
.heading--alert {
  color: #da291c;
}

.lede,
[class*=nhsuk-] .lede {
  font-size: 24px;
  line-height: 1.5;
}

.lede--strong {
  font-weight: 600;
}

hr:not(.nhsuk-section-break--visible) {
  background-color: #aeb7bd;
  border: 0;
  height: 4px;
  text-align: left;
  width: 130px;
}

.callout--alert hr:not(.nhsuk-section-break--visible) {
  background-color: #aeb7bd;
}

.callout--severe hr:not(.nhsuk-section-break--visible) {
  background-color: #fff;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

abbr[title] {
  text-decoration: none;
}

.emphasis,
b,
strong {
  font-weight: 600;
}

a:link {
  color: #005eb8;
}

a:visited {
  color: #003087;
}

a:active,
a:hover {
  color: #0095d7;
}

a:focus {
  outline: 3px solid #ffb81c;
}

.link--reverse-polarity:link,
.link--reverse-polarity:visited {
  color: #fff;
}

.link--reverse-polarity:active,
.link--reverse-polarity:hover {
  color: #d4efff;
}

.link--reverse-polarity:focus {
  outline: 3px solid #ffb81c;
}

ul {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  list-style: disc outside;
  padding-left: 1em;
  text-transform: none;
}

@media (min-width: 641px) {
  ul {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  ul {
    font-size: 20px;
    line-height: 32px;
  }
}
ul ul {
  list-style-type: circle;
}

ol {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  list-style: decimal outside;
  padding-left: 1em;
  text-transform: none;
}

@media (min-width: 641px) {
  ol {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  ol {
    font-size: 20px;
    line-height: 32px;
  }
}
ol li {
  padding-left: 0.2em;
}

dl {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  dl {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  dl {
    font-size: 20px;
    line-height: 32px;
  }
}
dl dt {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  dl dt {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  dl dt {
    font-size: 20px;
    line-height: 32px;
  }
}
.local-header dd,
.local-header li + li,
.local-header li > dl,
.local-header li > ol,
.local-header li > ul,
.page-section dd,
.page-section li + li,
.page-section li > dl,
.page-section li > ol,
.page-section li > ul {
  margin-top: 8px;
}

.list--chevron {
  list-style: none;
  padding-left: 32px;
}

.list--chevron li {
  position: relative;
}

.list--chevron li:after,
.list--chevron li:before {
  border-style: solid;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 6px;
  width: 0;
}

.list--chevron li:before {
  border-color: transparent transparent transparent #425563;
  border-width: 10px 0 10px 10px;
  left: -32px;
}

.callout--warning .list--chevron li:before {
  border-left-color: #231f20;
}

.callout--severe .list--chevron li:before {
  border-left-color: #fff;
}

.list--chevron li:after {
  border-color: transparent transparent transparent #fff;
  border-width: 10px 0 10px 10px;
  left: -38px;
}

.callout--info .list--chevron li:after,
.panel .list--chevron li:after {
  border-left-color: #f0f4f5;
}

.callout--warning .list--chevron li:after {
  border-left-color: #fdf2d5;
}

.callout--alert .list--chevron li:after {
  border-left-color: #f5e6e4;
}

.callout--severe .list--chevron li:after {
  border-left-color: #da291c;
}

.list--check,
.list--cross {
  list-style: none;
  padding-left: 32px;
}

.list--check li,
.list--cross li {
  position: relative;
}

.list--check li:after,
.list--check li:before,
.list--cross li:after,
.list--cross li:before {
  content: "";
  left: -32px;
  position: absolute;
  zoom: 1;
}

.list--check li:before {
  background: transparent;
  border: solid;
  border-color: #007f3b;
  border-width: 0 0 5px 5px;
  height: 12px;
  top: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 22px;
}

.list--cross li:after,
.list--cross li:before {
  background: #da291c;
  height: 5px;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 24px;
}

.list--cross li:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.list--numbered {
  counter-reset: numbered-list;
  padding-left: 60px;
}

.list--numbered li {
  list-style: none;
  padding-bottom: 15px;
}

.list--numbered li:before {
  border: 3px solid #005eb8;
  border-radius: 50px;
  color: #005eb8;
  content: counter(numbered-list);
  counter-increment: numbered-list;
  display: block;
  float: left;
  font-weight: 700;
  height: 40px;
  margin-left: -60px;
  margin-right: 0.5em;
  margin-top: -2px;
  text-align: center;
  width: 40px;
}

p {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  p {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  p {
    font-size: 20px;
    line-height: 32px;
  }
}
.highlight-term {
  font-style: normal;
  font-weight: 400;
}

blockquote {
  quotes: "“" "”";
}

blockquote p:before {
  content: open-quote;
}

blockquote p:after {
  content: no-close-quote;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

blockquote p:last-of-type:after {
  content: close-quote;
}

@font-face {
  font-family: Frutiger W01;
  font-style: normal;
  font-weight: 400;
  src: url(https://assets.nhs.uk/fonts/fe232554-5489-4874-bb45-bd966c8c5932.eot?#iefix);
  src: url(https://assets.nhs.uk/fonts/fe232554-5489-4874-bb45-bd966c8c5932.eot?#iefix) format("eot"), url(https://assets.nhs.uk/fonts/0811514e-6660-4043-92c1-23d0b8caaa2f.woff2) format("woff2"), url(https://assets.nhs.uk/fonts/aeae8cac-ba4d-40d2-bbcf-936f2c7dcfe6.woff) format("woff"), url(https://assets.nhs.uk/fonts/caedf2e6-fbef-4928-b08e-1f975981ae8d.ttf) format("truetype"), url(https://assets.nhs.uk/fonts/7def0e34-f28d-434f-b2ec-472bde847115.svg) format("svg");
}
@font-face {
  font-family: Frutiger W01;
  font-style: normal;
  font-weight: 700;
  src: url(https://assets.nhs.uk/fonts/eb06b4c3-c0fd-4cd0-a9d9-a2954f6839a7.eot?#iefix);
  src: url(https://assets.nhs.uk/fonts/eb06b4c3-c0fd-4cd0-a9d9-a2954f6839a7.eot?#iefix) format("eot"), url(https://assets.nhs.uk/fonts/8c92eb68-ce37-4962-a9f4-5b47d336bd1c.woff2) format("woff2"), url(https://assets.nhs.uk/fonts/9bdfdcac-bbd4-46a9-9280-056c9a4438a2.woff) format("woff"), url(https://assets.nhs.uk/fonts/5dae3a6e-9b07-4c2f-aed2-1f5b8951261b.ttf) format("truetype"), url(https://assets.nhs.uk/fonts/eae74276-dd78-47e4-9b27-dac81c3411ca.svg) format("svg");
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 16px 0 32px;
  width: 100%;
}

table caption {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin: 0 0 16px;
  text-align: left;
  text-transform: none;
}

@media (min-width: 641px) {
  table caption {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  table caption {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  table caption {
    margin-bottom: 32px;
  }
}
table td,
table th {
  border-bottom: 2px solid #d8dde0;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 12px 12px 12px 0;
  text-transform: none;
  vertical-align: top;
}

@media (min-width: 641px) {
  table td,
  table th {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 769px) {
  table td,
  table th {
    font-size: 16px;
    line-height: 24px;
  }
}
table th {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-align: left;
  text-transform: none;
}

@media (min-width: 641px) {
  table th {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  table th {
    font-size: 20px;
    line-height: 32px;
  }
}
.table--two-column th {
  width: 50%;
}

main {
  display: block;
}

.panel {
  border-color: #005eb8;
  border-left-style: solid;
  clear: both;
  padding: 16px;
}

@media (min-width: 769px) {
  .panel {
    padding: 32px;
  }
}
.panel :first-child {
  margin-top: 0;
}

.panel :last-child,
.panel :only-child {
  margin-bottom: 0;
}

.panel-border-wide {
  border-left-width: 10px;
}

.panel-border-narrow {
  border-left-width: 5px;
}

.form-group .panel-border-narrow {
  width: 100%;
}

.form-group .panel-border-narrow:first-child {
  margin-top: 10px;
}

.form-group .panel-border-narrow:last-child {
  margin-bottom: 0;
  margin-top: 0;
}

.inline .panel-border-narrow,
.inline .panel-border-narrow:last-child {
  margin-bottom: 0;
  margin-top: 10px;
}

.icon-close {
  background-repeat: no-repeat;
  color: #fff;
  height: 20px;
  position: absolute;
  right: 0;
  top: 12px;
  width: 20px;
}

.button,
button {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #007f3b;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #003317;
  box-shadow: 0 2px 0 #003317;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.25;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 641px) {
  .button,
  button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .button,
  button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .button,
  button {
    width: auto;
  }
}
.button + .button,
button + .button {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .button + .button,
  button + .button {
    margin-left: 32px;
  }
}
.button:visited,
button:visited {
  background-color: #007f3b;
}

.button:focus,
button:focus {
  outline: 3px solid #ffb81c;
}

.button:focus,
.button:hover,
button:focus,
button:hover {
  background-color: #00662f;
}

.button:active,
button:active {
  -webkit-box-shadow: 0 0 0 #007f3b;
  box-shadow: 0 0 0 #007f3b;
  top: 2px;
}

.button.disabled,
.button[disabled=disabled],
.button[disabled],
button.disabled,
button[disabled=disabled],
button[disabled] {
  opacity: 0.5;
}

.button.disabled:hover,
.button[disabled=disabled]:hover,
.button[disabled]:hover,
button.disabled:hover,
button[disabled=disabled]:hover,
button[disabled]:hover {
  background-color: #007f3b;
  cursor: default;
}

.button.disabled:active,
.button[disabled=disabled]:active,
.button[disabled]:active,
button.disabled:active,
button[disabled=disabled]:active,
button[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #003317;
  box-shadow: 0 2px 0 #003317;
  top: 0;
}

.button:focus,
.button:hover,
.button:link,
.button:visited,
button:focus,
button:hover,
button:link,
button:visited {
  color: #fff;
}

.button:before,
button:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.button:active:before,
button:active:before {
  top: -2px;
}

.button--secondary {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #425563;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #232e35;
  box-shadow: 0 2px 0 #232e35;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.25;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 641px) {
  .button--secondary {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .button--secondary {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .button--secondary {
    width: auto;
  }
}
.button--secondary + .button {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .button--secondary + .button {
    margin-left: 32px;
  }
}
.button--secondary:visited {
  background-color: #425563;
}

.button--secondary:focus {
  outline: 3px solid #ffb81c;
}

.button--secondary:focus,
.button--secondary:hover {
  background-color: #384854;
}

.button--secondary:active {
  -webkit-box-shadow: 0 0 0 #425563;
  box-shadow: 0 0 0 #425563;
  top: 2px;
}

.button--secondary.disabled,
.button--secondary[disabled=disabled],
.button--secondary[disabled] {
  opacity: 0.5;
}

.button--secondary.disabled:hover,
.button--secondary[disabled=disabled]:hover,
.button--secondary[disabled]:hover {
  background-color: #425563;
  cursor: default;
}

.button--secondary.disabled:active,
.button--secondary[disabled=disabled]:active,
.button--secondary[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #232e35;
  box-shadow: 0 2px 0 #232e35;
  top: 0;
}

.button--secondary:focus,
.button--secondary:hover,
.button--secondary:link,
.button--secondary:visited {
  color: #fff;
}

.button--secondary:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.button--secondary:active:before {
  top: -2px;
}

.button--tertiary {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #005eb8;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #00376c;
  box-shadow: 0 2px 0 #00376c;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.25;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 641px) {
  .button--tertiary {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .button--tertiary {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .button--tertiary {
    width: auto;
  }
}
.button--tertiary + .button {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .button--tertiary + .button {
    margin-left: 32px;
  }
}
.button--tertiary:visited {
  background-color: #005eb8;
}

.button--tertiary:focus {
  outline: 3px solid #ffb81c;
}

.button--tertiary:focus,
.button--tertiary:hover {
  background-color: #00519f;
}

.button--tertiary:active {
  -webkit-box-shadow: 0 0 0 #005eb8;
  box-shadow: 0 0 0 #005eb8;
  top: 2px;
}

.button--tertiary.disabled,
.button--tertiary[disabled=disabled],
.button--tertiary[disabled] {
  opacity: 0.5;
}

.button--tertiary.disabled:hover,
.button--tertiary[disabled=disabled]:hover,
.button--tertiary[disabled]:hover {
  background-color: #005eb8;
  cursor: default;
}

.button--tertiary.disabled:active,
.button--tertiary[disabled=disabled]:active,
.button--tertiary[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #00376c;
  box-shadow: 0 2px 0 #00376c;
  top: 0;
}

.button--tertiary:focus,
.button--tertiary:hover,
.button--tertiary:link,
.button--tertiary:visited {
  color: #fff;
}

.button--tertiary:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.button--tertiary:active:before {
  top: -2px;
}

.button--cancel {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #da291c;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #961c13;
  box-shadow: 0 2px 0 #961c13;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.25;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 641px) {
  .button--cancel {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .button--cancel {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .button--cancel {
    width: auto;
  }
}
.button--cancel + .button {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .button--cancel + .button {
    margin-left: 32px;
  }
}
.button--cancel:visited {
  background-color: #da291c;
}

.button--cancel:focus {
  outline: 3px solid #ffb81c;
}

.button--cancel:focus,
.button--cancel:hover {
  background-color: #c32519;
}

.button--cancel:active {
  -webkit-box-shadow: 0 0 0 #da291c;
  box-shadow: 0 0 0 #da291c;
  top: 2px;
}

.button--cancel.disabled,
.button--cancel[disabled=disabled],
.button--cancel[disabled] {
  opacity: 0.5;
}

.button--cancel.disabled:hover,
.button--cancel[disabled=disabled]:hover,
.button--cancel[disabled]:hover {
  background-color: #da291c;
  cursor: default;
}

.button--cancel.disabled:active,
.button--cancel[disabled=disabled]:active,
.button--cancel[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #961c13;
  box-shadow: 0 2px 0 #961c13;
  top: 0;
}

.button--cancel:focus,
.button--cancel:hover,
.button--cancel:link,
.button--cancel:visited {
  color: #fff;
}

.button--cancel:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.button--cancel:active:before {
  top: -2px;
}

button[data-inline-spinner][disabled] {
  opacity: 0.5;
}

.button--link {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #005eb8;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  width: auto;
}

.button--link[data-inline-spinner][disabled] {
  color: #005eb8;
  opacity: 1;
}

.button--link-full-stop:after {
  color: #000;
  content: ".";
  position: absolute;
}

.button--link:focus,
.button--link:hover {
  background: none;
  border: none;
  color: #0095d7;
}

.button--link:active {
  background: #ffb81c;
}

.button--link[data-inline-spinner][disabled],
.button--link[data-inline-spinner][disabled]:hover,
.js-find-location[disabled],
.js-find-location[disabled]:hover {
  background-color: transparent;
  opacity: 1;
}

.button--compact {
  padding: 4px 12px;
  width: auto;
}

.button--stacked,
[class^=nhsuk-] .button--stacked {
  display: block !important;
}

.callout {
  background-color: #fff;
  padding: 16px;
}

@media (min-width: 769px) {
  .callout {
    padding: 32px;
  }
}
.callout:focus {
  outline: 3px solid #ffb81c;
}

.callout h1 {
  color: #231f20;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: none;
}

@media (min-width: 641px) {
  .callout h1 {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  .callout h1 {
    font-size: 32px;
    line-height: 48px;
  }
}
.callout--info,
.callout--muted {
  background-color: #fff;
}

.callout--info {
  border: solid #4c6272;
  border-width: 0 0 0 4px;
}

.callout--attention {
  border: 8px solid #005eb8;
}

.callout--warning {
  background-color: #fff;
  border: solid #ffb81c;
  border-width: 4px 0 0;
}

.callout--alert {
  background-color: #fff;
  border-top: 8px solid #d5281b;
}

.callout--alert-bordered {
  border-bottom: 1px solid #d8dde0;
  border-left: 1px solid #d8dde0;
  border-right: 1px solid #d8dde0;
}

.callout--disposition {
  background-color: #005eb8;
  border: none;
  color: #fff;
}

.callout--severe {
  background-color: #da291c;
  color: #fff;
}

.callout--severe a:link,
.callout--severe a:visited {
  color: #fff;
}

.callout--severe a:active,
.callout--severe a:hover {
  color: #d4efff;
}

.callout--severe a:focus {
  outline: 3px solid #ffb81c;
}

.callout--error {
  background-color: #fff;
  border: 4px solid #d5281b;
}

.callout--compact {
  display: inline-block;
}

@media (min-width: 769px) {
  .callout--compact {
    padding: 16px 24px;
  }
}
.callout--lite {
  border-width: 0 0 0 4px;
}

@media (min-width: 600px) {
  .cards {
    display: grid;
    grid-gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .card {
    margin-top: 0;
  }
}
.card {
  background: #fff;
  border: 2px solid #f0f3f5;
  border-left-width: 8px;
  margin: 10px 0 0;
  padding: 20px 10px;
}

.card h3 {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  .card h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .card h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.card p {
  color: #425563;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}

@media (min-width: 641px) {
  .card p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 769px) {
  .card p {
    font-size: 16px;
    line-height: 24px;
  }
}
.card a {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  .card a {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .card a {
    font-size: 20px;
    line-height: 32px;
  }
}
.card * + * {
  margin-top: 16px;
}

.card__details,
p.card__details {
  color: #231f20;
  font-weight: 600;
}

.card__details {
  vertical-align: top;
}

.card__details,
.card__details--times {
  display: inline-block;
}

.card__details {
  padding-right: 5px;
}

.card__details--times span {
  display: block;
}

.card:nth-child(2n) {
  -ms-grid-column: 2;
}

.card:nth-child(3),
.card:nth-child(4) {
  -ms-grid-row: 2;
}

.card:nth-child(5),
.card:nth-child(6) {
  -ms-grid-row: 3;
}

.card:nth-child(7),
.card:nth-child(8) {
  -ms-grid-row: 4;
}

.card:nth-child(10),
.card:nth-child(9) {
  -ms-grid-row: 5;
}

.card:nth-child(11),
.card:nth-child(12) {
  -ms-grid-row: 6;
}

.card:nth-child(13),
.card:nth-child(14) {
  -ms-grid-row: 7;
}

.card:nth-child(15),
.card:nth-child(16) {
  -ms-grid-row: 8;
}

.cards--numbered .card__marker-link {
  background: #f6544c;
  border: 3px solid #e3423a;
  border-radius: 50px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #000;
  cursor: pointer;
  display: none;
  float: right;
  font-weight: 700;
  height: 40px;
  margin-left: 15px;
  margin-right: 0.5em;
  padding: 0;
  text-align: center;
  width: 40px;
}

.global-cookies-banner p {
  margin-bottom: 4px;
}

.global-cookies-banner button {
  margin: 8px 0;
}

@media (min-width: 641px) {
  .global-cookies-banner button {
    margin-bottom: 0;
  }
}
.form-label,
label {
  display: block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  .form-label,
  label {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .form-label,
  label {
    font-size: 20px;
    line-height: 32px;
  }
}
.form-label--large {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: none;
}

@media (min-width: 641px) {
  .form-label--large {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  .form-label--large {
    font-size: 32px;
    line-height: 48px;
  }
}
.form-label__hint {
  color: #425563;
  display: block;
  font-weight: 400;
  margin-top: 8px;
}

@media (min-width: 769px) {
  .form-label__hint {
    margin-top: 16px;
  }
}
h1 label,
h2 label h3 label h4 label {
  font-size: inherit;
  line-height: inherit;
}

.form-textbox,
input[type=number],
input[type=text] {
  border: 2px solid #005eb8;
  display: block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  max-width: 540px;
  padding: 4px;
  text-transform: none;
  width: 100%;
}

@media (min-width: 641px) {
  .form-textbox,
  input[type=number],
  input[type=text] {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .form-textbox,
  input[type=number],
  input[type=text] {
    font-size: 20px;
    line-height: 32px;
  }
}
.form-textbox:focus,
input[type=number]:focus,
input[type=text]:focus {
  outline: 3px solid #ffb81c;
}

.form-textbox--small[type] {
  width: 4em;
}

.form-textbox[maxlength="1"] {
  width: 2em;
}

.form-textbox[maxlength="2"] {
  width: 3em;
}

.form-textbox[maxlength="3"],
.form-textbox[maxlength="4"] {
  width: 4em;
}

.form-textbox--postcode {
  width: 8em !important;
}

.link-list__row {
  margin: 0 -16px;
}

.link-list__row:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 769px) {
  .local-header .link-list__row > *,
  .page-section .link-list__row > * {
    margin-top: 0;
  }
}
.link-list {
  list-style: none;
  padding-left: 0;
}

.link-list--numbered {
  list-style: decimal;
}

.link-list--numbered .link-list__item {
  margin-left: 1.2em;
}

.link-list--one-half {
  display: block;
  padding: 0 16px;
}

@media (min-width: 769px) {
  .link-list--one-half {
    float: left;
    width: 50%;
  }
}
.link-list--one-half + .link-list--one-half {
  margin-top: 8px;
}

@media (min-width: 769px) {
  .link-list--one-half + .link-list--one-half {
    margin-top: 0;
  }
}
.link-list--results li {
  margin-bottom: 32px;
}

.link-list--results li p {
  margin-top: 16px;
}

.local-header {
  background-color: #005eb8;
  margin: 32px 16px 0;
  max-width: 960px;
  padding: 32px 16px 16px;
}

@media (min-width: 769px) {
  .local-header {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  .local-header {
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .local-header {
    margin-top: 32px;
    padding: 32px;
  }
}
@media (min-width: 641px) {
  .local-header {
    padding-top: 32px;
  }
}
@media (min-width: 769px) {
  .local-header {
    padding-top: 48px;
  }
}
.grid-row .local-header {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

.local-header a:link,
.local-header a:visited {
  color: #fff;
}

.local-header a:active,
.local-header a:hover {
  color: #d4efff;
}

.local-header a:focus {
  outline: 3px solid #ffb81c;
}

.local-header * + * {
  margin-top: 32px;
}

@media (min-width: 769px) {
  .local-header * + * {
    margin-top: 32px;
  }
}
.page-section .local-header {
  margin: 0 auto;
}

.local-header__return {
  background-color: #005eb8;
  border: 2px solid #76adda;
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  text-decoration: none;
}

.local-header__return:link,
.local-header__return:visited {
  color: #fff;
}

.local-header__return:active,
.local-header__return:hover {
  color: #d4efff;
}

.local-header__return:focus {
  outline: 3px solid #ffb81c;
}

.local-header__return:hover {
  border-color: #e6eff8;
  color: #fff;
}

.local-header__title {
  color: #fff;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  margin: 0;
  text-transform: none;
}

@media (min-width: 641px) {
  .local-header__title {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  .local-header__title {
    font-size: 32px;
    line-height: 48px;
  }
}
@media (min-width: 641px) {
  .local-header__title {
    padding-top: 16px;
  }
}
.local-header__intro {
  color: #fff;
  margin-top: 16px;
  max-width: none;
  padding-top: 16px;
  position: relative;
}

@media (min-width: 769px) {
  .local-header__intro {
    margin-top: 32px;
    padding-top: 16px;
  }
}
.local-header__intro:before {
  background-color: #76adda;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: -2px;
  width: 130px;
}

.local-header__intro p {
  max-width: none;
}

.local-header__intro * + * {
  margin-top: 16px;
}

.service-map {
  border: 2px solid #f0f3f5;
  display: none;
  height: 250px;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
}

.multiple-choice--radio {
  line-height: 38px;
  padding-left: 10px;
  vertical-align: top;
}

.multiple-choice {
  margin: 0;
  position: relative;
}

input[type=checkbox] + label,
input[type=radio] + label {
  clear: left;
  cursor: pointer;
  display: block;
  font-size: 19px;
  font-weight: 400;
  min-height: 38px;
  padding: 2px 0 2px 55px;
  position: relative;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
  filter: alpha(opacity=0);
  height: 38px;
  left: 0;
  margin: 0 0 0 10px;
  opacity: 0;
  position: absolute;
  width: 38px;
  z-index: 1;
}

input[type=radio] + label:before {
  background: #fff;
  border: 3px solid #005eb8;
  border-radius: 50%;
  content: "";
  height: 38px;
  left: 0;
  position: absolute;
  top: 0;
  width: 38px;
}

input[type=radio] + label:after {
  border: 10px solid;
  border-radius: 50%;
  content: "";
  filter: alpha(opacity=0);
  height: 0;
  left: 9px;
  opacity: 0;
  position: absolute;
  top: 9px;
  width: 0;
  zoom: 1;
}

input[type=checkbox] + label:before {
  background: #fff;
  border: 3px solid #005eb8;
  content: "";
  height: 38px;
  left: 0;
  position: absolute;
  top: 0;
  width: 38px;
}

input[type=checkbox] + label:after {
  background: transparent;
  border: solid;
  border-width: 0 0 5px 5px;
  content: "";
  filter: alpha(opacity=0);
  height: 12px;
  left: 8px;
  opacity: 0;
  position: absolute;
  top: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 22px;
  zoom: 1;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
  filter: alpha(opacity=100);
  opacity: 1;
  zoom: 1;
}

input[type=checkbox]:focus + label:before,
input[type=radio]:focus + label:before {
  -webkit-box-shadow: 0 0 0 3px #ffb81c;
  box-shadow: 0 0 0 3px #ffb81c;
}

input[type=checkbox][disabled] + label,
input[type=radio][disabled] + label {
  color: #4c6272;
}

input[type=checkbox][disabled] + label:before,
input[type=radio][disabled] + label:before {
  background-color: #eee;
  border-color: #ccc;
}

[aria-invalid=true][type=checkbox] + label:before,
[aria-invalid=true][type=radio] + label:before {
  border: 4px solid #b10e1e;
}

input[type=checkbox] ~ details,
input[type=radio] ~ details {
  padding-left: 50px;
}

.multiple-choice--inline {
  width: auto;
}

@media (min-width: 641px) {
  .multiple-choice--inline {
    clear: none;
  }
  .multiple-choice--inline ~ .multiple-choice--inline {
    margin-left: 32px;
  }
}
input[type=checkbox] + label + .toggle-content,
input[type=radio] + label + .toggle-content {
  display: none;
  margin-left: 17px;
}

input[type=checkbox]:checked + label + .toggle-content,
input[type=radio]:checked + label + .toggle-content {
  display: block;
}

.notification-banner {
  background-color: #f0f4f5;
}

.notification-banner * {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: none;
}

@media (min-width: 641px) {
  .notification-banner * {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 769px) {
  .notification-banner * {
    font-size: 16px;
    line-height: 24px;
  }
}
.js-enabled .notification-banner--js-hidden,
.notification-banner__hidden {
  display: none;
}

.notification-banner--hiviz {
  background-color: #fada8b;
}

.notification-banner--hiviz a:link {
  color: #004d97;
}

.notification-banner--hiviz a:visited {
  color: #00276f;
}

.notification-banner--hiviz a:active,
.notification-banner--hiviz a:hover {
  color: #007ab0;
}

.notification-banner--hiviz a:focus {
  outline: 3px solid #ffb81c;
}

.notification-banner--system {
  background: #231f20 repeating-linear-gradient(45deg, #231f20, #231f20 10px, #4f4c4d 0, #4f4c4d 20px);
  color: #fff;
}

.notification-banner--system strong {
  font-weight: 600;
}

.notification-banner--inner {
  margin: 0 16px;
  max-width: 960px;
  padding: 8px 0;
  position: relative;
}

@media (min-width: 769px) {
  .notification-banner--inner {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  .notification-banner--inner {
    margin: 0 auto;
  }
}
.phase-banner {
  border-bottom: 1px solid #e6eff8;
  font-size: 16px;
  margin: 0 16px;
  max-width: 960px;
  padding: 5px 0;
}

@media (min-width: 769px) {
  .phase-banner {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  .phase-banner {
    margin: 0 auto;
  }
}
.banner,
.banner--alpha,
.banner--beta {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 4px;
  text-transform: uppercase;
}

.banner--alpha {
  background-color: #006747;
}

.banner--beta {
  background-color: #ffb81c;
}

.phase-message {
  color: #425563;
  padding-left: 8px;
}

.highlight-term {
  font-style: inherit;
  font-weight: inherit;
}

.search-typography,
.search-typography li,
.search-typography p,
.search-typography ul {
  font-size: 17px;
  line-height: 28px;
}

.search-typography h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.125;
  margin: 16px 0;
}

.search-typography .measure,
.search-typography.measure {
  max-width: 34em;
}

.link-list--results .search__topic-covers,
.search-typography .form-hint {
  color: #425563;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.search-typography .heading--body {
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  margin: 0;
}

.search-typography summary + div {
  margin-top: 16px;
}

.search-typography .callout--info ul {
  margin: 8px 0 16px !important;
  padding-left: 19px;
}

.search-typography .callout--info li {
  margin: 0 0 8px;
}

.search-typography .callout--info p {
  margin: 0 0 16px;
}

.search-typography .heading--body + p {
  margin: 16px 0 32px;
}

.search-typography .search__searchbox input:focus {
  border: 2px solid #005eb8;
}

.search-typography .search__searchbox button:focus,
.search-typography .search__searchbox input:focus {
  -webkit-box-shadow: 0 0 0 5px #ffb81c;
  box-shadow: 0 0 0 5px #ffb81c;
  outline: 0;
}

.search__button--back,
[class*=nhsuk-] .search__button--back,
[class^=nhsuk-] .search__button--back {
  background: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  color: #231f20;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 0 12px 0 0;
  text-decoration: underline;
  width: auto;
}

.search__button--back:focus,
.search__button--back:hover {
  background: inherit;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  color: inherit;
}

.search__button--back:active,
.search__button--back:link,
.search__button--back:visited {
  color: #425563;
}

.search__button--back:before,
[class*=nhsuk-] .search__button--back:before,
[class^=nhsuk-] .search__button--back:before {
  border-bottom: 5px solid transparent;
  border-right: 5px solid #425563;
  border-top: 5px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  margin-right: 8px;
  position: inherit;
  width: 0;
}

.search-typography .search__category + .search__category {
  margin-top: 0;
}

.search-typography .link-list--results li {
  margin: 0 0 24px;
}

.search__topic {
  display: block;
  text-decoration: none;
}

.search__topic-title {
  display: block;
  font-weight: 700;
  text-decoration: underline;
}

.link-list--results .search__topic-description {
  color: #231f20;
  font-size: 17px;
  line-height: 28px;
  margin: 0;
}

.link-list--results .search__topic-covers {
  margin-bottom: 2px;
  margin-top: 2px;
}

.button--search {
  background-color: #005eb8;
  border: 2px solid #005eb8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.search__searchbox input {
  font-size: 17px;
  max-width: none;
  padding: 8px;
  width: 100%;
}

.search__searchbox button {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #005eb8;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #00376c;
  box-shadow: 0 2px 0 #00376c;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin-top: 1rem;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}

@media (min-width: 641px) {
  .search__searchbox button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .search__searchbox button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .search__searchbox button {
    width: auto;
  }
}
.search__searchbox button + .button {
  margin-top: 16px;
}

@media (min-width: 769px) {
  .search__searchbox button + .button {
    margin-left: 32px;
  }
}
.search__searchbox button:visited {
  background-color: #005eb8;
}

.search__searchbox button:focus {
  outline: 3px solid #ffb81c;
}

.search__searchbox button:focus,
.search__searchbox button:hover {
  background-color: #00519f;
}

.search__searchbox button:active {
  -webkit-box-shadow: 0 0 0 #005eb8;
  box-shadow: 0 0 0 #005eb8;
  top: 2px;
}

.search__searchbox button.disabled,
.search__searchbox button[disabled=disabled],
.search__searchbox button[disabled] {
  opacity: 0.5;
}

.search__searchbox button.disabled:hover,
.search__searchbox button[disabled=disabled]:hover,
.search__searchbox button[disabled]:hover {
  background-color: #005eb8;
  cursor: default;
}

.search__searchbox button.disabled:active,
.search__searchbox button[disabled=disabled]:active,
.search__searchbox button[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #00376c;
  box-shadow: 0 2px 0 #00376c;
  top: 0;
}

.search__searchbox button:focus,
.search__searchbox button:hover,
.search__searchbox button:link,
.search__searchbox button:visited {
  color: #fff;
}

.search__searchbox button:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.search__searchbox button:active:before {
  top: -2px;
}

.search__categories {
  margin-top: 0;
}

.search__nested-category .nhsuk-details__summary {
  padding: 0;
  text-indent: 0;
}

.search__nested-category .nhsuk-details__summary:before,
.search__nested-category[open] .nhsuk-details__summary:before {
  border: 0;
  -webkit-clip-path: none;
  clip-path: none;
  display: inline-block;
  height: auto;
  left: auto;
  position: static;
  top: auto;
  width: 24px;
}

.search__nested-category .nhsuk-details__summary:before {
  content: "+";
}

.search__nested-category[open] .nhsuk-details__summary:before {
  content: "-";
}

.search__nested-category ul {
  padding-left: 24px;
}

.search__category {
  border: 1px solid #d8dde0;
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  margin-bottom: 4px;
  min-width: 1em;
  padding: 2px 8px;
  text-decoration: none;
}

.search__category:focus,
.search__category:hover {
  background-color: #005eb8;
  border-color: #005eb8;
  color: #fff;
}

@media (min-width: 500px) {
  .search__searchbox button {
    -ms-grid-column: 2;
    width: auto;
  }
  .search__searchbox {
    display: grid;
    grid-template-columns: 3fr 1fr;
  }
  .field-validation-error + .search__searchbox {
    margin-top: 0;
  }
  @supports (display: grid) {
    .search__searchbox button {
      margin-top: 0;
    }
  }
}
@media (min-width: 500px) and (-ms-high-contrast: none) {
  .search__searchbox button {
    margin-top: 0;
  }
}
@media (min-width: 500px) {
  .search-typography,
  .search-typography li,
  .search-typography p,
  .search-typography ul {
    font-size: 19px;
    line-height: 32px;
  }
  .search-typography h1 {
    font-size: 48px;
    line-height: 1.166;
    margin: 16px 0 40px;
  }
  .link-list--results .search__topic-covers,
  .search-typography .form-hint {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .search-typography .heading--body {
    font-size: 19px;
    line-height: 32px;
  }
  .search__category,
  .search__searchbox input {
    font-size: 19px;
  }
  .link-list--results .search__topic-description {
    font-size: 19px;
    line-height: 32px;
  }
  .search__nested-category summary {
    font-size: 24px;
  }
}
.skiplinks {
  background-color: #e6eff8;
  line-height: 0;
}

.skiplinks__inner {
  margin: 0 16px;
  max-width: 960px;
}

@media (min-width: 769px) {
  .skiplinks__inner {
    margin: 0 32px;
  }
}
@media (min-width: 1024px) {
  .skiplinks__inner {
    margin: 0 auto;
  }
}
a.skiplinks__link {
  padding: 8px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

a.skiplinks__link:focus {
  color: #005eb8;
  line-height: 50px;
  -moz-user-select: initial;
  -webkit-user-select: initial;
  -ms-user-select: initial;
  user-select: auto;
  clip: auto;
  position: static;
}

.disposition-set {
  counter-reset: set;
}

.disposition-unit {
  margin: 16px 0 32px;
  padding: 0 32px 0 40px;
  position: relative;
}

@media (min-width: 500px) {
  .disposition-unit {
    border-top: 0;
    margin: 32px 0;
    padding: 0 0 0 56px;
  }
}
.disposition-unit:first-child {
  border-top: 0;
  padding-top: 0;
}

.disposition-unit:before {
  background-color: #fff;
  border: 2px solid #aeb7bd;
  border-radius: 100%;
  content: counter(set);
  counter-increment: set;
  height: 24px;
  left: 0;
  line-height: 21px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 24px;
  z-index: 2;
}

@media (min-width: 500px) {
  .disposition-unit:before {
    background-color: #fff;
    border: 4px solid #aeb7bd;
    border-radius: 100%;
    height: 32px;
    line-height: 24px;
    text-align: center;
    width: 32px;
  }
}
.disposition-unit:after {
  border-left: 2px solid #aeb7bd;
  content: "";
  height: 102%;
  left: 11px;
  position: absolute;
  top: 24px;
  z-index: 1;
}

@media (min-width: 500px) {
  .disposition-unit:after {
    border-left-width: 4px;
    left: 14px;
    top: 32px;
  }
}
.disposition-unit:last-child:after {
  border: 0;
}

.disposition-unit .collapse-title :first-child {
  margin-top: 0;
}

.micro-survey {
  background: #fff;
  border-top: 4px solid #fada8b;
}

.micro-survey__toggle-element {
  display: none;
}

#microSurveyPrevious,
input:checked ~ .micro-survey__toggle-element {
  display: block;
}

.micro-survey--offering {
  background: #fada8b;
  border: none;
}

.micro-survey--offering .page-section {
  padding: 16px 0;
}

.template-debug-wrapper {
  margin: 0 !important;
}

.template-debug-enabled .template-debug-wrapper {
  margin: 10px !important;
  outline: 2px dotted #333;
  padding: 20px 10px 10px;
  position: relative;
}

.template-debug-enabled .template-debug-wrapper:before {
  background-color: #333;
  color: #fff;
  content: attr(data-template-filename);
  font-size: 10px;
  height: 15px;
  left: 0;
  line-height: 15px;
  padding: 0 5px;
  position: absolute;
  top: 0;
}

.template-debug-toggle {
  position: fixed;
  right: 5px;
  top: 5px;
  z-index: 1;
}

.template-debug-toggle label {
  background-color: #007f3b;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  padding: 2px;
  text-align: center;
}

.template-debug-toggle input {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.app-u-no-focus-outline:focus {
  outline: 0;
}

.app-u-color-red {
  color: #d5281b;
}

.app-u-color-secondary-text {
  color: #415462;
}

.app-u-background-pink {
  background-color: #fae9e8;
}

.app-u-background-white {
  background-color: #fff;
}

.app-loading-overlay {
  background: #e6e6e6;
  height: 100%;
  left: 0;
  margin: 0;
  opacity: 0.9;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.app-loading-overlay__inner {
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.app-loading-overlay__text {
  font-size: nhsuk-font-size(19);
  font-weight: 700;
  margin-bottom: 32px;
}

.app-spinner {
  color: #212b32;
  display: inline-block;
  height: 80px;
  margin: 0;
  position: relative;
  width: 80px;
}

.app-spinner div {
  -webkit-animation: app-spinner 1.2s linear infinite;
  animation: app-spinner 1.2s linear infinite;
  margin: 0;
  -webkit-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
}

.app-spinner div:after {
  background: #212b32;
  border-radius: 20%;
  content: " ";
  display: block;
  height: 18px;
  left: 37px;
  position: absolute;
  top: 3px;
  width: 6px;
}

.app-spinner div:first-child {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.app-spinner div:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.app-spinner div:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.app-spinner div:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.app-spinner div:nth-child(5) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.app-spinner div:nth-child(6) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.app-spinner div:nth-child(7) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.app-spinner div:nth-child(8) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.app-spinner div:nth-child(9) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.app-spinner div:nth-child(10) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.app-spinner div:nth-child(11) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.app-spinner div:nth-child(12) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

@-webkit-keyframes app-spinner {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes app-spinner {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.app-standalone-spinner {
  display: block;
  margin: 32px auto;
}

.app-standalone-spinner .app-spinner {
  display: block;
  margin: 0 auto;
}

.app-standalone-spinner__text {
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}

.app-inline-spinner {
  color: #fff;
  display: block;
  height: 30px;
  left: 50%;
  margin: 0 !important;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 30px;
}

button[data-inline-spinner][disabled] {
  color: transparent;
}

.app-inline-spinner span {
  -webkit-animation: app-inline-spinner 1.2s linear infinite;
  animation: app-inline-spinner 1.2s linear infinite;
  display: block;
  margin: 0 !important;
  -webkit-transform-origin: 15px 15px;
  transform-origin: 15px 15px;
}

.app-inline-spinner span:after {
  background: #fff;
  border-radius: 20%;
  content: " ";
  display: block;
  height: 8px;
  left: 13px;
  position: absolute;
  top: 2px;
  width: 4px;
}

.app-inline-spinner--after {
  left: 100%;
  margin-left: 12px !important;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.app-inline-spinner--after span:after {
  background-color: #4c6272;
}

.app-inline-spinner span:first-child {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.app-inline-spinner span:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.app-inline-spinner span:nth-child(3) {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.app-inline-spinner span:nth-child(4) {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.app-inline-spinner span:nth-child(5) {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.app-inline-spinner span:nth-child(6) {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.app-inline-spinner span:nth-child(7) {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.app-inline-spinner span:nth-child(8) {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}

.app-inline-spinner span:nth-child(9) {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}

.app-inline-spinner span:nth-child(10) {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.app-inline-spinner span:nth-child(11) {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}

.app-inline-spinner span:nth-child(12) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}

@-webkit-keyframes app-inline-spinner {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes app-inline-spinner {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.app-full-page-overlay {
  background-color: #f0f4f5;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
}

.app-body-has-full-page-overlay {
  height: 100vh;
  overflow: hidden;
}

[class^=nhsuk-] .loader {
  -webkit-animation: loadingspin 1s linear infinite;
  animation: loadingspin 1s linear infinite;
  border: 0.33em solid #eee;
  border-radius: 50%;
  border-top-color: #005eb8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1.2em;
  pointer-events: none;
  width: 1.2em;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@-webkit-keyframes loadingspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes loadingspin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
[class^=nhsuk-] input[type=checkbox] + label.nhsuk-label,
[class^=nhsuk-] input[type=radio] + label.nhsuk-label {
  position: static;
}

[class^=nhsuk-] .multiple-choice--radio.nhsuk-radios__label {
  margin-bottom: 0 !important;
}

[class^=nhsuk-] .callout.nhsuk-hint {
  background-color: transparent;
  border: 0;
  padding: 0;
}

[class^=nhsuk-] .nhsuk-fieldset__legend h1 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

html.nhsuk-core {
  background-color: #d8dde0;
}

.nhsuk-list--border li {
  border-bottom: 1px solid #d8dde0;
  padding: 8px 0 16px;
}

.app-list--spaced > li:not(:last-child) {
  margin-bottom: 1em;
}

.nhsuk-related-nav {
  border-top: 1px solid #d8dde0;
}

@media (max-width: 48.0525em) {
  .nhsuk-related-nav {
    margin-top: 48px;
  }
}
.nhsuk-related-nav__heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 12px;
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__heading {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.2;
  }
}
@media print {
  .nhsuk-related-nav__heading {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-related-nav__list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__list {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-related-nav__list {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-related-nav__list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__list {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-related-nav__list {
    font-size: 14pt;
    line-height: 1.2;
  }
}
/* stylelint-disable color-no-hex */
/* stylelint-enable color-no-hex */
/* stylelint-disable string-quotes, order/properties-alphabetical-order */
/* stylelint-disable indentation */
/* stylelint-disable color-no-hex */
/* ==========================================================================
   GENERIC / #BOX-SIZING
   ========================================================================== */
/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * http://paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* stylelint-disable indentation */
/* ==========================================================================
   ELEMENTS / #FORMS
   ========================================================================== */
/**
 * Make sure our form elements don’t use any UA-specific font styles: we want
 * them to use ours. This may need reverting as more design information becomes
 * available, and we start putting together more complete forms.
 */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* ==========================================================================
   ELEMENTS / #LINKS
   ========================================================================== */
/**
 * Our basic `<a>` elements only need very minimal styling.
 * It uses the @mixin nhsuk-link-style-default within tools/links.
 * Anything more opinionated (e.g. buttons, calls-to-action, etc.) will need a
 * class defining in the Components layer.
 *
 * 1. Outputs full link URL for print.
 * 2. Point unit used for print.
 */
a {
  color: #005eb8;
}

a:visited {
  color: #330072;
}

a:hover {
  color: #7c2855;
  text-decoration: none;
}

a:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

a:focus:hover {
  text-decoration: none;
}

a:focus:visited {
  color: #212b32;
}

a:focus .nhsuk-icon {
  fill: #212b32;
}

a:active {
  color: #002f5c;
}

@media print {
  a:after {
    color: #212b32;
    content: " (Link: " attr(href) ")"; /* [1] */
    font-size: 14pt; /* [2] */
  }
}
.nhsuk-link--no-visited-state:link {
  color: #005eb8;
}

.nhsuk-link--no-visited-state:visited {
  color: #005eb8;
}

.nhsuk-link--no-visited-state:hover {
  color: #7c2855;
}

.nhsuk-link--no-visited-state:active {
  color: #002f5c;
}

.nhsuk-link--no-visited-state:focus {
  color: #212b32;
}

/* ==========================================================================
   ELEMENTS / #PAGE
   ========================================================================== */
/**
 * High-level, page-level styling.
 *
 * 1. The reason for this is to prevent "centering jumps" when navigating back
 *    and forth between pages with enough content to have a vertical scroll bar
 *    and pages that do not.
 * 2. Fonts on OSX will look more consistent with other systems that do not
 *    render text using sub-pixel anti-aliasing.
 * 3. Override the user agent style margin of 8px.
 * 4. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background-color: #d8dde0;
  overflow-y: scroll; /* [1] */
  font-family: Frutiger W01, Arial, Sans-serif;
}

@font-face {
  font-display: swap;
  font-family: "Frutiger W01";
  font-style: normal;
  font-weight: 400;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-55Roman.svg#7def0e34-f28d-434f-b2ec-472bde847115") format("svg");
}
@font-face {
  font-display: swap;
  font-family: "Frutiger W01";
  font-style: normal;
  font-weight: 600;
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix");
  src: url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.eot?#iefix") format("eot"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff2") format("woff2"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.woff") format("woff"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.ttf") format("truetype"), url("https://assets.nhs.uk/fonts/FrutigerLTW01-65Bold.svg#eae74276-dd78-47e4-9b27-dac81c3411ca") format("svg");
}
body {
  background-color: #f0f4f5;
  color: #212b32;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale; /* [2] */
  -webkit-font-smoothing: antialiased; /* [2] */
  line-height: 1.5;
  margin: 0; /* [3] */
  min-height: 100%; /* [4] */
}

/* ==========================================================================
   ELEMENTS / #TABLES
   ========================================================================== */
/**
 * 1. Force `<table>`s to be full-width by default.
 */
table {
  margin-bottom: 40px;
  border-spacing: 0;
  vertical-align: top;
  width: 100%; /* [1] */
}

@media (min-width: 40.0625em) {
  table {
    margin-bottom: 48px;
  }
}
@media print {
  table {
    page-break-inside: avoid;
  }
}
thead th {
  border-bottom: 2px solid #d8dde0;
}

th,
td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-top: 8px;
  border-bottom: 1px solid #d8dde0;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  th,
  td {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  th,
  td {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-right: 24px;
  }
}
@media (min-width: 40.0625em) {
  th,
  td {
    padding-top: 16px;
  }
}
th:last-child,
td:last-child {
  padding-right: 0;
}

th {
  font-weight: 600;
}

caption {
  font-weight: 600;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  text-align: left;
}

@media (min-width: 40.0625em) {
  caption {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  caption {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-form-group {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group {
    margin-bottom: 24px;
  }
}
.nhsuk-form-group .nhsuk-form-group:last-of-type {
  margin-bottom: 0;
}

.nhsuk-form-group--wrapper {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group--wrapper {
    margin-bottom: 32px;
  }
}
.nhsuk-form-group--error {
  border-left: 4px solid #d5281b;
  padding-left: 16px;
}

.nhsuk-form-group--error .nhsuk-form-group {
  border: 0;
  padding: 0;
}

/* ==========================================================================
   OBJECTS / #GRID
   ========================================================================== */
/* ==========================================================================
   OBJECTS / #MAIN-WRAPPER
   ========================================================================== */
/**
 * Page wrapper for the grid system
 *
 * Usage:
 * <div class="nhsuk-width-container">
 *   <div class="nhsuk-main-wrapper">
 *    <!-- Wrapper for the main content of your page which applies padding
 *         to the top / bottom -->
 *   </div>
 * </div>
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. In IE11 the `main` element can be used, but is not recognized  –
 *    meaning it's not defined in IE's default style sheet,
 *    so it uses CSS initial value, which is inline.
 */
/* ==========================================================================
   OBJECTS / #WIDTH-CONTAINER
   ========================================================================== */
/**
 * Page width for the grid system
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. On mobile, add half width gutters
 * 2. Limit the width of the container to the page width
 * 3. From desktop, add full width gutters
 * 4. As soon as the viewport is greater than the width of the page plus the
 *    gutters, just centre the content instead of adding gutters.
 * 5. Full width container, spanning the entire width of the viewport
 */
/* ==========================================================================
   STYLES / #ICONS
   ========================================================================== */
.nhsuk-icon {
  height: 34px;
  width: 34px;
}

.nhsuk-icon__search {
  fill: #005eb8;
}

.nhsuk-icon__chevron-left {
  fill: #005eb8;
}

.nhsuk-icon__chevron-right {
  fill: #005eb8;
}

.nhsuk-icon__close {
  fill: #005eb8;
}

.nhsuk-icon__cross {
  fill: #d5281b;
}

.nhsuk-icon__tick {
  stroke: #007f3b;
}

.nhsuk-icon__arrow-right {
  fill: #005eb8;
}

.nhsuk-icon__arrow-left {
  fill: #005eb8;
}

.nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
}

.nhsuk-icon__chevron-down {
  fill: #005eb8;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.nhsuk-icon__chevron-down path {
  fill: #ffffff;
}

.nhsuk-icon__chevron-up {
  fill: #005eb8;
}

.nhsuk-icon__chevron-up path {
  fill: #ffffff;
}

.nhsuk-icon__emdash path {
  fill: #aeb7bd;
}

.nhsuk-icon__plus {
  fill: #005eb8;
}

.nhsuk-icon__minus {
  fill: #005eb8;
}

.nhsuk-icon--size-25 {
  height: 42.5px;
  width: 42.5px;
}

.nhsuk-icon--size-50 {
  height: 51px;
  width: 51px;
}

.nhsuk-icon--size-75 {
  height: 59.5px;
  width: 59.5px;
}

.nhsuk-icon--size-100 {
  height: 68px;
  width: 68px;
}

/* ==========================================================================
   STYLES / #LISTS
   ========================================================================== */
/**
 * 1. 'Random number' used to align ul and ol left with content.
 * 2. 'Random number' used to give sufficient spacing between text and icon.
 * 3. 'Random number' used to align icon and text.
 */
.nhsuk-list, ul, ol {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
  list-style-type: none;
  margin-top: 0;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-list, ul, ol {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-list, ul, ol {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-list, ul, ol {
    margin-bottom: 24px;
  }
}
.nhsuk-list > li, ul > li, ol > li {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-list > li, ul > li, ol > li {
    margin-bottom: 8px;
  }
}
.nhsuk-list > li:last-child, ul > li:last-child, ol > li:last-child {
  margin-bottom: 0;
}

.nhsuk-list--bullet, ul {
  list-style-type: disc;
  padding-left: 20px; /* [1] */
}

.nhsuk-list--number, ol {
  list-style-type: decimal;
  padding-left: 20px; /* [1] */
}

.nhsuk-list--tick,
.nhsuk-list--cross {
  list-style: none;
  margin-top: 0;
  padding-left: 40px; /* [2] */
  position: relative;
}

.nhsuk-list--tick svg,
.nhsuk-list--cross svg {
  left: -4px; /* [3] */
  margin-top: -5px; /* [3] */
  position: absolute;
}

/* ==========================================================================
   STYLES / #SECTION-BREAK
   ========================================================================== */
/**
 * 1. Extended the section-break--l code for usage of a semantic <hr> with
 * no class name.
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 */
.nhsuk-section-break, hr {
  border: 0;
  margin: 0;
}

.nhsuk-section-break--xl {
  margin-top: 48px;
  margin-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-section-break--xl {
    margin-top: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-section-break--xl {
    margin-bottom: 56px;
  }
}
.nhsuk-section-break--l, hr {
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-section-break--l, hr {
    margin-top: 40px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-section-break--l, hr {
    margin-bottom: 40px;
  }
}
.nhsuk-section-break--m {
  margin-top: 16px;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-section-break--m {
    margin-top: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-section-break--m {
    margin-bottom: 24px;
  }
}
.nhsuk-section-break--visible, hr {
  border-bottom: 1px solid #d8dde0;
}

hr {
  /* [1] */
}

/* ==========================================================================
   STYLES / #TYPOGRAPHY
   ========================================================================== */
/* Headings */
h1,
.nhsuk-heading-xl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  h1,
  .nhsuk-heading-xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  h1,
  .nhsuk-heading-xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h1,
  .nhsuk-heading-xl {
    margin-bottom: 48px;
  }
}
h2,
.nhsuk-heading-l {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h2,
  .nhsuk-heading-l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  h2,
  .nhsuk-heading-l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  h2,
  .nhsuk-heading-l {
    margin-bottom: 24px;
  }
}
h3,
.nhsuk-heading-m {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h3,
  .nhsuk-heading-m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  h3,
  .nhsuk-heading-m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h3,
  .nhsuk-heading-m {
    margin-bottom: 24px;
  }
}
h4,
.nhsuk-heading-s {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h4,
  .nhsuk-heading-s {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  h4,
  .nhsuk-heading-s {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h4,
  .nhsuk-heading-s {
    margin-bottom: 24px;
  }
}
h5,
.nhsuk-heading-xs {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h5,
  .nhsuk-heading-xs {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  h5,
  .nhsuk-heading-xs {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h5,
  .nhsuk-heading-xs {
    margin-bottom: 24px;
  }
}
h6,
.nhsuk-heading-xxs {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  h6,
  .nhsuk-heading-xxs {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  h6,
  .nhsuk-heading-xxs {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  h6,
  .nhsuk-heading-xxs {
    margin-bottom: 24px;
  }
}
/* Captions to be used inside headings */
.nhsuk-caption-xl {
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  color: #4c6272;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-xl {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-caption-xl {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.nhsuk-caption-l {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #4c6272;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-caption-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-caption-m {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #4c6272;
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-caption-m {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-caption-m {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-caption--bottom {
  margin-bottom: 0;
  margin-top: 4px;
}

/* Body (paragraphs) */
.nhsuk-body-l {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  margin-top: 0;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-l {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-body-l {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-body-l {
    margin-bottom: 32px;
  }
}
p,
.nhsuk-body-m, address {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  p,
  .nhsuk-body-m, address {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  p,
  .nhsuk-body-m, address {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  p,
  .nhsuk-body-m, address {
    margin-bottom: 24px;
  }
}
p,
.nhsuk-body-m {
  color: inherit;
}

.nhsuk-body-s {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-s {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-body-s {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-body-s {
    margin-bottom: 24px;
  }
}
address {
  font-style: normal;
}

/**
 * Lede text
 *
 * 1. Apply lede text styling to p and ul within the lede element
 * 2. Reduces the spacing between the page heading and the lede text
 */
.nhsuk-lede-text {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 40px;
  /* [1] */
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-lede-text {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-lede-text {
    margin-bottom: 48px;
  }
}
.nhsuk-lede-text p,
.nhsuk-lede-text ul {
  font-weight: 400;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text p,
  .nhsuk-lede-text ul {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-lede-text p,
  .nhsuk-lede-text ul {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-lede-text--small {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-lede-text--small {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-lede-text--small {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-lede-text--small {
    margin-bottom: 32px;
  }
}
/* [2] */
h1 + .nhsuk-lede-text,
h1 + .nhsuk-lede-text--small {
  margin-top: -8px;
}

/**
 * Contextual adjustments
 *
 * Add top padding to headings that appear directly after paragraphs.
 *
 * 1. Removes the padding-top because of the lede-text's increased margin-bottom
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/nhsuk-frontend
 */
.nhsuk-body-l + h2,
.nhsuk-body-l + .nhsuk-heading-l {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-body-l + h2,
  .nhsuk-body-l + .nhsuk-heading-l {
    padding-top: 8px;
  }
}
p + h2,
.nhsuk-body-m + h2, address + h2,
p + .nhsuk-heading-l,
.nhsuk-body-m + .nhsuk-heading-l,
address + .nhsuk-heading-l,
.nhsuk-body-s + h2,
.nhsuk-body-s + .nhsuk-heading-l,
.nhsuk-list + h2,
ul + h2,
ol + h2,
.nhsuk-list + .nhsuk-heading-l,
ul + .nhsuk-heading-l,
ol + .nhsuk-heading-l {
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  p + h2,
  .nhsuk-body-m + h2, address + h2,
  p + .nhsuk-heading-l,
  .nhsuk-body-m + .nhsuk-heading-l,
  address + .nhsuk-heading-l,
  .nhsuk-body-s + h2,
  .nhsuk-body-s + .nhsuk-heading-l,
  .nhsuk-list + h2,
  ul + h2,
  ol + h2,
  .nhsuk-list + .nhsuk-heading-l,
  ul + .nhsuk-heading-l,
  ol + .nhsuk-heading-l {
    padding-top: 24px;
  }
}
p + h3,
.nhsuk-body-m + h3, address + h3,
p + .nhsuk-heading-m,
.nhsuk-body-m + .nhsuk-heading-m,
address + .nhsuk-heading-m,
.nhsuk-body-s + h3,
.nhsuk-body-s + .nhsuk-heading-m,
.nhsuk-list + h3,
ul + h3,
ol + h3,
.nhsuk-list + .nhsuk-heading-m,
ul + .nhsuk-heading-m,
ol + .nhsuk-heading-m,
p + h4,
.nhsuk-body-m + h4,
address + h4,
p + .nhsuk-heading-s,
.nhsuk-body-m + .nhsuk-heading-s,
address + .nhsuk-heading-s,
.nhsuk-body-s + h4,
.nhsuk-body-s + .nhsuk-heading-s,
.nhsuk-list + h4,
ul + h4,
ol + h4,
.nhsuk-list + .nhsuk-heading-s,
ul + .nhsuk-heading-s,
ol + .nhsuk-heading-s {
  padding-top: 4px;
}

@media (min-width: 40.0625em) {
  p + h3,
  .nhsuk-body-m + h3, address + h3,
  p + .nhsuk-heading-m,
  .nhsuk-body-m + .nhsuk-heading-m,
  address + .nhsuk-heading-m,
  .nhsuk-body-s + h3,
  .nhsuk-body-s + .nhsuk-heading-m,
  .nhsuk-list + h3,
  ul + h3,
  ol + h3,
  .nhsuk-list + .nhsuk-heading-m,
  ul + .nhsuk-heading-m,
  ol + .nhsuk-heading-m,
  p + h4,
  .nhsuk-body-m + h4,
  address + h4,
  p + .nhsuk-heading-s,
  .nhsuk-body-m + .nhsuk-heading-s,
  address + .nhsuk-heading-s,
  .nhsuk-body-s + h4,
  .nhsuk-body-s + .nhsuk-heading-s,
  .nhsuk-list + h4,
  ul + h4,
  ol + h4,
  .nhsuk-list + .nhsuk-heading-s,
  ul + .nhsuk-heading-s,
  ol + .nhsuk-heading-s {
    padding-top: 8px;
  }
}
/* [1] */
.nhsuk-lede-text + h2,
.nhsuk-lede-text + .nhsuk-heading-l {
  padding-top: 0;
}

/* Font weight for <strong> and <b> */
strong,
b {
  font-weight: 600;
}

/* ==========================================================================
   UTILITIES / #CLEARFIX
   ========================================================================== */
/**
 * Automatically clear an elements
 * child elements
 *
 * Usage: class="nhsuk-u-clear"
 * See tools/mixins
 */
.nhsuk-u-clear:after {
  clear: both;
  content: "";
  display: block;
}

/* ==========================================================================
   UTILITIES / #DISPLAY
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-display-block {
  display: block !important;
}

.nhsuk-u-display-inline-block {
  display: inline-block !important;
}

/* ==========================================================================
   UTILITIES / #FLOAT
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-float-left {
  float: left !important;
}

.nhsuk-u-float-right {
  float: right !important;
}

/* ==========================================================================
   UTILITIES / #GRID
   ========================================================================== */
/**
 * Force grid widths on all screen sizes
 * By default all grid elements will go to 100% width
 * on screen sizes below tablet, these utilities can force
 * custom widths on all screen sizes
 *
 * Usage: class="nhsuk-u-one-half"
 */
/* stylelint-disable declaration-no-important */
.nhsuk-u-one-half {
  float: left;
  width: 50% !important;
}

.nhsuk-u-one-third {
  float: left;
  width: 33.3333333333% !important;
}

.nhsuk-u-two-thirds {
  float: left;
  width: 66.6666666667% !important;
}

.nhsuk-u-one-quarter {
  float: left;
  width: 25% !important;
}

.nhsuk-u-three-quarters {
  float: left;
  width: 75% !important;
}

/**
 * Force grid widths on screen sizes on tablet
 * and above
 *
 * By default all grid elements will go to 100% width
 * on every screen size, these utilities can force
 * custom widths on screen sizes on tablet
 * and above
 *
 * Usage: class="nhsuk-u-one-half-tablet"
 */
.nhsuk-u-one-half-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-half-tablet {
    float: left;
    width: 50% !important;
  }
}
.nhsuk-u-one-third-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-third-tablet {
    float: left;
    width: 33.3333333333% !important;
  }
}
.nhsuk-u-two-thirds-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-two-thirds-tablet {
    float: left;
    width: 66.6666666667% !important;
  }
}
.nhsuk-u-one-quarter-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-one-quarter-tablet {
    float: left;
    width: 25% !important;
  }
}
.nhsuk-u-three-quarters-tablet {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-three-quarters-tablet {
    float: left;
    width: 75% !important;
  }
}
/* ==========================================================================
   UTILITIES / #LINK-NOWRAP
   ========================================================================== */
/**
 * Prevent long anchor links from line breaking
 * on smaller screens
 *
 * Usage: class="nhsuk-u-nowrap"
 */
@media (max-width: 40.0525em) {
  .nhsuk-u-nowrap {
    white-space: nowrap;
  }
}
/**
 * Adds a grey border to the bottom of an <li> tag
 *
 * Usage: class="nhsuk-list--border"
 */
.nhsuk-list--border li {
  border-bottom: 1px solid #d8dde0;
  padding: 8px 0 16px;
}

/* ==========================================================================
   UTILITIES / #READING-WIDTH
   ========================================================================== */
/**
 * Reading width mixin, add a maximum width
 * to large pieces of content
 *
 * Usage: class="nhsuk-u-reading-width"
 * See tools/mixins
 */
.nhsuk-u-reading-width {
  max-width: 44em;
}

/* ==========================================================================
   UTILITIES / #TEXT-ALIGN
   ========================================================================== */
/* stylelint-disable declaration-no-important */
.nhsuk-u-text-align-left {
  text-align: left !important;
}

.nhsuk-u-text-align-centre {
  text-align: center !important;
}

.nhsuk-u-text-align-right {
  text-align: right !important;
}

/* ==========================================================================
   UTILITIES / #TYPOGRAPHY
   ========================================================================== */
/**
 * Font size and line height
 *
 * Generate typography override classes for each responsive font map in the
 * typography scale eg .nhsuk-u-font-size-48
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 */
.nhsuk-u-font-size-64 {
  font-size: 48px !important;
  font-size: 3rem !important;
  line-height: 1.16667 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-64 {
    font-size: 64px !important;
    font-size: 4rem !important;
    line-height: 1.125 !important;
  }
}
@media print {
  .nhsuk-u-font-size-64 {
    font-size: 53pt !important;
    line-height: 1.1 !important;
  }
}
.nhsuk-u-font-size-48 {
  font-size: 32px !important;
  font-size: 2rem !important;
  line-height: 1.25 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-48 {
    font-size: 48px !important;
    font-size: 3rem !important;
    line-height: 1.16667 !important;
  }
}
@media print {
  .nhsuk-u-font-size-48 {
    font-size: 32pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-32 {
  font-size: 24px !important;
  font-size: 1.5rem !important;
  line-height: 1.33333 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-32 {
    font-size: 32px !important;
    font-size: 2rem !important;
    line-height: 1.25 !important;
  }
}
@media print {
  .nhsuk-u-font-size-32 {
    font-size: 24pt !important;
    line-height: 1.05 !important;
  }
}
.nhsuk-u-font-size-24 {
  font-size: 20px !important;
  font-size: 1.25rem !important;
  line-height: 1.4 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-24 {
    font-size: 24px !important;
    font-size: 1.5rem !important;
    line-height: 1.33333 !important;
  }
}
@media print {
  .nhsuk-u-font-size-24 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-22 {
  font-size: 18px !important;
  font-size: 1.125rem !important;
  line-height: 1.55556 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-22 {
    font-size: 22px !important;
    font-size: 1.375rem !important;
    line-height: 1.45455 !important;
  }
}
@media print {
  .nhsuk-u-font-size-22 {
    font-size: 18pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-19 {
  font-size: 16px !important;
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-19 {
    font-size: 19px !important;
    font-size: 1.1875rem !important;
    line-height: 1.47368 !important;
  }
}
@media print {
  .nhsuk-u-font-size-19 {
    font-size: 14pt !important;
    line-height: 1.15 !important;
  }
}
.nhsuk-u-font-size-16 {
  font-size: 14px !important;
  font-size: 0.875rem !important;
  line-height: 1.71429 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-16 {
    font-size: 16px !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
}
@media print {
  .nhsuk-u-font-size-16 {
    font-size: 14pt !important;
    line-height: 1.2 !important;
  }
}
.nhsuk-u-font-size-14 {
  font-size: 12px !important;
  font-size: 0.75rem !important;
  line-height: 1.66667 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-font-size-14 {
    font-size: 14px !important;
    font-size: 0.875rem !important;
    line-height: 1.71429 !important;
  }
}
@media print {
  .nhsuk-u-font-size-14 {
    font-size: 12pt !important;
    line-height: 1.2 !important;
  }
}
/* Weights
   ========================================================================== */
/**
 * Generate font weight override classes for normal and bold
 * eg .nhsuk-u-font-weight-normal
 */
.nhsuk-u-font-weight-normal {
  font-weight: 400 !important;
}

.nhsuk-u-font-weight-bold {
  font-weight: 600 !important;
}

/* Colours
   ========================================================================== */
/**
 * Secondary text colour $nhsuk-secondary-text-color
 * eg <p class="nhsuk-u-secondary-text-color">Published on: 15 March 2018</p>
 */
.nhsuk-u-secondary-text-color {
  color: #4c6272 !important; /* stylelint-disable-line declaration-no-important */
}

/* ==========================================================================
   UTILITIES / #VISUALLY-HIDDEN
   ========================================================================== */
/**
 * Hide elements visually but keep it in the DOM
 *
 * Usage: class="nhsuk-u-visually-hidden"
 * See tools/mixins
 */
.nhsuk-u-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ==========================================================================
   UTILITIES / #WIDTH
   ========================================================================== */
/**
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 * Force element widths on all screen sizes
 *
 * Usage: class="nhsuk-u-width-full"
 */
/* stylelint-disable declaration-no-important */
.nhsuk-u-width-full {
  width: 100% !important;
}

.nhsuk-u-width-three-quarters {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-three-quarters {
    width: 75% !important;
  }
}
.nhsuk-u-width-two-thirds {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-two-thirds {
    width: 66.66% !important;
  }
}
.nhsuk-u-width-one-half {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-half {
    width: 50% !important;
  }
}
.nhsuk-u-width-one-third {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-third {
    width: 33.33% !important;
  }
}
.nhsuk-u-width-one-quarter {
  width: 100% !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-u-width-one-quarter {
    width: 25% !important;
  }
}
/* ==========================================================================
   COMPONENTS/ #ACTION-LINK
   ========================================================================== */
/**
 * 1. Display is inline-block so the top and bottom margins/paddings are
 *    respected.
 * 2. 'Random number' is used to properly have sufficient space between icon
 *    and text.
 * 3. Position is relative so the arrow icon can display absolute.
 * 4. Text decoration none used to override default <a> styling.
 * 5. Box shadow 8px used instead of the default 4px.
 * 6. Text decoration underline used to override default <a> styling.
 */
.nhsuk-action-link {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-action-link {
    margin-bottom: 40px;
  }
}
.nhsuk-action-link__link {
  font-weight: 400;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.55556;
  display: inline-block; /* [1] */
  font-weight: 600;
  padding-left: 38px; /* [2] */
  position: relative; /* [3] */
  text-decoration: none; /* [4] */
}

@media (min-width: 40.0625em) {
  .nhsuk-action-link__link {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.45455;
  }
}
@media print {
  .nhsuk-action-link__link {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-action-link__link:hover .nhsuk-action-link__text {
  text-decoration: underline; /* [6] */
}

.nhsuk-action-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-action-link__link:focus:hover .nhsuk-action-link__text {
  color: #212b32;
  text-decoration: none;
}

@media (max-width: 40.0525em) {
  .nhsuk-action-link__link {
    padding-left: 26px; /* [2] */
  }
}
@media print {
  .nhsuk-action-link__link {
    color: #212b32;
  }
  .nhsuk-action-link__link:visited {
    color: #212b32;
  }
}
.nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #007f3b;
  height: 36px;
  left: -3px;
  position: absolute;
  top: -2px;
  width: 36px;
}

@media print {
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:active, .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:focus, .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle:visited {
    color: #212b32;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
    height: 24px;
    left: -2px;
    margin-bottom: 0;
    top: 2px;
    width: 24px;
  }
}
/* ==========================================================================
   COMPONENTS/ #BACK-LINK
   ========================================================================== */
/**
 * 1. Allow space for the arrow.
 * 2. Align the icon with the start of the back link.
 * 3. Align the icon with the middle of the text.
 */
.nhsuk-back-link {
  margin-bottom: 16px;
}

.nhsuk-back-link__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #005eb8;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 16px; /* 1 */
  position: relative;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-back-link__link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-back-link__link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-back-link__link:visited {
  color: #330072;
}

.nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-back-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-back-link__link:focus:hover {
  text-decoration: none;
}

.nhsuk-back-link__link:focus:visited {
  color: #212b32;
}

.nhsuk-back-link__link:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-back-link__link:active {
  color: #002f5c;
}

.nhsuk-back-link__link .nhsuk-icon__chevron-left {
  height: 24px;
  left: -8px; /* 2 */
  position: absolute;
  top: -1px; /* 3 */
  width: 24px;
}

.nhsuk-back-link__link:visited {
  color: #005eb8;
}

.nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: underline;
}

.nhsuk-back-link__link:hover .nhsuk-icon__chevron-left {
  fill: #7c2855;
}

.nhsuk-back-link__link:focus .nhsuk-icon__chevron-left {
  fill: #212b32;
}

/* ==========================================================================
    COMPONENTS / #BREADCRUMB
   ========================================================================== */
/**
 * 1. Hide the breadcrumb on print stylesheets.
 * 2. Bespoke spacing numbers used as there is no 20px
 *    spacing mapped in settings/spacing.
 * 3. Don't show the full breadcrumb below tablet size.
 * 4. Typography sizing mixin, see core/tools/_typography
 * 5. and core/settings/_typography for size maps.
 * 5. .. but show a back to index page link.
 */
.nhsuk-breadcrumb {
  /* [1] */
  padding-bottom: 16px;
  padding-top: 20px; /* [2] */
}

@media print {
  .nhsuk-breadcrumb {
    display: none;
  }
}
.nhsuk-breadcrumb .nhsuk-icon__chevron-right {
  fill: #aeb7bd;
  height: 18px;
  position: relative;
  top: 5px;
  width: 18px;
}

@media (min-width: 61.875em) {
  .nhsuk-breadcrumb .nhsuk-icon__chevron-right {
    margin: 0 3px 0 5px;
  }
}
.nhsuk-breadcrumb .nhsuk-icon__chevron-left {
  float: left;
  height: 24px;
  left: -8px;
  position: relative;
  width: 24px;
}

.nhsuk-breadcrumb + .nhsuk-width-container .nhsuk-main-wrapper {
  padding-top: 0;
}

.nhsuk-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 40.0525em) {
  .nhsuk-breadcrumb__list {
    display: none; /* [3] */
  }
}
.nhsuk-breadcrumb__item {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  /* [4] */
  display: inline-block;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-breadcrumb__item {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-breadcrumb__item:not(:last-child):after {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__chevron-right' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' height='18' width='18' viewBox='0 0 24 24' aria-hidden='true'%3E%3Cpath d='M15.5 12a1 1 0 0 1-.29.71l-5 5a1 1 0 0 1-1.42-1.42l4.3-4.29-4.3-4.29a1 1 0 0 1 1.42-1.42l5 5a1 1 0 0 1 .29.71z'%3E%3C/path%3E%3C/svg%3E") right 0 top 4px no-repeat;
  content: "";
  display: inline-block;
  height: 18px;
  margin-left: 10px;
  margin-right: 2px;
  width: 18px;
}

.nhsuk-breadcrumb__link:visited {
  color: #005eb8;
}

.nhsuk-breadcrumb__link:visited:hover {
  color: #7c2855;
}

.nhsuk-breadcrumb__link:focus:hover {
  color: #212b32;
}

.nhsuk-breadcrumb__back {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  /* [4] */
  margin: 0;
  padding-left: 16px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__back {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-breadcrumb__back {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-breadcrumb__back {
    display: none; /* [5] */
  }
}
.nhsuk-breadcrumb__back:before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__chevron-left' xmlns='http://www.w3.org/2000/svg' fill='%23005eb8' height='24' width='24' viewBox='8 0 24 24' aria-hidden='true'%3E%3Cpath d='M8.5 12c0-.3.1-.5.3-.7l5-5c.4-.4 1-.4 1.4 0s.4 1 0 1.4L10.9 12l4.3 4.3c.4.4.4 1 0 1.4s-1 .4-1.4 0l-5-5c-.2-.2-.3-.4-.3-.7z'%3E%3C/path%3E%3C/svg%3E") no-repeat;
  content: "";
  display: inline-block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 0;
  width: 10px;
}

.nhsuk-breadcrumb__backlink:visited {
  color: #005eb8;
}

.nhsuk-breadcrumb__backlink:visited:hover {
  color: #7c2855;
}

/* ==========================================================================
   COMPONENTS/ #BUTTON
   ========================================================================== */
/**
 * 1. Ensure that any global link styles are overridden.
 * 2. Fix unwanted button padding in Firefox.
 * 3. Use a pseudo element to expand the click target area to include the
 *    button's shadow as well, in case users try to click it.
 */
.nhsuk-button {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 28px;
  -webkit-appearance: none;
  background-color: #007f3b;
  border: 2px solid transparent;
  border-radius: 4px;
  box-shadow: 0 4px 0 #00401e;
  box-sizing: border-box;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin-top: 0;
  padding: 12px 16px;
  position: relative;
  text-align: center;
  vertical-align: top;
  width: auto;
  /* 2 */
  /* 3 */
  /* 4 */
}

@media (min-width: 40.0625em) {
  .nhsuk-button {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-button {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-button {
    margin-bottom: 36px;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-button {
    padding: 8px 16px;
  }
}
.nhsuk-button:link, .nhsuk-button:visited, .nhsuk-button:active, .nhsuk-button:hover {
  color: #ffffff;
  text-decoration: none;
}

.nhsuk-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.nhsuk-button:hover {
  background-color: #00662f;
}

.nhsuk-button:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button:focus:visited {
  color: #212b32;
}

.nhsuk-button:focus:visited:active {
  color: #ffffff;
}

.nhsuk-button:active {
  background: #00401e;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button::before {
  background: transparent;
  bottom: -6px;
  content: "";
  display: block;
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

.nhsuk-button:active::before {
  top: -6px;
}

/**
 * Button variations
 */
.nhsuk-button--secondary {
  background-color: #4c6272;
  box-shadow: 0 4px 0 #263139;
}

.nhsuk-button--secondary:hover {
  background-color: #384853;
}

.nhsuk-button--secondary:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button--secondary:active {
  background: #263139;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button--secondary.nhsuk-button--disabled {
  background-color: #4c6272;
}

.nhsuk-button--reverse {
  background-color: #ffffff;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
}

.nhsuk-button--reverse:hover {
  background-color: #f2f2f2;
  color: #212b32;
}

.nhsuk-button--reverse:focus {
  background: #ffeb3b;
  box-shadow: 0 4px 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent;
}

.nhsuk-button--reverse:active {
  background: #212b32;
  box-shadow: none;
  color: #ffffff;
  top: 4px;
}

.nhsuk-button--reverse:link {
  color: #212b32;
}

.nhsuk-button--reverse:link:active {
  color: #ffffff;
}

.nhsuk-button--reverse.nhsuk-button--disabled {
  background-color: #ffffff;
}

.nhsuk-button--reverse.nhsuk-button--disabled:focus {
  background-color: #ffffff;
}

/**
 * Button disabled states
 */
/* stylelint-disable string-quotes */
.nhsuk-button--disabled,
.nhsuk-button[disabled=disabled],
.nhsuk-button[disabled] {
  background-color: #007f3b;
  opacity: 0.5;
  pointer-events: none;
}

.nhsuk-button--disabled:hover,
.nhsuk-button[disabled=disabled]:hover,
.nhsuk-button[disabled]:hover {
  background-color: #007f3b;
  cursor: default;
}

.nhsuk-button--disabled:focus,
.nhsuk-button[disabled=disabled]:focus,
.nhsuk-button[disabled]:focus {
  background-color: #007f3b;
  outline: none;
}

.nhsuk-button--disabled:active,
.nhsuk-button[disabled=disabled]:active,
.nhsuk-button[disabled]:active {
  box-shadow: 0 4px 0 #00401e;
  top: 0;
}

.nhsuk-button--secondary[disabled=disabled],
.nhsuk-button--secondary[disabled] {
  background-color: #4c6272;
  opacity: 0.5;
}

.nhsuk-button--secondary[disabled=disabled]:hover,
.nhsuk-button--secondary[disabled]:hover {
  background-color: #4c6272;
  cursor: default;
}

.nhsuk-button--secondary[disabled=disabled]:focus,
.nhsuk-button--secondary[disabled]:focus {
  outline: none;
}

.nhsuk-button--secondary[disabled=disabled]:active,
.nhsuk-button--secondary[disabled]:active {
  box-shadow: 0 4px 0 #263139;
  top: 0;
}

.nhsuk-button--reverse[disabled=disabled],
.nhsuk-button--reverse[disabled] {
  background-color: #ffffff;
  opacity: 0.5;
}

.nhsuk-button--reverse[disabled=disabled]:hover,
.nhsuk-button--reverse[disabled]:hover {
  background-color: #ffffff;
  cursor: default;
}

.nhsuk-button--reverse[disabled=disabled]:focus,
.nhsuk-button--reverse[disabled]:focus {
  outline: none;
}

.nhsuk-button--reverse[disabled=disabled]:active,
.nhsuk-button--reverse[disabled]:active {
  box-shadow: 0 4px 0 #212b32;
  top: 0;
}

/* ==========================================================================
   COMPONENTS / #CARD
   ========================================================================== */
/**
 * 1. Is needed for the :active top positioning, and invisible clickable overlay.
 * 2. Border is used to create a divider between the white content
 *    box and an image.
 * 3. Creates the 'pressed down' effect when clicked.
 * 4. Removes padding-top from headings directly after the card group.
 * 5. Includes the border width to achieve the correct left alignment.
 * 6. Stops the heading from spanning the full width of the card.
 * 7. Removes padding top for the feature heading positioning.
 * 8. Default care card colour set to blue (non-urgent care card) -
 *    using the @mixin care-card tools/_mixins.scss.
 *    The same mixin is used for each care card, setting the background
 *    colour,text colour and print border width with the variables.
 * 9. 'Random number' for the heading triangle.
 * 10. 'Random number' for the heading triangle positioning.
 * 11. 'Random number' used for spacing to compensate for the triangle.
 * 12. Needed to enable the triangle to show correctly in high contrast mode.
 * 13. Prevent additional padding on headings
 * 14. Give the action link icon sufficient contrast when used in the emergency variant
 * 15. Reset the positioning to the default [1] to display heading triangle on a coloured background.
 * 16. Emergency care card <a> needs to be white because the background colour is black.
 * 17. Trick IE10 into rendering the invisible clickable area. Without this it does not.
 */
.nhsuk-card {
  margin-bottom: 40px;
  background: #ffffff;
  border: 1px solid #d8dde0;
  position: relative; /* [1] */
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-card {
    margin-bottom: 48px;
  }
}
.nhsuk-card__img {
  border-bottom: 1px solid #f0f4f5; /* [2] */
  display: block;
  width: 100%;
}

@media print {
  .nhsuk-card__img {
    display: none;
  }
}
.nhsuk-card__content {
  padding: 24px;
}

.nhsuk-card__content > *:first-child {
  margin-top: 0;
}

.nhsuk-card__content > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-card__content {
    padding: 32px;
  }
}
.nhsuk-card__heading,
.nhsuk-card__metadata,
.nhsuk-card__description {
  margin-bottom: 16px;
}

/* Clickable card
  ========================================================================== */
.nhsuk-card--clickable {
  border-bottom-width: 4px;
}

.nhsuk-card--clickable .nhsuk-card__heading a::before,
.nhsuk-card--clickable .nhsuk-card__link::before {
  background-color: rgba(255, 255, 255, 0); /* [17] */
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nhsuk-card--clickable:active {
  border-color: #aeb7bd;
  bottom: -1px; /* [3] */
}

/* Card group
  ========================================================================== */
/**
* Card group allows you to have a row of cards.
*
* Flexbox is used to make each card in a row the same height.
*/
.nhsuk-card-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group {
    margin-bottom: 40px;
  }
}
.nhsuk-card-group + h2,
.nhsuk-card-group + .nhsuk-heading-l,
.nhsuk-card-group + h3,
.nhsuk-card-group + .nhsuk-heading-m {
  padding-top: 0; /* [4] */
}

.nhsuk-card-group__item {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group__item {
    flex: 0 0 100%;
  }
}
.nhsuk-card-group__item .nhsuk-card {
  margin-bottom: 32px;
}

@media (max-width: 48.0525em) {
  .nhsuk-card-group__item .nhsuk-card {
    margin-bottom: 16px;
  }
  .nhsuk-card-group__item:last-child .nhsuk-card {
    margin-bottom: 0;
  }
}
/* Card feature
  ========================================================================== */
.nhsuk-card--feature {
  margin-top: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-card--feature {
    margin-top: 48px;
  }
}
.nhsuk-card__heading--feature {
  background: #005eb8;
  color: #ffffff;
  display: inline-block;
  left: -25px; /* [5] */
  margin-bottom: 8px;
  margin-right: -24px; /* [6] */
  padding: 8px 24px;
  position: relative;
  top: -8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-card__heading--feature {
    left: -33px; /* [5] */
    margin-right: -32px; /* [6] */
    padding: 8px 32px;
    top: -16px;
  }
}
.nhsuk-card__content--feature {
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */ /* [7] */
}

/* Care card
  ========================================================================== */
.nhsuk-card--care {
  margin-top: 40px;
  /* [8] */
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care {
    margin-top: 48px;
  }
}
.nhsuk-card--care .nhsuk-card--care__heading-container {
  background-color: #005eb8;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care {
    border: 4px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care__heading-container {
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading-container {
    padding-left: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading-container {
    padding-right: 32px;
  }
}
.nhsuk-card--care__heading {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0;
  padding-top: 0; /* [13] */
}

@media (min-width: 40.0625em) {
  .nhsuk-card--care__heading {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-card--care__heading {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media print {
  .nhsuk-card--care__heading {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-card--care__heading:active, .nhsuk-card--care__heading:focus, .nhsuk-card--care__heading:visited {
    color: #212b32;
  }
}
.nhsuk-card--care__arrow {
  bottom: -10px; /* [9] */
  display: block;
  height: 20px; /* [9] */
  left: 30px; /* [10] */
  overflow: hidden;
  position: absolute;
  transform: rotate(45deg);
  width: 20px; /* [9] */
}

@media print {
  .nhsuk-card--care__arrow {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-card--care__arrow {
    left: 38px; /* [10] */
  }
}
.nhsuk-card--care__arrow:before, .nhsuk-card--care__arrow:after {
  border: solid 32px #005eb8; /* [9] */
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  transform: rotate(45deg); /* [12] */
  width: 0;
}

.nhsuk-card--care--urgent .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care--urgent {
    border: 6px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care--urgent .nhsuk-card--care__arrow:before, .nhsuk-card--care--urgent .nhsuk-card--care__arrow:after {
  border-color: #d5281b;
}

.nhsuk-card--care--emergency .nhsuk-card--care__heading-container {
  background-color: #d5281b;
  color: #ffffff;
}

@media print {
  .nhsuk-card--care--emergency {
    border: 8px solid #212b32;
    color: #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-card--care--emergency .nhsuk-card--care__arrow:before, .nhsuk-card--care--emergency .nhsuk-card--care__arrow:after {
  border-color: #d5281b;
}

.nhsuk-card--care--emergency .nhsuk-card__content {
  background-color: #212b32;
  border: 0;
  color: #ffffff;
  position: static; /* [15] */
}

.nhsuk-card--care--emergency .nhsuk-card__content a {
  color: #ffffff; /* [16] */
}

.nhsuk-card--care--emergency .nhsuk-card__content a:focus {
  color: #212b32; /* [16] */
}

.nhsuk-card--care--emergency .nhsuk-details,
.nhsuk-card--care--emergency .nhsuk-details__summary {
  color: #ffffff;
}

.nhsuk-card--care--emergency .nhsuk-details__summary:hover {
  color: #ffffff;
}

.nhsuk-card--care--emergency .nhsuk-details__summary:focus {
  color: #212b32;
}

.nhsuk-card--care--emergency .nhsuk-action-link__link .nhsuk-icon__arrow-right-circle {
  fill: #ffffff; /* [14] */
}

/* Card primary
  ========================================================================== */
.nhsuk-card__content--primary {
  padding-right: 75px;
}

@media (min-width: 48.0625em) {
  .nhsuk-card__content--primary {
    height: 100%;
  }
}
.nhsuk-card__content--primary .nhsuk-icon {
  display: block;
  fill: #005eb8;
  margin-top: -nhsuk-spacing(2);
  position: absolute;
  right: 24px;
  top: 50%;
}

/* Card secondary
  ========================================================================== */
.nhsuk-card--secondary {
  background: transparent;
  border-bottom: 4px solid #d8dde0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}

.nhsuk-card__content--secondary {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

/* ==========================================================================
   COMPONENTS / #CONTENTS-LIST
   ========================================================================== */
/**
 * 1. Creates a grey line before each list
 *    item using a ASCII number for the symbol.
 */
.nhsuk-contents-list {
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-contents-list {
    margin-bottom: 48px;
  }
}
.nhsuk-contents-list__list {
  list-style: none;
  padding: 0;
}

.nhsuk-contents-list__item {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__emdash' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' width='19' height='1' aria-hidden='true'%3E%3Cpath d='M0 0h19v1H0z'%3E%3C/path%3E%3C/svg%3E") left 0.75rem no-repeat;
  padding: 0 0 0 32px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-contents-list__item {
    background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__emdash' xmlns='http://www.w3.org/2000/svg' fill='%23aeb7bd' width='16' height='1' aria-hidden='true'%3E%3Cpath d='M0 0h19v1H0z'%3E%3C/path%3E%3C/svg%3E") left 0.875rem no-repeat;
  }
}
.nhsuk-contents-list__link {
  display: inline-block;
}

.nhsuk-contents-list__current {
  font-weight: 600;
}

/* ==========================================================================
   COMPONENTS/ #DATE-INPUT
   ========================================================================== */
/**
 * 1. font-size: 0 removes whitespace caused by inline-block
 */
.nhsuk-date-input {
  font-size: 0; /* 1 */
}

.nhsuk-date-input:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-date-input__item {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 24px;
}

.nhsuk-date-input__label {
  display: block;
}

.nhsuk-date-input__input {
  margin-bottom: 0;
}

/* ==========================================================================
   COMPONENTS / #DETAILS
   ========================================================================== */
/**
 * Details component.
 *
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. Style the summary to look like a link...
 * 2. Make the focus outline shrink-wrap the text content of the summary
 * 3. Absolutely position the marker against this element
 * 3. Allow for absolutely positioned marker and align with disclosed text
 * 4. Only underline the text, not the arrow
 * 5. Remove the default details marker so we can style our own consistently and
 *    ensure it displays in Firefox
 * 6. Custom padding to left align the details text with the summary
 */
.nhsuk-details {
  color: #212b32;
  margin-bottom: 16px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
}

@media print {
  .nhsuk-details {
    color: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-details {
    margin-bottom: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-details {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-details {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-details__summary {
  color: #005eb8; /* [1] */
  cursor: pointer;
  display: inline-block; /* [2] */
  padding-left: 24px;
  position: relative; /* [3] */
}

.nhsuk-details__summary:hover {
  color: #7c2855;
}

.nhsuk-details__summary:before {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto;
  position: absolute;
  top: 0;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  border-width: 7px 0 7px 12.124px;
  border-left-color: inherit;
}

.nhsuk-details__summary:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-details__summary:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-details__summary:hover .nhsuk-details__summary-text, .nhsuk-details__summary:focus .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-details[open] > .nhsuk-details__summary:before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
  border-width: 12.124px 7px 0 7px;
  border-top-color: inherit;
}

.nhsuk-details__summary-text {
  text-decoration: underline; /* [4] */
}

.nhsuk-details__summary::-webkit-details-marker {
  display: none; /* [5] */
}

.nhsuk-details__text {
  border-left: 4px solid #d8dde0;
  margin-top: 8px;
  padding: 16px;
  padding-left: 20px; /* [6] */
}

.nhsuk-details__text > *:first-child {
  margin-top: 0;
}

.nhsuk-details__text > *:last-child {
  margin-bottom: 0;
}

/**
 * Expander variation.
 *
 * 1. !important used because the icon is populated
 *    by the JavaScript polyfill
 * 2. Remove the default hover, focus and active
 *    styles for this component.
 * 3. -2px left margin to align the icon to the content.
 * 4. When a group of details is used reduce the
 *    margin between them so they sit together.
 */
.nhsuk-expander {
  background-color: #ffffff;
  border: 1px solid #d8dde0;
  border-bottom-width: 4px;
}

.nhsuk-expander:hover {
  border-color: #aeb7bd;
}

.nhsuk-expander .nhsuk-details__summary {
  background-color: #ffffff;
  border-top: 4px solid transparent;
  display: block;
  padding: 20px 24px 24px;
}

@media (max-width: 40.0525em) {
  .nhsuk-expander .nhsuk-details__summary {
    padding: 12px 16px 16px;
  }
}
.nhsuk-expander .nhsuk-details__summary:before {
  display: none !important; /* stylelint-disable-line declaration-no-important */ /* [1] */
}

.nhsuk-expander .nhsuk-details__summary:hover .nhsuk-details__summary-text {
  color: #7c2855;
}

.nhsuk-expander .nhsuk-details__summary:focus {
  box-shadow: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-expander .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background: #ffeb3b url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__plus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat;
}

.nhsuk-expander .nhsuk-details__summary-text {
  color: #005eb8;
  cursor: pointer;
  display: inline-block;
  padding: 4px 4px 4px 38px;
  position: relative;
}

.nhsuk-expander .nhsuk-details__summary-text:before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__plus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat;
  content: "";
  display: inline-block;
  height: 32px;
  left: 0;
  position: absolute;
  top: calc(50% - 16px);
  width: 32px;
}

.nhsuk-expander .nhsuk-details__text {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0;
  border-left: 0;
  margin-left: 0;
  margin-top: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-bottom: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-left: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-right: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander .nhsuk-details__text {
    padding-top: 0;
  }
}
.nhsuk-expander[open] {
  border-bottom-width: 1px;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus:hover .nhsuk-details__summary-text {
  text-decoration: none;
}

.nhsuk-expander[open] .nhsuk-details__summary:focus .nhsuk-details__summary-text::before {
  background: #ffeb3b url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__minus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='002f5c'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat; /* [3] */
}

.nhsuk-expander[open] .nhsuk-details__summary-text::before {
  background: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__minus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23005eb8'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A") left -2px center no-repeat; /* [3] */
}

.nhsuk-expander-group {
  /* [4] */
  margin-bottom: 16px;
}

.nhsuk-expander-group > .nhsuk-details {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander-group > .nhsuk-details {
    margin-bottom: 8px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander-group {
    margin-bottom: 24px;
  }
}
.nhsuk-details + h2,
.nhsuk-details + .nhsuk-heading-l {
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-details + h2,
  .nhsuk-details + .nhsuk-heading-l {
    padding-top: 24px;
  }
}
/* ==========================================================================
   COMPONENTS / #DO-DONT-LIST
   ========================================================================== */
/**
 * Do and Don't lists help users understand more easily what they should
 * and shouldn't do.
 *
 * 1. Uses @mixin panel-with-label from tools/_mixins.
 * 2. Uses @mixin heading-label from tools/_mixins.
 */
.nhsuk-do-dont-list {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #ffffff;
  color: #212b32;
  border: 1px solid #d8dde0;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
  /* [1] */
}

.nhsuk-do-dont-list > *:first-child {
  margin-top: 0;
}

.nhsuk-do-dont-list > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list {
    padding: 32px;
  }
}
@media print {
  .nhsuk-do-dont-list {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-do-dont-list__label {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #005eb8;
  color: #ffffff;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
  /* [2] */
}

@media (min-width: 40.0625em) {
  .nhsuk-do-dont-list__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-do-dont-list__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    background: none;
    color: #212b32;
    top: 0;
  }
}
@media print {
  .nhsuk-do-dont-list__label {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-do-dont-list__label:active, .nhsuk-do-dont-list__label:focus, .nhsuk-do-dont-list__label:visited {
    color: #212b32;
  }
}
/* ==========================================================================
   COMPONENTS/ #ERROR-MESSAGE
   ========================================================================== */
.nhsuk-error-message {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: both;
  color: #d5281b;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-message {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-error-message {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* ==========================================================================
   COMPONENTS/ #ERROR-SUMMARY
   ========================================================================== */
/**
 * 1. Cross-component class - adjusts styling of list component.
 * 2. Override default link styling to use error colour
 */
.nhsuk-error-summary {
  padding: 16px;
  margin-bottom: 48px;
  border: 4px solid #d5281b;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    padding: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    margin-bottom: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary {
    border: 4px solid #d5281b;
  }
}
.nhsuk-error-summary:focus {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
  outline: 4px solid transparent;
}

.nhsuk-error-summary__title {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-error-summary__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-error-summary__title {
    margin-bottom: 24px;
  }
}
.nhsuk-error-summary__body {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__body {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-error-summary__body {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-error-summary__body p {
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-error-summary__body p {
    margin-bottom: 24px;
  }
}
.nhsuk-error-summary__list {
  /* 1 */
  margin-bottom: 0;
  margin-top: 0;
}

.nhsuk-error-summary__list a {
  font-weight: 600;
  /* 2 */
}

.nhsuk-error-summary__list a:link, .nhsuk-error-summary__list a:visited, .nhsuk-error-summary__list a:hover, .nhsuk-error-summary__list a:active {
  color: #d5281b;
}

.nhsuk-error-summary__list a:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

/* ==========================================================================
   COMPONENTS/ #FIELDSET
   ========================================================================== */
/**
 * 1. Fix legend text wrapping in Edge and IE versions:
 * 2. IE9-11 & Edge 12-13
 * 3. Hack to let legends or elements within legends have margins in webkit browsers.
 * 4. When the legend contains an H1, we want the H1 to inherit all styles from
 *    the legend. Effectively we want to be able to treat the heading as if it is
 *    not there.
 */
.nhsuk-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.nhsuk-fieldset:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-fieldset__legend {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  box-sizing: border-box; /* 1 */
  color: #212b32;
  display: table; /* 2 */
  margin-bottom: 8px;
  margin-top: 0;
  max-width: 100%; /* 1 */
  padding: 0;
  white-space: normal; /* 3 */
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-fieldset__legend {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Heading modifiers */
.nhsuk-fieldset__legend--xl {
  font-weight: 600;
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  .nhsuk-fieldset__legend--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__legend--l {
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-fieldset__legend--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
.nhsuk-fieldset__legend--m {
  font-weight: 600;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-fieldset__legend--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__legend--s {
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-fieldset__legend--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-fieldset__heading {
  /* 4 */
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* ==========================================================================
   COMPONENTS / #FOOTER
   ========================================================================== */
.nhsuk-footer {
  padding-bottom: 24px;
  padding-top: 24px;
  background-color: #d8dde0;
  border-top: 4px solid #005eb8;
}

.nhsuk-footer:after {
  clear: both;
  content: "";
  display: block;
}

@media print {
  .nhsuk-footer {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer {
    padding-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer {
    padding-top: 32px;
  }
}
.nhsuk-footer__list {
  padding-bottom: 16px;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__list {
    padding-bottom: 24px;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__list {
    float: left;
    padding-bottom: 0;
    width: 75%;
  }
}
.nhsuk-footer__list-item {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__list-item {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-footer__list-item {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__list-item {
    float: left;
    margin-right: 32px;
  }
}
.nhsuk-footer__list-item-link {
  color: #4c6272;
}

.nhsuk-footer__list-item-link:visited {
  color: #4c6272;
}

.nhsuk-footer__list-item-link:hover {
  color: #212b32;
}

.nhsuk-footer__copyright {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #4c6272;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-footer__copyright {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-footer__copyright {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__copyright {
    float: right;
    text-align: right;
    width: 25%;
  }
}
/* ==========================================================================
   COMPONENTS / #HEADER
   ========================================================================== */
/**
 * The behaviour with regards to responsiveness is as follow:
 *
 * - Mobile to tablet view
 *   Menu toggle button visible and navigation links hidden, search toggle
     button visible and search form hidden
 *
 * - Tablet to desktop view
 *   Menu toggle button visible and navigation links hidden, search toggle
 *   button hidden and search form visible
 *
 * - Desktop+ view
 *   Menu toggle button hidden and navigation links visible, search toggle
 *   button hidden and search form visible
 *
 * 1. Custom height and width of the logo
 * 2. Custom height and width of form items
 * 3. Custom height and width of svg icons
 * 4. Remove inner border on buttons for Firefox, see
 *    https://github.com/necolas/normalize.css/issues/393
 * 5. Proprietary extension so form field looks the same in Safari
 * 6. Custom margin to move menu toggle past the search toggle button
 * 7. Custom border value between expanded search and expanded menu if both open at the same time
 * 8. Don't display the link address for the logo anchor, see
 *     core/elements/_links.scss
 * 9. Use non variable colour to follow NHS England guidelines on logo colour
 * 10. Remove random top margin in Safari
 * 11. Align close icon with nav item arrow icons
 * 12. Add nhsuk-spacing(9) to align right and left main nav with header
 */
.nhsuk-header {
  background-color: #005eb8;
}

.nhsuk-header:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-header__container {
  padding: 20px 0;
}

.nhsuk-header__container:after {
  clear: both;
  content: "";
  display: block;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__container {
    margin: 0;
    padding: 16px;
  }
}
.nhsuk-header__logo {
  float: left;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__logo {
    position: relative;
    z-index: 1;
  }
}
.nhsuk-header__logo .nhsuk-logo__background {
  fill: #ffffff;
}

@media print {
  .nhsuk-header__logo .nhsuk-logo__background {
    fill: #005eb8;
  }
}
.nhsuk-header__logo .nhsuk-logo__text {
  fill: #005eb8;
}

@media print {
  .nhsuk-header__logo .nhsuk-logo__text {
    fill: #ffffff;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-header__logo {
    padding-left: 0;
  }
}
.nhsuk-header__logo .nhsuk-logo {
  height: 40px;
  width: 100px;
  /* [1] */
  border: 0;
}

@media (max-width: 48.0525em) {
  .nhsuk-header__logo {
    max-width: 60%;
  }
}
@media (max-width: 450px) {
  .nhsuk-header__logo {
    max-width: 50%;
  }
}
.nhsuk-header__link {
  height: 40px;
  width: 100px;
  /* [1] */
  display: block;
}

.nhsuk-header__link:hover .nhsuk-logo {
  box-shadow: 0 0 0 4px #003d78;
}

.nhsuk-header__link:focus {
  box-shadow: none;
}

.nhsuk-header__link:focus .nhsuk-logo {
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

@media print {
  .nhsuk-header__link:after {
    content: ""; /* [8] */
  }
}
.nhsuk-header__link:hover, .nhsuk-header__link:active, .nhsuk-header__link:focus {
  background-color: transparent;
}

.nhsuk-header__content {
  position: relative;
}

.nhsuk-header__content:after {
  clear: both;
  content: "";
  display: block;
}

@media print {
  .nhsuk-header__content {
    display: none;
  }
}
.nhsuk-header__content.js-show {
  border-bottom: 4px solid #f0f4f5; /* [7] */
}

@media (min-width: 40.0625em) {
  .nhsuk-header__content {
    float: right;
  }
  .nhsuk-header__content.js-show {
    border-bottom: 0;
  }
}
.nhsuk-header__search {
  position: relative;
  text-align: right;
}

.nhsuk-header__search:after {
  clear: both;
  content: "";
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__search {
    float: left;
    margin-left: 8px;
  }
}
.nhsuk-header__search-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  min-height: 40px; /* [2] */
  padding: 4px 8px 0;
  position: absolute;
  right: 0;
  top: 0;
}

.nhsuk-header__search-toggle::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__search-toggle:hover {
  background-color: #003d78;
  border-color: #f0f4f5;
  box-shadow: none;
}

.nhsuk-header__search-toggle:focus {
  border: 1px solid #ffeb3b !important; /* stylelint-disable-line declaration-no-important */ /* [2] */
}

.nhsuk-header__search-toggle:active, .nhsuk-header__search-toggle.is-active {
  background-color: #002f5c;
  border-color: #f0f4f5;
  color: #f0f4f5;
}

.nhsuk-header__search-toggle .nhsuk-icon__search {
  fill: #ffffff;
  height: 21px; /* [3] */
  width: 21px; /* [3] */
}

.nhsuk-header__search-toggle:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #ffeb3b, 0 4px 0 2px #212b32;
}

.nhsuk-header__search-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__search-toggle {
    display: none;
  }
}
.nhsuk-header__search-form {
  height: 100%;
  overflow: visible;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__search-form {
    background-color: #ffffff;
    display: flex;
    padding: 16px;
    width: 100%;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-header__search-wrap {
    display: none;
  }
  .nhsuk-header__search-wrap.js-show {
    clear: both;
    display: flex;
    margin-bottom: -20px;
    margin-left: -16px;
    margin-right: -16px;
    padding-top: 16px;
    text-align: left;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-header__search-wrap {
    display: block;
    line-height: 0;
  }
}
.nhsuk-search__input {
  -webkit-appearance: listbox; /* [5] */
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 0;
  border-top-left-radius: 4px;
  border-top-right-radius: 0;
  padding: 0 16px;
}

.nhsuk-search__input:focus {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
  outline: 4px solid transparent;
  outline-offset: 4px;
  padding: 0 9px;
}

.nhsuk-search__input::placeholder {
  color: #4c6272;
  font-size: 16px;
}

.nhsuk-search__input:-ms-input-placeholder {
  color: #4c6272;
  font-size: 16px;
}

.nhsuk-search__input::-webkit-input-placeholder {
  color: #4c6272;
  font-size: 16px;
}

@media (max-width: 40.0525em) {
  .nhsuk-search__input {
    border-bottom: 1px solid #aeb7bd;
    border-left: 1px solid #aeb7bd;
    border-right: 0;
    border-top: 1px solid #aeb7bd;
    flex-grow: 2;
    -ms-flex-positive: 2;
    font-size: inherit;
    height: 52px; /* [4] */
    margin: 0;
    outline: none;
    width: 100%; /* [4] */
    z-index: 1;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__input {
    border: 1px solid #ffffff;
    font-size: 16px;
    height: 40px; /* [2] */
    width: 200px; /* [2] */
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-search__input {
    width: 235px;
  }
}
.nhsuk-search__submit {
  border: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-top-right-radius: 4px;
  float: right;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  padding: 0;
}

.nhsuk-search__submit::-moz-focus-inner {
  border: 0; /* [4] */
}

.nhsuk-search__submit:hover {
  cursor: pointer;
}

@media (max-width: 40.0525em) {
  .nhsuk-search__submit {
    background-color: #007f3b;
    height: 52px; /* [2] */
    margin: 0;
    padding: 8px 8px 0;
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    fill: #ffffff;
    height: 38px; /* [3] */
    width: 38px; /* [3] */
  }
  .nhsuk-search__submit:hover {
    background-color: #00662f;
  }
  .nhsuk-search__submit:focus {
    background-color: #ffeb3b;
    box-shadow: 0 -4px #ffeb3b, 0 4px #212b32;
    outline: 4px solid transparent;
    outline-offset: 4px;
  }
  .nhsuk-search__submit:focus:hover {
    background-color: #ffeb3b;
  }
  .nhsuk-search__submit:focus:hover .nhsuk-icon {
    fill: #212b32;
  }
  .nhsuk-search__submit:focus .nhsuk-icon {
    fill: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__submit {
    background-color: #f0f4f5;
    display: block;
    height: 40px; /* [2] */
    width: 44px; /* [2] */
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    height: 27px; /* [3] */
    width: 27px; /* [3] */
  }
  .nhsuk-search__submit:hover {
    background-color: #003d78;
    border: 1px solid #ffffff;
  }
  .nhsuk-search__submit:hover .nhsuk-icon__search {
    fill: #ffffff;
  }
  .nhsuk-search__submit:focus {
    background-color: #ffeb3b;
    border: 0;
    box-shadow: 0 4px 0 0 #212b32;
    color: #212b32;
    outline: 4px solid transparent; /* 1 */
    outline-offset: 4px;
    box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  }
  .nhsuk-search__submit:focus .nhsuk-icon {
    fill: #212b32;
  }
  .nhsuk-search__submit:active {
    background-color: #002f5c;
    border: 0;
  }
  .nhsuk-search__submit:active .nhsuk-icon__search {
    fill: #ffffff;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-search__close {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    height: 40px;
    padding: 0;
    width: 40px;
    margin-left: 8px;
    margin-right: -8px; /* [11] */
    margin-top: 8px;
  }
  .nhsuk-search__close .nhsuk-icon__close {
    fill: #005eb8;
    height: 40px;
    width: 40px;
  }
  .nhsuk-search__close::-moz-focus-inner {
    border: 0;
  }
  .nhsuk-search__close:hover .nhsuk-icon__close {
    fill: #3d4e5b;
  }
  .nhsuk-search__close:focus {
    background-color: #ffeb3b;
    box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
    color: #212b32;
    outline: 4px solid transparent;
    text-decoration: none;
  }
  .nhsuk-search__close:focus .nhsuk-icon__close {
    fill: #212b32;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__close {
    display: none;
  }
}
.nhsuk-search__input--withdropdown {
  border-bottom-left-radius: 0;
}

.nhsuk-search__submit--withdropdown {
  border-bottom-right-radius: 0;
}

/* Main navigation
 *
 * Appears below the header strip
   ====================================================================== */
.nhsuk-header__menu {
  float: right;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__menu {
    float: left;
  }
}
.nhsuk-header__menu-toggle {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-right: 0; /* [6] */
  padding: 7px 16px;
  position: relative;
  text-decoration: none;
  z-index: 1;
}

.nhsuk-header__menu-toggle::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__menu-toggle:hover {
  background-color: #003d78;
  border-color: #f0f4f5;
  box-shadow: none;
}

.nhsuk-header__menu-toggle:focus {
  border: 1px solid #ffeb3b !important; /* stylelint-disable-line declaration-no-important */ /* [2] */
}

.nhsuk-header__menu-toggle:active, .nhsuk-header__menu-toggle.is-active {
  background-color: #002f5c;
  border-color: #f0f4f5;
  color: #f0f4f5;
}

@media (max-width: 40.0525em) {
  .nhsuk-header__menu-toggle {
    right: 48px;
  }
}
@media (min-width: 40.0625em) and (max-width: 61.865em) {
  .nhsuk-header__menu-toggle {
    margin-top: 0; /* [10] */
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__menu-toggle {
    display: none;
  }
}
.nhsuk-header__menu-toggle:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: 0 0 0 2px #ffeb3b, 0 4px 0 2px #212b32;
}

.nhsuk-header__menu-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

/* 'only' modifier for when there is only the menu in the header, no search
   ====================================================================== */
@media (max-width: 40.0525em) {
  .nhsuk-header__menu--only .nhsuk-header__menu-toggle {
    position: relative;
    right: auto;
    top: auto;
  }
}
.nhsuk-header__navigation {
  background-color: #ffffff;
  clear: both;
  display: none;
  overflow: hidden;
}

@media print {
  .nhsuk-header__navigation {
    display: none;
  }
}
.nhsuk-header__navigation.js-show {
  display: block;
}

@media (max-width: 61.865em) {
  .nhsuk-header__navigation.js-show {
    border-bottom: 4px solid #f0f4f5; /* [7] */
    border-top: 4px solid #f0f4f5; /* [7] */
  }
  .nhsuk-header__navigation.js-show .nhsuk-width-container {
    margin: 0 16px;
  }
}
@media (max-width: 48.0525em) {
  .nhsuk-header__navigation.js-show .nhsuk-width-container {
    margin: 0;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation {
    background-color: #005eb8;
    display: block;
    margin: 0 auto;
    max-width: 1024px; /* [12] */
  }
}
.nhsuk-header__navigation-title {
  font-weight: 600;
  margin-bottom: 0;
  padding: 16px;
  position: relative;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-title {
    display: none;
  }
}
.nhsuk-header__navigation-close {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  height: 40px;
  padding: 0;
  width: 40px;
  overflow: hidden;
  position: absolute;
  right: 8px;
  top: 8px;
  white-space: nowrap;
}

.nhsuk-header__navigation-close .nhsuk-icon__close {
  fill: #005eb8;
  height: 40px;
  width: 40px;
}

.nhsuk-header__navigation-close::-moz-focus-inner {
  border: 0;
}

.nhsuk-header__navigation-close:hover .nhsuk-icon__close {
  fill: #3d4e5b;
}

.nhsuk-header__navigation-close:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-header__navigation-close:focus .nhsuk-icon__close {
  fill: #212b32;
}

.nhsuk-header__navigation-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-list {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    padding: 0;
    width: 100%;
  }
}
.nhsuk-header__navigation-item {
  border-top: 1px solid #f0f4f5;
  margin-bottom: 0;
  position: relative;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-item {
    border-top: 0;
    margin: 0;
    text-align: center;
  }
  .nhsuk-header__navigation-item .nhsuk-icon__chevron-right {
    display: none;
  }
}
.nhsuk-header__navigation-link {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  border-bottom: 4px solid transparent;
  border-top: 4px solid transparent;
  color: #005eb8;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__navigation-link {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-header__navigation-link {
    font-size: 14pt;
    line-height: 1.2;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link {
    color: #ffffff;
    line-height: normal;
  }
}
.nhsuk-header__navigation-link .nhsuk-icon__chevron-right {
  fill: #aeb7bd;
  position: absolute;
  right: 4px;
  top: 11px;
}

.nhsuk-header__navigation-link:visited {
  color: #005eb8;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:visited {
    color: #ffffff;
  }
}
.nhsuk-header__navigation-link:hover {
  box-shadow: none;
  color: #005eb8;
  text-decoration: underline;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:hover {
    color: #ffffff;
  }
}
.nhsuk-header__navigation-link:hover .nhsuk-icon__chevron-right {
  fill: #005eb8;
}

.nhsuk-header__navigation-link:active, .nhsuk-header__navigation-link:focus {
  background-color: #ffeb3b;
  border-bottom: 4px solid #212b32;
  box-shadow: none;
  color: #212b32;
  outline: 4px solid transparent;
  outline-offset: 4px;
  text-decoration: none;
}

.nhsuk-header__navigation-link:active:hover, .nhsuk-header__navigation-link:focus:hover {
  background-color: #ffeb3b;
  color: #212b32;
}

.nhsuk-header__navigation-link:active:hover .nhsuk-icon__chevron-right, .nhsuk-header__navigation-link:focus:hover .nhsuk-icon__chevron-right {
  fill: #212b32;
}

.nhsuk-header__navigation-link:active:visited, .nhsuk-header__navigation-link:focus:visited {
  background-color: #ffeb3b;
  color: #212b32;
}

@media (min-width: 61.875em) {
  .nhsuk-header__navigation-item--for-mobile {
    display: none;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-list--small {
    justify-content: flex-start;
  }
}
/**
 * Transactional Header with service name
**/
.nhsuk-header__transactional-service-name {
  float: left;
  padding-left: 16px;
  padding-top: 3px;
}

@media (max-width: 61.865em) {
  .nhsuk-header__transactional-service-name {
    padding-left: 0;
    padding-top: 8px;
    width: 100%;
  }
}
.nhsuk-header__transactional-service-name--link {
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:visited {
  color: #ffffff;
}

.nhsuk-header__transactional-service-name--link:hover {
  color: #ffffff;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:focus {
  color: #212b32;
  outline: 4px solid transparent;
  outline-offset: 4px;
  text-decoration: none;
}

.nhsuk-header__transactional-service-name--link:active {
  color: #002f5c;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__transactional-service-name--link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-header__transactional-service-name--link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-header__transactional-service-name--link:hover {
  text-decoration: underline;
}

.nhsuk-header--transactional .nhsuk-header__link {
  height: 32px;
  width: 80px;
  display: block;
}

.nhsuk-header--transactional .nhsuk-logo {
  height: 32px;
  width: 80px;
}

.nhsuk-header--transactional .nhsuk-header__transactional-service-name {
  float: left;
}

.nhsuk-header__link--service {
  height: auto;
  margin-bottom: -4px;
  text-decoration: none;
  width: auto;
}

@media (min-width: 61.875em) {
  .nhsuk-header__link--service {
    align-items: center;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 0;
    width: auto;
  }
}
.nhsuk-header__link--service:hover {
  background: none;
}

.nhsuk-header__link--service:hover .nhsuk-header__service-name {
  text-decoration: underline;
}

.nhsuk-header__link--service:focus {
  background: #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

.nhsuk-header__link--service:focus .nhsuk-header__service-name {
  color: #212b32;
  text-decoration: none;
}

.nhsuk-header__link--service:focus .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header__service-name {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  display: block;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__service-name {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-header__service-name {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__service-name {
    padding-left: 16px;
  }
}
@media (max-width: 61.865em) {
  .nhsuk-header__service-name {
    max-width: 220px;
  }
}
.nhsuk-header__logo--only {
  max-width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__logo--only .nhsuk-header__link--service {
    align-items: center;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 0;
    width: auto;
  }
  .nhsuk-header__logo--only .nhsuk-header__service-name {
    padding-left: 16px;
  }
}
/**
 * Organisational header
**/
.nhsuk-header--organisation .nhsuk-header__link {
  height: auto;
  text-decoration: none;
  width: auto;
}

.nhsuk-header--organisation .nhsuk-header__link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.nhsuk-header--organisation .nhsuk-header__link:hover .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header--organisation .nhsuk-header__link:focus {
  background: #ffeb3b;
  box-shadow: 0 0 0 4px #ffeb3b, 0 4px 0 4px #212b32;
}

.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-organisation-name,
.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-organisation-descriptor {
  color: #212b32;
}

.nhsuk-header--organisation .nhsuk-header__link:focus .nhsuk-logo {
  box-shadow: none;
}

.nhsuk-header--organisation .nhsuk-header__link:focus:hover {
  text-decoration: none;
}

.nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
  height: 32px;
  width: 80px;
}

@media (max-width: 450px) {
  .nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
    height: 24px;
    width: 60px;
  }
}
@media (max-width: 375px) {
  .nhsuk-header--organisation .nhsuk-header__logo .nhsuk-logo {
    height: 20px;
    width: 50px;
  }
}
.nhsuk-header--organisation .nhsuk-header__navigation {
  max-width: 100%;
}

.nhsuk-organisation-name {
  color: #ffffff;
  display: block;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.2px;
  line-height: 23px;
  margin-top: -2px;
}

@media print {
  .nhsuk-organisation-name {
    color: #212b32;
  }
}
@media (max-width: 450px) {
  .nhsuk-organisation-name {
    font-size: 17px;
    letter-spacing: 0.1px;
    line-height: 17px;
  }
}
@media (max-width: 375px) {
  .nhsuk-organisation-name {
    font-size: 13px;
    line-height: 13px;
  }
}
.nhsuk-organisation-name .nhsuk-organisation-name-split {
  display: block;
}

.nhsuk-organisation-descriptor {
  color: #ffffff;
  display: block;
  font-size: 15px;
  font-weight: bold;
  line-height: 21px;
}

@media print {
  .nhsuk-organisation-descriptor {
    color: #005eb8;
  }
}
@media (max-width: 450px) {
  .nhsuk-organisation-descriptor {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 375px) {
  .nhsuk-organisation-descriptor {
    font-size: 10px;
    line-height: 13px;
  }
}
.nhsuk-org-logo {
  border: 0;
  max-height: 100px;
  max-width: 280px;
}

@media (max-width: 450px) {
  .nhsuk-org-logo {
    max-width: 150px;
  }
}
.nhsuk-org-logo[src$=".svg"] {
  height: auto;
  max-width: 220px;
  width: 100%;
}

.nhsuk-header--white {
  background-color: #ffffff;
}

.nhsuk-header--white .nhsuk-logo .nhsuk-logo__background {
  fill: #005eb8;
}

.nhsuk-header--white .nhsuk-logo .nhsuk-logo__text {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-header__link:hover {
  color: #212b32;
  text-decoration: underline;
}

.nhsuk-header--white .nhsuk-header__link:hover .nhsuk-organisation-descriptor {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-search__submit {
  background-color: #005eb8;
}

.nhsuk-header--white .nhsuk-search__submit .nhsuk-icon__search {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-search__submit:hover {
  background-color: #004b93;
  border-color: #004b93;
}

.nhsuk-header--white .nhsuk-search__submit:focus {
  background-color: #ffeb3b;
}

.nhsuk-header--white .nhsuk-search__submit:focus .nhsuk-icon__search {
  fill: #212b32;
}

.nhsuk-header--white .nhsuk-search__input {
  border: 1px solid #aeb7bd;
}

.nhsuk-header--white .nhsuk-search__input:focus {
  border: 2px solid #212b32;
}

@media (max-width: 40.0525em) {
  .nhsuk-header--white .nhsuk-search__input:focus {
    border: 4px solid #212b32;
  }
}
.nhsuk-header--white .nhsuk-header__search-toggle,
.nhsuk-header--white .nhsuk-header__menu-toggle {
  border-color: #005eb8;
  color: #005eb8;
}

.nhsuk-header--white .nhsuk-header__search-toggle .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle .nhsuk-icon {
  fill: #005eb8;
}

.nhsuk-header--white .nhsuk-header__search-toggle.is-active, .nhsuk-header--white .nhsuk-header__search-toggle:hover,
.nhsuk-header--white .nhsuk-header__menu-toggle.is-active,
.nhsuk-header--white .nhsuk-header__menu-toggle:hover {
  border-color: #004b93;
  color: #ffffff;
}

.nhsuk-header--white .nhsuk-header__search-toggle.is-active .nhsuk-icon, .nhsuk-header--white .nhsuk-header__search-toggle:hover .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle.is-active .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle:hover .nhsuk-icon {
  fill: #ffffff;
}

.nhsuk-header--white .nhsuk-header__search-toggle:focus,
.nhsuk-header--white .nhsuk-header__menu-toggle:focus {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-header__search-toggle:focus .nhsuk-icon,
.nhsuk-header--white .nhsuk-header__menu-toggle:focus .nhsuk-icon {
  fill: #212b32;
}

@media (max-width: 40.0525em) {
  .nhsuk-header--white .nhsuk-header__search-form {
    padding-top: 0;
  }
}
.nhsuk-header--white .nhsuk-organisation-name {
  color: #000; /* [9] */ /* stylelint-disable-line color-no-hex */
}

.nhsuk-header--white .nhsuk-organisation-descriptor {
  color: #005eb8;
}

.nhsuk-header--white .nhsuk-header__transactional-service-name--link {
  color: #212b32;
}

.nhsuk-header--white .nhsuk-header__navigation-list {
  border-top: 0;
}

.nhsuk-header--white .nhsuk-header__service-name {
  color: #212b32;
}

.nhsuk-header--white-nav .nhsuk-header__navigation {
  background-color: #ffffff;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-list {
  border-top: 1px solid #f0f4f5;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link {
  color: #005eb8;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:visited {
  color: #005eb8;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:focus {
  color: #212b32;
}

.nhsuk-header--white-nav .nhsuk-header__navigation .nhsuk-header__navigation-link:focus:hover {
  background: #ffeb3b;
}

/* ==========================================================================
   COMPONENTS / #HERO
   ========================================================================== */
/**
 *  Hero component shared styles.
 *
 * 1. Position relative to support the description
 *    appearing over the image.
 * 2. Adds a border between the header and hero, if required
 */
.nhsuk-hero {
  background-color: #005eb8;
  color: #ffffff;
  position: relative; /* [1] */
}

@media print {
  .nhsuk-hero {
    color: #212b32;
    fill: #212b32;
  }
  .nhsuk-hero:active, .nhsuk-hero:focus, .nhsuk-hero:visited {
    color: #212b32;
  }
}
.nhsuk-hero .nhsuk-hero--border {
  /* [2] */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.nhsuk-hero__wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-hero__wrapper {
    padding-top: 56px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero__wrapper {
    padding-bottom: 56px;
  }
}
/**
 *  Hero component image styles
 *
 * 3. Center the background image.
 * 4. Stop the height affecting print stylesheets.
 * 5. Show more of the image for larger screen sizes
 * 6. Overlay must be min same height as .nhsuk-hero--image to cover the image.
 * 7. Darken the background image with an overlay.
 * 12. Remove any heights/min heights in Windows high contrast mode.
 */
.nhsuk-hero--image {
  background-position: center right; /* [3] */
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen {
  .nhsuk-hero--image {
    /* [4] */
    min-height: 200px;
  }
}
@media only screen and (min-width: 40.0625em) {
  .nhsuk-hero--image {
    /* [4] */
    min-height: 320px; /* [5] */
  }
  .nhsuk-hero--image .nhsuk-hero__overlay {
    height: 320px; /* [6] */
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image {
    min-height: 0; /* [12] */
  }
}
.nhsuk-hero--image .nhsuk-hero__overlay {
  background-color: rgba(0, 47, 92, 0.1); /* [7] */
}

@media only screen {
  .nhsuk-hero--image .nhsuk-hero__overlay {
    /* [4] */
    min-height: 200px; /* [6] */
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image .nhsuk-hero__overlay {
    height: auto; /* [12] */
    min-height: 0; /* [12] */
  }
}
/**
 *  Hero component description styles.
 *
 * 8. 'Random number' for the triangle.
 * 9. 'Random number' for the triangle positioning.
 * 10. Needed to enable the triangle to show correctly in high contrast mode.
 * 11. Give the description box a max width.
 * 13. Remove the arrow in Windows high contrast mode.
 * 14. Reduce spacing and change positioning for Windows high contrast mode.
 * 15. Prevent text breaking out of box on smaller sizes
 */
.nhsuk-hero--image-description .nhsuk-hero-content {
  background-color: #005eb8;
  color: #ffffff;
  margin-bottom: 24px;
  padding: 24px;
  position: relative;
  top: 70px;
}

.nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
  bottom: -10px; /* [8] */
  display: block;
  height: 20px; /* [8] */
  left: 32px; /* [9] */
  overflow: hidden;
  position: absolute;
  transform: rotate(45deg);
  width: 20px; /* [8] */
}

@media print {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    left: 46px; /* [9] */
  }
}
.nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow:before, .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow:after {
  border: solid 32px #005eb8; /* [8] */
  content: "";
  display: block;
  height: 0;
  position: absolute;
  top: 0;
  transform: rotate(45deg); /* [10] */
  width: 0;
}

@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image-description .nhsuk-hero-content .nhsuk-hero__arrow {
    display: none; /* [13] */
  }
}
@media (min-width: 23.4375em) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    /* [15] */
    width: 85%;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    bottom: -48px; /* [8] */
    margin-bottom: 0;
    max-width: 35em; /* [11] */
    padding: 32px 40px;
    position: absolute;
    top: auto;
  }
  .nhsuk-hero--image-description .nhsuk-hero-content > *:first-child {
    margin-top: 0;
  }
  .nhsuk-hero--image-description .nhsuk-hero-content > *:last-child {
    margin-bottom: 0;
  }
}
@media print {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    color: #212b32;
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (-ms-high-contrast: active) {
  .nhsuk-hero--image-description .nhsuk-hero-content {
    /* [14] */
    bottom: 0;
    margin-bottom: 0;
    min-height: 0;
    padding: 32px 0 0;
    position: relative;
    top: 0;
  }
}
/* ==========================================================================
   COMPONENTS/ #HINT
   ========================================================================== */
.nhsuk-hint {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #4c6272;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-hint {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-hint {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-label:not(.nhsuk-label--m):not(.nhsuk-label--l):not(.nhsuk-label--xl) + .nhsuk-hint {
  margin-bottom: 8px;
}

.nhsuk-fieldset__legend:not(.nhsuk-fieldset__legend--m):not(.nhsuk-fieldset__legend--l):not(.nhsuk-fieldset__legend--xl) + .nhsuk-hint {
  margin-bottom: 8px;
}

.nhsuk-fieldset__legend + .nhsuk-hint {
  margin-top: -4px;
}

/* ==========================================================================
   COMPONENTS / #IMAGES
   ========================================================================== */
/**
 * 1. Overrides default browser margin values.
 * 2. Makes the image width two thirds of its container for desktop.
 * 3. Avoid image printing full width of a page.
 * 4. Removes top margin from subsequent nhsuk-image.
 */
.nhsuk-image {
  background-color: #ffffff;
  border-bottom: 1px solid #d8dde0;
  margin-left: 0; /* [1] */
  margin-right: 0; /* [1] */
  margin-bottom: 32px;
  margin-top: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-image {
    margin-bottom: 40px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-image {
    margin-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-image {
    width: 66.66667%; /* [2] */
  }
}
@media print {
  .nhsuk-image {
    width: 50%; /* [3] */
  }
}
.nhsuk-image + .nhsuk-image {
  margin-top: 0;
  /* [4] */
}

@media (min-width: 40.0625em) {
  .nhsuk-image + .nhsuk-image {
    margin-top: 0;
  }
}
.nhsuk-image__img {
  display: block;
  width: 100%;
}

.nhsuk-image__caption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  padding: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-image__caption {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-image__caption {
    font-size: 14pt;
    line-height: 1.2;
  }
}
/* ==========================================================================
   COMPONENTS/ #INPUT
   ========================================================================== */
/**
 * 1. Disable inner shadow and remove rounded corners
 * 2. setting any background-color makes text invisible when changing colours to dark
 *    backgrounds in Firefox (https://bugzilla.mozilla.org/show_bug.cgi?id=1335476)
 *    as background-color and color need to always be set together, color should
 *    not be set either.
 */
.nhsuk-input {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  -moz-appearance: none; /* 1 */
  -webkit-appearance: none; /* 1 */
  appearance: none; /* 1 */
  border: 2px solid #4c6272; /* 2 */
  border-radius: 0;
  box-sizing: border-box;
  height: 40px;
  margin-top: 0;
  padding: 4px;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-input {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-input:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-input::-webkit-outer-spin-button,
.nhsuk-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nhsuk-input[type=number] {
  /* stylelint-disable-line string-quotes */
  -moz-appearance: textfield;
}

.nhsuk-input--error {
  border: 2px solid #d5281b;
}

.nhsuk-input--width-30 {
  max-width: 59ex;
}

.nhsuk-input--width-20 {
  max-width: 41ex;
}

.nhsuk-input--width-10 {
  max-width: 23ex;
}

.nhsuk-input--width-5 {
  max-width: 10.8ex;
}

.nhsuk-input--width-4 {
  max-width: 9ex;
}

.nhsuk-input--width-3 {
  max-width: 7.2ex;
}

.nhsuk-input--width-2 {
  max-width: 5.4ex;
}

/* ==========================================================================
   COMPONENTS / #INSET-TEXT
   ========================================================================== */
/**
 * 1. Removes top margin from first element and bottom margin from last,
 *    to ensure correct spacing within the component.
 * 2. Restricts the width of the text to optimise the line length for
 *    readability.
 */
.nhsuk-inset-text {
  /* [1] */
  max-width: 44em;
  /* [2] */
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 16px;
  border-left: 8px solid #005eb8;
}

.nhsuk-inset-text > *:first-child {
  margin-top: 0;
}

.nhsuk-inset-text > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-inset-text {
    padding: 24px;
  }
}
@media print {
  .nhsuk-inset-text {
    border-color: #212b32;
  }
}
/* ==========================================================================
   COMPONENTS/ #LABEL
   ========================================================================== */
.nhsuk-label {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-label {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Modifiers that make labels look more like their equivalent headings */
.nhsuk-label--xl {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--xl {
    font-size: 48px;
    font-size: 3rem;
    line-height: 1.16667;
  }
}
@media print {
  .nhsuk-label--xl {
    font-size: 32pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--xl {
    margin-bottom: 48px;
  }
}
.nhsuk-label--l {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33333;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
@media print {
  .nhsuk-label--l {
    font-size: 24pt;
    line-height: 1.05;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--l {
    margin-bottom: 24px;
  }
}
.nhsuk-label--m {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--m {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-label--m {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--m {
    margin-bottom: 24px;
  }
}
.nhsuk-label--s {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  display: block;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-label--s {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-label--s {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-label--s {
    margin-bottom: 24px;
  }
}
.nhsuk-label-wrapper {
  margin: 0;
}

/* ==========================================================================
   COMPONENTS / #PAGINATION
   ========================================================================== */
/**
 * 1. Padding to give the icon spacing.
 * 2. Append the word 'page' after next and
 *    previous on print stylesheets to make it easier
 *    to understand in print context.
 */
.nhsuk-pagination {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-pagination {
    margin-bottom: 48px;
  }
}
.nhsuk-pagination__list:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-pagination-item--previous {
  float: left;
  text-align: left;
  width: 50%;
}

.nhsuk-pagination-item--previous .nhsuk-icon {
  left: -6px;
}

.nhsuk-pagination-item--previous .nhsuk-pagination__title {
  padding-left: 32px; /* [1] */
}

.nhsuk-pagination-item--next {
  float: right;
  text-align: right;
  width: 50%;
}

.nhsuk-pagination-item--next .nhsuk-icon {
  right: -6px;
}

.nhsuk-pagination-item--next .nhsuk-pagination__title {
  padding-right: 32px; /* [1] */
}

.nhsuk-pagination__link {
  display: block;
  position: relative;
  text-decoration: none;
  width: 100%;
}

@media print {
  .nhsuk-pagination__link {
    color: #212b32;
  }
}
.nhsuk-pagination__link .nhsuk-icon {
  position: absolute;
  top: -2px;
}

@media print {
  .nhsuk-pagination__link .nhsuk-icon {
    color: #212b32;
    margin-top: 0;
  }
}
.nhsuk-pagination__link:hover {
  color: #7c2855;
}

.nhsuk-pagination__link:hover .nhsuk-icon {
  fill: #7c2855;
}

.nhsuk-pagination__link:hover .nhsuk-pagination__page {
  text-decoration: none;
}

.nhsuk-pagination__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-pagination__link:focus .nhsuk-pagination__page {
  text-decoration: none;
}

.nhsuk-pagination__link:focus:visited .nhsuk-icon, .nhsuk-pagination__link:focus:hover .nhsuk-icon, .nhsuk-pagination__link:focus:active .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-pagination__link:visited .nhsuk-icon {
  fill: #330072;
}

.nhsuk-pagination__link:visited:hover .nhsuk-icon {
  fill: #7c2855;
}

.nhsuk-pagination__link:visited:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-pagination__title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  display: block;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination__title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-pagination__title {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media print {
  .nhsuk-pagination__title:after {
    content: " page"; /* [2] */
  }
}
.nhsuk-pagination__page {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  display: block;
  text-decoration: underline;
}

@media (min-width: 40.0625em) {
  .nhsuk-pagination__page {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-pagination__page {
    font-size: 14pt;
    line-height: 1.2;
  }
}
/* ==========================================================================
   COMPONENTS/ #CHECKBOXES
   ========================================================================== */
/**
 * 1. remove 300ms pause on mobile.
 * 2. Fix bug in IE11 caused by transform rotate (-45deg).
 */
.nhsuk-checkboxes__item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: left;
  display: block;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 0 0 0 40px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-checkboxes__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-checkboxes__item:last-child,
.nhsuk-checkboxes__item:last-of-type {
  margin-bottom: 0;
}

.nhsuk-checkboxes__input {
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 1;
}

.nhsuk-checkboxes__label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 12px 4px;
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation;
}

.nhsuk-checkboxes__hint {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}

.nhsuk-checkboxes__input + .nhsuk-checkboxes__label::before {
  background: #ffffff;
  border: 2px solid #4c6272;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.nhsuk-checkboxes__input + .nhsuk-checkboxes__label::after {
  background: transparent;
  border: solid;
  border-top-color: transparent;
  border-width: 0 0 4px 4px;
  content: "";
  height: 10px;
  left: 10px;
  opacity: 0; /* 2 */
  position: absolute;
  top: 13px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 22px;
}

/*
 * Focus state
 *
 * 1. Since box-shadows are removed when users customise their colours
 *    We set a transparent outline that is shown instead.
 *    https://accessibility.blog.gov.uk/2017/03/27/how-users-change-colours-on-websites/
 */
.nhsuk-checkboxes__input:focus + .nhsuk-checkboxes__label::before {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
}

/* Selected state */
.nhsuk-checkboxes__input:checked + .nhsuk-checkboxes__label::after {
  opacity: 1;
}

/* Disabled state */
.nhsuk-checkboxes__input:disabled,
.nhsuk-checkboxes__input:disabled + .nhsuk-checkboxes__label {
  cursor: default;
}

.nhsuk-checkboxes__input:disabled + .nhsuk-checkboxes__label {
  opacity: 0.5;
}

/* Divider variant */
.nhsuk-checkboxes__divider {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
  text-align: center;
  width: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-checkboxes__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/*
 * Conditional
 *
 * 1. Calculate the amount of padding needed to keep the border
 *    centered against the checkbox.
 * 2. Move the border centered with the checkbox.
 * 3. Move the contents of the conditional inline with the label.
 */
/* 1 */
/* 2 */
/* 3 */
.nhsuk-checkboxes__conditional {
  margin-bottom: 16px;
  border-left: 4px solid #4c6272;
  margin-left: 18px;
  padding-left: 30px;
}

@media (min-width: 40.0625em) {
  .nhsuk-checkboxes__conditional {
    margin-bottom: 24px;
  }
}
.nhsuk-checkboxes__conditional > :last-child {
  margin-bottom: 0;
}

.js-enabled .nhsuk-checkboxes__conditional--hidden {
  display: none;
}

/* ==========================================================================
   COMPONENTS/ #RADIOS
   ========================================================================== */
/**
 * 1. remove 300ms pause on mobile.
 * 2. Fix bug in IE11 caused by transform rotate (-45deg).
 */
.nhsuk-radios__item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  clear: left;
  display: block;
  margin-bottom: 8px;
  min-height: 40px;
  padding: 0 0 0 40px;
  position: relative;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-radios__item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-radios__item:last-child,
.nhsuk-radios__item:last-of-type {
  margin-bottom: 0;
}

.nhsuk-radios__input {
  cursor: pointer;
  height: 40px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 40px;
  z-index: 1;
}

.nhsuk-radios__label {
  cursor: pointer;
  display: inline-block;
  margin-bottom: 0;
  padding: 8px 12px 4px;
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 1 */
}

.nhsuk-radios__hint {
  display: block;
  padding-left: 12px;
  padding-right: 12px;
}

.nhsuk-radios__input + .nhsuk-radios__label::before {
  background: #ffffff;
  border: 2px solid #4c6272;
  border-radius: 50%;
  box-sizing: border-box;
  content: "";
  height: 40px;
  left: 0;
  position: absolute;
  top: 0;
  width: 40px;
}

.nhsuk-radios__input + .nhsuk-radios__label::after {
  background: #4c6272;
  border: 10px solid #212b32;
  border-radius: 50%;
  content: "";
  height: 0;
  left: 10px;
  opacity: 0;
  position: absolute;
  top: 10px;
  width: 0;
}

/**
 * Focus state
 *
 * 1. Since box-shadows are removed when users customise their colours
 *    We set a transparent outline that is shown instead.
 *    https://accessibility.blog.gov.uk/2017/03/27/how-users-change-colours-on-websites/
 */
.nhsuk-radios__input:focus + .nhsuk-radios__label::before {
  border: 4px solid #212b32;
  box-shadow: 0 0 0 4px #ffeb3b;
}

/* Selected state */
.nhsuk-radios__input:checked + .nhsuk-radios__label::after {
  opacity: 1;
}

/* Disabled state */
.nhsuk-radios__input:disabled,
.nhsuk-radios__input:disabled + .nhsuk-radios__label {
  cursor: default;
}

.nhsuk-radios__input:disabled + .nhsuk-radios__label {
  opacity: 0.5;
}

/*
 * Inline variant
 *
 * 1. Prevent inline modifier being used with conditional reveals
 */
@media (min-width: 40.0625em) {
  .nhsuk-radios--inline:after {
    clear: both;
    content: "";
    display: block;
  }
  .nhsuk-radios--inline .nhsuk-radios__item {
    clear: none;
    float: left;
    margin-right: 24px;
  }
}
.nhsuk-radios--inline.nhsuk-radios--conditional {
  /* 1 */
}

.nhsuk-radios--inline.nhsuk-radios--conditional .nhsuk-radios__item {
  float: none;
  margin-right: 0;
}

/* Divider variant */
.nhsuk-radios__divider {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
  text-align: center;
  width: 40px;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__divider {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-radios__divider {
    font-size: 14pt;
    line-height: 1.15;
  }
}
/* Conditional */
.nhsuk-radios__conditional {
  margin-bottom: 16px;
  border-left: 4px solid #4c6272;
  margin-left: 18px;
  padding-left: 30px;
}

@media (min-width: 40.0625em) {
  .nhsuk-radios__conditional {
    margin-bottom: 24px;
  }
}
.nhsuk-radios__conditional > :last-child {
  margin-bottom: 0;
}

.js-enabled .nhsuk-radios__conditional--hidden {
  display: none;
}

/* ==========================================================================
   COMPONENTS/ #SELECT
   ========================================================================== */
.nhsuk-select {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  border: 2px solid #4c6272;
  box-sizing: border-box;
  height: 40px;
  max-width: 100%;
  padding: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-select {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-select {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-select:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-select option:active,
.nhsuk-select option:checked,
.nhsuk-select:focus::-ms-value {
  background-color: #005eb8;
  color: #ffffff;
}

.nhsuk-select--error {
  border: 2px solid #d5281b;
}

/* ==========================================================================
   COMPONENTS / #SKIP-LINK
   ========================================================================== */
/**
 * 1. Hides the skip link off the page,
 * 2. until the link gains focus from keyboard tabbing.
 */
.nhsuk-skip-link {
  left: -9999px; /* [1] */
  padding: 8px;
  position: absolute;
}

.nhsuk-skip-link:active, .nhsuk-skip-link:focus {
  left: 16px; /* [2] */
  top: 16px;
  z-index: 2;
}

.nhsuk-skip-link:visited {
  color: #212b32;
}

/* ==========================================================================
   COMPONENTS/ #SUMMARY-LIST
   ========================================================================== */
/**
 * Original code taken from GDS (Government Digital Service)
 * https://github.com/alphagov/govuk-frontend
 *
 * 1. Required to allow us to wrap words that overflow.
 * 2. Reset default user agent styles
 * 3. Automatic wrapping for unbreakable text (e.g. URLs)
 * 4. Fallback for older browsers only
 */
.nhsuk-summary-list {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0; /* [2] */
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-summary-list {
    font-size: 14pt;
    line-height: 1.15;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    display: table;
    table-layout: fixed; /* [1] */
    width: 100%;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list {
    margin-bottom: 40px;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-summary-list__row {
    border-bottom: 1px solid #d8dde0;
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list__row {
    display: table-row;
  }
}
.nhsuk-summary-list__key,
.nhsuk-summary-list__value,
.nhsuk-summary-list__actions {
  margin: 0; /* [2] */
  vertical-align: top;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__key,
  .nhsuk-summary-list__value,
  .nhsuk-summary-list__actions {
    border-bottom: 1px solid #d8dde0;
    display: table-cell;
    padding-bottom: 8px;
    padding-right: 24px;
    padding-top: 8px;
  }
}
.nhsuk-summary-list__actions {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__actions {
    padding-right: 0;
    text-align: right;
    width: 20%;
  }
}
.nhsuk-summary-list__key,
.nhsuk-summary-list__value {
  /* [3] */
  overflow-wrap: break-word;
  word-wrap: break-word; /* [4] */
}

.nhsuk-summary-list__key {
  font-weight: 600;
  margin-bottom: 4px;
}

@media (min-width: 40.0625em) {
  .nhsuk-summary-list__key {
    width: 30%;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-summary-list__value {
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-summary-list__value {
    width: 50%;
  }
}
.nhsuk-summary-list__value > p {
  margin-bottom: 8px;
}

.nhsuk-summary-list__value > :last-child {
  margin-bottom: 0;
}

.nhsuk-summary-list__actions-list {
  margin: 0; /* [2] */
  padding: 0; /* [2] */
  width: 100%;
}

.nhsuk-summary-list__actions-list-item {
  display: inline;
  margin-right: 8px;
  padding-right: 8px;
}

.nhsuk-summary-list__actions-list-item:not(:last-child) {
  border-right: 1px solid #d8dde0;
}

.nhsuk-summary-list__actions-list-item:last-child {
  border: 0;
  margin-right: 0;
  padding-right: 0;
}

.nhsuk-summary-list--no-border .nhsuk-summary-list__key,
.nhsuk-summary-list--no-border .nhsuk-summary-list__value,
.nhsuk-summary-list--no-border .nhsuk-summary-list__actions,
.nhsuk-summary-list--no-border .nhsuk-summary-list__row {
  border: 0;
}

/* ==========================================================================
   COMPONENTS / #TABLE
   ========================================================================== */
/**
 * Table container is used to ensure the table does not break the container.
 *
 * 1. Margin is removed so there isn't double spacing.
 */
.nhsuk-table-container {
  margin-bottom: 40px;
  display: block;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-x: auto;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-table-container {
    margin-bottom: 48px;
  }
}
.nhsuk-table-container .nhsuk-table {
  margin: 0; /* [1] */
}

/* Table row hover
========================================================================== */
/**
 * Table row hover is used to aid readability for users.
 */
.nhsuk-table__row:hover {
  background-color: #f0f4f5;
}

/* Table panel with tab heading
========================================================================== */
/**
 * 1. Margin is removed so there isn't double spacing.
 */
.nhsuk-table__panel-with-heading-tab {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #ffffff;
  color: #212b32;
  border: 1px solid #d8dde0;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
}

.nhsuk-table__panel-with-heading-tab > *:first-child {
  margin-top: 0;
}

.nhsuk-table__panel-with-heading-tab > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-table__panel-with-heading-tab {
    padding: 32px;
  }
}
@media print {
  .nhsuk-table__panel-with-heading-tab {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-table__panel-with-heading-tab .nhsuk-table-container,
.nhsuk-table__panel-with-heading-tab .nhsuk-table {
  margin: 0; /* [1] */
}

.nhsuk-table__heading-tab {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #005eb8;
  color: #ffffff;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-table__heading-tab {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-table__heading-tab {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-table__heading-tab {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-table__heading-tab {
    background: none;
    color: #212b32;
    top: 0;
  }
}
/* Responsive table
========================================================================== */
/**
 * 1. Hiding the thead on mobile
 * 2. Displaying the thead on desktop
 * 3. Removing default screen reader behaviour
 * 4. Assigning role of table-row on desktop to give default screen reader behaviour
 * 5. Using justify content to space out elements in the row on mobile
 * 6. Assigning a minimum width in case of black cell
 * 7. Aligning content to the right on mobile
 * 8. Aligning mobile header to left to split it from the data
 * 9. Hiding mobile specific header from desktop view
 * 10. Adding a display block value due to IE 11 not having full flex support
 */
.nhsuk-table-responsive {
  margin-bottom: 0;
  width: 100%;
}

.nhsuk-table-responsive thead {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* [1] */
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive thead {
    clip: auto;
    -webkit-clip-path: initial;
    clip-path: initial;
    display: table-header-group;
    height: auto;
    overflow: auto;
    position: relative;
    width: auto;
    /* [2] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
  font-weight: 600;
  padding-right: 16px;
  text-align: left; /* [8] */
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table-responsive__heading {
    display: none; /* [9] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
  display: block; /* [3] */
  margin-bottom: 24px;
}

.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row:last-child {
  margin-bottom: 0;
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row {
    display: table-row; /* [4] */
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
  text-align: right;
}

@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row th {
    text-align: left;
  }
}
.nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
  display: block;
  display: flex;
  justify-content: space-between; /* [5] */
  min-width: 1px; /* [6] */
}

@media all and (-ms-high-contrast: none) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    /* [10] */
    display: block;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    display: table-cell;
  }
}
@media (max-width: 48.0525em) {
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td {
    padding-right: 0;
    text-align: right; /* [7] */
  }
  .nhsuk-table-responsive .nhsuk-table__body .nhsuk-table__row td:last-child {
    border-bottom: 3px solid #d8dde0;
  }
}
/* Numeric tables
========================================================================== */
/**
 * Right aligns table cells for numeric tables.
 */
.nhsuk-table__header--numeric,
.nhsuk-table__cell--numeric {
  text-align: right;
}

/* ==========================================================================
   #TAG
   ========================================================================== */
.nhsuk-tag {
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  background-color: #0055a6;
  border: 1px solid #0055a6;
  color: #ffffff;
  display: inline-block;
  outline: 2px solid transparent;
  outline-offset: -2px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .nhsuk-tag {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
  }
}
@media print {
  .nhsuk-tag {
    font-size: 14pt;
    line-height: 1;
  }
}
/* Colour variants
  ========================================================================== */
.nhsuk-tag--white {
  background-color: #ffffff;
  border-color: #212b32;
  color: #212b32;
}

.nhsuk-tag--grey {
  background-color: #dbe0e3;
  border-color: #354550;
  color: #354550;
}

.nhsuk-tag--green {
  background-color: #cce5d8;
  border-color: #004c23;
  color: #004c23;
}

.nhsuk-tag--aqua-green {
  background-color: #ccedeb;
  border-color: #00524d;
  color: #00524d;
}

.nhsuk-tag--blue {
  background-color: #ccdff1;
  border-color: #004281;
  color: #004281;
}

.nhsuk-tag--purple {
  background-color: #d6cce3;
  border-color: #240050;
  color: #240050;
}

.nhsuk-tag--pink {
  background-color: #efd3e3;
  border-color: #57133a;
  color: #57133a;
}

.nhsuk-tag--red {
  background-color: #f7d4d1;
  border-color: #6b140e;
  color: #6b140e;
}

.nhsuk-tag--orange {
  background-color: #ffdc8e;
  border-color: #4d3708;
  color: #4d3708;
}

.nhsuk-tag--yellow {
  background-color: #fff59d;
  border-color: #4d4712;
  color: #4d4712;
}

/* Remove tag border
  ========================================================================== */
.nhsuk-tag--no-border {
  border: 0;
}

/* ==========================================================================
   COMPONENTS/ #TEXTAREA
   ========================================================================== */
.nhsuk-textarea {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-appearance: none;
  border: 2px solid #4c6272;
  border-radius: 0;
  box-sizing: border-box;
  display: block;
  min-height: 40px;
  padding: 4px;
  resize: vertical;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-textarea {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-textarea {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-textarea:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.nhsuk-textarea--error {
  border: 2px solid #d5281b;
}

/* ==========================================================================
   COMPONENTS / #WARNING-CALLOUT
   ========================================================================== */
/**
 * 1. Uses @mixin panel-with-label from tools/_mixins.
 * 2. Uses @mixin heading-label from tools/_mixins.
 */
.nhsuk-warning-callout {
  margin-bottom: 40px;
  margin-top: 40px;
  padding: 24px;
  background-color: #fff9c4;
  color: #212b32;
  border: 1px solid #ffeb3b;
  padding-top: 0 !important; /* stylelint-disable-line declaration-no-important */
  /* [1] */
}

.nhsuk-warning-callout > *:first-child {
  margin-top: 0;
}

.nhsuk-warning-callout > *:last-child {
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    margin-bottom: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    margin-top: 48px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-warning-callout {
    padding: 32px;
  }
}
@media print {
  .nhsuk-warning-callout {
    border: 1px solid #212b32;
    page-break-inside: avoid;
  }
}
.nhsuk-warning-callout__label {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  background-color: #ffeb3b;
  color: #212b32;
  display: inline-block;
  margin: 0 0 8px -33px;
  padding: 8px 32px;
  position: relative;
  top: -16px;
  /* [2] */
}

@media (min-width: 40.0625em) {
  .nhsuk-warning-callout__label {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.33333;
  }
}
@media print {
  .nhsuk-warning-callout__label {
    font-size: 18pt;
    line-height: 1.15;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-warning-callout__label {
    margin-left: -25px;
    margin-right: 0;
    padding: 8px 24px;
    top: -8px;
  }
}
@media print {
  .nhsuk-warning-callout__label {
    background: none;
    color: #212b32;
    top: 0;
  }
}
.nhsuk-character-count {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-character-count {
    margin-bottom: 40px;
  }
}
.nhsuk-character-count .nhsuk-form-group,
.nhsuk-character-count .nhsuk-textarea {
  margin-bottom: 4px;
}

.nhsuk-character-count__message {
  margin-bottom: 0;
  margin-top: 0;
}

.nhsuk-character-count__message--disabled {
  visibility: hidden;
}

.nhsuk-tabs {
  margin-top: 4px;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs {
    margin-top: 4px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-tabs {
    margin-bottom: 40px;
  }
}
.nhsuk-tabs__title {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: #212b32;
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__title {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-tabs__title {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-tabs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__list {
    margin-bottom: 40px;
  }
}
.nhsuk-tabs__list-item {
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__list-item {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .nhsuk-tabs__list-item {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.nhsuk-tabs__list-item:before {
  color: #212b32;
  content: "—";
  margin-left: -32px;
  padding-right: 4px;
}

.nhsuk-tabs__tab {
  color: #005eb8;
  display: inline-block;
  margin-bottom: 8px;
}

.nhsuk-tabs__tab:visited {
  color: #330072;
}

.nhsuk-tabs__tab:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-tabs__tab:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-tabs__tab:focus:hover {
  text-decoration: none;
}

.nhsuk-tabs__tab:focus:visited {
  color: #212b32;
}

.nhsuk-tabs__tab:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-tabs__tab:active {
  color: #002f5c;
}

.nhsuk-tabs__panel {
  margin-bottom: 48px;
}

@media (min-width: 40.0625em) {
  .nhsuk-tabs__panel {
    margin-bottom: 56px;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__list {
    border-bottom: 1px solid #d8dde0;
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__list:after {
    clear: both;
    content: "";
    display: block;
  }
  .js-enabled .nhsuk-tabs__title {
    display: none;
  }
  .js-enabled .nhsuk-tabs__list-item {
    background-color: #d8dde0;
    float: left;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 4px;
    padding: 8px 24px;
    position: relative;
    text-align: center;
  }
  .js-enabled .nhsuk-tabs__list-item:before {
    content: none;
  }
  .js-enabled .nhsuk-tabs__list-item--selected {
    background-color: #ffffff;
    border: 1px solid #d8dde0;
    border-bottom: 0;
    margin-bottom: -1px;
    margin-top: -4px;
    padding-bottom: 13px;
    padding-left: 23px;
    padding-right: 23px;
    padding-top: 11px;
    position: relative;
  }
  .js-enabled .nhsuk-tabs__list-item--selected .nhsuk-tabs__tab {
    text-decoration: none;
  }
  .js-enabled .nhsuk-tabs__tab {
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__tab:link, .js-enabled .nhsuk-tabs__tab:visited {
    color: #212b32;
  }
  .js-enabled .nhsuk-tabs__tab:hover {
    color: rgba(33, 43, 50, 0.99);
  }
  .js-enabled .nhsuk-tabs__tab:active, .js-enabled .nhsuk-tabs__tab:focus {
    color: #212b32;
  }
  .js-enabled .nhsuk-tabs__tab:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
  }
  .js-enabled .nhsuk-tabs__panel {
    margin-bottom: 0;
    background-color: #ffffff;
    border: 1px solid #d8dde0;
    border-top: 0;
    padding: 40px 24px;
  }
}
@media (min-width: 40.0625em) and (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__panel {
    margin-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .js-enabled .nhsuk-tabs__panel > :last-child {
    margin-bottom: 0;
  }
  .js-enabled .nhsuk-tabs__panel--hidden {
    display: none;
  }
}
.nhsuk-list--border li {
  border-bottom: 1px solid #d8dde0;
  padding: 8px 0 16px;
}

.app-list--spaced > li:not(:last-child) {
  margin-bottom: 1em;
}

.nhsuk-related-nav {
  border-top: 1px solid #d8dde0;
}

@media (max-width: 48.0525em) {
  .nhsuk-related-nav {
    margin-top: 48px;
  }
}
.nhsuk-related-nav__heading {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 12px;
  padding-top: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__heading {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.2;
  }
}
@media print {
  .nhsuk-related-nav__heading {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-related-nav__list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__list {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-related-nav__list {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-related-nav__list {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  list-style: none;
  padding-left: 0;
}

@media (min-width: 40.0625em) {
  .nhsuk-related-nav__list {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .nhsuk-related-nav__list {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.nhsuk-character-count {
  margin-bottom: 32px;
}

@media (min-width: 40.0625em) {
  .nhsuk-character-count {
    margin-bottom: 40px;
  }
}
.nhsuk-character-count .nhsuk-form-group,
.nhsuk-character-count .nhsuk-textarea {
  margin-bottom: 4px;
}

.nhsuk-character-count__message {
  margin-bottom: 0;
  margin-top: 0;
}

.nhsuk-character-count__message--disabled {
  visibility: hidden;
}

.app-autocomplete__wrapper {
  position: relative;
}

.app-autocomplete__hint,
.app-autocomplete__input {
  -webkit-appearance: none;
  border: 2px solid #4c6272;
  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%;
}

.app-autocomplete__input {
  background-color: #ffffff;
  position: relative;
  border: 2px solid #4c6272;
  height: 40px;
}

.app-autocomplete__hint {
  color: #b1b4b6;
  position: absolute;
}

.app-autocomplete__input--default {
  padding: 4px;
}

.app-autocomplete__input--focused {
  outline: 3px solid #ffeb3b;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

.app-autocomplete__input--show-all-values {
  padding: 5px 34px 5px 5px; /* Space for arrow. Other padding should match .app-autocomplete__input--default. */
  cursor: pointer;
}

.app-autocomplete__dropdown-arrow-down {
  z-index: -1;
  display: inline-block;
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  top: 10px;
}

.app-autocomplete__menu {
  background-color: #ffffff;
  border: 2px solid #4c6272;
  border-top: 0;
  color: #212b32;
  margin: 0;
  max-height: 342px;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
}

.app-autocomplete__menu--visible {
  display: block;
}

.app-autocomplete__menu--hidden {
  display: none;
}

.app-autocomplete__menu--overlay {
  box-shadow: rgba(0, 0, 0, 0.256863) 0px 2px 6px;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 100;
}

.app-autocomplete__menu--inline {
  position: relative;
}

.app-autocomplete__option {
  border-bottom: solid #b1b4b6;
  border-width: 1px 0;
  cursor: pointer;
  display: block;
  position: relative;
}

.app-autocomplete__option > * {
  pointer-events: none;
}

.app-autocomplete__option:first-of-type {
  border-top-width: 0;
}

.app-autocomplete__option:last-of-type {
  border-bottom-width: 0;
}

.app-autocomplete__option--odd {
  background-color: #f0f4f5;
}

.app-autocomplete__option--focused,
.app-autocomplete__option:hover {
  background-color: #1d70b8;
  border-color: #1d70b8;
  color: white;
  outline: none;
}

@media (-ms-high-contrast: active), (forced-colors: active) {
  .app-autocomplete__menu {
    border-color: FieldText;
  }
  .app-autocomplete__option {
    background-color: Field;
    color: FieldText;
  }
  .app-autocomplete__option--focused,
  .app-autocomplete__option:hover {
    forced-color-adjust: none; /* prevent backplate from obscuring text */
    background-color: Highlight;
    border-color: Highlight;
    color: HighlightText;
    /* Prefer SelectedItem / SelectedItemText in browsers that support it */
    background-color: SelectedItem;
    border-color: SelectedItem;
    color: SelectedItemText;
    outline-color: SelectedItemText;
  }
}
.app-autocomplete__option--no-results {
  background-color: #FAFAFA;
  color: #646b6f;
  cursor: not-allowed;
}

.app-autocomplete__hint,
.app-autocomplete__input,
.app-autocomplete__option {
  font-size: 16px;
  line-height: 1.25;
}

.app-autocomplete__hint,
.app-autocomplete__option {
  padding: 5px;
  margin-bottom: 0;
}

@media (min-width: 641px) {
  .app-autocomplete__hint,
  .app-autocomplete__input,
  .app-autocomplete__option {
    font-size: 19px;
    line-height: 1.31579;
  }
}
.nhsuk-button {
  width: 100%;
}

@media (min-width: 40.0625em) {
  .nhsuk-button {
    width: auto;
  }
}
.app-button--tertiary {
  background: transparent;
  box-shadow: none;
  border: 2px solid #005eb8;
  vertical-align: middle;
}

.app-button--tertiary, .app-button--tertiary:link, .app-button--tertiary:visited {
  color: #005eb8;
}

.app-button--tertiary g {
  stroke: #005eb8;
}

.app-button--tertiary .app-button__icon,
.app-button--tertiary span {
  vertical-align: middle;
}

.app-button--tertiary .app-button__icon {
  margin-right: 4px;
}

.app-button--tertiary:focus {
  box-shadow: none;
  border-color: #212b32;
  color: #212b32;
}

.app-button--tertiary:focus:hover {
  color: #ffffff;
}

.app-button--tertiary:focus g {
  stroke: #212b32;
}

.app-button--tertiary:hover, .app-button--tertiary:active {
  background-color: #005eb8;
  color: #ffffff;
  border-color: #ffffff;
  top: auto;
}

.app-button--tertiary:hover g, .app-button--tertiary:active g {
  stroke: #ffffff;
}

.app-button--tertiary:active {
  background-color: #002f5c;
}

.app-button--link {
  box-shadow: none;
  color: #005eb8;
  font-weight: normal;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  letter-spacing: 0px;
  background: none;
  border: none;
  font-size: inherit;
  cursor: pointer;
  border-radius: 0;
  color: #005eb8;
}

.app-button--link:visited {
  color: #330072;
}

.app-button--link:hover {
  color: #7c2855;
  text-decoration: none;
}

.app-button--link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.app-button--link:focus:hover {
  text-decoration: none;
}

.app-button--link:focus:visited {
  color: #212b32;
}

.app-button--link:focus .nhsuk-icon {
  fill: #212b32;
}

.app-button--link:active {
  color: #002f5c;
}

.app-button--link:focus, .app-button--link:hover {
  background: none;
  border: none;
  color: #0095d7;
  text-decoration: underline;
}

.app-button--link:focus {
  outline: 3px solid #ffb81c;
  box-shadow: none;
}

.app-button--link:active {
  background-color: #ffb81c;
  top: 2px;
  text-decoration: underline;
  color: #005eb8;
}

.app-button--full-stop:after {
  content: ".";
  position: absolute;
  color: #212b32;
}

.app-call-to-action {
  background-color: #ffffff;
  border: 8px solid #005eb8;
  padding: 24px;
  margin-bottom: 32px;
}

.app-call-to-action > :last-child {
  margin-bottom: 0;
}

.app-callout {
  padding: 24px;
  margin-bottom: 32px;
  background-color: #ffffff;
}

@media (min-width: 40.0625em) {
  .app-callout {
    padding: 32px;
  }
}
.app-callout > :last-child {
  margin-bottom: 0;
}

.app-callout--alert {
  border-top: 8px solid #d5281b;
}

/* Used on the modzero page, where the standard callout--alert doesn't sit nicely on the pink background without an extra border */
.app-callout--alert-bordered {
  border-right: 1px solid #d8dde0;
  border-bottom: 1px solid #d8dde0;
  border-left: 1px solid #d8dde0;
}

.app-callout--info {
  border-left: 4px solid #4c6272;
}

.app-callout--warning {
  border-top: 4px solid #ffb81c;
}

.app-callout--location {
  padding: 16px;
  border-left: 4px solid #d8dde0;
  border-right: 1px solid #d8dde0;
  border-bottom: 1px solid #d8dde0;
  border-top: 1px solid #d8dde0;
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .app-callout--location {
    padding: 24px;
  }
}
.app-call-to-action {
  background-color: #ffffff;
  border: 8px solid #005eb8;
  padding: 24px;
  margin-bottom: 32px;
}

.app-call-to-action > :last-child {
  margin-bottom: 0;
}

.app-search-field {
  margin-bottom: 40px;
}

.app-search-field__inner {
  background: #ffffff;
  border-bottom: 2px solid #005eb8;
}

@supports (display: flex) {
  .app-search-field__inner {
    display: flex;
  }
}
.app-search-field__input {
  width: 80%;
  min-width: 0;
  background: transparent;
  border: 0;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.2;
  border: 2px solid transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px;
  /* clears the "X" from Internet Explorer */
  /* clears the "X" from Chrome */
}

@media (min-width: 40.0625em) {
  .app-search-field__input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 2.2;
  }
}
@media print {
  .app-search-field__input {
    font-size: 14pt;
    line-height: 2.2;
  }
}
@supports (display: flex) {
  .app-search-field__input {
    flex-basis: 100%;
    flex-shrink: 1;
    width: auto;
  }
}
.app-search-field__input:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.app-search-field__input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.app-search-field__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.app-search-field__input::-webkit-search-decoration, .app-search-field__input::-webkit-search-cancel-button, .app-search-field__input::-webkit-search-results-button, .app-search-field__input::-webkit-search-results-decoration {
  display: none;
}

.app-search-field__button {
  border: 0;
  background: #ffffff;
  padding: 12px 8px;
  cursor: pointer;
  position: relative;
  margin-left: 1px;
  line-height: normal;
  text-decoration: none;
}

@media (min-width: 20em) {
  .app-search-field__button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.app-search-field__button:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: none;
}

.app-search-field__button:focus .nhsuk-icon {
  fill: #212b32;
}

.app-search-field__button:focus::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  bottom: -2px;
  left: 0;
  background-color: #212b32;
}

.app-search-field__button--with-divider::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -1px;
  width: 1px;
  background-color: #a0a0a0;
}

.app-search-field__icon {
  vertical-align: middle;
}

.app-search-field__button:hover .app-search-field__icon g {
  stroke: #7c2855;
}

.app-search-field__button:focus .app-search-field__icon g {
  stroke: #212b32;
}

.app-section-break {
  margin-top: 32px;
  margin-bottom: 32px;
  border-bottom: 4px solid #aeb7bd;
  width: 130px;
}

.app-section-break--thin-wide {
  width: auto;
  border-bottom: 2px solid #d8dde0;
}

/* as seen on the module zero page */
.app-two-tone-list {
  color: #4d555b;
}

.app-two-tone-list__highlight {
  color: #212b32;
}

.app-signage {
  list-style: none;
  padding-left: 0;
  padding-top: 8px;
}

@media (min-width: 48.0625em) {
  .app-signage {
    column-count: 2;
    column-gap: 32px;
  }
}
.app-signage__item {
  margin: 0;
  padding-bottom: 4px;
  break-inside: avoid;
}

.app-signage__link {
  background: #005eb8;
  display: block;
  padding: 12px 40px 12px 24px;
  position: relative;
  text-decoration: none;
}

@media (max-width: 40.0525em) {
  .app-signage__link {
    padding: 12px 34px 12px 16px;
  }
}
.app-signage__link, .app-signage__link:visited {
  color: #ffffff;
}

.app-signage__link:hover {
  background: #003d78;
  color: #ffffff;
  box-shadow: none;
  text-decoration: underline;
}

.app-signage__link:active {
  background: #002f5c;
  color: #ffffff;
}

.app-signage__link:focus {
  background: #ffeb3b;
  box-shadow: inset 0 -4px 0 0 #212b32;
  color: #212b32;
}

.app-signage__link:focus .app-signage__icon {
  fill: #212b32;
}

.app-signage__link:focus:hover {
  text-decoration: none;
}

.app-signage__icon {
  fill: #ffffff;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 12px;
  top: 14px;
}

@media (max-width: 40.0525em) {
  .app-signage__icon {
    top: 12px;
    right: 5px;
  }
}
.app-hanging-indent {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
}

.app-hanging-indent__item {
  flex-shrink: 0;
  margin: 0;
}

/**
 * Custom homepage specific modification to the nhsuk-expander-group
 * Not the cleanest implementation ever, but it's not anticipated that this be used in many other places
 */
@media (max-width: 40.0525em) {
  .app-expander-group--homepage .nhsuk-expander {
    margin-bottom: 0;
  }
  .app-expander-group--homepage .nhsuk-expander.app-expander--mobile-highlight {
    border-width: 0 0 2px 0;
  }
  .app-expander-group--homepage .nhsuk-expander.app-expander--mobile-highlight .nhsuk-details__summary-text {
    font-weight: 600;
  }
  .app-expander-group--homepage .nhsuk-expander:not(.app-expander--mobile-highlight) {
    border-width: 0 0 1px 0;
  }
  .app-expander-group--homepage .nhsuk-expander:not(.app-expander--mobile-highlight),
  .app-expander-group--homepage .nhsuk-expander:not(.app-expander--mobile-highlight) .nhsuk-details__summary {
    background: transparent;
  }
}
.app-inline-spinner {
  color: #ffffff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  margin: 0 !important;
}

.app-inline-spinner span {
  transform-origin: 15px 15px;
  animation: app-inline-spinner 1.2s linear infinite;
  display: block;
  margin: 0 !important;
}

.app-inline-spinner span:after {
  content: " ";
  display: block;
  position: absolute;
  top: 2px;
  left: 13px;
  width: 4px;
  height: 8px;
  border-radius: 20%;
  background: #ffffff;
}

.app-inline-spinner span:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.app-inline-spinner span:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.app-inline-spinner span:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.app-inline-spinner span:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.app-inline-spinner span:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.app-inline-spinner span:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.app-inline-spinner span:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.app-inline-spinner span:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.app-inline-spinner span:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.app-inline-spinner span:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.app-inline-spinner span:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.app-inline-spinner span:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes app-inline-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.app-inset-text--red {
  border-color: #d5281b;
}

.app-loading-overlay {
  background: #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  z-index: 999;
  margin: 0;
}

.app-loading-overlay__inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

.app-loading-overlay__text {
  margin-bottom: 32px;
  font-size: nhsuk-font-size(19);
  font-weight: bold;
}

.app-spinner {
  color: #212b32;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0;
}

.app-spinner div {
  transform-origin: 40px 40px;
  animation: app-spinner 1.2s linear infinite;
  margin: 0;
}

.app-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #212b32;
}

.app-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}

.app-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}

.app-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}

.app-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}

.app-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}

.app-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}

.app-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}

.app-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}

.app-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}

.app-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}

.app-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}

.app-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}

@keyframes app-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.app-standalone-spinner {
  margin: 32px auto;
  display: block;
}

.app-standalone-spinner .app-spinner {
  margin: 0 auto;
  display: block;
}

.app-standalone-spinner__text {
  text-align: center;
  margin-bottom: 32px;
  font-weight: bold;
}

.app-notification-banner {
  background-color: #f0f4f5;
}

.app-notification-banner--highlight {
  background-color: #fada8b;
}

.app-notification-banner__inner {
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0 16px; /* [1] */
  max-width: 960px; /* [2] */
  /* [4] */
}

@media (min-width: 40.0625em) {
  .app-notification-banner__inner {
    padding-top: 8px;
  }
}
@media (min-width: 40.0625em) {
  .app-notification-banner__inner {
    padding-bottom: 8px;
  }
}
@media (min-width: 48.0625em) {
  .app-notification-banner__inner {
    margin: 0 32px; /* [3] */
  }
}
@media (min-width: 1024px) {
  .app-notification-banner__inner {
    margin: 0 auto;
  }
}
.app-notification-banner__inner p {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  margin-bottom: 0;
}

@media (min-width: 40.0625em) {
  .app-notification-banner__inner p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media print {
  .app-notification-banner__inner p {
    font-size: 14pt;
    line-height: 1.2;
  }
}
.app-search-field {
  margin-bottom: 40px;
}

.app-search-field__inner {
  background: #ffffff;
  border-bottom: 2px solid #005eb8;
}

@supports (display: flex) {
  .app-search-field__inner {
    display: flex;
  }
}
.app-search-field__input {
  width: 80%;
  min-width: 0;
  background: transparent;
  border: 0;
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.2;
  border: 2px solid transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 4px;
  /* clears the "X" from Internet Explorer */
  /* clears the "X" from Chrome */
}

@media (min-width: 40.0625em) {
  .app-search-field__input {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 2.2;
  }
}
@media print {
  .app-search-field__input {
    font-size: 14pt;
    line-height: 2.2;
  }
}
@supports (display: flex) {
  .app-search-field__input {
    flex-basis: 100%;
    flex-shrink: 1;
    width: auto;
  }
}
.app-search-field__input:focus {
  border: 2px solid #212b32;
  box-shadow: inset 0 0 0 2px;
  outline: 4px solid #ffeb3b; /* 1 */
  outline-offset: 0;
}

.app-search-field__input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.app-search-field__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

.app-search-field__input::-webkit-search-decoration, .app-search-field__input::-webkit-search-cancel-button, .app-search-field__input::-webkit-search-results-button, .app-search-field__input::-webkit-search-results-decoration {
  display: none;
}

.app-search-field__button {
  border: 0;
  background: #ffffff;
  padding: 12px 8px;
  cursor: pointer;
  position: relative;
  margin-left: 1px;
  line-height: normal;
  text-decoration: none;
}

@media (min-width: 20em) {
  .app-search-field__button {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.app-search-field__button:focus {
  background-color: #ffeb3b;
  border: 0;
  box-shadow: 0 4px 0 0 #212b32;
  color: #212b32;
  outline: 4px solid transparent; /* 1 */
  outline-offset: 4px;
  box-shadow: none;
}

.app-search-field__button:focus .nhsuk-icon {
  fill: #212b32;
}

.app-search-field__button:focus::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 100%;
  bottom: -2px;
  left: 0;
  background-color: #212b32;
}

.app-search-field__button--with-divider::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -1px;
  width: 1px;
  background-color: #a0a0a0;
}

.app-search-field__icon {
  vertical-align: middle;
}

.app-search-field__button:hover .app-search-field__icon g {
  stroke: #7c2855;
}

.app-search-field__button:focus .app-search-field__icon g {
  stroke: #212b32;
}

.app-section-break {
  margin-top: 32px;
  margin-bottom: 32px;
  border-bottom: 4px solid #aeb7bd;
  width: 130px;
}

.app-section-break--thin-wide {
  width: auto;
  border-bottom: 2px solid #d8dde0;
}

.app-signage {
  list-style: none;
  padding-left: 0;
  padding-top: 8px;
}

@media (min-width: 48.0625em) {
  .app-signage {
    column-count: 2;
    column-gap: 32px;
  }
}
.app-signage__item {
  margin: 0;
  padding-bottom: 4px;
  break-inside: avoid;
}

.app-signage__link {
  background: #005eb8;
  display: block;
  padding: 12px 40px 12px 24px;
  position: relative;
  text-decoration: none;
}

@media (max-width: 40.0525em) {
  .app-signage__link {
    padding: 12px 34px 12px 16px;
  }
}
.app-signage__link, .app-signage__link:visited {
  color: #ffffff;
}

.app-signage__link:hover {
  background: #003d78;
  color: #ffffff;
  box-shadow: none;
  text-decoration: underline;
}

.app-signage__link:active {
  background: #002f5c;
  color: #ffffff;
}

.app-signage__link:focus {
  background: #ffeb3b;
  box-shadow: inset 0 -4px 0 0 #212b32;
  color: #212b32;
}

.app-signage__link:focus .app-signage__icon {
  fill: #212b32;
}

.app-signage__link:focus:hover {
  text-decoration: none;
}

.app-signage__icon {
  fill: #ffffff;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 12px;
  top: 14px;
}

@media (max-width: 40.0525em) {
  .app-signage__icon {
    top: 12px;
    right: 5px;
  }
}
/* as seen on the module zero page */
.app-two-tone-list {
  color: #4d555b;
}

.app-two-tone-list__highlight {
  color: #212b32;
}

.app-warning-callout--white {
  background-color: #ffffff;
  border-color: #d8dde0;
}

.app-service-details {
  margin: 32px 0;
  background-color: #ffffff;
  border-left: 4px solid #4c6272;
}

@media (min-width: 48.0625em) {
  .app-service-details {
    display: flex;
  }
}
.app-service-details__content {
  padding: 16px 32px 16px 16px;
}

@media (min-width: 48.0625em) {
  .app-service-details__content {
    max-width: 40%;
    min-width: 320px;
  }
}
.app-service-details__map {
  height: 400px;
  padding: 4px;
}

@supports (aspect-ratio: auto) {
  .app-service-details__map {
    width: auto;
    height: auto;
    aspect-ratio: 1;
    flex-grow: 1;
  }
  @media (min-width: 48.0625em) {
    .app-service-details__map {
      aspect-ratio: 3/2;
    }
  }
}
@supports (object-fit: cover) {
  .app-service-details__map__img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
  }
}
.app-service-details__map__gmap {
  height: 100%;
}

.app-table--top-border {
  border-top: 1px solid #d8dde0;
}

.app-autocomplete__wrapper {
  position: relative;
}

.app-autocomplete__hint,
.app-autocomplete__input {
  -webkit-appearance: none;
  border: 2px solid #4c6272;
  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%;
}

.app-autocomplete__input {
  background-color: #ffffff;
  position: relative;
  border: 2px solid #4c6272;
  height: 40px;
}

.app-autocomplete__hint {
  color: #b1b4b6;
  position: absolute;
}

.app-autocomplete__input--default {
  padding: 4px;
}

.app-autocomplete__input--focused {
  outline: 3px solid #ffeb3b;
  outline-offset: 0;
  box-shadow: inset 0 0 0 2px;
}

.app-autocomplete__input--show-all-values {
  padding: 5px 34px 5px 5px; /* Space for arrow. Other padding should match .app-autocomplete__input--default. */
  cursor: pointer;
}

.app-autocomplete__dropdown-arrow-down {
  z-index: -1;
  display: inline-block;
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  top: 10px;
}

.app-autocomplete__menu {
  background-color: #ffffff;
  border: 2px solid #4c6272;
  border-top: 0;
  color: #212b32;
  margin: 0;
  max-height: 342px;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
}

.app-autocomplete__menu--visible {
  display: block;
}

.app-autocomplete__menu--hidden {
  display: none;
}

.app-autocomplete__menu--overlay {
  box-shadow: rgba(0, 0, 0, 0.256863) 0px 2px 6px;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 100;
}

.app-autocomplete__menu--inline {
  position: relative;
}

.app-autocomplete__option {
  border-bottom: solid #b1b4b6;
  border-width: 1px 0;
  cursor: pointer;
  display: block;
  position: relative;
}

.app-autocomplete__option > * {
  pointer-events: none;
}

.app-autocomplete__option:first-of-type {
  border-top-width: 0;
}

.app-autocomplete__option:last-of-type {
  border-bottom-width: 0;
}

.app-autocomplete__option--odd {
  background-color: #f0f4f5;
}

.app-autocomplete__option--focused,
.app-autocomplete__option:hover {
  background-color: #1d70b8;
  border-color: #1d70b8;
  color: white;
  outline: none;
}

@media (-ms-high-contrast: active), (forced-colors: active) {
  .app-autocomplete__menu {
    border-color: FieldText;
  }
  .app-autocomplete__option {
    background-color: Field;
    color: FieldText;
  }
  .app-autocomplete__option--focused,
  .app-autocomplete__option:hover {
    forced-color-adjust: none; /* prevent backplate from obscuring text */
    background-color: Highlight;
    border-color: Highlight;
    color: HighlightText;
    /* Prefer SelectedItem / SelectedItemText in browsers that support it */
    background-color: SelectedItem;
    border-color: SelectedItem;
    color: SelectedItemText;
    outline-color: SelectedItemText;
  }
}
.app-autocomplete__option--no-results {
  background-color: #FAFAFA;
  color: #646b6f;
  cursor: not-allowed;
}

.app-autocomplete__hint,
.app-autocomplete__input,
.app-autocomplete__option {
  font-size: 16px;
  line-height: 1.25;
}

.app-autocomplete__hint,
.app-autocomplete__option {
  padding: 5px;
  margin-bottom: 0;
}

@media (min-width: 641px) {
  .app-autocomplete__hint,
  .app-autocomplete__input,
  .app-autocomplete__option {
    font-size: 19px;
    line-height: 1.31579;
  }
}
.app-full-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #f0f4f5;
  z-index: 1;
}

.app-body-has-full-page-overlay {
  height: 100vh;
  overflow: hidden;
}

.app-storm-chat-iframe {
  width: 100%;
  height: 500px;
  border: 0;
}

@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 767px) {
    .app-storm-chat-iframe {
      display: block;
      width: 90%;
      border: 1px solid #aeb7bd;
      margin: 0 auto;
    }
  }
}
.app-u-no-focus-outline:focus {
  outline: 0;
}

.app-u-email {
  word-wrap: break-word;
}

/**
 * Place for any temporary hacks to live in the transition to nhsuk-frontend
 */
/**
  * Temporary overrides for the footer component
  * Convert these into a "proper" component when moving to the new frontend codebase
  * See https://github.com/nhsuk/nhsuk-service-manual-community-backlog/issues/15#issuecomment-922877848
  */
.nhsuk-footer .nhsuk-section-break--visible {
  border-bottom-color: #768692;
}

.nhsuk-footer a,
.nhsuk-footer a:visited {
  color: #003087;
}

.nhsuk-footer a:hover {
  color: #7c2855;
}

.nhsuk-footer p {
  color: #231f20;
}

.nhsuk-footer .nhsuk-footer__list-item {
  float: none;
}

/**
   * Temporary overrides for the header component
   * Prevent nhsuk-frontend mobile overrides from compressing the header too much
   * It's not necessary for us and looks weird
   */
.nhsuk-header__logo {
  max-width: none;
}

.nhsuk-header__link--service {
  align-items: center;
  display: flex;
}

.nhsuk-header__service-name {
  padding-left: 16px;
  font-size: 19px;
  font-size: 1.1875rem;
}

/**
 * Spacing on the bottom of buttons causes a bit of a nuisance in most situations so we're just gonna hack it out
 */
.nhsuk-button:last-child {
  margin-bottom: 0;
}

/**
 * Back link overrides to make the nhsuk-frontend component work with buttons
 * Remove once https://github.com/nhsuk/nhsuk-frontend/pull/838 is released and installed here
 * (nhsuk-frontend@6.2.0)
 */
.nhsuk-back-link__link {
  background: none;
  border: none;
  cursor: pointer;
  color: #005eb8;
}

.nhsuk-back-link__link:visited {
  color: #330072;
}

.nhsuk-back-link__link:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-back-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-back-link__link:focus:hover {
  text-decoration: none;
}

.nhsuk-back-link__link:focus:visited {
  color: #212b32;
}

.nhsuk-back-link__link:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-back-link__link:active {
  color: #002f5c;
}

/**
 * Action link overrides to make the nhsuk-frontend component work with buttons
 */
.nhsuk-action-link__link {
  background: none;
  border: none;
  cursor: pointer;
  color: #005eb8;
}

.nhsuk-action-link__link:visited {
  color: #330072;
}

.nhsuk-action-link__link:hover {
  color: #7c2855;
  text-decoration: none;
}

.nhsuk-action-link__link:focus {
  background-color: #ffeb3b;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.nhsuk-action-link__link:focus:hover {
  text-decoration: none;
}

.nhsuk-action-link__link:focus:visited {
  color: #212b32;
}

.nhsuk-action-link__link:focus .nhsuk-icon {
  fill: #212b32;
}

.nhsuk-action-link__link:active {
  color: #002f5c;
}

@media (min-width: 40.0625em) {
  .app-u-small-screen-only {
    display: none;
  }
}
.app-u-large-screen-only {
  display: none;
}

@media (min-width: 40.0625em) {
  .app-u-large-screen-only {
    display: block;
  }
}
.app-u-js-only {
  display: none;
}

.js-enabled .app-u-js-only {
  display: revert;
}

.js-enabled .app-u-js-disabled {
  display: none;
}

.template-debug-wrapper {
  margin: 0 !important;
}

.template-debug-enabled .template-debug-wrapper {
  outline: 2px dotted #333;
  padding: 20px 10px 10px 10px;
  position: relative;
  margin: 10px !important;
}

.template-debug-enabled .template-debug-wrapper::before {
  background-color: #333;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5px;
  font-size: 10px;
  height: 15px;
  line-height: 15px;
  content: attr(data-template-filename);
}

.template-debug-toggle {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1;
}

.template-debug-toggle label {
  cursor: pointer;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  background-color: #007f3b;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  padding: 2px;
}

.template-debug-toggle input {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/**
   * Temporary overrides for the header component
   * Prevent nhsuk-frontend mobile overrides from compressing the header too much
   * It's not necessary for us and looks weird
   */
.measure {
  max-width: 34em;
}

.nhsuk-header__logo {
  max-width: none;
}

.nhsuk-header__link--service {
  align-items: center;
  display: flex;
}

.nhsuk-header__service-name {
  padding-left: 16px;
}

.nhsuk-account__login {
  float: right;
  margin-left: 1em;
  margin-right: -16px;
  position: relative;
  z-index: 2;
}

.nhsuk-account__login--icon {
  fill: #fff;
  height: 1.6em;
  margin-left: 0.6em;
  position: relative;
  top: 0.4em;
  width: 1.6em;
}

.nhsuk-account__login--link,
.nhsuk-account__login--link:visited,
.nhsuk-account__login--link:hover {
  color: #fff;
  padding: 1em;
}

.nhsuk-account__login--link:focus .nhsuk-account__login--icon {
  fill: #212b32;
}

@media (min-width: 40.0625em) {
  .nhsuk-account__login {
    margin-right: -8px;
  }
  .nhsuk-account__login--link,
  .nhsuk-account__login--link:hover {
    margin-right: 0.6em;
    padding: 0.6em;
  }
}
.nhsuk-hero--image {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 1024px) {
  .nhsuk-hero--image {
    height: 400px;
  }
}
@media (min-width: 1280px) {
  .nhsuk-hero--image {
    height: 500px;
  }
}
.uec-intro {
  position: relative;
  margin-top: -20px;
  background-color: #005eb8;
}

@media (min-width: 1024px) {
  .uec-intro {
    margin-top: -30px;
  }
}
@media (min-width: 1280px) {
  .uec-intro {
    margin-top: -68px;
  }
}
.uec-intro::after {
  content: " ";
  position: absolute;
  bottom: -40px;
  left: 20px;
  width: 40px;
  height: 40px;
  border: 20px solid transparent;
  border-top-color: #005eb8;
}

.uec-intro h1 {
  margin: 0;
  padding: 0;
  color: #fff;
}

.app-list-signage {
  list-style: none;
  padding-left: 0 !important;
  padding-top: 8px;
}

.app-list-signage li {
  display: inline-block;
  margin: 2px 0;
  width: 100%;
}

.app-list-signage li:last-of-type {
  margin-bottom: 2px;
}

.app-list-signage li a {
  background: #005eb8;
  color: #ffffff;
  display: block;
  padding: 12px 24px;
  position: relative;
  text-decoration: none;
  width: 100%;
}

@media (max-width: 40.0525em) {
  .app-list-signage li a {
    padding: 12px 16px;
  }
}
.app-list-signage li a:hover {
  color: #ffffff;
  background: #003d78;
  box-shadow: none;
  text-decoration: underline;
}

.app-list-signage li a:active {
  background: #002f5c;
}

.app-list-signage li a:visited {
  color: #ffffff;
}

.app-list-signage li a:focus {
  background: #ffeb3b;
  box-shadow: inset 0 -4px 0 0 #212b32;
  color: #212b32;
}

.app-list-signage li a:focus .nhsuk-icon {
  fill: #212b32;
}

.app-list-signage li a:focus:hover {
  text-decoration: none;
}

.app-list-signage li a .nhsuk-icon {
  fill: #ffffff;
  height: 24px;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 24px;
}

@media (max-width: 40.0525em) {
  .app-list-signage li a .nhsuk-icon {
    top: 12px;
  }
}
@media (min-width: 48.0625em) {
  .app-list-signage--two-columns {
    column-count: 2;
    column-gap: 32px;
  }
}
.app-section__description {
  color: #4c6272;
}

.nhsuk-section-break {
  border: 0;
  margin: 0;
}

.nhsuk-section-break--m {
  margin-bottom: 16px;
  margin-top: 16px;
}

@media (min-width: 48.0625em) {
  .nhsuk-section-break--m {
    margin-bottom: 24px;
    margin-top: 24px;
  }
}
/**
  * Temporary overrides for the footer component
  * Convert these into a "proper" component when moving to the new frontend codebase
  * See https://github.com/nhsuk/nhsuk-service-manual-community-backlog/issues/15#issuecomment-922877848
  */
.nhsuk-footer .nhsuk-section-break--visible {
  border-bottom: 1px solid #768692;
}

.nhsuk-footer a,
.nhsuk-footer a:visited {
  color: #003087;
}

.nhsuk-footer a:hover {
  color: #7c2855;
}

.nhsuk-footer p {
  color: #231F20;
}

.nhsuk-footer .nhsuk-footer__list-item {
  float: none;
}

.global-footer__ce-mark {
  margin-right: 4px;
  vertical-align: baseline;
}

.module-zero {
  background-color: #FAE9E8;
}

.module-zero-container {
  position: relative;
  background-color: #ffffff;
  margin-bottom: 8px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 8px;
  padding-left: 24px;
  border: 1px solid #d8dde0;
  border-top: 0;
}

@media (min-width: 40.0625em) {
  .module-zero-container {
    margin-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .module-zero-container {
    padding-top: 32px;
  }
}
@media (min-width: 40.0625em) {
  .module-zero-container {
    padding-right: 32px;
  }
}
@media (min-width: 40.0625em) {
  .module-zero-container {
    padding-bottom: 16px;
  }
}
@media (min-width: 40.0625em) {
  .module-zero-container {
    padding-left: 32px;
  }
}
.module-zero-container::after {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  content: "";
  border-top: 8px solid #d5281b;
}

.module-zero-container .nhsuk-caption-l {
  color: #212b32;
}

.module-zero-container .nhsuk-heading-xl {
  color: #d5281b;
}

.module-zero-container li {
  color: #4D555B;
}

.module-zero-container li b {
  color: #212b32;
  display: block;
}

.app-section-break {
  background-color: #aeb7bd;
  border: 0;
  height: 4px;
  text-align: left;
  width: 130px;
}

.nhsuk-header__menu-toggle {
  position: absolute !important;
  right: 0 !important;
}

@media (min-width: 40.0625em) {
  .nhsuk-header__menu-toggle {
    display: none !important;
  }
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation {
    display: none !important;
  }
}
.scrollto {
  scroll-margin-top: 104px;
}

@media (min-width: 40.0625em) {
  .scrollto {
    scroll-margin-top: 172px;
  }
}
/* ----- ROUGH AS HELL JUST FOR THE IDEA -----*/
@media (min-width: 40.0625em) {
  .alt-sml-page-content {
    display: none;
  }
}
.alt-lrg-page-content {
  display: none;
}

@media (min-width: 40.0625em) {
  .alt-lrg-page-content {
    display: block;
  }
}
.alt-acc-control {
  background-color: #fff;
}

.alt-acc-unit {
  display: none;
}

@media (min-width: 40.0625em) {
  .alt-acc-unit {
    display: block;
  }
}
@media (min-width: 40.0625em) {
  .alt-acc-unit--tint {
    background-color: #fff;
  }
}
.alt-acc-unit--open {
  /*height: auto !important;
  overflow: visible !important;*/
}

/**
 * Expander variation.
 */
.nhsuk-expander-special {
  border-width: 0;
  border-bottom-width: 2px;
  margin: 0;
}

.nhsuk-expander-special .nhsuk-details__summary-text {
  font-weight: bold;
}

.nhsuk-expander-alt {
  border-width: 0;
  border-bottom-width: 1px;
  background-color: transparent;
  margin: 0;
}

.nhsuk-expander-alt .nhsuk-details__summary,
.nhsuk-expander-alt .nhsuk-details__summary-text,
.nhsuk-expander-alt .nhsuk-details__text {
  background-color: transparent;
}

.nhsuk-expander-alt .nhsuk-details__summary {
  border-top-width: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander-alt .nhsuk-details__summary {
    padding-top: 24px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander-alt .nhsuk-details__summary {
    padding-bottom: 24px;
  }
}
.nhsuk-expander-alt .nhsuk-details__text {
  padding-top: 4px;
  padding-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-expander-alt .nhsuk-details__text {
    padding-top: 4px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-expander-alt .nhsuk-details__text {
    padding-bottom: 32px;
  }
}
.nhsuk-expander.nhsuk-expander__inverted {
  background-color: #005eb8;
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__summary {
  background-color: #005eb8;
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__summary:hover {
  background-color: #003d78;
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__summary:hover .nhsuk-details__summary-text {
  color: #ffffff;
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__summary-text {
  color: #ffffff;
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__summary-text:before {
  background-image: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__plus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23fff'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23005eb8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M12 8v8M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A");
}

.nhsuk-expander.nhsuk-expander__inverted .nhsuk-details__text {
  background-color: #ffffff;
}

.nhsuk-expander[open].nhsuk-expander__inverted .nhsuk-details__summary-text::before {
  background-image: url("data:image/svg+xml,%3Csvg class='nhsuk-icon nhsuk-icon__minus' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' aria-hidden='true'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23fff'%3E%3C/circle%3E%3Cpath fill='none' stroke='%23005eb8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M8 12h8'%3E%3C/path%3E%3C/svg%3E%0A");
}

/** more rough AF responsive classes **/
@media (min-width: 40.0625em) {
  .screen-smol {
    display: none;
  }
}
.screen-full {
  display: none;
}

@media (min-width: 40.0625em) {
  .screen-full {
    display: block;
  }
}
.nhsuk-warning-callout.--lower {
  background-color: #ffffff;
  border-color: #d8dde0;
}

.address-picker {
  list-style: none;
  padding-left: 0;
}

.address-option {
  background-color: #fff;
  font-size: 0;
  line-height: 0;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .address-option {
    margin-bottom: 24px;
  }
}
.address-option button {
  border: 1px solid #d8dde0;
  border-left-width: 4px;
  padding: 16px 8px;
  width: 100%;
}

@media (min-width: 40.0625em) {
  .address-option button {
    padding-bottom: 24px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 24px;
  }
}
.address-option button:focus, .address-option button:hover {
  background-color: #005eb8;
  border-color: #005eb8;
  color: #fff;
  outline: none;
}

.address-option button:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.button--link {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #005eb8;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  width: auto;
}

.button--link:focus, .button--link:hover {
  background: none;
  border: none;
  color: #0095d7;
}

.button--link:active {
  background: #ffb81c;
}

/* below had NHSUK class additions before */
.button--link {
  color: #005eb8;
  display: inline;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  width: auto;
}

@media (min-width: 40.0625em) {
  .button--link {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
@media print {
  .button--link {
    font-size: 14pt;
    line-height: 1.15;
  }
}
.button--link:visited {
  color: #330072;
}

.button--link:hover {
  color: #7c2855;
  text-decoration: none;
}

.button--link:focus {
  background-color: #ffeb3b;
  -webkit-box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  box-shadow: 0 -2px #ffeb3b, 0 4px #212b32;
  color: #212b32;
  outline: 4px solid transparent;
  text-decoration: none;
}

.button--link:focus:hover {
  text-decoration: none;
}

.button--link:focus:visited {
  color: #212b32;
}

.button--link:focus .nhsuk-icon {
  fill: #212b32;
}

.button--link:active {
  color: #002f5c;
}

a.button, a.button:hover, a.button:visited {
  color: #fff;
}

a.button:focus {
  color: #212b32;
}

.button, button {
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #007f3b;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0 2px 0 #003317;
  box-shadow: 0 2px 0 #003317;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 32px;
  line-height: 1.25;
  outline: 1px solid transparent;
  outline-offset: -1px;
  padding: 12px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  width: 100%;
}

@media (min-width: 641px) {
  .button, button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 925px) {
  .button, button {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 641px) {
  .button, button {
    width: auto;
  }
}
.button + .button, button + .button {
  margin-top: 16px;
}

@media (min-width: 925px) {
  .button + .button, button + .button {
    margin-left: 32px;
  }
}
.button:visited, button:visited {
  background-color: #007f3b;
}

.button:focus, button:focus {
  outline: 3px solid #ffb81c;
}

.button:focus, .button:hover, button:focus, button:hover {
  background-color: #00662f;
}

.button:active, button:active {
  -webkit-box-shadow: 0 0 0 #007f3b;
  box-shadow: 0 0 0 #007f3b;
  top: 2px;
}

.button.disabled, .button[disabled=disabled], .button[disabled], button.disabled, button[disabled=disabled], button[disabled] {
  opacity: 0.5;
}

.button.disabled:hover, .button[disabled=disabled]:hover, .button[disabled]:hover, button.disabled:hover, button[disabled=disabled]:hover, button[disabled]:hover {
  background-color: #007f3b;
  cursor: default;
}

.button.disabled:active, .button[disabled=disabled]:active, .button[disabled]:active, button.disabled:active, button[disabled=disabled]:active, button[disabled]:active {
  -webkit-box-shadow: 0 2px 0 #003317;
  box-shadow: 0 2px 0 #003317;
  top: 0;
}

.button:focus, .button:hover, .button:link, .button:visited, button:focus, button:hover, button:link, button:visited {
  color: #fff;
}

.button:before, button:before {
  background: transparent;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.button:active:before, button:active:before {
  top: -2px;
}

.button--compact {
  padding: 4px 12px;
  width: auto;
}

.button--stacked, [class^=nhsuk-] .button--stacked {
  display: block !important;
}

.callout {
  background-color: #fff;
  padding: 16px;
}

@media (min-width: 769px) {
  .callout {
    padding: 32px;
  }
}
.callout:focus {
  outline: 3px solid #ffb81c;
}

.callout h1 {
  color: #231f20;
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  text-transform: none;
}

@media (min-width: 641px) {
  .callout h1 {
    font-size: 28px;
    line-height: 48px;
  }
}
@media (min-width: 769px) {
  .callout h1 {
    font-size: 32px;
    line-height: 48px;
  }
}
.callout--info, .callout--muted {
  background-color: #fff;
}

.callout--info {
  border: solid #4c6272;
  border-width: 0 0 0 4px;
}

.callout--attention {
  border: 8px solid #005eb8;
}

.callout--warning {
  background-color: #fff;
  border: solid #ffb81c;
  border-width: 4px 0 0;
}

.callout--alert {
  background-color: #fff;
  border-top: 8px solid #d5281b;
}

.callout--alert-bordered {
  border-bottom: 1px solid #d8dde0;
  border-left: 1px solid #d8dde0;
  border-right: 1px solid #d8dde0;
}

.callout--disposition {
  background-color: #005eb8;
  border: none;
  color: #fff;
}

.callout--severe {
  background-color: #da291c;
  color: #fff;
}

.callout--severe a:link, .callout--severe a:visited {
  color: #fff;
}

.callout--severe a:active, .callout--severe a:hover {
  color: #d4efff;
}

.callout--severe a:focus {
  outline: 3px solid #ffb81c;
}

.callout--error {
  background-color: #fff;
  border: 4px solid #d5281b;
}

.callout--compact {
  display: inline-block;
}

@media (min-width: 769px) {
  .callout--compact {
    padding: 16px 24px;
  }
}
.callout--lite {
  border-width: 0 0 0 4px;
}

/* SUMMARY LIST */
dl {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  dl {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 925px) {
  dl {
    font-size: 20px;
    line-height: 32px;
  }
}
dl dt {
  font-family: Frutiger W01, Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  text-transform: none;
}

@media (min-width: 641px) {
  dl dt {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 925px) {
  dl dt {
    font-size: 20px;
    line-height: 32px;
  }
}
.summary-list dd, .summary-list dt {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.summary-list div {
  border-bottom: 1px solid #aeb7bd;
  padding-bottom: 8px;
  padding-top: 8px;
}

@media (min-width: 40.0625em) {
  .summary-list div {
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) {
  .summary-list {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .summary-list div {
    display: table-row;
  }
  .summary-list dd, .summary-list dt {
    border-bottom: 1px solid #aeb7bd;
    display: table-cell;
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) and (min-width: 40.0625em) {
  .summary-list dd, .summary-list dt {
    padding-bottom: 8px;
    padding-top: 8px;
  }
}
@media (min-width: 641px) {
  .summary-list dt {
    width: 30%;
  }
  .summary-list dd {
    padding-left: 4rem;
    width: 70%;
  }
}
.survey-banner {
  background-color: white;
  padding: 8px 0;
}

.survey-banner--inner {
  max-width: 960px;
  position: relative;
  margin: 0 auto;
}

.app-service-details {
  margin-bottom: 44px;
}

.app-service-details__content {
  padding-top: 24px;
}

.app-callout--card {
  background-color: #fff;
  border: 1px solid #d8dde0;
}

.measure {
  max-width: 40em;
}

.summary-list {
  margin-top: 0px;
}

.summary-list div:last-child dt,
.summary-list div:last-child dd {
  border-bottom: none;
}

.nhsuk-expander--radios {
  background-color: transparent;
  border: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

.nhsuk-expander--radios .nhsuk-details__summary {
  background-color: transparent;
  border-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-top: 0;
}

.nhsuk-expander--radios .nhsuk-details__summary-text {
  color: #231f20;
  font-size: 20px;
  padding: 10px 4px 8px 55px;
  text-decoration: none;
}

.nhsuk-expander--radios[open] {
  margin-bottom: 30px;
}

.nhsuk-expander--radios[open] .nhsuk-details__summary-text {
  margin-bottom: 15px;
}

.nhsuk-expander--radios .nhsuk-details__text {
  padding: 0;
}

.nhsuk-expander--radios .nhsuk-details__summary .nhsuk-details__summary-text:before, .nhsuk-expander--radios .nhsuk-details__summary:focus .nhsuk-details__summary-text:before, .nhsuk-expander--radios[open] .nhsuk-details__summary .nhsuk-details__summary-text:before, .nhsuk-expander--radios[open] .nhsuk-details__summary:focus .nhsuk-details__summary-text:before {
  background-size: 44px 44px;
  height: 44px;
  top: calc(50% - 22px);
  width: 44px;
}

.nhsuk-expander--radios .slot-group, .slot-group {
  border-left: 5px solid #d8dde0;
  padding-bottom: 0;
  padding-left: 50px;
}

.slot-group--inactive {
  border-left-color: transparent;
  color: #4c6272;
  font-size: 19px;
  margin-top: 20px !important;
}

.nhsuk-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.nhsuk-fieldset:after {
  clear: both;
  content: "";
  display: block;
}

.nhsuk-fieldset__legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #212b32;
  display: table;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  margin-top: 0;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.47368;
  }
}
.nhsuk-fieldset__legend--l {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33333;
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-fieldset__legend--l {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.25;
  }
}
.nhsuk-fieldset__heading {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.nhsuk-fieldset__legend h1 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.form-group, .panel-group {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .form-group, .panel-group {
    margin-bottom: 32px;
  }
}
.form-group label {
  margin-bottom: 8px;
}

@media (min-width: 40.0625em) {
  .form-group label {
    margin-bottom: 8px;
  }
}
.form-group-error {
  border-left: 4px solid #b10e1e;
  margin-right: 15px;
  padding-left: 10px;
}

@media (min-width: 641px) {
  .form-group-error {
    border-left: 5px solid #b10e1e;
    padding-left: 16px;
  }
}
.nhsuk-form-group {
  margin-bottom: 16px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group {
    margin-bottom: 24px;
  }
}
.nhsuk-form-group .nhsuk-form-group:last-of-type {
  margin-bottom: 0;
}

.nhsuk-form-group--wrapper {
  margin-bottom: 24px;
}

@media (min-width: 40.0625em) {
  .nhsuk-form-group--wrapper {
    margin-bottom: 32px;
  }
}
.nhsuk-form-group--error {
  border-left: 4px solid #d5281b;
  padding-left: 16px;
}

.nhsuk-form-group--error .nhsuk-form-group {
  border: 0;
  padding: 0;
}

.chevron {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: black;
}

.chevron svg g {
  stroke: #4c6272;
}

.chevron:hover svg g {
  stroke: #7C2855;
}

.nhsuk-hint {
  color: #4c6272;
  margin-bottom: 20px;
}

.ghost-button {
  padding: 5px;
  border: 1.5px solid #005eb8;
  width: 175px;
  margin-bottom: 20px;
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (min-width: 480px) {
  .ghost-button {
    padding: 8px;
    border: 2px solid #005eb8;
    width: 200px;
    text-align: center;
    font-size: 18px;
  }
}
.ghost-button a {
  text-decoration: none;
}

.ghost-button a:visited {
  color: #005eb8;
}

.send-link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 15px;
  padding-top: 15px;
  font-size: 18px;
}

@media screen and (min-width: 480px) {
  .send-link {
    font-size: 20px;
  }
}
.send-link-SA {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  margin: 15px 0px 15px 0px;
  font-size: 18px;
}

@media screen and (min-width: 480px) {
  .send-link-SA {
    font-size: 20px;
  }
}
.send-link a:visited {
  color: #005eb8;
}

.send-link-SA a:visited {
  color: #005eb8;
}

.new-micro-survey {
  background-color: #ffffff;
  height: 100%;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.new-micro-survey details > summary {
  list-style-type: none;
  height: 100px;
}

.white-banner {
  width: 100%;
  background-color: #ffffff;
  height: auto;
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  border-top: 2px solid #d8dde0;
}

.white-banner-small {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 480px) {
  .white-banner-small {
    padding: 0px 20px 0px 20px;
  }
}
.ep-exit-header {
  display: flex;
  flex-direction: row;
  width: 75%;
}

@media screen and (max-width: 480px) {
  .ep-exit-header {
    width: 95%;
  }
}
.header-detail-button {
  width: 100%;
  height: auto;
  display: block;
  background-color: transparent;
  text-align: left;
  margin: 0px;
  padding: 0px;
  box-shadow: none;
}

.header-detail-button:focus,
.header-detail-button:hover {
  background-color: transparent;
}

.survey-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 75%;
  padding-top: 20px;
}

@media screen and (max-width: 480px) {
  .survey-header {
    width: 90%;
    padding-top: 15px;
    padding-bottom: 5px;
  }
}
.survey-header h4 {
  width: 92%;
}

@media screen and (max-width: 480px) {
  .survey-header h4 {
    width: 85%;
  }
}
.survey-header p {
  color: #005eb8;
  padding-right: 5px;
}

.survey-header p:hover {
  color: #7C2855;
}

.survey-header svg {
  height: 20px;
  width: 20px;
  color: #005eb8;
  margin-top: 5px;
  align-self: flex-start;
}

@media screen and (max-width: 480px) {
  .survey-header svg {
    right: 20px;
    display: flex;
    position: absolute;
    margin-top: 3px;
  }
}
.survey-header svg g {
  stroke: #005eb8;
}

.survey-header:hover g {
  stroke: #7C2855;
}

.detail-content {
  display: block;
}

.new-survey-text {
  background-color: #ffffff;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  display: none;
  padding-top: 0px;
}

.new-survey-text-finish {
  background-color: #ffffff;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  display: none;
  padding-top: 20px;
}

.on-page-survey-styling {
  border-bottom: 4px #d8dde0 solid;
  padding: 5px 5px 5px 0px;
  background-color: white;
}

@media screen and (min-width: 480px) {
  .on-page-survey-styling {
    padding: 5px 10px 5px 20px;
  }
}
.new-survey-button-ep {
  display: flex;
  flex-direction: row;
  width: 99%;
  justify-content: flex-start;
  background-color: #ffffff;
  height: auto;
  padding: 20px 0px 10px 0px;
  box-sizing: border-box;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .new-survey-button-ep {
    padding: 15px 0px 5px 0px;
    margin-bottom: 0px;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
}
.new-survey-button-ep p {
  margin-bottom: 20px;
}

.new-survey-button-ep a:visited {
  color: #005eb8;
}

.banner-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .banner-flex {
    flex-direction: column;
  }
}
.new-survey-button {
  display: flex;
  width: 40%;
  background-color: #ffffff;
  height: auto;
  padding: 20px 0px 5px 0px;
}

@media screen and (max-width: 480px) {
  .new-survey-button {
    padding: 10px 0px 0px 0px;
    margin-bottom: 0px;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
}
.new-survey-button p b {
  display: flex;
  color: #005eb8;
  padding-top: 5px;
}

.new-survey-button a:visited {
  color: #005eb8;
}

.survey-banner-buttons {
  display: flex;
}

@media screen and (max-width: 480px) {
  .survey-banner-buttons {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
}
.ghost-button-recc {
  border: 1.5px solid #005eb8;
  width: 48%;
  margin: 0px 0px 10px 0px;
  text-align: center;
  font-size: 16px;
  height: auto;
  background: none;
  padding: 7px 0px 7px 0px;
}

@media screen and (min-width: 480px) {
  .ghost-button-recc {
    padding: 8px;
    border: 2px solid #005eb8;
    width: 115px;
    text-align: center;
    font-size: 18px;
    margin: 10px 10px 10px 0px;
  }
}
.ghost-button-recc a {
  text-decoration: none;
}

.ghost-button-recc a:visited {
  color: #005eb8;
}

.ghost-button-recc:hover {
  border: 3px solid #005eb8;
}

.micro-survey {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.survey-desktop {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.accordian-hr {
  margin: 0px 0px 20px 0px !important;
  width: 75%;
}

@media screen and (max-width: 480px) {
  .accordian-hr {
    width: 100%;
  }
}
.thankyou-message {
  width: 75%;
}

@media screen and (max-width: 480px) {
  .thankyou-message {
    width: 100%;
  }
}
.survey-banner a:visited {
  color: #005eb8;
}

.exit-text {
  display: none;
}

.nhsuk-list.subcats a {
  font-weight: 600;
}

.step-heading {
  position: relative;
  top: 0;
  left: 48px;
  text-decoration: underline;
  font-size: 1.3em;
}

.step-plus::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg class=%27nhsuk-icon nhsuk-icon__plus%27 xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 24 24%27 aria-hidden=%27true%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2710%27 fill=%27%23005eb8%27/%3E%3Cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M12 8v8m-4-4h8%27/%3E%3C/svg%3E") left -2px center no-repeat;
  background-size: 42px 42px;
  content: "";
  display: inline-block;
  height: 42px;
  width: 42px;
  left: -48px;
  position: absolute;
  top: calc(50% - 20px);
}

.step-minus::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg class=%27nhsuk-icon nhsuk-icon__minus%27 xmlns=%27http://www.w3.org/2000/svg%27 width=%2732%27 height=%2732%27 viewBox=%270 0 24 24%27 aria-hidden=%27true%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%2710%27 fill=%27%23005eb8%27/%3E%3Cpath fill=%27none%27 stroke=%27%23fff%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M8 12h8%27/%3E%3C/svg%3E") left -2px center no-repeat;
  background-size: 42px 42px;
  content: "";
  display: inline-block;
  height: 42px;
  width: 42px;
  left: -48px;
  position: absolute;
  top: calc(50% - 20px);
}

.stepped-block {
  padding: 1em 0 1.2em 0;
  margin: 0;
  border-bottom: 1px solid #d8dde0;
}

.accurx-header {
  color: white;
  margin-left: 1em;
}

.accurx-header p {
  position: relative;
  top: 0.5em;
  left: 1em;
}

.accurx-menu {
  margin-left: -1em;
}

.accurx-menu li {
  padding: 1em;
  list-style: none;
  background-color: white;
  border: 1px solid #1264ac;
  border-radius: 6px;
  margin-bottom: 1.5em !important;
}

.accurx-menu a {
  text-decoration: none;
  color: #212b32;
}

.accurx-zero {
  background-color: #2c3941;
  color: white;
}

.accurx-zero-body {
  padding: 1em;
}

.accurx-zero ul {
  padding-left: 2em;
}

.accurx-zero-head {
  background-color: #d5281b;
  padding: 1em;
}

.accurx-alert-icon {
  margin-right: 1em;
  width: 2em;
  display: block;
  float: left;
}

[class*=nhsuk-] input[type=checkbox] + label {
  padding-left: 1em;
}