@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: #ffffff;
  height: 24px;
  position: absolute;
  right: 4px;
  transform: rotate(90deg);
  width: 24px;
}

.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 ol, ul ol, ol ul, ul ul, .nhsuk-list ol, .nhsuk-list ul, ol .nhsuk-list, ul .nhsuk-list, .nhsuk-list .nhsuk-list {
  margin-top: 8px;
  margin-bottom: 0;
}
@media (min-width: 40.0625em) {
  ol ol, ul ol, ol ul, ul ul, .nhsuk-list ol, .nhsuk-list ul, ol .nhsuk-list, ul .nhsuk-list, .nhsuk-list .nhsuk-list {
    margin-top: 8px;
  }
}

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 / #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
 */
.nhsuk-header {
  background-color: #005eb8;
}

.nhsuk-header__container {
  margin: 0 16px; /* [1] */
  max-width: 960px; /* [2] */
  /* [4] */
  padding: 20px 0;
}
@media (min-width: 48.0625em) {
  .nhsuk-header__container {
    margin: 0 32px; /* [3] */
  }
}
@media (min-width: 1024px) {
  .nhsuk-header__container {
    margin: 0 auto;
  }
}
@media (max-width: 40.0525em) {
  .nhsuk-header__container {
    padding-bottom: 0;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-header__container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
  }
}

@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;
  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;
  display: block;
}
.nhsuk-header__link:hover .nhsuk-logo {
  box-shadow: 0 0 0 4px rgb(0, 61.1, 119.6);
}
.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: "";
  }
}
.nhsuk-header__link:hover, .nhsuk-header__link:active, .nhsuk-header__link:focus {
  background-color: transparent;
}

.nhsuk-header__logo--only {
  max-width: 100%;
}
@media (max-width: 40.0525em) {
  .nhsuk-header__logo--only {
    padding-bottom: 16px;
  }
}
@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;
  }
}

.nhsuk-header__content {
  position: relative;
}
@media print {
  .nhsuk-header__content {
    display: none;
  }
}
.nhsuk-header__content.js-show {
  border-bottom: 4px solid #f0f4f5;
}
@media (min-width: 40.0625em) {
  .nhsuk-header__content.js-show {
    border-bottom: 0;
  }
}

.nhsuk-header__search {
  position: relative;
  text-align: right;
}
@media (min-width: 40.0625em) {
  .nhsuk-header__search {
    margin-left: 8px;
  }
}

.nhsuk-header__search-no-nav {
  padding-bottom: 16px;
}

.nhsuk-header__search-form {
  height: 100%;
  overflow: visible;
}
@media (max-width: 40.0525em) {
  .nhsuk-header__search-form {
    display: flex;
    margin: 16px 0 0;
    position: relative;
    width: 100%;
  }
}

@media (min-width: 40.0625em) {
  .nhsuk-header__search-wrap {
    display: block;
  }
}

.nhsuk-search__input {
  -webkit-appearance: listbox;
  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 13px;
}
.nhsuk-search__input::placeholder {
  color: #4c6272;
  font-size: 16px;
  opacity: 1;
}
.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: 1px solid #ffffff;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    flex-grow: 2;
    -ms-flex-positive: 2;
    font-size: inherit;
    height: 40px;
    margin: 0;
    outline: none;
    width: 100%;
    z-index: 1;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-search__input {
    border: 1px solid #ffffff;
    font-size: 16px;
    height: 40px;
    width: 200px;
  }
}
@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;
}
.nhsuk-search__submit:hover {
  cursor: pointer;
}
@media (max-width: 40.0525em) {
  .nhsuk-search__submit {
    background-color: #f0f4f5;
    border: 0;
    height: 40px;
    margin: 0;
    padding: 8px 8px 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9;
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    fill: #005eb8;
    height: 27px;
    width: 27px;
  }
  .nhsuk-search__submit:hover {
    background-color: rgb(0, 61.1, 119.6);
    border: 1px solid #ffffff;
  }
  .nhsuk-search__submit:hover .nhsuk-icon {
    fill: #ffffff;
  }
  .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;
    line-height: 1;
    width: 44px;
  }
  .nhsuk-search__submit .nhsuk-icon__search {
    height: 27px;
    width: 27px;
  }
  .nhsuk-search__submit:hover {
    background-color: rgb(0, 61.1, 119.6);
    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;
  }
}

.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: #ffffff;
  display: block;
  font-size: inherit;
  padding: 16px 12px;
  text-decoration: underline;
  white-space: nowrap;
}
@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: 40.0625em) {
  .nhsuk-header__navigation-link {
    padding: 12px 16px;
  }
}
.nhsuk-header__navigation-link .nhsuk-icon__chevron-right {
  fill: #aeb7bd;
  position: absolute;
  right: 4px;
  top: 11px;
}
.nhsuk-header__navigation-link:visited {
  color: #ffffff;
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:visited {
    color: #ffffff;
  }
}
.nhsuk-header__navigation-link:hover {
  box-shadow: none;
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 61.875em) {
  .nhsuk-header__navigation-link:hover {
    color: #ffffff;
  }
}
.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:visited, .nhsuk-header__navigation-link:focus:visited {
  background-color: #ffeb3b;
  color: #212b32;
}

.nhsuk-header__menu-toggle {
  background: transparent;
  border: 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  border-top: 4px solid transparent;
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  overflow: visible;
  position: relative;
  right: 0;
  text-align: center;
  text-decoration: underline;
  vertical-align: top;
  visibility: hidden;
  width: auto;
  z-index: 1;
}
.nhsuk-header__menu-toggle.nhsuk-header__navigation-link {
  padding-right: 30px;
}
@media (min-width: 48.0625em) {
  .nhsuk-header__menu-toggle {
    display: none;
  }
}
.nhsuk-header__menu-toggle:focus {
  text-decoration: none;
}
.nhsuk-header__menu-toggle:focus .nhsuk-icon__chevron-down {
  fill: #212b32;
}

.nhsuk-header__menu-toggle--visible {
  visibility: visible;
  display: block;
}

.nhsuk-header__menu-toggle[aria-expanded=true] .nhsuk-icon__chevron-down {
  transform: rotate(270deg);
}

.nhsuk-navigation {
  display: flex;
}
@media (max-width: 40.0525em) {
  .nhsuk-navigation {
    position: relative;
    z-index: 10;
  }
}

.nhsuk-header__drop-down, .nhsuk-header__navigation-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nhsuk-header__navigation-list {
  margin: 0 16px; /* [1] */
  max-width: 960px; /* [2] */
  /* [4] */
  width: 100%;
}
@media (min-width: 48.0625em) {
  .nhsuk-header__navigation-list {
    margin: 0 32px; /* [3] */
  }
}
@media (min-width: 1024px) {
  .nhsuk-header__navigation-list {
    margin: 0 auto;
  }
}
@media (min-width: 48.0625em) {
  .nhsuk-header__navigation-list {
    display: flex;
    justify-content: space-between;
  }
}
.js-enabled .nhsuk-header__navigation-list {
  display: flex;
}

.nhsuk-header__navigation-item {
  margin-bottom: 0;
}

.nhsuk-navigation-container {
  position: relative;
}

.nhsuk-header__drop-down {
  background-color: #ffffff;
  border-bottom: 4px solid #f0f4f5;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
  left: 0;
}
@media print {
  .nhsuk-header__drop-down {
    display: none;
  }
}
.nhsuk-header__drop-down .nhsuk-header__navigation-link {
  color: #005eb8;
  padding: 12px 16px;
}
.nhsuk-header__drop-down .nhsuk-header__navigation-item {
  border-top: 1px solid #f0f4f5;
  margin-bottom: 0;
}
@media (min-width: 61.875em) {
  .nhsuk-header__drop-down .nhsuk-header__navigation-item {
    border-top: 0;
    margin: 0;
    text-align: center;
  }
}

.nhsuk-header__drop-down--hidden {
  display: none;
}

.nhsuk-mobile-menu-container {
  align-self: center;
  display: none;
}

.nhsuk-mobile-menu-container--visible {
  display: block;
}

@media (min-width: 48.0625em) {
  .nhsuk-header__navigation-item--home {
    display: none;
  }
}

@media (min-width: 48.0625em) {
  .nhsuk-header__navigation-list--left-aligned {
    justify-content: initial;
  }
}

/**
    * These are the styles for the service header variants.
*/
.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;
  }
}

/* ==========================================================================
   COMPONENTS / #FOOTER
   ========================================================================== */
.nhsuk-footer-container {
  padding-bottom: 24px;
  padding-top: 24px;
  background-color: #d8dde0;
  border-top: 4px solid #005eb8;
}
.nhsuk-footer-container:after {
  clear: both;
  content: "";
  display: block;
}
@media print {
  .nhsuk-footer-container {
    display: none;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer-container {
    padding-bottom: 32px;
  }
}
@media (min-width: 40.0625em) {
  .nhsuk-footer-container {
    padding-top: 32px;
  }
}

.nhsuk-footer {
  background-color: #d8dde0;
  margin-bottom: 15px;
}
@media (min-width: 48.0625em) {
  .nhsuk-footer {
    display: flex;
    justify-content: space-between;
  }
}

.nhsuk-footer__list {
  padding-bottom: 16px;
  list-style-type: none;
  margin-bottom: 25px;
  padding-left: 0;
}
@media (min-width: 40.0625em) {
  .nhsuk-footer__list {
    padding-bottom: 24px;
  }
}
.nhsuk-footer__list:last-child {
  margin-bottom: 15px;
}
@media (min-width: 48.0625em) {
  .nhsuk-footer__list {
    float: left;
    padding-bottom: 0;
    padding-right: 40px;
    width: 75%;
  }
  .nhsuk-footer__list:last-child {
    padding-right: 0;
  }
}

.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: none;
    margin-right: 0;
  }
}

@media (min-width: 48.0625em) {
  .nhsuk-footer-default__list-item {
    float: left;
    margin-right: 32px;
  }
}

.nhsuk-footer__list-item-link {
  color: #003087;
}
.nhsuk-footer__list-item-link:visited {
  color: #003087;
}
.nhsuk-footer__list-item-link:hover {
  color: #7c2855;
}

.nhsuk-footer__copyright {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.71429;
  color: #231f20;
  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 (max-width: 48.0525em) {
  .nhsuk-footer__meta {
    border-top: 1px solid #f0f4f5;
    padding-top: 35px;
  }
}

/*# sourceMappingURL=style.css.map */
