@charset "UTF-8";
:root {
  /*System colors*/
  --dark-blue-grey: #dae3e7;
  --grey1c-20: #f7f7f7;
  --grey4c-100: #bbbcbc;
  --ocean-blue-20: #ccf0f9;
  --grey9c-100: #75787b;
  --grey1c-100: #d9d9d6;
  --system-blue-20: #d3eafd;
  --system-red-120: #c3362b;
  --system-orange: #fee7ac;
  /* rename this variable if you like please */
  --system-yellow-60: #fff389;
  --system-yellow-80: #fceb3b;
  --system-yellow-40: #e6c53b;
  --system-yellow-100: #ffeb3b;
  --system-green-120: #1d6e31;
  --system-green-100: #248a3d;
  --system-green-80: #1a9f50;
  --system-green-40: #a7d0b1;
  --system-red-40: #fbb4af;
  --system-blue-120: #1a78c2;
  --system-blue-40: #a6d5fa;
  --blue-grey: #edf2f4;
  --ocean-blue-80: #33c4e8;
  --ocean-blue-40: #99e1f3;
  --black: #000000;
  --white: #ffffff;
  --light-navy: #254a7e;
  --navy: #183052;
  --dark-navy: #101820;
  --darker-navy: #172f50;
  --dark-grey: #333333;
  --light-yellow: #fdf59c;
  --bar-background-color: #f6f8f9;
  --input-disabled-text: #75787b;
  --warning-yellow: #FBE679;
  --callout-yellow: #FBE679;
  --transparent-box-shadow: #0000003B;
  /* Font/text values */
  --font-family-roboto: Roboto;
  --font-style-normal: normal;
  --font-weight-medium: medium;
  --font-weight-normal: normal;
  --font-weight-bold: bold;
  --font-size-12: 0.75rem;
  --font-size-14: 0.875rem;
  --font-size-15: 0.9375rem;
  --font-size-16: 1rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-46: 2.875rem;
  --character-spacing-0: 0;
  --decoration-underline: underline;
  /* borders */
  --focus-outline-color-width: 2px;
  --button-border-radius: 0.25rem;
  --button-border-width: 2px;
  --input-border-radius: 0.125rem;
  --input-border-width: 1px;
  --input-border-width-active: 2px;
  --input-border-color: var(--dark-grey);
  --input-border-color-focus: var(--black);
  --input-border-color-emphasis: var(--dark-grey);
  --input-border-color-error: var(--system-red-120);
  --input-border-color-disabled: var(--grey4c-100);
  --input-background-color-disabled: var(--grey1c-20);
  /*Application color variables*/
  --body-text-color: var(--black);
  --link-color: var(--light-navy);
  --link-hover-bg: var(--light-navy);
  --link-hover-color: var(--white);
  --default-font-size: var(--font-size-16);
  --focus-outline-color: var(--black);
  --focus-link-outline-color: var(--navy);
  --error-color: var(--system-red-120);
  --warning-color: var(--warning-yellow);
  --success-color: var(--system-green-80);
  --callout-warning-bg-color: var(--callout-yellow);
  --callout-info-bg-color: var(--grey1c-20);
  /* highlighting font/bg colors */
  --highlight-alert-color: var(--system-orange);
  --highlight-positive-color: var(--system-green-100);
  --highlight-negative-color: var(--system-red-120);
}

/* ----------- NPM MODULES ---------- */
/*!
 * smartbanner.js v1.19.0 <https://github.com/ain/smartbanner.js#readme>
 * Copyright © 2022 Ain Tohvri, contributors. Licensed under GPL-3.0.
 */
.smartbanner {
  position: absolute;
  top: 0;
  left: 0;
  overflow-x: hidden;
  width: 100%;
  height: 84px;
  background: #f3f3f3;
  font-family: Helvetica, sans, sans-serif;
  /** Android styles **/
}

.smartbanner__exit {
  position: absolute;
  top: calc(50% - 6px);
  left: 9px;
  display: block;
  margin: 0;
  width: 12px;
  height: 12px;
  border: 0;
  text-align: center;
}

.smartbanner__exit::before, .smartbanner__exit::after {
  position: absolute;
  width: 1px;
  height: 12px;
  background: #767676;
  content: " ";
}

.smartbanner__exit::before {
  transform: rotate(45deg);
}

.smartbanner__exit::after {
  transform: rotate(-45deg);
}

.smartbanner__icon {
  position: absolute;
  top: 10px;
  left: 30px;
  width: 64px;
  height: 64px;
  border-radius: 15px;
  background-size: 64px 64px;
}

.smartbanner__info {
  position: absolute;
  top: 10px;
  left: 104px;
  display: flex;
  overflow-y: hidden;
  width: 60%;
  height: 64px;
  align-items: center;
  color: #000;
}

.smartbanner__info__title {
  font-size: 14px;
}

.smartbanner__info__author, .smartbanner__info__price {
  font-size: 12px;
}

.smartbanner__button {
  position: absolute;
  top: 32px;
  right: 10px;
  z-index: 1;
  display: block;
  padding: 0 10px;
  min-width: 10%;
  border-radius: 5px;
  background: #f3f3f3;
  color: #1474fc;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}

.smartbanner__button__label {
  text-align: center;
}

.smartbanner.smartbanner--android {
  background: #3d3d3d url("data:image/gif;base64,R0lGODlhCAAIAIABAFVVVf///yH5BAEHAAEALAAAAAAIAAgAAAINRG4XudroGJBRsYcxKAA7");
  box-shadow: inset 0 4px 0 #88b131;
}

.smartbanner.smartbanner--android .smartbanner__exit {
  left: 6px;
  margin-right: 7px;
  width: 17px;
  height: 17px;
  border-radius: 14px;
  background: #1c1e21;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) inset, 0 1px 1px rgba(255, 255, 255, 0.3);
  color: #b1b1b3;
  font-family: "ArialRoundedMTBold", Arial;
  font-size: 20px;
  line-height: 17px;
  text-shadow: 0 1px 1px #000;
}

.smartbanner.smartbanner--android .smartbanner__exit::before, .smartbanner.smartbanner--android .smartbanner__exit::after {
  top: 3px;
  left: 8px;
  width: 2px;
  height: 11px;
  background: #b1b1b3;
}

.smartbanner.smartbanner--android .smartbanner__exit:active, .smartbanner.smartbanner--android .smartbanner__exit:hover {
  color: #eee;
}

.smartbanner.smartbanner--android .smartbanner__icon {
  background-color: transparent;
  box-shadow: none;
}

.smartbanner.smartbanner--android .smartbanner__info {
  color: #ccc;
  text-shadow: 0 1px 2px #000;
}

.smartbanner.smartbanner--android .smartbanner__info__title {
  color: #fff;
  font-weight: bold;
}

.smartbanner.smartbanner--android .smartbanner__button {
  top: 30px;
  right: 20px;
  padding: 0;
  min-width: 12%;
  border-radius: 0;
  background: none;
  box-shadow: 0 0 0 1px #333, 0 0 0 2px #dddcdc;
  color: #d1d1d1;
  font-size: 14px;
  font-weight: bold;
}

.smartbanner.smartbanner--android .smartbanner__button:active, .smartbanner.smartbanner--android .smartbanner__button:hover {
  background: none;
}

.smartbanner.smartbanner--android .smartbanner__button__label {
  display: block;
  padding: 0 10px;
  background: #42b6c9;
  background: linear-gradient(to bottom, #42b6c9, #39a9bb);
  box-shadow: none;
  line-height: 24px;
  text-align: center;
  text-shadow: none;
  text-transform: none;
}

.smartbanner.smartbanner--android .smartbanner__button__label:active, .smartbanner.smartbanner--android .smartbanner__button__label:hover {
  background: #2ac7e1;
}

/*# sourceMappingURL=smartbanner.css.map */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Remove marker to show for ios devices
 */
details > summary::-webkit-details-marker {
  display: none;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
  * Hide only visually, but have it available for screen readers:
  * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
  *
  * 1. For long content, line feeds are not interpreted as spaces and small width
  *    causes content to wrap 1 word per line:
  *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
  */
.sr-only,
.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
  * Extends the .sr-only class to allow the element
  * to be focusable when navigated to via the keyboard:
  * https://www.drupal.org/node/897638
  */
.sr-only.focusable:active,
.sr-only.focusable:focus,
.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
  * Hide visually and from screen readers, but maintain layout
  */
.invisible {
  visibility: hidden;
}

/*
  * Clearfix: contain floats
  *
  * For modern browsers
  * 1. The space content is one way to avoid an Opera bug when the
  *    `contenteditable` attribute is included anywhere else in the document.
  *    Otherwise it causes space to appear at the top and bottom of elements
  *    that receive the `clearfix` class.
  * 2. The use of `table` rather than `block` is only necessary if using
  *    `:before` to contain the top-margins of child elements.
  */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

/**
 * Breakpoints for SCSS. Works with the Deloitte Digital DD.bp JavaScript
 *
 * @version 1.1.1
 * @copyright 2012-2017 Deloitte Digital Australia - http://www.deloittedigital.com/au
 * @author Deloitte Digital Australia deloittedigital@deloitte.com.au
 * @license BSD 3-Clause (http://opensource.org/licenses/BSD-3-Clause)
 */
/* -------------- DEBUG ------------- */
body.is-development {
  position: relative;
}
body.is-development::before {
  position: fixed;
  top: 0;
  left: 0;
  border: 1px solid #000;
  background-color: #FFF;
  padding: 4px;
  font-size: 12px;
  font-family: sans-serif;
}
@media only screen and (min-width: 1emem) and (max-width: 1emem) {
  body.is-development::before {
    content: "xss";
  }
}
@media only screen and (min-width: 30em) and (max-width: 39.9375em) {
  body.is-development::before {
    content: "xs";
  }
}
@media only screen and (min-width: 40em) and (max-width: 47.9375em) {
  body.is-development::before {
    content: "s";
  }
}
@media only screen and (min-width: 48em) and (max-width: 63.9375em) {
  body.is-development::before {
    content: "m";
  }
}
@media only screen and (min-width: 64em) and (max-width: 77.6875em) {
  body.is-development::before {
    content: "l";
  }
}
@media only screen and (min-width: 77.75em) and (max-width: 88.0625em) {
  body.is-development::before {
    content: "xl";
  }
}
@media only screen and (min-width: 88.125em) {
  body.is-development::before {
    content: "xxl";
  }
}

/* ------------- MIXINS ------------- */
/* -------------- BASE ------------ */
/* ----------- BREAKPOINTS ---------- */
/* ------------- PALETTES ------------ */
/* ------- UTILITY ------- */
/* ----------- SEARCH ---------- */
/* ----------- TRANSITIONS ---------- */
/* ----------- Z-INDEX ---------- */
/* ------------- OPACITY ------------ */
/* ------------- FONT-WEIGHTS ------------ */
/* ----------- TRANSITIONS ---------- */
/* ------------- COLOURS ------------ */
/* ------------- REM ---------------- */
h1,
.h1,
.smart-search .search-header,
.page-mygov-home .smart-search .search-header,
.global-header .wrapper .smart-search .search-header,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5 {
  color: #000000;
}

.theme-dark h1,
.theme-dark .h1,
.theme-dark .smart-search .search-header,
.smart-search .theme-dark .search-header,
.theme-dark .global-header .wrapper .smart-search .search-header,
.global-header .wrapper .smart-search .theme-dark .search-header,
.theme-dark h2,
.theme-dark .h2,
.theme-dark h3,
.theme-dark .h3,
.theme-dark h4,
.theme-dark .h4,
.theme-dark h5,
.theme-dark .h5,
.theme-dark h6,
.theme-dark .h6,
.theme-dark p {
  color: #FFFFFF;
}
h1.is-align-center,
.h1.is-align-center,
.smart-search .is-align-center.search-header,
.global-header .wrapper .smart-search .is-align-center.search-header,
h2.is-align-center,
.h2.is-align-center,
h3.is-align-center,
.h3.is-align-center,
h4.is-align-center,
.h4.is-align-center,
h5.is-align-center,
.h5.is-align-center,
h6.is-align-center,
.h6.is-align-center,
p.is-align-center {
  text-align: center !important;
}
h1.is-align-left,
.h1.is-align-left,
.smart-search .is-align-left.search-header,
.global-header .wrapper .smart-search .is-align-left.search-header,
h2.is-align-left,
.h2.is-align-left,
h3.is-align-left,
.h3.is-align-left,
h4.is-align-left,
.h4.is-align-left,
h5.is-align-left,
.h5.is-align-left,
h6.is-align-left,
.h6.is-align-left,
p.is-align-left {
  text-align: left !important;
}

/* Start - Mixins being reused in other SCSS files or pages */
h1,
.h1,
.smart-search .search-header,
.page-mygov-home .smart-search .search-header,
.global-header .wrapper .smart-search .search-header {
  color: #000000;
}
.page-ausgov-home h1,
.page-ausgov-home .h1,
.page-ausgov-home .smart-search .search-header,
.smart-search .page-ausgov-home .search-header,
.page-ausgov-home .global-header .wrapper .smart-search .search-header,
.global-header .wrapper .smart-search .page-ausgov-home .search-header {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.12;
}
@media only screen and (min-width: 64em) {
  .page-ausgov-home h1,
.page-ausgov-home .h1,
.page-ausgov-home .smart-search .search-header,
.smart-search .page-ausgov-home .search-header,
.page-ausgov-home .global-header .wrapper .smart-search .search-header,
.global-header .wrapper .smart-search .page-ausgov-home .search-header {
    font-size: 72px;
    font-size: 4.5rem;
    letter-spacing: -1px;
    letter-spacing: -0.0625rem;
    line-height: 1.1111111111;
  }
}
h1:not(.heading-hero, .heading-sub-hero),
.h1:not(.heading-hero, .heading-sub-hero),
.smart-search .search-header:not(.heading-hero, .heading-sub-hero),
.global-header .wrapper .smart-search .search-header:not(.heading-hero, .heading-sub-hero) {
  line-height: 1.25;
  letter-spacing: -0.0005em;
  font-weight: 300;
  font-size: 3.875rem;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 639px) {
  h1:not(.heading-hero, .heading-sub-hero),
.h1:not(.heading-hero, .heading-sub-hero),
.smart-search .search-header:not(.heading-hero, .heading-sub-hero),
.global-header .wrapper .smart-search .search-header:not(.heading-hero, .heading-sub-hero) {
    font-size: 2.25rem;
  }
}

h2,
.h2 {
  color: #000000;
}
.page-ausgov-home h2,
.page-ausgov-home .h2 {
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: -0.5px;
  letter-spacing: -0.03125rem;
  line-height: 1.1111111111;
}
h2:not(.heading-hero, .heading-sub-hero),
.h2:not(.heading-hero, .heading-sub-hero) {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 2.5rem;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
}
@media screen and (max-width: 639px) {
  h2:not(.heading-hero, .heading-sub-hero),
.h2:not(.heading-hero, .heading-sub-hero) {
    font-size: 1.625rem;
  }
}

h3,
.h3 {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
}
@media screen and (max-width: 639px) {
  h3,
.h3 {
    font-size: 1.375rem;
  }
}

h4,
.h4 {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  h4,
.h4 {
    font-size: 1.25rem;
  }
}

h5,
.h5 {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 639px) {
  h5,
.h5 {
    font-size: 1.125rem;
  }
}

h6,
.h6 {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  h6,
.h6 {
    font-size: 1rem;
  }
}

/* End mixins being reused in other SCSS files */
.p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
}
.theme-dark .p {
  color: #FFFFFF;
}

p,
.paragraph {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
}
.theme-dark p,
.theme-dark .paragraph {
  color: #FFFFFF;
}
p b,
p strong, p.bold,
.paragraph b,
.paragraph strong,
.paragraph.bold {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
}
.theme-dark p b,
.theme-dark p strong, .theme-dark p.bold,
.theme-dark .paragraph b,
.theme-dark .paragraph strong,
.theme-dark .paragraph.bold {
  color: #FFFFFF;
}
p.black,
.paragraph.black {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #101820;
}
.theme-dark p.black,
.theme-dark .paragraph.black {
  color: #FFFFFF;
}
p.black b,
p.black strong,
.paragraph.black b,
.paragraph.black strong {
  color: #101820;
}
p.small,
.paragraph.small {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
}
.theme-dark p.small,
.theme-dark .paragraph.small {
  color: #FFFFFF;
}
p.small b,
p.small strong, p.small.bold,
.paragraph.small b,
.paragraph.small strong,
.paragraph.small.bold {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark p.small b,
.theme-dark p.small strong, .theme-dark p.small.bold,
.theme-dark .paragraph.small b,
.theme-dark .paragraph.small strong,
.theme-dark .paragraph.small.bold {
  color: #FFFFFF;
}
.theme-dark p.small b,
.theme-dark p.small strong, .theme-dark p.small.bold,
.theme-dark .paragraph.small b,
.theme-dark .paragraph.small strong,
.theme-dark .paragraph.small.bold {
  color: #FFFFFF;
}
p.small.black,
.paragraph.small.black {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
}
.theme-dark p.small.black,
.theme-dark .paragraph.small.black {
  color: #FFFFFF;
}
p.small.black b,
p.small.black strong,
.paragraph.small.black b,
.paragraph.small.black strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark p.small.black b,
.theme-dark p.small.black strong,
.theme-dark .paragraph.small.black b,
.theme-dark .paragraph.small.black strong {
  color: #FFFFFF;
}
.theme-dark p.small.black b,
.theme-dark p.small.black strong,
.theme-dark .paragraph.small.black b,
.theme-dark .paragraph.small.black strong {
  color: #FFFFFF;
}

.footnote {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
}
.theme-dark .footnote {
  color: #FFFFFF;
}
.footnote.black {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  color: #101820;
}
.theme-dark .footnote.black {
  color: #FFFFFF;
}

ul,
ol {
  color: #525252;
}

hr {
  border-top: 1px solid #DDDDDD;
  border-top: 0.0625rem solid #DDDDDD;
  margin: 60px 0;
  margin: 3.75rem 0;
  border: 0;
}

p a {
  color: #1b365d;
}

.default-text-wrap {
  word-wrap: break-word;
  word-break: break-word;
}

/* These heading styles are to be used in Title component, keep it for now */
h1.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  letter-spacing: -0.0005em;
  font-weight: 300;
  font-size: 2.25rem;
}
@media only screen and (min-width: 64em) {
  h1.cmp-title__text {
    font-size: 3.875rem;
  }
}

h2.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 2.5rem;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 1.625rem;
}
@media only screen and (min-width: 64em) {
  h2.cmp-title__text {
    font-size: 2.25rem;
  }
}

h3.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.375rem;
}
@media only screen and (min-width: 64em) {
  h3.cmp-title__text {
    font-size: 1.625rem;
  }
}

h4.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (min-width: 64em) {
  h4.cmp-title__text {
    font-size: 1.375rem;
  }
}

h5.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.125rem;
}
@media only screen and (min-width: 64em) {
  h5.cmp-title__text {
    font-size: 1.25rem;
  }
}

h6.cmp-title__text {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1rem;
}
@media only screen and (min-width: 64em) {
  h6.cmp-title__text {
    font-size: 1.125rem;
  }
}

/*.cmp-title__link
{
	design system details required
}*/
.cmp-title__subtitle {
  font-family: "Roboto", sans-serif;
  line-height: 1.625;
  font-weight: 300;
  font-size: 1.375rem;
}
@media only screen and (min-width: 64em) {
  .cmp-title__subtitle {
    font-size: 1.75rem;
  }
}

.cmp-title__h3 {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  color: #000000;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* 
	These are the styles applied to the custom paragraph formats which includes
	- Heading Hero
	- SubHero
	- Paragraph 2
	- Intro
	- Not sure about the caption though.
 */
.heading-hero {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 900;
  font-size: 4.375rem;
}
@media screen and (max-width: 639px) {
  .heading-hero {
    font-size: 2.5rem;
  }
}

.heading-sub-hero {
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  font-weight: 500;
  font-size: 2.25rem;
}
@media screen and (max-width: 639px) {
  .heading-sub-hero {
    font-size: 1.375rem;
  }
}

.paragraph-2 {
  font-family: "Roboto", sans-serif;
  line-height: 1.5556;
  margin-top: 1.875rem;
  font-weight: 300;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .paragraph-2 {
    line-height: 1.25;
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

.introduction {
  font-family: "Roboto", sans-serif;
  line-height: 1.625;
  font-weight: 300;
  font-size: 1.75rem;
}
@media screen and (max-width: 639px) {
  .introduction {
    font-size: 1.375rem;
  }
}

.caption {
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  font-weight: 200;
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .caption {
    line-height: 1.25;
    font-size: 0.75rem;
  }
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.sr-only-inline-block {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  display: inline-block;
}

.sr-supporting-element {
  margin: 0 0 !important;
  padding: 0 0 !important;
}

/* Takes one parameter, adds the psuedo elements to its current element, placement can be modified  by providing a boolean value */
.inbox-ul-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #DDDDDD;
}
.inbox-ul-list > li {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
.inbox-ul-list > li > a,
.inbox-ul-list > li > label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: block;
  margin: 0;
  padding: 20px;
  text-decoration: none;
  transition: background 150ms;
}
.theme-dark .inbox-ul-list > li > a,
.theme-dark .inbox-ul-list > li > label {
  color: #FFFFFF;
}
.inbox-ul-list > li > a b,
.inbox-ul-list > li > a strong,
.inbox-ul-list > li > label b,
.inbox-ul-list > li > label strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .inbox-ul-list > li > a b,
.theme-dark .inbox-ul-list > li > a strong,
.theme-dark .inbox-ul-list > li > label b,
.theme-dark .inbox-ul-list > li > label strong {
  color: #FFFFFF;
}
.theme-dark .inbox-ul-list > li > a b,
.theme-dark .inbox-ul-list > li > a strong,
.theme-dark .inbox-ul-list > li > label b,
.theme-dark .inbox-ul-list > li > label strong {
  color: #FFFFFF;
}
.inbox-ul-list > li > a:hover,
.inbox-ul-list > li > label:hover {
  background-color: val(--ocean-blue-40);
}
.inbox-ul-list > li > a:hover .communication-item__provider,
.inbox-ul-list > li > label:hover .communication-item__provider {
  text-decoration: underline;
}
.inbox-ul-list > li > a:focus-within, .inbox-ul-list > li > a:focus,
.inbox-ul-list > li > label:focus-within,
.inbox-ul-list > li > label:focus {
  outline-offset: -2px;
}
.inbox-ul-list > li > a:focus-within,
.inbox-ul-list > li > label:focus-within {
  outline: 3px solid #183052;
}
.inbox-ul-list > li > a:hover,
.inbox-ul-list > li > label:hover {
  cursor: pointer;
  background: #E5F1FD;
}
.inbox-ul-list > li > a::before,
.inbox-ul-list > li > label::before {
  filter: grayscale(1);
}
.inbox-ul-list > li > a input[type=radio],
.inbox-ul-list > li > label input[type=radio] {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}
.inbox-ul-list > li > span.skeleton {
  display: block;
  padding: 20px;
  height: 64px;
}

.inbox-ul-folder-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #DDDDDD;
}
.inbox-ul-folder-list > li {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
.inbox-ul-folder-list > li > a,
.inbox-ul-folder-list > li > label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: block;
  margin: 0;
  padding: 20px;
  text-decoration: none;
  transition: background 150ms;
  position: relative;
  padding-left: 64px;
}
.theme-dark .inbox-ul-folder-list > li > a,
.theme-dark .inbox-ul-folder-list > li > label {
  color: #FFFFFF;
}
.inbox-ul-folder-list > li > a b,
.inbox-ul-folder-list > li > a strong,
.inbox-ul-folder-list > li > label b,
.inbox-ul-folder-list > li > label strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .inbox-ul-folder-list > li > a b,
.theme-dark .inbox-ul-folder-list > li > a strong,
.theme-dark .inbox-ul-folder-list > li > label b,
.theme-dark .inbox-ul-folder-list > li > label strong {
  color: #FFFFFF;
}
.theme-dark .inbox-ul-folder-list > li > a b,
.theme-dark .inbox-ul-folder-list > li > a strong,
.theme-dark .inbox-ul-folder-list > li > label b,
.theme-dark .inbox-ul-folder-list > li > label strong {
  color: #FFFFFF;
}
.inbox-ul-folder-list > li > a:hover,
.inbox-ul-folder-list > li > label:hover {
  background-color: val(--ocean-blue-40);
}
.inbox-ul-folder-list > li > a:hover .communication-item__provider,
.inbox-ul-folder-list > li > label:hover .communication-item__provider {
  text-decoration: underline;
}
.inbox-ul-folder-list > li > a:focus-within, .inbox-ul-folder-list > li > a:focus,
.inbox-ul-folder-list > li > label:focus-within,
.inbox-ul-folder-list > li > label:focus {
  outline-offset: -2px;
}
.inbox-ul-folder-list > li > a:focus-within,
.inbox-ul-folder-list > li > label:focus-within {
  outline: 3px solid #183052;
}
.inbox-ul-folder-list > li > a:hover,
.inbox-ul-folder-list > li > label:hover {
  cursor: pointer;
  background: #E5F1FD;
}
.inbox-ul-folder-list > li > a::before,
.inbox-ul-folder-list > li > label::before {
  filter: grayscale(1);
}
.inbox-ul-folder-list > li > a input[type=radio],
.inbox-ul-folder-list > li > label input[type=radio] {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}
.inbox-ul-folder-list > li > a:focus-within span, .inbox-ul-folder-list > li > a:hover span, .inbox-ul-folder-list > li > a:focus span,
.inbox-ul-folder-list > li > label:focus-within span,
.inbox-ul-folder-list > li > label:hover span,
.inbox-ul-folder-list > li > label:focus span {
  text-decoration: underline;
}
.inbox-ul-folder-list > li > a:not([role=menuitem]),
.inbox-ul-folder-list > li > label:not([role=menuitem]) {
  padding-right: 50px;
}
.inbox-ul-folder-list > li > a:not([role=menuitem]) span,
.inbox-ul-folder-list > li > label:not([role=menuitem]) span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 38ch;
  margin-top: -0.125rem;
}
@media only screen and (min-width: 64em) {
  .inbox-ul-folder-list > li > a:not([role=menuitem]) span,
.inbox-ul-folder-list > li > label:not([role=menuitem]) span {
    max-width: 15ch;
  }
}
.inbox-ul-folder-list > li > a::before,
.inbox-ul-folder-list > li > label::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  min-width: 20px;
  min-width: 1.25rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/authenticated/icon-folder.svg");
  top: 19px;
  left: 22px;
}
.inbox-ul-folder-list > li > a.is-trash::before,
.inbox-ul-folder-list > li > label.is-trash::before {
  background-image: url("styles/resources/assets/icons/authenticated/icon-trash.svg");
}
.inbox-ul-folder-list > li > a.top-level-inbox::before,
.inbox-ul-folder-list > li > label.top-level-inbox::before {
  background-image: url("styles/resources/assets/icons/icon-email.svg");
}
.inbox-ul-folder-list > li > a.is-selected,
.inbox-ul-folder-list > li > label.is-selected {
  background: #E5F1FD;
  font-weight: 700;
}
.inbox-ul-folder-list > li > a.is-selected.inbox,
.inbox-ul-folder-list > li > label.is-selected.inbox {
  background: var(--ocean-blue-40);
}
.inbox-ul-folder-list > li > a.is-selected::before,
.inbox-ul-folder-list > li > label.is-selected::before {
  filter: grayscale(1);
}
.inbox-ul-folder-list > li > a:not(.is-selected) + .action-menu > .action-menu__button:hover,
.inbox-ul-folder-list > li > label:not(.is-selected) + .action-menu > .action-menu__button:hover {
  background-color: #E5F1FD;
}
.inbox-ul-folder-list > li > a.is-subfolder,
.inbox-ul-folder-list > li > label.is-subfolder {
  padding-left: 106px;
}
.inbox-ul-folder-list > li > a.is-subfolder::before,
.inbox-ul-folder-list > li > label.is-subfolder::before {
  left: 64px;
}
.inbox-ul-folder-list > li > a.is-subfolder span,
.inbox-ul-folder-list > li > label.is-subfolder span {
  max-width: 32ch;
}
@media only screen and (min-width: 64em) {
  .inbox-ul-folder-list > li > a.is-subfolder span,
.inbox-ul-folder-list > li > label.is-subfolder span {
    max-width: 10ch;
  }
}
.inbox-ul-folder-list > li > span.skeleton {
  display: block;
  padding: 20px;
  height: 64px;
}

.block-spacer-xxsmall {
  padding: 0;
  margin: 0;
  min-height: 0.25em;
}

.block-spacer-xsmall {
  padding: 0;
  margin: 0;
  min-height: 0.5em;
}

.block-spacer-small {
  padding: 0;
  margin: 0;
  min-height: 1em;
}

.block-spacer-default, .input-spacer {
  padding: 0;
  margin: 0;
  min-height: 1.5em;
}

.block-spacer-medium {
  padding: 0;
  margin: 0;
  min-height: 2em;
}

.block-spacer-large {
  padding: 0;
  margin: 0;
  min-height: 3em;
}

.top-pad-spacer-xxsmall {
  padding-top: 0.25em;
}

.top-pad-spacer-xsmall {
  padding-top: 0.5em;
}

.top-pad-spacer-small {
  padding-top: 1em;
}

.top-pad-spacer-default {
  padding-top: 1.5em;
}

.top-pad-spacer-medium {
  padding-top: 2em;
}

.top-pad-spacer-large {
  padding-top: 3em;
}

.bottom-pad-spacer-xxsmall {
  padding-bottom: 0.25em;
}

.bottom-pad-spacer-xsmall {
  padding-bottom: 0.5em;
}

.bottom-pad-spacer-small {
  padding-bottom: 1em;
}

.bottom-pad-spacer-default {
  padding-bottom: 1.5em;
}

.bottom-pad-spacer-medium {
  padding-bottom: 2em;
}

.bottom-pad-spacer-large {
  padding-bottom: 3em;
}

.left-pad-spacer-xxsmall {
  padding-left: 0.25em;
}

.left-pad-spacer-xsmall {
  padding-left: 0.5em;
}

.left-pad-spacer-small {
  padding-left: 1em;
}

.left-pad-spacer-default {
  padding-left: 1.5em;
}

.left-pad-spacer-medium {
  padding-left: 2em;
}

.left-pad-spacer-large {
  padding-left: 3em;
}

.right-pad-spacer-xxsmall {
  padding-right: 0.25em;
}

.right-pad-spacer-xsmall {
  padding-right: 0.5em;
}

.right-pad-spacer-small {
  padding-right: 1em;
}

.right-pad-spacer-default {
  padding-right: 1.5em;
}

.right-pad-spacer-medium {
  padding-right: 2em;
}

.right-pad-spacer-large {
  padding-right: 3em;
}

.top-margin-spacer-xxsmall {
  margin-top: 0.25em;
}

.top-margin-spacer-xsmall {
  margin-top: 0.5em;
}

.top-margin-spacer-small {
  margin-top: 1em;
}

.top-margin-spacer-default {
  margin-top: 1.5em;
}

.top-margin-spacer-medium {
  margin-top: 2em;
}

.top-margin-spacer-large {
  margin-top: 3em;
}

.left-margin-spacer-xxsmall {
  margin-left: 0.25em;
}

.left-margin-spacer-xsmall {
  margin-left: 0.5em;
}

.left-margin-spacer-small {
  margin-left: 1em;
}

.left-margin-spacer-default {
  margin-left: 1.5em;
}

.left-margin-spacer-medium {
  margin-left: 2em;
}

.left-margin-spacer-large {
  margin-left: 3em;
}

.no-top-spacing {
  padding-top: 0;
  margin-top: 0;
}

.no-bottom-spacing {
  padding-bottom: 0;
  margin-bottom: 0;
}

/* width */
.w-20 {
  width: 20rem;
}

.w-20-r {
  width: 20rem;
}
@media (max-width: 639px) {
  .w-20-r {
    width: 100%;
  }
}

.w-30 {
  width: 30rem;
}

.w-30-r {
  width: 30rem;
}
@media (max-width: 639px) {
  .w-30-r {
    width: 100%;
  }
}

.w-40 {
  width: 40rem;
}

.w-40-r {
  width: 40rem;
}
@media (max-width: 639px) {
  .w-40-r {
    width: 100%;
  }
}

.mt-none {
  margin-top: 0px !important;
}

.mt-xxs {
  margin-top: 4px !important;
}

.mt-xs {
  margin-top: 8px !important;
}

.mt-sm {
  margin-top: 12px !important;
}

.mt-md {
  margin-top: 16px !important;
}

.mt-lg {
  margin-top: 24px !important;
}

.mt-xl {
  margin-top: 32px !important;
}

.mt-xxl {
  margin-top: 48px !important;
}

.pt-none {
  padding-top: 0px !important;
}

.pt-xxs {
  padding-top: 4px !important;
}

.pt-xs {
  padding-top: 8px !important;
}

.pt-sm {
  padding-top: 12px !important;
}

.pt-md {
  padding-top: 16px !important;
}

.pt-lg {
  padding-top: 24px !important;
}

.pt-xl {
  padding-top: 32px !important;
}

.pt-xxl {
  padding-top: 48px !important;
}

.mr-none {
  margin-right: 0px !important;
}

.mr-xxs {
  margin-right: 4px !important;
}

.mr-xs {
  margin-right: 8px !important;
}

.mr-sm {
  margin-right: 12px !important;
}

.mr-md {
  margin-right: 16px !important;
}

.mr-lg {
  margin-right: 24px !important;
}

.mr-xl {
  margin-right: 32px !important;
}

.mr-xxl {
  margin-right: 48px !important;
}

.pr-none {
  padding-right: 0px !important;
}

.pr-xxs {
  padding-right: 4px !important;
}

.pr-xs {
  padding-right: 8px !important;
}

.pr-sm {
  padding-right: 12px !important;
}

.pr-md {
  padding-right: 16px !important;
}

.pr-lg {
  padding-right: 24px !important;
}

.pr-xl {
  padding-right: 32px !important;
}

.pr-xxl {
  padding-right: 48px !important;
}

.mb-none {
  margin-bottom: 0px !important;
}

.mb-xxs {
  margin-bottom: 4px !important;
}

.mb-xs {
  margin-bottom: 8px !important;
}

.mb-sm {
  margin-bottom: 12px !important;
}

.mb-md {
  margin-bottom: 16px !important;
}

.mb-lg {
  margin-bottom: 24px !important;
}

.mb-xl {
  margin-bottom: 32px !important;
}

.mb-xxl {
  margin-bottom: 48px !important;
}

.pb-none {
  padding-bottom: 0px !important;
}

.pb-xxs {
  padding-bottom: 4px !important;
}

.pb-xs {
  padding-bottom: 8px !important;
}

.pb-sm {
  padding-bottom: 12px !important;
}

.pb-md {
  padding-bottom: 16px !important;
}

.pb-lg {
  padding-bottom: 24px !important;
}

.pb-xl {
  padding-bottom: 32px !important;
}

.pb-xxl {
  padding-bottom: 48px !important;
}

.ml-none {
  margin-left: 0px !important;
}

.ml-xxs {
  margin-left: 4px !important;
}

.ml-xs {
  margin-left: 8px !important;
}

.ml-sm {
  margin-left: 12px !important;
}

.ml-md {
  margin-left: 16px !important;
}

.ml-lg {
  margin-left: 24px !important;
}

.ml-xl {
  margin-left: 32px !important;
}

.ml-xxl {
  margin-left: 48px !important;
}

.pl-none {
  padding-left: 0px !important;
}

.pl-xxs {
  padding-left: 4px !important;
}

.pl-xs {
  padding-left: 8px !important;
}

.pl-sm {
  padding-left: 12px !important;
}

.pl-md {
  padding-left: 16px !important;
}

.pl-lg {
  padding-left: 24px !important;
}

.pl-xl {
  padding-left: 32px !important;
}

.pl-xxl {
  padding-left: 48px !important;
}

.hidden {
  display: none;
}

.row {
  display: flex !important;
}

@media (max-width: 47.9375em) {
  .row {
    display: block !important;
  }
  .row [class*=col-] {
    width: 100% !important;
  }
}
.col {
  flex: 1 0 0;
}

.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

.l-row {
  display: flex !important;
}

@media (max-width: 63.9375em) {
  .l-row {
    display: block !important;
  }

  [class*=col-l-]:not(.col-l-sidebar) {
    width: 100%;
  }
}
@media only screen and (min-width: 64em) {
  .col-l-1 {
    width: 8.33%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-2 {
    width: 16.66%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-3 {
    width: 25%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-4 {
    width: 33.33%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-5 {
    width: 41.66%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-6 {
    width: 50%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-7 {
    width: 58.33%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-8 {
    width: 66.66%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-9 {
    width: 75%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-10 {
    width: 83.33%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-11 {
    width: 91.66%;
  }
}

@media only screen and (min-width: 64em) {
  .col-l-12 {
    width: 100%;
  }
}

.col-l-sidebar {
  padding: 0 !important;
  margin-bottom: 0 !important;
  float: none !important;
}
@media only screen and (min-width: 64em) {
  .col-l-sidebar {
    padding: 0 0 0 120px !important;
    border-bottom: 0;
    order: 1;
  }
}
.col-l-sidebar.no-border-bottom .sidebar-container {
  border-bottom: 0;
}
.col-l-sidebar .sidebar-container {
  margin: 20px 0;
  position: relative;
}
@media only screen and (min-width: 64em) {
  .col-l-sidebar .sidebar-container {
    padding-left: 60px;
    height: 100%;
  }
}
.col-l-sidebar .sidebar-container::before {
  position: absolute;
  content: "";
  background-color: #DDDDDD;
  left: 0;
}
@media (max-width: 63.9375em) {
  .col-l-sidebar .sidebar-container::before {
    bottom: 0;
    width: 100%;
    height: 1px;
  }
}
@media only screen and (min-width: 64em) {
  .col-l-sidebar .sidebar-container::before {
    top: -20px;
    height: calc(100% + 18px);
    width: 1px;
  }
}
.col-l-sidebar .sidebar-container > div > div:first-child {
  margin-top: 0;
}
.col-l-sidebar .sidebar-container > div > div:last-child {
  margin-bottom: 0;
}

.restrict-width {
  max-width: 1072px;
}

.l-container {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.first-container {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-top: 20px !important;
}

.last-container {
  position: relative;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-bottom: 20px !important;
}

.sticky-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  z-index: 1000;
}

.spacer-xs {
  height: 0;
  margin-top: 40px;
}

.spacer-s {
  height: 20px;
}
@media only screen and (min-width: 64em) {
  .spacer-s {
    height: 40px;
  }
}

.spacer-m {
  height: 40px;
}

.spacer-l {
  height: 40px;
}
@media only screen and (min-width: 64em) {
  .spacer-l {
    height: 80px;
  }
}

.bg-grey {
  background: #F5F5F5;
}

.bg-yellow {
  background: #FCB80E;
}

.blue-grey-bg {
  background-color: #EDF2F4;
}

.light-grey-bg {
  background-color: #F5F5F5;
}

.m-margin {
  margin: 20px 0;
}

.l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
  margin-left: auto !important;
  margin-right: auto !important;
  float: none !important;
  width: 100%;
  padding: 0 20px;
}
.l-padding::before, .l-padding::after,
.global-header .wrapper .nav-onscreen::before,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::before,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3::before,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5::before,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::before,
.global-header .wrapper .nav-onscreen::after,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::after,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3::after,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5::after,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::after {
  content: " ";
  display: table;
}
.l-padding::after,
.global-header .wrapper .nav-onscreen::after,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::after,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3::after,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5::after,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8::after {
  clear: both;
}
@media only screen and (min-width: 40em) {
  .l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    width: 640px;
  }
}
@media only screen and (min-width: 48em) {
  .l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    width: 768px;
  }
}
@media only screen and (min-width: 64em) {
  .l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    width: 1024px;
  }
}
@media only screen and (min-width: 77.75em) {
  .l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    width: 1244px;
    padding: 0 40px;
  }
}
@media only screen and (min-width: 88.125em) {
  .l-padding,
.global-header .wrapper .nav-onscreen,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--12 > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3,
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5,
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8 {
    width: 1360px;
  }
}

.static-page {
  min-height: 100vh;
  width: 100vw;
}
@media only screen and (min-width: 64em) {
  .static-page {
    padding: 30px 0;
  }
}
.static-page__content {
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}

.theme-dark {
  background-color: #183052;
}

body,
div#root {
  z-index: 400;
  scroll-behavior: smooth;
}

*:not(main)[tabindex="-1"]:focus {
  outline: 3px solid #183052;
}

main:focus {
  outline: none;
}

dl {
  margin: 20px 0;
}
dl dt {
  margin: 0 0 10px;
}
dl dd {
  margin: 0 0 5px;
}
dl dd:not(:last-child) {
  margin-bottom: 40px;
}
dl dd img {
  display: inline-block;
  vertical-align: text-top;
  margin-right: 3px;
}
dl dd img + p {
  display: inline-block;
}
dl dt,
dl dt h3 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
dl dd,
dl dd p {
  font-size: 24px;
  font-weight: 900;
  color: #101820;
  margin: 0;
  overflow-wrap: break-word;
}

.text .cmp-text {
  overflow-wrap: break-word;
}

.text .cmp-text .no-wrap,
.gui-callout .no-wrap {
  white-space: nowrap;
}

.cmp-text {
  padding: 0;
  margin: 20px 0;
}
.cmp-text ul,
.cmp-text ol {
  color: #000000;
}
.cmp-text small {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
}
.theme-dark .cmp-text small {
  color: #FFFFFF;
}
.cmp-text small b,
.cmp-text small strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .cmp-text small b,
.theme-dark .cmp-text small strong {
  color: #FFFFFF;
}
.theme-dark .cmp-text small b,
.theme-dark .cmp-text small strong {
  color: #FFFFFF;
}
.rich-text-section-heading .cmp-text, .l-container .rich-text-section-heading .cmp-text {
  padding-top: 30px;
}
@media only screen and (min-width: 64em) {
  .rich-text-section-heading .cmp-text, .l-container .rich-text-section-heading .cmp-text {
    padding-top: 40px;
  }
}

.cmp-image {
  max-width: 100%;
  margin: 20px 0;
  flex-direction: column;
}
.cmp-image__image {
  display: block;
  height: auto;
  max-width: 100%;
}
.cmp-image__title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  display: block;
  padding: 20px 0;
  line-height: 1.25;
  font-weight: 200;
  font-size: 0.75rem;
  color: black;
}
.theme-dark .cmp-image__title {
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .cmp-image__title {
    line-height: 1.5;
    font-size: 0.875rem;
  }
}
.cmp-image__link {
  background-color: transparent;
  padding: 0;
  margin: 0;
  display: inline-block;
}

@supports (display: -ms-grid) {
  .aem-Grid {
    overflow-x: hidden;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .aem-Grid {
    overflow-x: hidden;
    padding: 0 5px;
  }
}

.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
  display: inline-block;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media only screen and (min-width: 40em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
    width: calc(640px / 8 * 5);
    margin-left: calc((100% - 640px) / 2) !important;
  }
}
@media only screen and (min-width: 48em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
    width: calc(768px / 8 * 5);
    margin-left: calc((100% - 768px) / 2) !important;
  }
}
@media only screen and (min-width: 64em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
    width: calc(1024px / 8 * 5);
    margin-left: calc((100% - 1024px) / 2) !important;
  }
}
@media only screen and (min-width: 77.75em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
    width: calc(1244px / 8 * 5);
    margin-left: calc((100% - 1244px) / 2) !important;
  }
}
@media only screen and (min-width: 88.125em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 {
    width: calc(1360px / 8 * 5);
    margin-left: calc((100% - 1360px) / 2) !important;
  }
}
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
  display: inline-block;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media only screen and (min-width: 40em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(640px / 8 * 3);
    margin-left: -4px !important;
  }
}
@media only screen and (min-width: 48em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(768px / 8 * 3);
  }
}
@media only screen and (min-width: 64em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(1024px / 8 * 3);
  }
}
@media only screen and (min-width: 77.75em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(1244px / 8 * 3);
  }
}
@media only screen and (min-width: 88.125em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(1360px / 8 * 3);
  }
}
.root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8.container.responsivegrid {
  padding: 0 calc(20px - 0.5rem);
}
@media only screen and (min-width: 48em) {
  .root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8.container.responsivegrid {
    padding: 0 calc(20px - 0.75rem);
  }
}
@media only screen and (min-width: 64em) {
  .root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8.container.responsivegrid {
    padding: 0 calc(20px - 1rem);
  }
}
@media only screen and (min-width: 77.75em) {
  .root.responsivegrid > .aem-Grid.aem-Grid--default--12 > .aem-GridColumn.aem-GridColumn--default--8.container.responsivegrid {
    padding: 0 calc(40px - 1rem);
  }
}
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid {
  padding: 0 calc(20px - 0.5rem);
}
@media only screen and (min-width: 48em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid {
    padding: 0 calc(20px - 0.75rem);
  }
}
@media only screen and (min-width: 64em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid {
    padding: 0 calc(20px - 1rem);
  }
}
@media only screen and (min-width: 77.75em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid {
    padding: 0 calc(40px - 1rem);
  }
}
.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid + .aem-GridColumn.aem-GridColumn--default--3 {
  padding: 0 calc(20px - 0.5rem);
}
@media only screen and (min-width: 48em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid + .aem-GridColumn.aem-GridColumn--default--3 {
    padding: 0 calc(20px - 0.75rem);
  }
}
@media only screen and (min-width: 64em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid + .aem-GridColumn.aem-GridColumn--default--3 {
    padding: 0 calc(20px - 1rem);
  }
}
@media only screen and (min-width: 77.75em) {
  .root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5.container.responsivegrid + .aem-GridColumn.aem-GridColumn--default--3 {
    padding: 0 calc(40px - 1rem);
  }
}

.smartbanner__icon {
  width: 65px;
  width: 4.0625rem;
  height: 65px;
  height: 4.0625rem;
  border-radius: 15px;
  border-radius: 0.9375rem;
  margin-left: 12.5px;
  margin-left: 0.78125rem;
  background-size: contain;
  background-repeat: no-repeat;
  position: static;
  display: none;
}
.smartbanner__icon[style] {
  display: block;
}
.smartbanner__info {
  position: static;
  width: auto;
  height: auto;
}
.smartbanner__info > div {
  margin-top: -7px;
  margin-top: -0.4375rem;
  margin-bottom: -7px;
  margin-bottom: -0.4375rem;
  font-size: 12px;
  font-size: 0.75rem;
}
.smartbanner__info > div > * {
  margin-top: 7px;
  margin-top: 0.4375rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  font-size: inherit;
}
.smartbanner__info > div > *.smartbanner__info__title {
  font-size: 14px;
  font-size: 0.875rem;
}
.smartbanner__info__author {
  display: none;
}
.smartbanner, .smartbanner.smartbanner--android {
  height: 80px;
  height: 5rem;
  padding: 0 25px 0 11.5px;
  padding: 0 1.5625rem 0 0.71875rem;
  font-family: "HelveticaNeue", "Helvetica Neue", "Helvetica", "Roboto", sans-serif;
  background: none;
  background-color: #F2F1F6;
  box-shadow: none;
  display: flex;
  align-items: center;
  z-index: 21;
}
.smartbanner > *, .smartbanner.smartbanner--android > * {
  margin-left: 6px;
  margin-left: 0.375rem;
  margin-right: 6px;
  margin-right: 0.375rem;
}
.smartbanner .smartbanner__exit, .smartbanner.smartbanner--android .smartbanner__exit {
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  margin-top: 32.5px;
  margin-top: 2.03125rem;
  background: no-repeat center;
  background-image: url("styles/resources/assets/icons/Close @16.svg");
  background-size: contain;
  box-shadow: none;
  text-shadow: none;
  align-self: flex-start;
  position: static;
  border-radius: 0;
}
.smartbanner .smartbanner__exit:before, .smartbanner.smartbanner--android .smartbanner__exit:before {
  display: none;
}
.smartbanner .smartbanner__exit:after, .smartbanner.smartbanner--android .smartbanner__exit:after {
  display: none;
}
.smartbanner .smartbanner__info, .smartbanner.smartbanner--android .smartbanner__info {
  text-shadow: none;
  color: #7F7E84;
}
.smartbanner .smartbanner__info .smartbanner__info__title, .smartbanner.smartbanner--android .smartbanner__info .smartbanner__info__title {
  color: var(--black);
  font-weight: 400;
}
.smartbanner .smartbanner__button, .smartbanner.smartbanner--android .smartbanner__button {
  position: static;
  margin-left: auto;
  box-shadow: none;
}
.smartbanner .smartbanner__button__label, .smartbanner.smartbanner--android .smartbanner__button__label {
  font-size: 17px;
  font-size: 1.0625rem;
  background: none;
  padding: 0;
  font-weight: 400;
  color: #047AFB;
  line-height: 1.1764705882;
  min-width: 0;
}
.smartbanner .smartbanner__button__label:hover, .smartbanner .smartbanner__button__label:active, .smartbanner.smartbanner--android .smartbanner__button__label:hover, .smartbanner.smartbanner--android .smartbanner__button__label:active {
  background-color: transparent;
}
@media only screen and (min-width: 48em) {
  .smartbanner, .smartbanner.smartbanner--android {
    display: none;
  }
}

html[style="margin-top: 0px;"] .smartbanner {
  display: none;
}
@media only screen and (min-width: 48em) {
  html[data-smartbanner-original-margin-top] {
    margin-top: 0 !important;
  }
}

/* -------------  FORM ------------- */
fieldset {
  border: none;
}

.input-group {
  position: relative;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  width: 100% !important;
}
@media only screen and (min-width: 48em) {
  .input-group {
    width: auto;
  }
}
.input-group__horizontal {
  display: inline-block;
  padding-top: 1em;
  width: auto;
  margin-top: 15px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 48em) {
  .input-group__horizontal {
    width: 500px;
    padding-top: 1.5em;
  }
}
.input-group--sort.input-group {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
}
.input-group--sort.input-group label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  padding: 20px 5px 20px 27px;
  top: initial;
  position: relative;
  min-width: 100px;
}
.theme-dark .input-group--sort.input-group label {
  color: #FFFFFF;
}
.input-group--sort.input-group label b,
.input-group--sort.input-group label strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .input-group--sort.input-group label b,
.theme-dark .input-group--sort.input-group label strong {
  color: #FFFFFF;
}
.theme-dark .input-group--sort.input-group label b,
.theme-dark .input-group--sort.input-group label strong {
  color: #FFFFFF;
}
.input-group--sort.input-group label::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  min-width: 20px;
  min-width: 1.25rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/authenticated/icon-sort.svg");
  top: calc(50% - 11px);
}
.input-group--sort.input-group select {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-weight: 500;
  margin: 0;
  padding: 5px 0px 5px 10px;
  color: #006CE0;
  border: 0;
  background-size: 15px 15px;
  background-position: right 3px center;
  width: fit-content;
  height: auto;
}
.theme-dark .input-group--sort.input-group select {
  color: #FFFFFF;
}
.input-group--sort.input-group select:focus {
  outline: 3px solid #183052;
}
@media only screen and (min-width: 64em) {
  .input-group--sort.input-group select {
    text-align: right;
    text-align-last: right;
  }
}
.input-group .input-row {
  display: block;
  position: relative;
  margin-right: 25px;
  padding: 5px 0;
}
.input-group .input-row .checkbox {
  display: inline-block;
  margin-right: 20px;
}
@media only screen and (min-width: 48em) {
  .input-group .input-row {
    display: inline-block;
  }
}
.input-group label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  color: #101820;
  font-weight: 700;
}
.theme-dark .input-group label {
  color: #FFFFFF;
}
.input-group legend {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #101820;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  position: relative;
  top: -2px;
  display: block;
}
.theme-dark .input-group legend {
  color: #FFFFFF;
}
.input-group legend b,
.input-group legend strong {
  color: #101820;
}
.input-group legend.big-legend {
  font-size: 18px;
}
.input-group a {
  color: #006CE0;
}
.input-group input,
.input-group textarea,
.input-group select {
  display: block;
  position: relative;
  height: 46px;
  width: 100%;
  border: 2px solid #808080;
  border-radius: 4px;
  padding: 15px;
  margin: 10px 0;
  color: #101820;
  transition-property: border;
  transition-duration: 150ms;
  transition-timing-function: ease;
  z-index: 400;
}
.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: #183052;
  outline: 0;
}
.input-group input:disabled,
.input-group textarea:disabled,
.input-group select:disabled {
  opacity: 0.7;
}
.input-group input::placeholder,
.input-group textarea::placeholder,
.input-group select::placeholder {
  color: #A0A0A3;
}
.input-group input[name=mobile] {
  width: calc(100% - 100px);
  padding-left: 15px;
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}
@media only screen and (min-width: 77.75em) {
  .input-group input[name=mobile] {
    margin-right: 60px;
  }
}
.input-group input[name=mobile]:disabled {
  opacity: 0.7;
}
.input-group select {
  padding: 10px 40px 10px 15px;
  appearance: none;
  background-color: #FFFFFF;
  background-image: url("styles/resources/assets/icons/chevron-down.svg");
  background-size: 18px 18px;
  background-position: right 15px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.input-group select::-ms-expand {
  display: none;
}
.input-group select option {
  font-weight: normal;
}
.input-group select:disabled {
  color: #A0A0A3;
  background-image: url("styles/resources/assets/icons/chevron-down-disabled.svg");
  cursor: not-allowed;
}
.input-group .checkbox_focus {
  position: absolute;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0;
  height: 34px;
  min-height: 34px;
  width: 34px;
  min-width: 34px;
  border-radius: 34px;
  top: -1px;
  left: -9px;
  opacity: 0;
}
.input-group input[type=checkbox] {
  left: 0;
  top: 8px;
}
.input-group input[type=checkbox],
.input-group input[type=radio] {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  height: 16px;
  width: 16px;
  z-index: 401;
  cursor: pointer;
}
.input-group input[type=checkbox] + .check,
.input-group input[type=radio] + .check {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin: 3px 0 0 0;
  padding: 0;
  height: 16px;
  min-height: 16px;
  width: 16px;
  min-width: 16px;
  border-radius: 16px;
  border: 2px solid #000000;
  transition-property: border;
  transition-duration: 150ms;
  transition-timing-function: ease;
  z-index: 400;
}
.input-group input[type=checkbox] + .check::after,
.input-group input[type=radio] + .check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 14px;
  width: 14px;
  border-radius: 14px;
  background-color: #FFFFFF;
  transform: scale(0.8) translate(-50%, -50%);
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease;
  transform-origin: 0 0;
  cursor: pointer;
}
.input-group input[type=checkbox]:focus ~ .checkbox_focus,
.input-group input[type=radio]:focus ~ .checkbox_focus {
  background-color: #CCF0F9;
  opacity: 1;
}
.input-group input[type=checkbox]:hover ~ .checkbox_focus,
.input-group input[type=radio]:hover ~ .checkbox_focus {
  background-color: #EDF2F4;
  opacity: 1;
}
.input-group input[type=checkbox]:active ~ .checkbox_focus,
.input-group input[type=radio]:active ~ .checkbox_focus {
  background-color: #99E1F3;
  opacity: 1;
}
.input-group input[type=checkbox]:checked + .check,
.input-group input[type=radio]:checked + .check {
  border-color: #254A7E;
  background-color: #254A7E;
}
.input-group input[type=checkbox]:checked + .check::after,
.input-group input[type=radio]:checked + .check::after {
  background-color: #006CE0;
  transform: scale(1) translate(-50%, -50%);
}
.input-group input[type=checkbox]:checked + .check + label,
.input-group input[type=radio]:checked + .check + label {
  font-weight: 700;
}
.input-group input[type=checkbox]:disabled,
.input-group input[type=radio]:disabled {
  cursor: not-allowed;
}
.input-group input[type=checkbox]:disabled + .check,
.input-group input[type=radio]:disabled + .check {
  cursor: not-allowed;
  border-color: #A0A0A3;
  background-color: #F4F4F4;
}
.input-group input[type=checkbox]:disabled + .check::after,
.input-group input[type=radio]:disabled + .check::after {
  background-color: #F4F4F4;
}
.input-group input[type=checkbox]:disabled + .check + label,
.input-group input[type=radio]:disabled + .check + label {
  cursor: not-allowed;
  color: #A0A0A3;
}
.input-group input[type=checkbox]:disabled:checked + .check,
.input-group input[type=radio]:disabled:checked + .check {
  border-color: #A0A0A3;
}
.input-group input[type=checkbox]:disabled:checked + .check::after,
.input-group input[type=radio]:disabled:checked + .check::after {
  background-color: #A0A0A3;
}
.input-group input[type=checkbox][type=checkbox] + .check,
.input-group input[type=radio][type=checkbox] + .check {
  border-radius: 0;
}
.input-group input[type=checkbox][type=checkbox] + .check::after,
.input-group input[type=radio][type=checkbox] + .check::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-color: transparent;
  height: 14px;
  width: 13px;
  top: 0;
  left: 0;
  border-radius: 0;
  transition-duration: 150ms;
  transition-property: transform;
  transform-origin: 50% 50%;
  transform: scale(0.7);
}
.input-group input[type=checkbox][type=checkbox]:checked + .check::after,
.input-group input[type=radio][type=checkbox]:checked + .check::after {
  background-color: transparent;
  background-image: url("styles/resources/assets/icons/check-white.svg");
  transform: scale(1);
}
.input-group input[type=checkbox][type=checkbox]:checked:disabled + .check::after,
.input-group input[type=radio][type=checkbox]:checked:disabled + .check::after {
  background-image: url("styles/resources/assets/icons/check-grey.svg");
}
.input-group input[type=checkbox] ~ label,
.input-group input[type=radio] ~ label {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  padding: 2px 4px;
  margin-left: 12px;
  font-weight: 400;
  font-size: 17px;
  color: #000000;
}
.input-group .with-icon {
  position: relative;
}
.input-group .hint-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  margin: 3px 0 5px;
  font-size: 14px;
}
.theme-dark .input-group .hint-text {
  color: #FFFFFF;
}
@media only screen and (min-width: 77.75em) {
  .input-group .hint-text {
    min-height: 24px;
  }
}
.input-group .hint-text-rename-modal-paragraph {
  margin-bottom: 15px !important;
}
.input-group .hint-text ul {
  margin: 0;
  list-style: none;
  padding-left: 18px;
}
.input-group .hint-text ul li {
  position: relative;
  margin: 0;
  /* styling of the blue bullet on the left of outer lis */
}
.input-group .hint-text ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -15px;
  width: 4px;
  height: 4px;
  background-color: #006CE0;
  border-radius: 50%;
}
.input-group.is-error input,
.input-group.is-error textarea,
.input-group.is-error select {
  border-color: #DC3548;
  margin-bottom: 5px;
}
.input-group.is-error input:focus,
.input-group.is-error textarea:focus,
.input-group.is-error select:focus {
  border-color: #183052;
}
.input-group .error-text {
  font-size: 14px;
  margin: 3px 0 5px;
  color: #DC3548;
}
.input-group .error-text.with-divider {
  margin-right: 60px;
}
.input-group .character-count {
  font-size: 14px;
  margin: 3px 0 5px;
  color: #101820;
  text-align: right;
}
.input-group .custom-input {
  position: relative;
  display: flex;
  flex-direction: row;
}
.input-group .custom-input select {
  width: 100%;
}
@media only screen and (min-width: 77.75em) {
  .input-group .custom-input select {
    width: calc(100% - 150px);
  }
}
.input-group .custom-input__language, .input-group .custom-input__mobile {
  position: relative;
  margin: 10px 0;
  height: 46px;
  border: 2px solid #808080;
  border-radius: 4px 0 0 4px;
  border-right-width: 0;
}
.input-group .custom-input__language + *, .input-group .custom-input__mobile + * {
  border-radius: 0 4px 4px 0;
}
.input-group .custom-input .divider {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #A0A0A3;
  bottom: -30px;
}
@media only screen and (min-width: 77.75em) {
  .input-group .custom-input .divider {
    display: block;
    position: absolute;
    height: 120px;
    width: 4px;
    right: 0;
    bottom: 10px;
  }
}
.input-group .custom-input__language {
  display: flex;
  width: 48px;
  align-items: center;
  justify-content: center;
}
.input-group .custom-input__language i {
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  min-width: 19px;
  min-width: 1.1875rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/language.svg");
}
.input-group .custom-input__language.disabled {
  opacity: 0.7;
}
.input-group .custom-input__mobile {
  position: relative;
  background: #F5F5F5;
  width: 100px;
  border: none;
  border-right-width: 0;
  display: flex;
  align-items: flex-start;
  overflow: visible;
}
.input-group .custom-input__mobile.has-error {
  border-color: #DC3548;
}
.input-group .custom-input__mobile.has-error:focus {
  border-color: #183052;
  outline: 0;
}
.input-group .custom-input__mobile .dropdown-menu__button {
  margin: 0;
}
.input-group .custom-input__mobile .dropdown-menu__button:disabled {
  opacity: 0.7;
  border-right-width: 0;
}
.input-group .custom-input__mobile .dropdown-menu__button.open {
  border-color: #183052;
  border-right-width: 2px;
}
.input-group .custom-input__mobile .dropdown-menu__menu {
  padding: 1px;
  width: 320px;
  margin-top: 20px;
}
.input-group .custom-input__mobile .dropdown-menu__menu a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  width: 100%;
  height: 50px;
}
.theme-dark .input-group .custom-input__mobile .dropdown-menu__menu a {
  color: #FFFFFF;
}
.input-group .custom-input__mobile .dropdown-menu__menu a b,
.input-group .custom-input__mobile .dropdown-menu__menu a strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .input-group .custom-input__mobile .dropdown-menu__menu a b,
.theme-dark .input-group .custom-input__mobile .dropdown-menu__menu a strong {
  color: #FFFFFF;
}
.theme-dark .input-group .custom-input__mobile .dropdown-menu__menu a b,
.theme-dark .input-group .custom-input__mobile .dropdown-menu__menu a strong {
  color: #FFFFFF;
}
.input-group .custom-input__mobile .menu-current {
  justify-content: center;
  width: 40px;
  height: 22px;
  margin-right: 30px;
}
.input-group input.is-large {
  font-size: 18px;
  padding: 25px;
  height: 70px;
  margin: 0;
}
.input-group.has-error input:not([type=checkbox]):not([type=radio]),
.input-group.has-error textarea,
.input-group.has-error span,
.input-group.has-error select {
  border-color: #DC3548;
}
.input-group.has-error input:not([type=checkbox]):not([type=radio]):focus,
.input-group.has-error textarea:focus,
.input-group.has-error span:focus,
.input-group.has-error select:focus {
  border-color: #183052;
  outline: 0;
}

.theme-dark .input-group label {
  color: #FFFFFF;
}
.theme-dark .input-group input[type=checkbox] + .check,
.theme-dark .input-group input[type=radio] + .check {
  border-color: #FFFFFF;
  background-color: #183052;
}
.theme-dark .input-group input[type=checkbox] + .check::after,
.theme-dark .input-group input[type=radio] + .check::after {
  background-color: #183052;
}
.theme-dark .input-group input[type=checkbox]:checked + .check,
.theme-dark .input-group input[type=radio]:checked + .check {
  border-color: #006CE0;
  background-color: #FFFFFF;
}
.theme-dark .input-group input[type=checkbox]:checked + .check::after,
.theme-dark .input-group input[type=radio]:checked + .check::after {
  background-color: #006CE0;
}
.theme-dark .input-group input[type=checkbox]:disabled + .check,
.theme-dark .input-group input[type=radio]:disabled + .check {
  border-color: #A0A0A3;
  background-color: #F4F4F4;
}
.theme-dark .input-group input[type=checkbox]:disabled + .check::after,
.theme-dark .input-group input[type=radio]:disabled + .check::after {
  background-color: #F4F4F4;
}
.theme-dark .input-group input[type=checkbox]:disabled:checked + .check::after,
.theme-dark .input-group input[type=radio]:disabled:checked + .check::after {
  background-color: #A0A0A3;
}
.theme-dark .input-group input[type=checkbox][type=checkbox] + .check::after,
.theme-dark .input-group input[type=radio][type=checkbox] + .check::after {
  background-color: transparent;
}
.theme-dark .input-group input[type=checkbox][type=checkbox]:checked + .check,
.theme-dark .input-group input[type=radio][type=checkbox]:checked + .check {
  background-color: #FFFFFF;
}
.theme-dark .input-group input[type=checkbox][type=checkbox]:disabled + .check,
.theme-dark .input-group input[type=radio][type=checkbox]:disabled + .check {
  background-color: #F4F4F4;
}
.theme-dark .input-group input[type=checkbox][type=checkbox]:disabled + .check::after,
.theme-dark .input-group input[type=radio][type=checkbox]:disabled + .check::after {
  background-color: transparent;
}
.theme-dark .input-group input[type=checkbox][type=checkbox]:disabled:checked + .check,
.theme-dark .input-group input[type=radio][type=checkbox]:disabled:checked + .check {
  background-color: #F4F4F4;
}

.input-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.input-row input {
  border-color: transparent;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.input-row .input-group:first-of-type input {
  border-radius: 10px 0 0 10px;
}
.input-row .input-group:last-of-type input {
  border-radius: 0 10px 10px 0;
}

fieldset {
  border: 0;
  padding: 0;
}
fieldset .input-group:first-child {
  margin-top: 10px;
}

.dropdown-menu__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 46px;
  width: 100%;
  border: 2px solid #808080;
  border-radius: 4px;
  color: #101820;
  cursor: pointer;
  z-index: 400;
  margin: 10px 0;
  padding: 10px 15px;
  appearance: none;
  background-color: #FFFFFF;
  background-image: url("styles/resources/assets/icons/chevron-down.svg");
  background-size: 18px;
  background-position: right 15px center;
  background-repeat: no-repeat;
  transition-property: border;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.dropdown-menu__button:hover, .dropdown-menu__button:focus {
  border-color: #183052;
  outline: 0;
}
.dropdown-menu__button[aria-expanded=true] {
  background-image: url("styles/resources/assets/icons/chevron-up.svg");
}
.dropdown-menu__button span {
  flex-grow: 1;
  text-align: left;
}
.dropdown-menu__menu {
  position: absolute;
  width: 83.33%;
  left: 0;
  right: 0;
  z-index: 402;
  margin: 10px auto 0;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  text-align: left;
  background: #FFFFFF;
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: ease;
  will-change: transform;
  visibility: hidden;
  opacity: 0;
  max-height: 357px;
  overflow-y: scroll;
}
.dropdown-menu__menu.visible {
  transform: translateY(-20px);
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
.dropdown-menu__menu a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 15px;
  cursor: pointer;
  outline: none;
  margin: 1px 2px;
  text-decoration: none;
  background-color: #FFFFFF;
  transition-property: background-color;
  transition-duration: 150ms;
  transition-timing-function: ease;
}
.theme-dark .dropdown-menu__menu a {
  color: #FFFFFF;
}
.dropdown-menu__menu a b,
.dropdown-menu__menu a strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .dropdown-menu__menu a b,
.theme-dark .dropdown-menu__menu a strong {
  color: #FFFFFF;
}
.theme-dark .dropdown-menu__menu a b,
.theme-dark .dropdown-menu__menu a strong {
  color: #FFFFFF;
}
.dropdown-menu__menu a:hover, .dropdown-menu__menu a:focus {
  background-color: #E5F1FD;
}
.dropdown-menu__menu a:hover span, .dropdown-menu__menu a:focus span {
  text-decoration: underline;
}
.dropdown-menu__menu a img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 25px;
  width: auto;
  margin-right: 20px;
}

.action-menu {
  position: absolute;
  top: 0;
  right: 0;
}
.action-menu__button {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/authenticated/icon-actionmenu.svg");
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 7px;
  top: 0;
  right: 0;
  z-index: 402;
  transform: rotate(90deg);
}
.action-menu__button:hover, .action-menu__button:focus {
  background-color: #FFFFFF;
}
.action-menu__button:focus {
  outline: 0;
  border-color: #183052;
}
.action-menu__button.with-label {
  padding-right: 40px;
}
@media (max-width: 63.9375em) {
  .action-menu__button {
    top: 15px;
    top: 0.9375rem;
  }
}
.action-menu__button-with-label {
  top: 0;
  right: 0;
  padding-right: 40px;
  height: 30px;
  background: transparent;
  border: 0;
  font-weight: 500;
  color: #006CE0;
  z-index: 402;
}
.action-menu__button-with-label:hover::after, .action-menu__button-with-label:focus::after {
  background-color: #FFFFFF;
}
.action-menu__button-with-label:focus {
  outline: 0;
}
.action-menu__button-with-label:focus::after {
  outline: 0;
  border-color: #183052;
}
.action-menu__button-with-label::after {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/authenticated/icon-actionmenu.svg");
  background-color: transparent;
  border-color: transparent;
  border-radius: 7px;
  border: 2px solid transparent;
  transition: border 150ms;
  transform: rotate(90deg);
}
.action-menu__menu {
  position: absolute;
  width: 180px;
  top: 50px;
  right: 0;
  z-index: 404;
  margin: 10px auto 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  text-align: left;
  background: #FFFFFF;
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: ease;
  will-change: transform;
  visibility: hidden;
  opacity: 0;
  max-height: 357px;
  overflow-y: auto;
}
.action-menu__menu.visible {
  transform: translateY(-20px);
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
.action-menu__menu > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #DDDDDD;
}
.action-menu__menu > ul > li {
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
.action-menu__menu > ul > li > a,
.action-menu__menu > ul > li > label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: block;
  margin: 0;
  padding: 20px;
  text-decoration: none;
  transition: background 150ms;
}
.theme-dark .action-menu__menu > ul > li > a,
.theme-dark .action-menu__menu > ul > li > label {
  color: #FFFFFF;
}
.action-menu__menu > ul > li > a b,
.action-menu__menu > ul > li > a strong,
.action-menu__menu > ul > li > label b,
.action-menu__menu > ul > li > label strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .action-menu__menu > ul > li > a b,
.theme-dark .action-menu__menu > ul > li > a strong,
.theme-dark .action-menu__menu > ul > li > label b,
.theme-dark .action-menu__menu > ul > li > label strong {
  color: #FFFFFF;
}
.theme-dark .action-menu__menu > ul > li > a b,
.theme-dark .action-menu__menu > ul > li > a strong,
.theme-dark .action-menu__menu > ul > li > label b,
.theme-dark .action-menu__menu > ul > li > label strong {
  color: #FFFFFF;
}
.action-menu__menu > ul > li > a:hover,
.action-menu__menu > ul > li > label:hover {
  background-color: val(--ocean-blue-40);
}
.action-menu__menu > ul > li > a:hover .communication-item__provider,
.action-menu__menu > ul > li > label:hover .communication-item__provider {
  text-decoration: underline;
}
.action-menu__menu > ul > li > a:focus-within, .action-menu__menu > ul > li > a:focus,
.action-menu__menu > ul > li > label:focus-within,
.action-menu__menu > ul > li > label:focus {
  outline-offset: -2px;
}
.action-menu__menu > ul > li > a:focus-within,
.action-menu__menu > ul > li > label:focus-within {
  outline: 3px solid #183052;
}
.action-menu__menu > ul > li > a:hover,
.action-menu__menu > ul > li > label:hover {
  cursor: pointer;
  background: #E5F1FD;
}
.action-menu__menu > ul > li > a::before,
.action-menu__menu > ul > li > label::before {
  filter: grayscale(1);
}
.action-menu__menu > ul > li > a input[type=radio],
.action-menu__menu > ul > li > label input[type=radio] {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}
.action-menu__menu > ul > li > span.skeleton {
  display: block;
  padding: 20px;
  height: 64px;
}
.action-menu__menu > ul li {
  padding-left: 1px;
  padding-right: 1px;
}
.action-menu__menu a[role=menuitem] {
  padding: 20px 20px 20px 60px;
  border-bottom: 1px solid transparent;
}
.action-menu__menu a[role=menuitem]::before {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  min-width: 20px;
  min-width: 1.25rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 21px;
  left: 26px;
}
.action-menu__menu a[role=menuitem].action-edit::before {
  background-image: url("styles/resources/assets/icons/authenticated/icon-edit.svg");
}
.action-menu__menu a[role=menuitem].action-add-folder::before {
  background-image: url("styles/resources/assets/icons/authenticated/icon-plus.svg");
}
.action-menu__menu a[role=menuitem].action-delete::before {
  background-image: url("styles/resources/assets/icons/authenticated/icon-trash.svg");
}
.action-menu__menu a[role=menuitem].action-move-msg::before {
  background-image: url("styles/resources/assets/icons/authenticated/icon-folder-move.svg");
}
.action-menu__menu a[role=menuitem]:hover, .action-menu__menu a[role=menuitem]:focus {
  text-decoration: underline;
}
.action-menu__menu li:first-of-type {
  border-radius: 5px 5px 0 0;
}
.action-menu__menu li:first-of-type > a {
  border-radius: 5px 5px 0 0;
}
.action-menu__menu li:last-of-type {
  border-radius: 0 0 5px 5px;
}
.action-menu__menu li:last-of-type > a {
  border-radius: 0 0 5px 5px;
  border-bottom: 0;
}

[class=btn].btn.ia-btn:hover, .btn--tertiary.btn.ia-btn:hover, .btn--secondary.btn.ia-btn:hover, .btn--primary.btn.ia-btn:hover, [aria-checked=true][class=btn].btn.ia-btn, [aria-checked=true].btn--tertiary.btn.ia-btn, [aria-checked=true].btn--secondary.btn.ia-btn, [aria-checked=true].btn--primary.btn.ia-btn {
  background: var(--light-navy);
  color: var(--white);
  text-decoration: none;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
}
[class=btn].btn.ia-btn:focus, .btn--tertiary.btn.ia-btn:focus, .btn--secondary.btn.ia-btn:focus, .btn--primary.btn.ia-btn:focus, [aria-checked=true][class=btn].btn.ia-btn, [aria-checked=true].btn--tertiary.btn.ia-btn, [aria-checked=true].btn--secondary.btn.ia-btn, [aria-checked=true].btn--primary.btn.ia-btn {
  outline: 2px solid var(--navy);
  outline: 0.125rem solid var(--navy);
}
[disabled][class=btn].btn.ia-btn, [disabled].btn--tertiary.btn.ia-btn, [disabled].btn--secondary.btn.ia-btn, [disabled].btn--primary.btn.ia-btn {
  color: var(--grey9c-100);
  background-color: var(--grey1c-100);
}
[class=btn].btn.ia-btn:active, .btn--tertiary.btn.ia-btn:active, .btn--secondary.btn.ia-btn:active, .btn--primary.btn.ia-btn:active {
  background: var(--navy);
  color: var(--white);
}

.btn.ia-btn {
  font-family: var(--family-roboto);
  font-style: var(--style-normal);
  color: var(--darker-navy);
  padding: 13px 32px;
  padding: 0.8125rem 2rem;
  font-weight: 500;
  font-size: var(--default-font-size);
  display: inline-block;
  position: relative;
  line-height: 1.1;
  letter-spacing: var(--character-spacing-0);
  text-decoration: none;
  text-align: center;
  min-width: min-content;
  width: max-content;
  height: max-content;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  border-radius: var(--button-border-radius);
  transition-property: background, color, padding, margin;
  transition-duration: 150ms;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .btn.ia-btn {
    display: block;
    width: 100%;
  }
}
.btn--block.btn.ia-btn {
  display: block;
  width: 100%;
}
.btn--primary.btn.ia-btn {
  background: var(--ocean-blue-40);
  color: var(--darker-navy);
}
.btn--secondary.btn.ia-btn {
  border: 2px solid var(--darker-navy);
  border: 0.125rem solid var(--darker-navy);
  background: var(--white);
  color: var(--darker-navy);
}
.btn--secondary[disabled].btn.ia-btn {
  border: 2px solid var(--grey4c-100);
  border: 0.125rem solid var(--grey4c-100);
}
.btn--tertiary.btn.ia-btn {
  border: 2px solid var(--grey4c-100);
  border: 0.125rem solid var(--grey4c-100);
  background: var(--white);
  color: var(--navy);
  font-weight: normal;
}
.btn--tertiary[disabled].btn.ia-btn {
  border: 2px solid var(--grey4c-100);
  border: 0.125rem solid var(--grey4c-100);
}
.btn--small.btn.ia-btn {
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  height: 36px;
  height: 2.25rem;
  font-size: var(--font-size-15);
}
.btn-edit-icon.btn.ia-btn {
  padding: 11px 13px;
  padding: 0.6875rem 0.8125rem;
  border-width: 0.0625rem;
  border-radius: 0.125rem;
  font-size: var(--font-size-15);
  font-weight: 400;
  cursor: pointer;
}
.btn-edit-icon.btn.ia-btn:focus, .btn-edit-icon.btn.ia-btn:before {
  content: url("styles/resources/assets/icons/icon-pencil.svg");
  margin-right: 8px;
}
.btn-edit-icon.btn.ia-btn:hover::before {
  content: url("styles/resources/assets/icons/icon-pencil-white.svg");
}
.fit-content.btn.ia-btn {
  max-width: max-content !important;
}
.form-error {
  background-color: #DC3548;
  border: 2px solid #DC3548;
  border-radius: 5px;
}
.form-error__message {
  position: relative;
  padding: 20px 20px 20px 60px;
}
.form-error__message i.error {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  min-width: 60px;
  height: 100%;
  background-image: url("styles/resources/assets/icons/icon-warning-white.svg");
  background-color: rgba(0, 0, 0, 0.2);
  background-size: 20px;
}
.form-error__message p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 0 20px;
}
.theme-dark .form-error__message p {
  color: #FFFFFF;
}
.theme-dark .form-error__message p {
  color: #FFFFFF;
}
.form-error__links {
  background-color: #FFFFFF;
  padding: 10px 20px;
}
.form-error__links ul {
  margin: 5px 0;
}
@media (max-width: 63.9375em) {
  .form-error__links ul {
    padding-left: 20px;
  }
}
.form-error__links ul li {
  color: #006CE0;
  margin: 13px 0;
}
.form-error__links ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #006CE0;
}
.theme-dark .form-error__links ul li a {
  color: #FFFFFF;
}

/* ------------- MODULES ------------ */
.key-article {
  margin: 40px 0;
}
.key-article__content--title {
  margin-top: 0;
  margin-bottom: 30px;
}
.key-article__content--text .cmp-text {
  padding: 0;
}
.key-article__content--text .cmp-text p,
.key-article__content--text .cmp-text p b,
.key-article__content--text .cmp-text p strong {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #101820;
}
.theme-dark .key-article__content--text .cmp-text p,
.theme-dark .key-article__content--text .cmp-text p b,
.theme-dark .key-article__content--text .cmp-text p strong {
  color: #FFFFFF;
}
.key-article__content--text .cmp-text p b,
.key-article__content--text .cmp-text p strong,
.key-article__content--text .cmp-text p b b,
.key-article__content--text .cmp-text p b strong,
.key-article__content--text .cmp-text p strong b,
.key-article__content--text .cmp-text p strong strong {
  color: #101820;
}
.key-article__content .link, .key-article__content .linked-services__rightInternalLink {
  margin-top: 20px;
}
@media only screen and (min-width: 64em) {
  .key-article__content .link, .key-article__content .linked-services__rightInternalLink {
    margin-top: 40px;
  }
}
.key-article__media {
  margin-bottom: 30px;
}
@media only screen and (min-width: 64em) {
  .key-article__media {
    margin-bottom: 0;
    padding-right: 60px;
  }
}
.key-article__media > * {
  width: 100%;
}
@media only screen and (min-width: 64em) {
  .key-article.is-image-right .key-article__media {
    order: 1;
    margin-bottom: 0;
    padding-left: 60px;
    padding-right: 0;
  }
}
.l-container > .key-article {
  margin: 60px 0;
}
@media only screen and (min-width: 64em) {
  .l-container > .key-article {
    margin: 80px 0;
  }
}
.l-container > .key-article:nth-child(2) {
  margin-top: 40px;
}

/** Banner **/
.banner {
  padding-top: 24px;
  padding-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.banner h1 {
  margin-top: 0;
  margin-bottom: 0;
  color: #000000;
}
.banner img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .banner img {
    width: 100%;
    height: auto;
    transform: translateY(-38%);
  }
}
.banner.with-breadcrumbs h1 {
  margin-top: 44px;
}

.content-banner {
  position: relative;
  overflow: hidden;
  height: 160px;
}
.content-banner img {
  width: 100%;
}
@media only screen and (max-width: 39.9375em) {
  .content-banner img {
    transform: translate(0, -10%);
  }
}
@media only screen and (min-width: 40em) {
  .content-banner img {
    transform: translate(0, -22%);
  }
}

/** Buttons **/
button:hover, button:focus {
  cursor: pointer;
}
button:hover[disabled], button:hover.disabled, button:focus[disabled], button:focus.disabled {
  cursor: not-allowed;
  border-color: #A0A0A3;
}

.button-gui {
  margin-top: 1.25rem;
}

.btn,
.un_link-confirmation__button,
.cmp-custom-header .sign-in.sign-in--unauth,
.cmp-button {
  padding: 12px 32px;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min-content;
  font-weight: 500;
  font-size: 18px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  border: none;
  transition-property: background, color, padding, margin;
  transition-duration: 150ms;
  height: 48px;
}
@media only screen and (min-width: 48em) {
  .btn,
.un_link-confirmation__button,
.cmp-custom-header .sign-in.sign-in--unauth,
.cmp-button {
    display: inline-flex;
  }
}
.btn:hover,
.un_link-confirmation__button:hover,
.cmp-custom-header .sign-in.sign-in--unauth:hover,
.cmp-button:hover {
  background: #333333;
}
.btn:focus,
.un_link-confirmation__button:focus,
.cmp-custom-header .sign-in.sign-in--unauth:focus,
.cmp-button:focus {
  outline-width: 2px;
  outline-width: 0.125rem;
  outline-style: solid;
  outline-color: #000000;
  text-decoration: underline;
}
.btn:active,
.un_link-confirmation__button:active,
.cmp-custom-header .sign-in.sign-in--unauth:active,
.cmp-button:active {
  background: #333333;
  text-decoration: underline;
}
.btn[disabled], .btn.disabled,
[disabled].un_link-confirmation__button,
.cmp-custom-header [disabled].sign-in.sign-in--unauth,
[disabled].cmp-button,
.disabled.un_link-confirmation__button,
.cmp-custom-header .disabled.sign-in.sign-in--unauth,
.disabled.cmp-button {
  background: var(--grey1c-100);
  color: var(--grey9c-100);
  cursor: not-allowed;
  pointer-events: none;
}
.btn.mygov,
.mygov.un_link-confirmation__button,
.cmp-custom-header .mygov.sign-in.sign-in--unauth,
.mygov.cmp-button {
  background: #026540;
}
.btn.mygov:focus,
.mygov.un_link-confirmation__button:focus,
.cmp-custom-header .mygov.sign-in.sign-in--unauth:focus,
.mygov.cmp-button:focus {
  background: #0061C8;
}
.btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before,
.is-loading.cmp-button::before {
  background-image: url("styles/resources/assets/icons/spinner-button.svg");
}
.btn.is-loading-mygov::before,
.is-loading-mygov.un_link-confirmation__button::before,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth::before,
.is-loading-mygov.cmp-button::before {
  background-image: url("styles/resources/assets/icons/spinner_myGov_light.svg");
}
.btn.is-loading, .btn.is-loading-mygov,
.is-loading.un_link-confirmation__button,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth,
.is-loading.cmp-button,
.is-loading-mygov.un_link-confirmation__button,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth,
.is-loading-mygov.cmp-button {
  padding: 16px 17px 16px 45px;
  padding: 1rem 1.0625rem 1rem 2.8125rem;
  pointer-events: none;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn.is-loading-mygov, .btn.is-loading-mygov.ia-btn,
.is-loading-mygov.un_link-confirmation__button,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth,
.is-loading-mygov.cmp-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.is-loading-mygov::before,
.is-loading-mygov.un_link-confirmation__button::before,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth::before,
.is-loading-mygov.cmp-button::before {
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
  min-width: 17px;
  min-width: 1.0625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  position: relative;
  margin-right: 12px;
  margin-right: 0.75rem;
  animation: rotate 2.5s linear infinite;
}
.btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before,
.is-loading.cmp-button::before {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  min-width: 26px;
  min-width: 1.625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: calc(50% - 14px);
  top: calc(50% - 0.875rem);
  left: calc(50% - 55px);
  left: calc(50% - 3.4375rem);
  animation: rotate 1s linear infinite;
}
@media only screen and (min-width: 48em) {
  .btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before,
.is-loading.cmp-button::before {
    left: 25px;
    left: 1.5625rem;
  }
}
.btn.mygov-green,
.mygov-green.un_link-confirmation__button,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth,
.mygov-green.cmp-button {
  background: #026540;
}
.btn.mygov-green span::after,
.mygov-green.un_link-confirmation__button span::after,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth span::after,
.mygov-green.cmp-button span::after {
  backface-visibility: none;
}
.btn.mygov-green:hover,
.mygov-green.un_link-confirmation__button:hover,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth:hover,
.mygov-green.cmp-button:hover {
  background: #78C433;
  color: #101820;
}
.btn.mygov-green:hover span::after,
.mygov-green.un_link-confirmation__button:hover span::after,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth:hover span::after,
.mygov-green.cmp-button:hover span::after {
  filter: invert(1);
}
.btn.outline,
.outline.un_link-confirmation__button,
.cmp-custom-header .outline.sign-in.sign-in--unauth,
.outline.cmp-button {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #000000;
}
.btn.outline:hover, .btn.outline:focus,
.outline.un_link-confirmation__button:hover,
.cmp-custom-header .outline.sign-in.sign-in--unauth:hover,
.outline.cmp-button:hover,
.outline.un_link-confirmation__button:focus,
.cmp-custom-header .outline.sign-in.sign-in--unauth:focus,
.outline.cmp-button:focus {
  text-decoration: underline;
  color: #313131;
  border-color: #313131;
}
.btn.outline[disabled], .btn.outline.disabled,
.outline[disabled].un_link-confirmation__button,
.cmp-custom-header .outline[disabled].sign-in.sign-in--unauth,
.outline[disabled].cmp-button,
.outline.disabled.un_link-confirmation__button,
.cmp-custom-header .outline.disabled.sign-in.sign-in--unauth,
.outline.disabled.cmp-button {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.secondary, .btn.cmp-feature-teaser__action-link,
.secondary.un_link-confirmation__button,
.cmp-custom-header .secondary.sign-in.sign-in--unauth,
.cmp-feature-teaser__action-link.un_link-confirmation__button,
.cmp-custom-header .cmp-feature-teaser__action-link.sign-in.sign-in--unauth,
.secondary.cmp-button,
.cmp-button.cmp-feature-teaser__action-link {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #000000;
}
.btn.secondary:hover, .btn.cmp-feature-teaser__action-link:hover, .btn.secondary:focus, .btn.cmp-feature-teaser__action-link:focus,
.secondary.un_link-confirmation__button:hover,
.cmp-custom-header .secondary.sign-in.sign-in--unauth:hover,
.cmp-feature-teaser__action-link.un_link-confirmation__button:hover,
.cmp-custom-header .cmp-feature-teaser__action-link.sign-in.sign-in--unauth:hover,
.secondary.cmp-button:hover,
.cmp-button.cmp-feature-teaser__action-link:hover,
.secondary.un_link-confirmation__button:focus,
.cmp-custom-header .secondary.sign-in.sign-in--unauth:focus,
.cmp-feature-teaser__action-link.un_link-confirmation__button:focus,
.cmp-custom-header .cmp-feature-teaser__action-link.sign-in.sign-in--unauth:focus,
.secondary.cmp-button:focus,
.cmp-button.cmp-feature-teaser__action-link:focus {
  color: #313131;
  text-decoration: underline;
  border-color: #313131;
}
.btn.secondary[disabled], .btn[disabled].cmp-feature-teaser__action-link, .btn.secondary.disabled, .btn.disabled.cmp-feature-teaser__action-link,
.secondary[disabled].un_link-confirmation__button,
.cmp-custom-header .secondary[disabled].sign-in.sign-in--unauth,
[disabled].cmp-feature-teaser__action-link.un_link-confirmation__button,
.cmp-custom-header [disabled].cmp-feature-teaser__action-link.sign-in.sign-in--unauth,
.secondary[disabled].cmp-button,
[disabled].cmp-button.cmp-feature-teaser__action-link,
.secondary.disabled.un_link-confirmation__button,
.cmp-custom-header .secondary.disabled.sign-in.sign-in--unauth,
.disabled.cmp-feature-teaser__action-link.un_link-confirmation__button,
.cmp-custom-header .disabled.cmp-feature-teaser__action-link.sign-in.sign-in--unauth,
.secondary.disabled.cmp-button,
.disabled.cmp-button.cmp-feature-teaser__action-link {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.tertiary,
.tertiary.un_link-confirmation__button,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth,
.tertiary.cmp-button {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #D1D2D3;
}
.btn.tertiary:hover, .btn.tertiary:focus,
.tertiary.un_link-confirmation__button:hover,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth:hover,
.tertiary.cmp-button:hover,
.tertiary.un_link-confirmation__button:focus,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth:focus,
.tertiary.cmp-button:focus {
  background-color: #F5F9FE;
}
.btn.tertiary[disabled], .btn.tertiary.disabled,
.tertiary[disabled].un_link-confirmation__button,
.cmp-custom-header .tertiary[disabled].sign-in.sign-in--unauth,
.tertiary[disabled].cmp-button,
.tertiary.disabled.un_link-confirmation__button,
.cmp-custom-header .tertiary.disabled.sign-in.sign-in--unauth,
.tertiary.disabled.cmp-button {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.icon span,
.icon.un_link-confirmation__button span,
.cmp-custom-header .icon.sign-in.sign-in--unauth span,
.icon.cmp-button span {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  position: relative;
  transition: all 150ms;
}
.btn.icon span.btn-icon-filter,
.icon.un_link-confirmation__button span.btn-icon-filter,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-filter,
.icon.cmp-button span.btn-icon-filter {
  background-image: url("styles/resources/assets/icons/icon-filter-white.svg");
}
.btn.icon span.btn-icon-arrow,
.icon.un_link-confirmation__button span.btn-icon-arrow,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-arrow,
.icon.cmp-button span.btn-icon-arrow {
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
}
.btn.icon span.btn-icon-external-link,
.icon.un_link-confirmation__button span.btn-icon-external-link,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-external-link,
.icon.cmp-button span.btn-icon-external-link {
  background-image: url("styles/resources/assets/icons/icon-external-link-white.svg");
}
.btn.icon.icon-after:hover span.clear::after,
.icon.icon-after.un_link-confirmation__button:hover span.clear::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth:hover span.clear::after,
.icon.icon-after.cmp-button:hover span.clear::after {
  background-image: url("styles/resources/assets/icons/clear-white.svg");
}
.btn.icon.icon-after span,
.icon.icon-after.un_link-confirmation__button span,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span,
.icon.icon-after.cmp-button span {
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  font-weight: 400;
}
.btn.icon.icon-after span::after,
.icon.icon-after.un_link-confirmation__button span::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span::after,
.icon.icon-after.cmp-button span::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition: all 150ms;
}
.btn.icon.icon-after span.clear::after,
.icon.icon-after.un_link-confirmation__button span.clear::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span.clear::after,
.icon.icon-after.cmp-button span.clear::after {
  background-image: url("styles/resources/assets/icons/clear-dark-blue.svg");
}
.btn.icon.icon-before:hover span.clear::before,
.icon.icon-before.un_link-confirmation__button:hover span.clear::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth:hover span.clear::before,
.icon.icon-before.cmp-button:hover span.clear::before {
  background-image: url("styles/resources/assets/icons/clear-white.svg");
}
.btn.icon.icon-before span,
.icon.icon-before.un_link-confirmation__button span,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span,
.icon.icon-before.cmp-button span {
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  font-weight: 400;
}
.btn.icon.icon-before span::after,
.icon.icon-before.un_link-confirmation__button span::after,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span::after,
.icon.icon-before.cmp-button span::after {
  display: none;
}
.btn.icon.icon-before span::before,
.icon.icon-before.un_link-confirmation__button span::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span::before,
.icon.icon-before.cmp-button span::before {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition: all 150ms;
}
.btn.icon.icon-before span.clear::before,
.icon.icon-before.un_link-confirmation__button span.clear::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span.clear::before,
.icon.icon-before.cmp-button span.clear::before {
  background-image: url("styles/resources/assets/icons/clear-dark-blue.svg");
}
.btn.loading, .btn.loading[disabled], .btn.loading.disabled,
.loading.un_link-confirmation__button,
.cmp-custom-header .loading.sign-in.sign-in--unauth,
.loading.cmp-button {
  background: url("styles/resources/assets/icons/spinner.svg") no-repeat;
  background-position: center;
}
.btn.loading-mygov, .btn.loading-mygov[disabled], .btn.loading-mygov.disabled,
.loading-mygov.un_link-confirmation__button,
.cmp-custom-header .loading-mygov.sign-in.sign-in--unauth,
.loading-mygov.cmp-button {
  background: url("styles/resources/assets/icons/spinner_myGov_light.svg") no-repeat;
  background-position: center;
}
.btn.loading, .btn.loading-mygov,
.loading.un_link-confirmation__button,
.cmp-custom-header .loading.sign-in.sign-in--unauth,
.loading.cmp-button,
.loading-mygov.un_link-confirmation__button,
.cmp-custom-header .loading-mygov.sign-in.sign-in--unauth,
.loading-mygov.cmp-button {
  text-indent: -9999px;
  text-indent: -624.9375rem;
  background-size: 30px;
  background-size: 1.875rem;
  border-color: #A0A0A3;
  pointer-events: none;
}
.btn.loading[disabled], .btn.loading.disabled, .btn.loading-mygov[disabled], .btn.loading-mygov.disabled,
.loading[disabled].un_link-confirmation__button,
.cmp-custom-header .loading[disabled].sign-in.sign-in--unauth,
.loading[disabled].cmp-button,
.loading.disabled.un_link-confirmation__button,
.cmp-custom-header .loading.disabled.sign-in.sign-in--unauth,
.loading.disabled.cmp-button,
.loading-mygov[disabled].un_link-confirmation__button,
.cmp-custom-header .loading-mygov[disabled].sign-in.sign-in--unauth,
.loading-mygov[disabled].cmp-button,
.loading-mygov.disabled.un_link-confirmation__button,
.cmp-custom-header .loading-mygov.disabled.sign-in.sign-in--unauth,
.loading-mygov.disabled.cmp-button {
  text-indent: -9999px;
  text-indent: -624.9375rem;
  background-size: 30px;
  background-size: 1.875rem;
}
.btn.close,
.close.un_link-confirmation__button,
.cmp-custom-header .close.sign-in.sign-in--unauth,
.close.cmp-button {
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
  margin: 0;
  padding: 0;
  min-width: auto;
  background: transparent;
}
.btn.close i,
.close.un_link-confirmation__button i,
.cmp-custom-header .close.sign-in.sign-in--unauth i,
.close.cmp-button i {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/icon-close-black.svg");
}
.btn.toggle,
.toggle.un_link-confirmation__button,
.cmp-custom-header .toggle.sign-in.sign-in--unauth,
.toggle.cmp-button {
  padding: 0 25px 0 3px;
  padding: 0 1.5625rem 0 0.1875rem;
  min-height: 20px;
  min-height: 1.25rem;
  display: block;
  margin: 0;
  height: auto;
  width: auto;
  background: transparent;
  color: #000000;
  min-width: auto;
}
.btn.toggle::after,
.toggle.un_link-confirmation__button::after,
.cmp-custom-header .toggle.sign-in.sign-in--unauth::after,
.toggle.cmp-button::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 2px;
  top: 0.125rem;
  background-image: url("styles/resources/assets/icons/chevron-down.svg");
  transition-property: none;
}
.btn.toggle.is-expanded::after,
.toggle.is-expanded.un_link-confirmation__button::after,
.cmp-custom-header .toggle.is-expanded.sign-in.sign-in--unauth::after,
.toggle.is-expanded.cmp-button::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 2px;
  top: 0.125rem;
  background-image: url("styles/resources/assets/icons/chevron-up.svg");
  transition-property: none;
}

.link, .linked-services__rightInternalLink {
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: #101820;
  background: transparent;
  border: none;
  transition: color;
  transition-duration: 150ms;
}
.link:focus, .linked-services__rightInternalLink:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-style: solid;
  outline-color: #000000;
}
.link.link-btn, .link-btn.linked-services__rightInternalLink {
  color: #000000;
}
.link:not(.action)::after, .linked-services__rightInternalLink:not(.action)::after {
  right: -10px;
  right: -0.625rem;
  top: 2px;
  top: 0.125rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-size: 16px;
  background-size: 1rem;
  content: "";
  position: relative;
  display: inline-block;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  background-position: center;
  transition-property: all;
  transition-duration: 300ms;
}
.link:not(.action):hover, .linked-services__rightInternalLink:not(.action):hover, .link:not(.action):focus, .linked-services__rightInternalLink:not(.action):focus {
  text-decoration: underline;
}
.link:not(.action):hover::after, .linked-services__rightInternalLink:not(.action):hover::after, .link:not(.action):focus::after, .linked-services__rightInternalLink:not(.action):focus::after {
  right: -15px;
  right: -0.9375rem;
}
.link[disabled]:hover, [disabled].linked-services__rightInternalLink:hover, .link.disabled:hover, .disabled.linked-services__rightInternalLink:hover {
  text-decoration: none;
}
.link:not(.action)[disabled], .linked-services__rightInternalLink:not(.action)[disabled], .link:not(.action).disabled, .linked-services__rightInternalLink:not(.action).disabled {
  color: #A0A0A3;
  cursor: not-allowed;
}
.link:not(.action)[disabled]::after, .linked-services__rightInternalLink:not(.action)[disabled]::after, .link:not(.action).disabled::after, .linked-services__rightInternalLink:not(.action).disabled::after {
  background: url("styles/resources/assets/icons/arrow-right-grey.svg") no-repeat;
}
.link:not(.action)[disabled]:hover::after, .linked-services__rightInternalLink:not(.action)[disabled]:hover::after, .link:not(.action)[disabled]:focus::after, .linked-services__rightInternalLink:not(.action)[disabled]:focus::after, .link:not(.action).disabled:hover::after, .linked-services__rightInternalLink:not(.action).disabled:hover::after, .link:not(.action).disabled:focus::after, .linked-services__rightInternalLink:not(.action).disabled:focus::after {
  right: -10px;
  right: -0.625rem;
}
.link.highlight, .highlight.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #000000;
  border: 0;
}
.link.highlight:hover, .highlight.linked-services__rightInternalLink:hover, .link.highlight:focus, .highlight.linked-services__rightInternalLink:focus {
  color: #0061C8;
  text-decoration: none;
}
.link.highlight[disabled], .highlight[disabled].linked-services__rightInternalLink, .link.highlight.disabled, .highlight.disabled.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #A0A0A3;
  cursor: not-allowed;
}
.link.highlight.back, .highlight.back.linked-services__rightInternalLink {
  padding-right: 3px;
  padding-right: 0.1875rem;
}
.link.highlight.back::before, .highlight.back.linked-services__rightInternalLink::before {
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  margin-right: 6px;
  margin-right: 0.375rem;
  content: "";
  position: relative;
  display: inline-block;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  transition-property: all;
  transition-duration: 300ms;
  background-image: url("styles/resources/assets/icons/icon-left-blue-chevron.svg");
}
.link.highlight.back::after, .highlight.back.linked-services__rightInternalLink::after {
  content: none;
}
.link.action, .action.linked-services__rightInternalLink {
  padding-right: 3px;
  padding-right: 0.1875rem;
  text-decoration: underline;
  color: #000000;
  border: 0;
}
.link.action.external, .action.external.linked-services__rightInternalLink {
  display: inline-flex;
  align-items: center;
}
.link.action.external:hover img, .action.external.linked-services__rightInternalLink:hover img {
  transform: translate(3px, -3px);
}
.link.action.external img, .action.external.linked-services__rightInternalLink img {
  transition: transform 150ms ease-out;
  backface-visibility: hidden;
  top: -1px;
  top: -0.0625rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem;
  position: relative;
}
.link.action:hover, .action.linked-services__rightInternalLink:hover, .link.action:focus, .action.linked-services__rightInternalLink:focus {
  color: #0061C8;
  text-decoration: none;
}
.link.action[disabled], .action[disabled].linked-services__rightInternalLink, .link.action.disabled, .action.disabled.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #A0A0A3;
  cursor: not-allowed;
}
.link.action.icon, .action.icon.linked-services__rightInternalLink {
  padding-left: 27px;
  padding-left: 1.6875rem;
}
.link.action.icon span, .action.icon.linked-services__rightInternalLink span {
  position: relative;
}
.link.action.icon span::after, .action.icon.linked-services__rightInternalLink span::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  left: -25px;
  left: -1.5625rem;
}
.link.action.icon span.btn-icon-delete::after, .action.icon.linked-services__rightInternalLink span.btn-icon-delete::after {
  background-image: url("styles/resources/assets/icons/authenticated/icon-trash.svg");
}
.link.action.icon span.btn-icon-folder-move::after, .action.icon.linked-services__rightInternalLink span.btn-icon-folder-move::after {
  background-image: url("styles/resources/assets/icons/authenticated/icon-folder-move.svg");
}

@media only screen and (min-width: 48em) {
  .app-group {
    display: flex;
    justify-content: center;
  }
}
.app-group .app-download {
  width: 200px;
  width: 12.5rem;
  height: 60px;
  height: 3.75rem;
  text-indent: -9999px;
  text-indent: -624.9375rem;
  display: block;
}
.app-group .app-download.apple {
  background: url("styles/resources/assets/icons/apple-icon.png") no-repeat;
  background-size: 100%;
}
.app-group .app-download.google {
  background: url("styles/resources/assets/icons/google-icon.png") no-repeat;
  background-size: 100%;
}
.app-group .app-download:first-child {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 48em) {
  .app-group .app-download:first-child {
    margin-right: 20px;
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
.app-group .app-download:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-style: solid;
  outline-color: #000000;
}

.theme-dark .btn.loading-mygov .theme-dark .btn.is-loading-mygov {
  background-image: url("styles/resources/assets/icons/spinner_myGov_dark.svg");
}

.btn-container {
  display: block;
  margin: 0;
  justify-content: center;
}
.btn-container .dsl-segment {
  display: flex;
  align-items: center;
}
.btn-container.hasTopBorder {
  border-top: 1px solid lightgray;
  padding-top: 20px;
  margin-top: 20px;
}
@media (max-width: 63.9375em) {
  .btn-container .btn {
    width: 100%;
  }
}
.btn-container .dsl-segment.is-stacked .btn {
  width: 100%;
}

.cmp-btn-link div[data-habitat] {
  display: inline-block;
}
.cmp-btn-link__conjunction {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.5556;
  font-weight: 300;
  font-size: 1.125rem;
  margin: 0 1rem;
}

/** Buttons **/
.btnr, .cmp-feature-teaser__action-link {
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  background: #99E1F3;
  color: #172F50;
  text-decoration: none;
  padding: 12px 32px;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  transition-property: background, color, padding, margin;
  transition-duration: 150ms;
}
@media only screen and (min-width: 48em) {
  .btnr, .cmp-feature-teaser__action-link {
    display: inline-block;
  }
}
.btnr:hover, .cmp-feature-teaser__action-link:hover {
  color: #FFFFFF;
  background: #254A7E;
}
.btnr:focus, .cmp-feature-teaser__action-link:focus {
  outline: 2px solid #183052;
  color: #FFFFFF;
  background: #254A7E;
}
.btnr:active, .cmp-feature-teaser__action-link:active {
  outline: 2px solid #183052;
  color: #FFFFFF;
  background: #183052;
}
.btnr[disabled], [disabled].cmp-feature-teaser__action-link {
  background: #D9D9D6;
  border-color: #D9D9D6;
  color: #75787B;
  cursor: not-allowed;
}
.btnr[aria-checked=true], [aria-checked=true].cmp-feature-teaser__action-link {
  outline: 2px solid #183052;
  color: #FFFFFF;
  background: #254A7E;
}
.btnr.mygov, .mygov.cmp-feature-teaser__action-link {
  background: #026540;
}
.btnr.mygov:focus, .mygov.cmp-feature-teaser__action-link:focus {
  background: #0061C8;
}
.btnr.is-loading, .is-loading.cmp-feature-teaser__action-link {
  pointer-events: none;
  padding: 16px 17px 16px 45px;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btnr.is-loading::before, .is-loading.cmp-feature-teaser__action-link::before {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  min-width: 26px;
  min-width: 1.625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: calc(50% - 14px);
  left: calc(50% - 55px);
  background-image: url("styles/resources/assets/icons/spinner-button.svg");
  animation: rotate 1s linear infinite;
}
@media only screen and (min-width: 48em) {
  .btnr.is-loading::before, .is-loading.cmp-feature-teaser__action-link::before {
    left: 25px;
  }
}
.btnr.mygov-green, .mygov-green.cmp-feature-teaser__action-link {
  background: #026540;
}
.btnr.mygov-green span::after, .mygov-green.cmp-feature-teaser__action-link span::after {
  backface-visibility: none;
}
.btnr.mygov-green:hover, .mygov-green.cmp-feature-teaser__action-link:hover {
  background: #78C433;
  color: #101820;
}
.btnr.mygov-green:hover span::after, .mygov-green.cmp-feature-teaser__action-link:hover span::after {
  filter: invert(1);
}
.btnr.outline, .outline.cmp-feature-teaser__action-link {
  color: #006CE0;
  background: #FFFFFF;
  border: 2px solid #006CE0;
  padding: 15px 16px;
}
.btnr.outline:hover, .outline.cmp-feature-teaser__action-link:hover, .btnr.outline:focus, .outline.cmp-feature-teaser__action-link:focus {
  text-decoration: underline;
  color: #313131;
  border: 2px solid #313131;
}
.btnr.outline[disabled], .outline[disabled].cmp-feature-teaser__action-link {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btnr.tertiary, .tertiary.cmp-feature-teaser__action-link {
  color: #006CE0;
  background: #FFFFFF;
  border: 2px solid #D1D2D3;
  padding: 15px 16px;
}
.btnr.tertiary:hover, .tertiary.cmp-feature-teaser__action-link:hover, .btnr.tertiary:focus, .tertiary.cmp-feature-teaser__action-link:focus {
  background-color: #F5F9FE;
}
.btnr.tertiary[disabled], .tertiary[disabled].cmp-feature-teaser__action-link {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btnr.icon span, .icon.cmp-feature-teaser__action-link span {
  position: relative;
  font-weight: 400;
  padding-right: 27px;
}
.btnr.icon span::after, .icon.cmp-feature-teaser__action-link span::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition: all 150ms;
}
.btnr.icon span.btn-icon-filter::after, .icon.cmp-feature-teaser__action-link span.btn-icon-filter::after {
  background-image: url("styles/resources/assets/icons/icon-filter-white.svg");
}
.btnr.icon span.btn-icon-arrow::after, .icon.cmp-feature-teaser__action-link span.btn-icon-arrow::after {
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
}
.btnr.icon span.btn-icon-external-link::after, .icon.cmp-feature-teaser__action-link span.btn-icon-external-link::after {
  background-image: url("styles/resources/assets/icons/icon-external-link-white.svg");
}
.btnr.loading, .loading.cmp-feature-teaser__action-link {
  background: url("styles/resources/assets/icons/spinner.svg") no-repeat;
  background-position: center;
  text-indent: -9999px;
  background-size: 30px;
  border-color: #A0A0A3;
  pointer-events: none;
}
.btnr.loading[disabled], .loading[disabled].cmp-feature-teaser__action-link {
  background: url("styles/resources/assets/icons/spinner.svg") no-repeat;
  background-position: center;
  text-indent: -9999px;
  background-size: 30px;
}
.btnr.close, .close.cmp-feature-teaser__action-link {
  margin: 0;
  padding: 0;
  height: 30px;
  width: 30px;
  min-width: auto;
  background: transparent;
}
.btnr.close i, .close.cmp-feature-teaser__action-link i {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/icon-close.svg");
}
.btnr.toggle, .toggle.cmp-feature-teaser__action-link {
  display: block;
  margin: 0;
  padding: 0 25px 0 3px;
  height: auto;
  min-height: 20px;
  width: auto;
  background: transparent;
  color: #006CE0;
  min-width: auto;
}
.btnr.toggle::after, .toggle.cmp-feature-teaser__action-link::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/chevron-down.svg");
  top: 2px;
  transition-property: none;
}
.btnr.toggle.is-expanded::after, .toggle.is-expanded.cmp-feature-teaser__action-link::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/chevron-up.svg");
  top: 2px;
  transition-property: none;
}

.btnr.secondary, .cmp-feature-teaser__action-link {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}
.btnr.secondary:hover, .cmp-feature-teaser__action-link:hover {
  color: #000000;
  background: #D9D9D6;
  text-decoration: underline;
}
.btnr.secondary:focus, .cmp-feature-teaser__action-link:focus {
  outline: 2px solid #000000;
  color: #000000;
  background: #FFFFFF;
}
.btnr.secondary:focus:hover, .cmp-feature-teaser__action-link:focus:hover {
  color: #000000;
  background: #D9D9D6;
  text-decoration: underline;
  outline: 2px solid #000000;
}
.btnr.secondary:active, .cmp-feature-teaser__action-link:active {
  color: #000000;
  background: #D9D9D6;
  text-decoration: underline;
  outline: none;
}
.btnr.secondary[disabled], [disabled].cmp-feature-teaser__action-link {
  background: #E8E8E6;
  color: #98999B;
  cursor: not-allowed;
  pointer-events: none;
  border-color: #E8E8E6;
}

.icon-left .cmp-button {
  flex-direction: row-reverse;
}

.cmp-button .icon {
  margin: 0px 0px 0px 8px;
  margin: 0rem 0rem 0rem 0.5rem;
  height: 24px;
  height: 1.5rem;
}

.icon-left .cmp-button .icon {
  margin: 0px 8px 0px 0px;
  margin: 0rem 0.5rem 0rem 0rem;
  height: 24px;
  height: 1.5rem;
}

.cmp-button__primary .cmp-button,
.cmp-button__secondary .cmp-button,
.cmp-button__tertiary .cmp-button {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.cmp-button__secondary .cmp-button,
.cmp-button__tertiary .cmp-button {
  padding: 16px 32px;
  padding: 1rem 2rem;
  height: 56px;
  height: 3.5rem;
  border-width: 2px;
  border-width: 0.125rem;
  border-style: solid;
  line-height: 1.1;
  color: #000000;
}

.cmp-button__secondary .cmp-button {
  background: #FFFFFF;
  border-color: #000000;
}
.cmp-button__secondary .cmp-button:hover, .cmp-button__secondary .cmp-button:focus, .cmp-button__secondary .cmp-button:active {
  background: #D9D9D6;
}
.cmp-button__secondary .cmp-button:hover, .cmp-button__secondary .cmp-button:focus {
  text-decoration: underline;
}

.cmp-button__tertiary .cmp-button {
  background: transparent;
  border-color: #75787B;
}
.cmp-button__tertiary .cmp-button:hover, .cmp-button__tertiary .cmp-button:focus, .cmp-button__tertiary .cmp-button:active {
  border-color: #000000;
}
.cmp-button__tertiary .cmp-button:hover, .cmp-button__tertiary .cmp-button:active {
  background: transparent;
}
.cmp-button__tertiary .cmp-button:hover, .cmp-button__tertiary .cmp-button:focus {
  text-decoration: underline;
}
.cmp-button__tertiary .cmp-button:focus {
  background: #66D3EE;
}

.callout {
  margin: 40px 0 20px 0;
}

gui-callout .gui-callout__text > :last-child {
  margin-bottom: 0;
}
gui-callout .gui-callout__text > :first-child {
  margin-top: 0;
}
gui-callout p {
  margin: 20px 0;
  margin: 1.25rem 0;
}
gui-callout p, gui-callout b, gui-callout strong, gui-callout ul, gui-callout ol {
  color: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  font-weight: inherit;
  font-size: inherit;
}
gui-callout b, gui-callout strong {
  font-weight: 700;
}
gui-callout ul, gui-callout ol {
  padding-inline-start: 37px;
  padding-inline-start: 2.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
gui-callout ul li, gui-callout ol li {
  padding-top: 10px;
  padding-top: 0.625rem;
}
gui-callout ol ol li {
  list-style-type: lower-alpha;
}
gui-callout ol ol ol li {
  list-style-type: lower-roman;
}
gui-callout ol ol ol ol li {
  list-style-type: decimal;
}

.cmp-card-list > div {
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 60px;
}
@media only screen and (min-width: 77.75em) {
  .cmp-card-list > div {
    padding: 60px 0 80px;
  }
}
.cmp-card-list__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.cmp-card-list__header h2 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.25;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
  margin: 0;
}
.cmp-card-list__heading-link {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-left: 0.375rem;
}
.cmp-card-list__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 48em) {
  .cmp-card-list__list {
    margin: 0 -10px;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-card-list__list {
    margin: 0 -15px;
  }
}
.cmp-card-list__item {
  width: 100%;
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 48em) {
  .cmp-card-list__item {
    width: 50%;
    padding: 0 10px;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-card-list__item {
    width: 33.33%;
    padding: 0 15px;
  }
}
.cmp-card-list__item > a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 4px;
  text-decoration: none;
}
.cmp-card-list__item .cmp-card {
  display: flex;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(16, 24, 32, 0.16);
}
.cmp-card-list__item .cmp-card__info {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding: 24px;
}
@media only screen and (min-width: 88.125em) {
  .cmp-card-list__item .cmp-card__info {
    width: 60%;
  }
}
.cmp-card-list__item .cmp-card__info__title {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
  margin: 0;
  margin-bottom: 1rem;
}
.cmp-card-list__item .cmp-card__info__description {
  color: #000000;
  line-height: 1.5556;
  font-weight: 300;
  font-size: 1.125rem;
  margin: 0;
  margin-bottom: 1rem;
}
.cmp-card-list__item .cmp-card__info__cta-text {
  margin: auto auto 0 0;
}
.cmp-card-list__item .cmp-card__image {
  position: relative;
  width: 30%;
}
.cmp-card-list__item .cmp-card__image .cmp-image {
  margin: 0;
}
@media only screen and (min-width: 88.125em) {
  .cmp-card-list__item .cmp-card__image {
    width: 40%;
  }
}
.cmp-card-list__item .cmp-card__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-outer-container {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
  position: relative;
}

.react-multi-carousel-list .react-multi-carousel-item {
  padding: 7px;
  padding: 0.4375rem;
}
.react-multi-carousel-list .carousel-item {
  border-radius: 5px;
  border-radius: 0.3125rem;
  display: flex;
  position: relative;
  height: 100%;
  background: #FFFFFF;
  text-decoration: none;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.react-multi-carousel-list .carousel-item:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-style: solid;
  outline-color: #000000;
}
@media screen and (min-width: 0\0 ) {
  .react-multi-carousel-list .carousel-item {
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.25);
  }
}
.react-multi-carousel-list .view-all {
  border-width: 1.5px;
  border-width: 0.09375rem;
  border-style: solid;
  border-color: #006CE0;
  box-shadow: 0 0 0 0;
}
.react-multi-carousel-list .view-all .item-box {
  width: 100%;
}
.react-multi-carousel-list .view-all .item-box .title {
  color: #006CE0;
}

.carousel-button-container {
  margin-top: 33px;
  margin-top: 2.0625rem;
  display: flex;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
}

.carousel-button-group {
  width: 100px;
  width: 6.25rem;
  height: 50px;
  height: 3.125rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
  border-radius: 5px;
  border-radius: 0.3125rem;
  display: flex;
  position: relative;
  background: #FFFFFF;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
}
.carousel-button-group.most-viewed {
  margin-top: 33px;
  margin-top: 2.0625rem;
}

.custom-button {
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  background-size: 13px;
  background-size: 0.8125rem;
  text-indent: -9999px;
  text-indent: -624.9375rem;
  display: block;
  position: absolute;
  background-color: #FFFFFF;
  border: 0;
}
.custom-button svg {
  right: 15px;
  right: 0.9375rem;
  top: 15px;
  top: 0.9375rem;
  position: absolute;
}
.custom-button.next {
  left: 50px;
  left: 3.125rem;
  border-radius: 0 5px 5px 0;
  border-radius: 0 0.3125rem 0.3125rem 0;
  border-left-width: 1px;
  border-left-width: 0.0625rem;
  border-left-style: solid;
  border-left-color: lightgray;
}
.custom-button.next svg {
  transform: rotate(180deg);
}
.custom-button.next.disabled {
  display: block !important;
  cursor: initial;
}
.custom-button.prev {
  border-radius: 5px 0 0 5px;
  border-radius: 0.3125rem 0 0 0.3125rem;
}
.custom-button.prev.disabled {
  display: block !important;
  cursor: initial;
}

.react-multi-carousel-list + .carousel-skip-link.sr-only.focusable:focus {
  top: -35px;
  top: -2.1875rem;
  position: relative;
}

.loading-card-wrapper {
  margin-right: -7px;
  margin-right: -0.4375rem;
  margin-left: -7px;
  margin-left: -0.4375rem;
  display: flex;
}
.loading-card-wrapper .loading-card {
  border-radius: 5px;
  border-radius: 0.3125rem;
  margin-right: 7px;
  margin-right: 0.4375rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
  padding: 30px;
  padding: 1.875rem;
  height: 300px;
  height: 18.75rem;
  width: 100%;
  background: #FFFFFF;
  flex-direction: column;
  display: none;
}
.loading-card-wrapper .loading-card:first-of-type {
  display: flex;
}
@media only screen and (min-width: 40em) {
  .loading-card-wrapper .loading-card:nth-of-type(2) {
    display: flex;
  }
}
@media only screen and (min-width: 77.75em) {
  .loading-card-wrapper .loading-card:nth-of-type(3) {
    display: flex;
  }
}
@media only screen and (min-width: 88.125em) {
  .loading-card-wrapper .loading-card:nth-of-type(4) {
    display: flex;
  }
}
.loading-card-wrapper .loading-card .line {
  height: 20px;
  height: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  border-radius: 5px;
  border-radius: 0.3125rem;
  background-size: 600px;
  background-size: 37.5rem;
  background-image: linear-gradient(90deg, #DDDDDD 0, #E8E8E8 40px, #DDDDDD 80px);
  width: 100%;
  background: #FFFFFF;
  animation: shine-lines 1.6s infinite linear;
}
@keyframes shine-lines {
  0% {
    background-position: -100px;
    background-position: -6.25rem;
  }
  40%, 100% {
    background-position: 240px;
    background-position: 15rem;
  }
}
.loading-card-wrapper .loading-card .line.qtr {
  width: 25%;
}
.loading-card-wrapper .loading-card .line.bottom {
  margin-top: auto;
  margin-bottom: 0;
}

.dsl-bp-wrapper {
  width: 100%;
}
.dsl-bp-wrapper.inline {
  width: auto;
  display: inline-block;
}

.dsl-wrapper {
  overflow: visible;
  position: relative;
}
.dsl-wrapper.debug {
  padding: 2px;
}

.dsl-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.dsl-container.left {
  justify-content: flex-start;
}
.dsl-container.right {
  justify-content: flex-end;
}
.dsl-container.center {
  justify-content: center;
}
.dsl-container.between {
  justify-content: space-between;
}

.dsl-segment {
  border: 0 solid transparent;
  background-clip: padding-box;
  box-sizing: border-box;
  border-width: 0 30px 0 0;
}
.dsl-segment.debug {
  padding: 2px;
  /* Note we can't use border here due to Segment relying
  on the transparent border to emulate the grid gap */
  box-shadow: inset 0 0 0 2px black;
}
.dsl-segment.is-stacked {
  /* Not a fan of important but it allows us to use JS to
   set the width inside of DynamicSubLayout
   specifically when in desktop view */
  width: 100% !important;
  border-width: 0 0 0 0;
}
.dsl-segment.is-mobile {
  border-width: 0 0 30px 0;
}
@media only screen and (min-width: 77.75em) {
  .dsl-segment.is-mobile {
    border-width: 0 60px 0 0;
  }
}
.dsl-segment.is-postcode input {
  width: 140px;
}

.cmp-feature-teaser {
  display: flex;
  flex-direction: column;
  margin: 0 -20px;
  width: calc(100% + 40px);
}
@media only screen and (min-width: 40em) {
  .cmp-feature-teaser {
    margin: 0;
    width: 100%;
    border-radius: 4px;
    border: 1px solid #e1e1de;
    overflow: hidden;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-feature-teaser {
    flex-direction: row-reverse;
    min-height: 350px;
  }
}
@media only screen and (min-width: 40em) and (max-width: 77.6875em) {
  .cmp-feature-teaser {
    margin: 0 0.75rem;
  }
}
.cmp-feature-teaser .cmp-image {
  margin: 0;
}
@media only screen and (min-width: 88.125em) {
  .cmp-feature-teaser .cmp-image {
    width: 50%;
  }
}
.cmp-feature-teaser .cmp-image__image {
  height: 160px;
  width: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 64em) {
  .cmp-feature-teaser .cmp-image__image {
    height: 100%;
    width: 240px;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-feature-teaser .cmp-image__image {
    width: 100%;
  }
}
.cmp-feature-teaser__info {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 1.75rem 0;
}
@media only screen and (min-width: 40em) {
  .cmp-feature-teaser__info {
    padding: 2.25rem 2.5rem;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-feature-teaser__info {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-feature-teaser__info {
    width: 50%;
    padding: 2.75rem 2.5rem;
  }
}
.cmp-feature-teaser__info__pretitle,
.cmp-feature-teaser__info h2 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.25;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
  margin-top: 0;
  margin-bottom: 1.125rem;
}
@media only screen and (min-width: 64em) {
  .cmp-feature-teaser__info__pretitle,
.cmp-feature-teaser__info h2 {
    margin-bottom: 1.75rem;
  }
}
.cmp-feature-teaser__info__description {
  margin-bottom: 1.75rem;
}
.cmp-feature-teaser__info__description p {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.5556;
  font-weight: 300;
  font-size: 1.125rem;
  margin: 0;
}
@media only screen and (min-width: 64em) {
  .cmp-feature-teaser__info__description {
    margin-bottom: 2.25rem;
  }
}
.cmp-feature-teaser__action-container {
  display: flex;
  flex-direction: column;
}
.cmp-feature-teaser__action-link {
  width: 100%;
}
.cmp-feature-teaser__action-link:not(:last-of-type) {
  margin-bottom: 28px;
}

.feedback-poll {
  display: flex;
  flex-flow: column nowrap;
  transition: height 1.25s;
}
@media only screen and (min-width: 40em) {
  .feedback-poll {
    flex-flow: row nowrap;
    width: 100%;
    min-height: 9rem;
  }
}
.feedback-poll > * {
  margin: auto;
  text-align: center;
}
@media (max-width: 47.9375em) {
  .feedback-poll button {
    margin: 0 auto 0 auto;
  }
  .feedback-poll button + button {
    margin: 10px auto 0 auto;
  }
}
@media only screen and (min-width: 40em) {
  .feedback-poll button {
    margin: 0 20px 0 0;
  }
}

.genre-carousel-container {
  width: 100%;
}
.genre-carousel-container .react-multi-carousel-item {
  height: 370px;
  height: 23.125rem;
}

.genre-carousel-item img {
  border-radius: 5px 5px 0 0;
  border-radius: 0.3125rem 0.3125rem 0 0;
  position: absolute;
  top: 0;
  height: calc(100% - 126px);
  height: calc(100% - 7.875rem);
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 0\0 ) {
  .genre-carousel-item img {
    width: 100%;
    height: auto;
  }
}
.genre-carousel-item .item-box {
  height: 126px;
  height: 7.875rem;
  padding: 20px;
  padding: 1.25rem;
  width: 100%;
  background: #FFFFFF;
  align-self: flex-end;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.genre-carousel-item .item-box .title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  margin-top: 0;
  display: block;
}
.theme-dark .genre-carousel-item .item-box .title {
  color: #FFFFFF;
}
.theme-dark .genre-carousel-item .item-box .title {
  color: #FFFFFF;
}
.genre-carousel-item .item-box .description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  display: block;
}
.theme-dark .genre-carousel-item .item-box .description {
  color: #FFFFFF;
}
.genre-carousel-item .item-box i {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  background-size: 16px;
  background-size: 1rem;
  border-radius: 5px;
  border-radius: 0.3125rem;
  display: block;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  background-position: center;
  background-color: rgba(0, 108, 224, 0.1);
  margin-top: auto;
  transition-property: margin-left;
  transition-duration: 300ms;
}
.genre-carousel-item:hover i, .genre-carousel-item:focus i {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.global-header {
  background-color: #183052;
  box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.3) inset;
  position: relative;
}
.global-header::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 5px;
  top: 0;
  background-image: url("styles/resources/assets/icons/header-top-line-m.svg");
  background-repeat: no-repeat;
  background-color: #0061C8;
  background-position: left center;
}
@media only screen and (min-width: 77.75em) {
  .global-header::after {
    height: 7px;
    background-image: url("styles/resources/assets/icons/header-top-line-d.svg");
  }
}
.global-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 500;
}
@media (max-width: 77.6875em) {
  .global-header .wrapper {
    height: 86px;
    padding-top: 5px;
    flex-direction: row;
  }
}
@media only screen and (min-width: 77.75em) {
  .global-header .wrapper {
    height: 120px;
    flex-direction: row;
  }
}
.global-header .wrapper .nav-onscreen {
  height: 100%;
}
@media only screen and (min-width: 77.75em) {
  .global-header .wrapper .nav-onscreen {
    padding-left: 250px;
  }
}
.global-header .wrapper .site-logo-desktop + .nav-onscreen {
  width: auto;
}
@media only screen and (min-width: 77.75em) {
  .global-header .wrapper .site-logo-desktop + .nav-onscreen {
    padding-left: 40px;
  }
}
.global-header .wrapper .site-logo {
  margin-top: 0;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.global-header a,
.global-header button:not(.cmp-search__clear):not(.reset-button):not(.translation-widget__button) {
  color: #FFFFFF;
  padding: 6px;
}
.global-header a:focus,
.global-header button:not(.cmp-search__clear):not(.reset-button):not(.translation-widget__button):focus {
  outline-color: #FFFFFF;
}
.global-header a:focus h3,
.global-header button:not(.cmp-search__clear):not(.reset-button):not(.translation-widget__button):focus h3 {
  outline: 3px solid #183052;
  outline-offset: 2px;
}
.global-header a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.global-header button {
  background-color: transparent;
  border: none;
}
.global-header .site-logo {
  z-index: 501;
  width: auto;
}
@media (max-width: 77.6875em) {
  .global-header .site-logo {
    display: none;
  }
}
@media only screen and (min-width: 77.75em) {
  .global-header .site-logo {
    height: 50px;
  }
}
.global-header .site-logo img {
  width: auto;
  height: 50px;
}
.global-header .site-logo-desktop {
  flex: 1;
  display: none;
}
@media only screen and (min-width: 77.75em) {
  .global-header .site-logo-desktop {
    display: block;
  }
}
.global-header .site-logo-desktop .site-logo {
  display: inline-block;
  position: relative;
  margin-left: 40px;
  left: 0;
  top: 0;
  height: auto;
  transform: none;
}
.global-header .site-logo-mobile {
  z-index: 501;
  width: auto;
  display: block;
}
@media only screen and (min-width: 77.75em) {
  .global-header .site-logo-mobile {
    display: none;
  }
}
.global-header .site-logo-mobile img {
  width: 95px;
  height: 63px;
}
.global-header.is-static {
  background-color: #000000;
  padding-top: 6px;
  padding-bottom: 6px;
}
@media (max-width: 77.6875em) {
  .global-header.is-static > .wrapper {
    height: 120px;
  }
}
.global-header.is-static > .wrapper .site-logo {
  left: 50%;
  transform: translate(-50%, -50%);
}
.global-header.is-static a {
  margin: 0 auto;
}
.global-header.is-static a.site-logo {
  padding: 0;
}
@media (max-width: 77.6875em) {
  .global-header.is-static a.site-logo {
    display: block;
    height: 80px;
    width: auto;
    margin: 0;
  }
}
@media only screen and (min-width: 77.75em) {
  .global-header.is-static a.site-logo {
    display: block;
    height: 80px;
    width: auto;
    margin: 0;
  }
}
.global-header.is-static a.site-logo img {
  height: 80px;
  width: auto;
}
.global-header.aus-gov {
  background-color: #000000;
  box-shadow: 0 -1px 0 0 rgba(255, 255, 255, 0.2) inset;
}
.global-header.aus-gov .wrapper {
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov .cmp-search {
  background-color: #000000;
}
.global-header.aus-gov .cmp-search__input {
  border-bottom: 1px solid #006CE0;
  box-shadow: none;
}
.global-header.aus-gov .cmp-search__input::placeholder {
  opacity: 0.6;
}
.global-header.aus-gov .cmp-search__item::before {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
}
.global-header.aus-gov .cmp-search__item::after {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
}
.global-header.aus-gov .cmp-search__clear-icon {
  background-image: url("styles/resources/assets/icons/clear.svg");
}
.global-header.aus-gov .cross-icon::before, .global-header.aus-gov .cross-icon::after {
  opacity: 0;
  background-image: url("styles/resources/assets/icons/icon-close.svg");
}
.global-header.aus-gov #nav-offscreen-toggle .hamburger {
  background-color: #006CE0;
}
.global-header.aus-gov #nav-offscreen-toggle .hamburger::after, .global-header.aus-gov #nav-offscreen-toggle .hamburger::before {
  background-color: #006CE0;
}
.global-header.aus-gov .nav-mobile__logo {
  background-color: #000000;
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov #global-search-onscreen {
  background-color: #000000;
  overflow-y: auto;
}
.global-header.aus-gov #global-search-offscreen {
  background-color: #000000;
}
.global-header.aus-gov #global-search-offscreen-toggle {
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov #global-search-offscreen-toggle.is-active {
  background-image: url("styles/resources/assets/icons/arrow-left.svg");
  background-color: #000000;
}
.global-header.aus-gov #global-search-offscreen-toggle.is-active:focus {
  box-shadow: 5px 0 0 0 #006CE0 inset;
}
.global-header.aus-gov #global-search-offscreen-toggle:focus {
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov .nav-onscreen .nav .nav__link.is-active::before {
  background-color: #006CE0;
}
.global-header.aus-gov .nav-onscreen .nav__list.is-open .nav__link::before {
  background-color: #006CE0;
}
.global-header.aus-gov .nav-onscreen .nav__link:hover::before, .global-header.aus-gov .nav-onscreen .nav__link:focus::before {
  background: #006CE0;
}
.global-header.aus-gov .nav-offscreen {
  background-color: #000000;
}
.global-header.aus-gov .nav-offscreen .subnav__link {
  background-color: #000000;
  color: #FFFFFF;
  border-bottom: 1px solid #333333;
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 32px;
}
.global-header.aus-gov .nav-offscreen .nav {
  background-color: #000000;
}
.global-header.aus-gov .nav-offscreen .nav__list {
  border-bottom: none;
}
.global-header.aus-gov .nav-offscreen .nav button:not(.cmp-search__clear):not(.reset-button):focus {
  box-shadow: 5px 0 0 0 #006CE0 inset;
  outline: 0;
}
.global-header.aus-gov .nav-offscreen .nav__link {
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov .nav-offscreen .nav__link:not(#offscreen-services) {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 32px;
}
.global-header.aus-gov .nav-offscreen .nav__link:first-child {
  border-bottom: 1px solid #333333;
}
.global-header.aus-gov .nav-offscreen .nav__link:hover, .global-header.aus-gov .nav-offscreen .nav__link:focus {
  box-shadow: 5px 0 0 0 #006CE0 inset;
  outline-color: transparent;
}

#skip-links {
  margin: 0;
  padding: 0;
  list-style: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
}
#skip-links a:focus {
  color: #006CE0;
  outline-color: #006CE0;
  display: block;
}

.nav-onscreen {
  display: none;
  flex-grow: 1;
  z-index: 500;
}
@media only screen and (min-width: 77.75em) {
  .nav-onscreen {
    display: block;
  }
}
.nav-onscreen .nav {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  height: 100%;
}
.nav-onscreen .nav button.nav__link {
  background: transparent;
  color: #FFFFFF;
  border: none;
}
.nav-onscreen .nav .nav__list {
  display: flex;
  margin: 0 10px;
  min-width: 90px;
}
.nav-onscreen .nav .nav__list .subnav {
  display: none;
}
.nav-onscreen .nav .nav__list .wrapper {
  display: none;
}
.nav-onscreen .nav .nav__list--search-group {
  display: flex;
  height: 100%;
}
.nav-onscreen .nav .nav__list.is-open .wrapper {
  position: absolute;
  display: block;
  top: 100%;
  width: 100%;
  max-width: 1170px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.nav-onscreen .nav .nav__list.is-open .nav__link::before {
  background-color: #FFFFFF;
}
.nav-onscreen .nav .nav__list.is-open .subnav {
  display: flex;
}
.nav-onscreen .nav .nav__link,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button) {
  font-size: 18px;
  position: relative;
}
.nav-onscreen .nav .nav__link::before, .nav-onscreen .nav .nav__link::after,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button)::before,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button)::after {
  content: "";
  position: absolute;
  transition-duration: 150ms;
}
.nav-onscreen .nav .nav__link::before,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button)::before {
  bottom: 0;
  height: 4px;
  transition-property: background-color;
}
.nav-onscreen .nav .nav__link::after,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button)::after {
  top: 12px;
  left: 0;
  width: 100%;
  height: calc(100% - 24px);
  outline: 3px solid transparent;
}
.nav-onscreen .nav .nav__link:hover::before, .nav-onscreen .nav .nav__link:focus::before, .nav-onscreen .nav .nav__link.is-active::before,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button):hover::before,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button):focus::before,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button).is-active::before {
  background-color: #FFFFFF;
}
.nav-onscreen .nav .nav__link:focus,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button):focus {
  outline: none;
}
.nav-onscreen .nav .nav__link:focus::after,
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button):focus::after {
  outline: 3px solid #FFFFFF;
}
.nav-onscreen .nav .nav__link.is-active:not(button),
.nav-onscreen .nav button:not(.cmp-search__clear):not(.reset-button).is-active:not(button) {
  font-weight: 700;
}
.nav-onscreen .nav .nav__link {
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.nav-onscreen .nav .nav__link::before {
  width: 100%;
  left: 0;
}
.nav-onscreen .subnav {
  display: none;
  background: #FFFFFF;
  top: 100%;
  padding: 40px 90px 10px 30px;
  max-width: 1170px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  flex-flow: row wrap;
}
.nav-onscreen .subnav .subnav__list {
  display: block;
  width: 33.33%;
  padding: 0 30px;
}
.nav-onscreen .subnav .subnav__link {
  display: flex;
  flex-direction: column;
}
.nav-onscreen .subnav .subnav__link:hover .subnav__view.link::after, .nav-onscreen .subnav .subnav__link:hover .subnav__view.linked-services__rightInternalLink::after, .nav-onscreen .subnav .subnav__link:focus .subnav__view.link::after, .nav-onscreen .subnav .subnav__link:focus .subnav__view.linked-services__rightInternalLink::after {
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
}
.nav-onscreen .subnav .subnav__link:hover .subnav__heading, .nav-onscreen .subnav .subnav__link:focus .subnav__heading {
  color: #006CE0;
}
.nav-onscreen .subnav .subnav__link:hover .subnav__heading::after, .nav-onscreen .subnav .subnav__link:focus .subnav__heading::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #006CE0;
}
.nav-onscreen .subnav .subnav__heading-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid #DDDDDD;
  margin: 0 0 14px 0;
  padding: 0 0 15px 0;
}
.nav-onscreen .subnav .subnav__heading {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #101820;
  letter-spacing: normal;
}
.nav-onscreen .subnav .subnav__view.link::after, .nav-onscreen .subnav .subnav__view.linked-services__rightInternalLink::after {
  background: url("styles/resources/assets/icons/arrow-right-grey.svg") no-repeat;
}
.nav-onscreen .subnav .subnav__heading {
  color: #101820;
  font-size: 18px;
  position: relative;
  font-weight: normal;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.nav-onscreen .subnav .subnav__para {
  font-family: "Roboto", sans-serif;
  width: 100%;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.57;
  color: #525252;
  margin: 0 0 45px 0;
}

#nav-offscreen-wrapper {
  align-self: center;
  flex: 1;
}

@media only screen and (min-width: 77.75em) {
  #nav-offscreen-wrapper,
#nav-offscreen-toggle,
.nav-offscreen {
    display: none;
  }
}

.nav-mobile-hero {
  background-color: #122848;
}
.nav-mobile-hero a {
  /* adding 5px of the absolutely positioned top bar height */
  padding: 21px 20px 16px;
}
.nav-mobile-hero a img {
  width: auto;
  height: 40px;
}
@media only screen and (min-width: 77.75em) {
  .nav-mobile-hero {
    display: none;
  }
}

#nav-offscreen-toggle {
  color: #FFFFFF;
  background-color: transparent;
  border: 0;
  align-self: center;
  margin-right: auto;
  position: relative;
  flex: 1 1 auto;
  padding: 32px 1px 0 1px;
  font-size: 11px;
}
@media (min-width: 30em) {
  #nav-offscreen-toggle {
    padding: 6px 6px 6px 48px;
    font-size: 1rem;
  }
}
#nav-offscreen-toggle .hamburger {
  position: absolute;
  background-color: #FFFFFF;
  width: 25px;
  height: 3px;
  transition-property: top, width, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  left: 2px;
  top: 6px;
}
@media (min-width: 30em) {
  #nav-offscreen-toggle .hamburger {
    top: auto;
    left: 0;
  }
}
#nav-offscreen-toggle .hamburger::before, #nav-offscreen-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #FFFFFF;
  width: 25px;
  height: 3px;
  transition-property: top, left, transform;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}
#nav-offscreen-toggle .hamburger::before {
  top: 8px;
}
#nav-offscreen-toggle .hamburger::after {
  top: 16px;
}
#nav-offscreen-toggle.is-open .hamburger {
  background-color: transparent;
  width: 0;
}
#nav-offscreen-toggle.is-open .hamburger::before, #nav-offscreen-toggle.is-open .hamburger::after {
  top: 8px;
}
#nav-offscreen-toggle.is-open .hamburger::before {
  transform: rotateZ(45deg);
}
#nav-offscreen-toggle.is-open .hamburger::after {
  transform: rotateZ(-45deg);
}
#nav-offscreen-toggle:focus {
  outline-color: #FFFFFF;
}

.nav-offscreen {
  position: fixed;
  z-index: 1;
  top: auto;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #183052;
  transition-property: height, opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}
.nav-offscreen .nav,
.nav-offscreen .site-logo {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}
.nav-offscreen ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-offscreen button.nav__link {
  display: block;
  width: 100%;
  text-align: left;
}
.nav-offscreen .nav {
  position: relative;
  z-index: 10;
  width: 100vw;
  background-color: #183052;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}
.nav-offscreen .nav .nav__list {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav-offscreen .nav .nav__list.is-open .nav__link::before {
  transform: translateY(-50%);
}
.nav-offscreen .nav .nav__list.is-hidden {
  display: none;
}
.nav-offscreen .nav ul:not(.react-autosuggest__suggestions-list) li:last-child {
  width: 100%;
}
.nav-offscreen .nav .nav__link,
.nav-offscreen .nav button:not(.cmp-search__clear):not(.reset-button) {
  font-size: 22px;
  padding: 28px 32px;
  height: 80px;
  position: relative;
}
.nav-offscreen .nav .nav__link:hover, .nav-offscreen .nav .nav__link:focus,
.nav-offscreen .nav button:not(.cmp-search__clear):not(.reset-button):hover,
.nav-offscreen .nav button:not(.cmp-search__clear):not(.reset-button):focus {
  box-shadow: 5px 0 0 0 #FFFFFF inset;
  outline-color: #FFFFFF;
}
.nav-offscreen .nav .nav__link.is-open {
  font-weight: 700;
  box-shadow: 5px 0 0 0 #006CE0 inset;
}
.nav-offscreen .nav button.nav__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  width: 18px;
  height: 12px;
  background-image: url("styles/resources/assets/icons/chevron-up-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition-property: transform;
  transition-duration: 150ms;
}
.nav-offscreen .nav button.nav__link::before {
  transform: translateY(-50%) rotateZ(-180deg);
}
.nav-offscreen .hide-auth-menu {
  display: none;
}
.nav-offscreen .subnav {
  display: none;
  overflow: hidden;
}
.nav-offscreen .subnav__list {
  background: #FFFFFF;
}
.nav-offscreen .subnav__link {
  padding-left: 32px;
  background: #FFFFFF;
  height: 80px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.22;
  letter-spacing: normal;
  color: #101820;
  border-left: 5px solid transparent;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
}
.nav-offscreen .subnav__link:hover, .nav-offscreen .subnav__link:active, .nav-offscreen .subnav__link:focus {
  font-weight: bold;
  border-left: 5px solid #006CE0;
}
.nav-offscreen .subnav .authenticated {
  padding-left: 28px;
}
.nav-offscreen .subnav .authenticated img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 24px;
  width: 24px;
}
.nav-offscreen .subnav .authenticated span {
  padding-left: 18px;
}
.nav-offscreen .subnav .is-active-auth {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  font-size: 18px;
  background: #E5F1FD;
}
.theme-dark .nav-offscreen .subnav .is-active-auth {
  color: #FFFFFF;
}
.theme-dark .nav-offscreen .subnav .is-active-auth {
  color: #FFFFFF;
}
.nav-offscreen .subnav .is-active-auth img {
  filter: grayscale(1);
}
.nav-offscreen .is-open .subnav {
  display: block;
}
.nav-offscreen .site-logo {
  display: block;
  margin-bottom: 50px;
}
.nav-offscreen .site-logo:focus {
  outline-color: #FFFFFF;
}
.nav-offscreen:target, .nav-offscreen.is-open {
  height: calc(100vh - 80px);
  overflow-y: auto;
  margin-top: 17px;
}
@media (min-width: 30em) {
  .nav-offscreen:target, .nav-offscreen.is-open {
    margin-top: 25px;
  }
}
.nav-offscreen:target .nav,
.nav-offscreen:target .site-logo, .nav-offscreen.is-open .nav,
.nav-offscreen.is-open .site-logo {
  visibility: visible;
  opacity: 1;
}
.nav-offscreen .search-active {
  display: none;
}

.cmp-search__field {
  height: auto;
  position: relative;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cmp-search__loading-indicator {
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
}
.cmp-search__spinner {
  display: inline-block;
  border: none;
  border-radius: 0;
  background-image: url("styles/resources/assets/icons/spinner-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  animation: spin 3s infinite;
  animation-timing-function: linear;
}
.cmp-search__btn-close::before, .cmp-search__btn-close::after {
  content: "";
  position: absolute;
  right: 50%;
  margin-right: -1px;
  background-color: #FFFFFF;
  width: 2px;
}
.cmp-search__btn-close::before {
  transform: rotate(45deg);
}
.cmp-search__btn-close::after {
  transform: rotate(-45deg);
}
.cmp-search__input {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  width: 100%;
  color: #FFFFFF;
  background: none;
  border: none;
  border-bottom: 2px solid #2B78E3;
  transition-property: box-shadow;
  transition-duration: 150ms;
}
.cmp-search__input::placeholder {
  color: #FFFFFF;
  text-transform: none;
}
.cmp-search__input[aria-expanded=true], .cmp-search__input:focus {
  outline: 3px solid #2B78E3;
  border-bottom: 1px solid #2B78E3;
}
.cmp-search__input::-ms-clear {
  display: none;
}
.cmp-search__clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #FFFFFF;
  font-weight: 700;
  padding: 0;
}
.cmp-search__clear:focus {
  outline: 3px solid #FFFFFF;
}
.cmp-search__clear-icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: auto;
  right: auto;
  margin-left: 10px;
  background-image: url("styles/resources/assets/icons/clear-white.svg");
  background-size: contain;
}
.cmp-search__results {
  margin: 0;
  padding: 0;
  list-style: none;
  height: auto;
  border: none;
  margin-bottom: 150px;
  max-height: none;
  overflow-y: visible;
}
@media only screen and (min-width: 64em) {
  .cmp-search__results {
    padding-left: 40px;
    max-height: 22rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-search__results {
    max-height: 30rem;
  }
}
.cmp-search__item {
  position: relative;
}
@media only screen and (min-width: 64em) {
  .cmp-search__item::before, .cmp-search__item::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 14px;
    transition-property: opacity, right;
    transition-duration: 150ms;
  }
}
.cmp-search__item::after {
  opacity: 0;
}
.cmp-search__item:hover, .cmp-search__item:focus, .cmp-search__item.cmp-search__item--is-focused {
  outline: none;
  text-decoration: none;
  background-color: transparent;
  border: solid 0.5px #FFFFFF;
}
.cmp-search__item:hover::before, .cmp-search__item:focus::before, .cmp-search__item.cmp-search__item--is-focused::before {
  opacity: 0;
}
.cmp-search__item:hover::after, .cmp-search__item:focus::after, .cmp-search__item.cmp-search__item--is-focused::after {
  opacity: 1;
}
.cmp-search__item-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #FFFFFF;
  text-decoration: underline;
}
.theme-dark .cmp-search__item-title {
  color: #FFFFFF;
}
.cmp-search__item-mark {
  color: inherit;
  background-color: transparent;
}
.cmp-search__alert {
  position: relative;
}
.cmp-search__alert__image {
  position: absolute;
  top: 13px;
  width: 24px;
  height: 26px;
  background-image: url("styles/resources/assets/icons/icon-info-white.svg");
  background-repeat: no-repeat;
  transition-property: transform;
}
.cmp-search__alert__message {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #FFFFFF;
  padding-left: 38px;
}
.theme-dark .cmp-search__alert__message {
  color: #FFFFFF;
}

.global-header .cmp-search__results {
  background-color: transparent;
  padding-top: 30px;
}
.global-header .cmp-search__results li {
  padding: 10px 0;
}
.global-header .cmp-search__item {
  font-size: 20px;
  padding: 0;
  display: inline-block;
  box-shadow: 0 -2px 0 0 transparent inset;
  transition-property: box-shadow;
  transition-duration: 150ms;
}
.global-header .cmp-search__item::before, .global-header .cmp-search__item::after {
  right: -31px;
}
.global-header .cmp-search__item::before {
  background-image: url("styles/resources/assets/icons/arrow-right-grey.svg");
}
.global-header .cmp-search__item::after {
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
}
.global-header .cmp-search__item:hover::before, .global-header .cmp-search__item:hover::after, .global-header .cmp-search__item:focus::before, .global-header .cmp-search__item:focus::after, .global-header .cmp-search__item.cmp-search__item--is-focused::before, .global-header .cmp-search__item.cmp-search__item--is-focused::after {
  right: -36px;
}

body.is-open {
  overflow-y: hidden;
  position: fixed;
  height: 100vh;
  width: 100%;
}

#global-search-onscreen-toggle {
  padding-left: 34px;
  position: relative;
}
#global-search-onscreen-toggle::before {
  left: 6px;
  width: calc(100% - 12px);
}
#global-search-onscreen-toggle .search-icon,
#global-search-onscreen-toggle .cross-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 6px;
  width: 16px;
  height: 16px;
}
#global-search-onscreen-toggle .search-icon::before, #global-search-onscreen-toggle .search-icon::after,
#global-search-onscreen-toggle .cross-icon::before,
#global-search-onscreen-toggle .cross-icon::after {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  min-width: 16px;
  min-width: 1rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transform: rotateZ(0deg);
  transform-origin: center center;
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  background-size: contain;
}
#global-search-onscreen-toggle .search-icon::after {
  background-image: url("styles/resources/assets/icons/search.svg");
}
#global-search-onscreen-toggle .cross-icon::before, #global-search-onscreen-toggle .cross-icon::after {
  opacity: 0;
  background-image: url("styles/resources/assets/icons/icon-close-white.svg");
}
.is-open #global-search-onscreen-toggle {
  font-weight: 400;
}
.is-open #global-search-onscreen-toggle span::before, .is-open #global-search-onscreen-toggle span::after {
  transform: rotateZ(90deg);
}
.is-open #global-search-onscreen-toggle span::before {
  opacity: 0;
}
.is-open #global-search-onscreen-toggle span::after {
  opacity: 1;
}

#nav-onscreen .cmp-search--header {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  width: 100%;
  height: calc(100vh - 120px);
  background-color: #183052;
  position: absolute;
  top: 120px;
  left: 0;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 700;
}
@media (prefers-reduced-motion: reduce) {
  #nav-onscreen .cmp-search--header {
    transition: none;
  }
}
#nav-onscreen .cmp-search {
  max-width: 1244px;
  margin: 88px auto 0;
  visibility: hidden;
}
@media only screen and (min-width: 64em) {
  #nav-onscreen .cmp-search {
    padding: 0 40px;
  }
}
#nav-onscreen .is-open .cmp-search--header {
  opacity: 1;
  pointer-events: auto;
}
#nav-onscreen .is-open .cmp-search {
  visibility: visible;
}
#nav-onscreen .cmp-search__icon {
  display: none;
}
#nav-onscreen .cmp-search__spinner {
  width: 40px;
  height: 40px;
  margin-top: -20px;
}
#nav-onscreen .cmp-search__btn-close::before, #nav-onscreen .cmp-search__btn-close::after {
  height: 20px;
  margin-top: -10px;
}
#nav-onscreen .cmp-search__input {
  font-size: 72px;
  padding-right: 110px;
  padding-bottom: 10px;
  padding-left: 10px;
}
#nav-onscreen .cmp-search__input::placeholder {
  color: #A0A0A3;
}
#nav-onscreen .cmp-search__clear {
  font-size: 16px;
  right: 20px;
}
#nav-onscreen .cmp-search__clear:focus {
  outline: 3px solid #FFFFFF;
}
#nav-onscreen .cmp-search__clear-icon {
  width: 40px;
  height: 40px;
}
#nav-onscreen .cmp-search__results {
  background-color: transparent;
  padding-top: 30px;
  /* for ipad landscape */
}
@media only screen and (max-height: 48em) {
  #nav-onscreen .cmp-search__results {
    padding-bottom: 80px;
  }
}
#nav-onscreen .cmp-search__results li {
  padding: 10px 0;
}

#global-search-offscreen-wrapper {
  margin-bottom: 50px;
  border-bottom: none;
  height: 100vh;
}

#global-search-offscreen-toggle {
  border: none;
  background-color: transparent;
  width: 100%;
  text-align: left;
  background-image: url("styles/resources/assets/icons/search.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 70px;
}
#global-search-offscreen-toggle.is-active {
  top: 0;
  background-image: url("styles/resources/assets/icons/arrow-left-white.svg");
  background-size: 16px 14px;
  background-repeat: no-repeat;
  background-position: center left 20px;
  background-color: #183052;
  padding-left: 46px;
  margin-bottom: 0;
}
#global-search-offscreen-toggle.is-active:not(:focus) {
  box-shadow: none;
}

#global-search-offscreen {
  left: 0;
  width: 100vw;
  height: auto;
  background-color: #183052;
  z-index: 1;
  opacity: 0;
  transition-property: opacity, height;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  overflow-y: hidden;
  overflow-x: auto;
}
#global-search-offscreen .cmp-search {
  visibility: hidden;
}
#global-search-offscreen .cmp-search__form {
  padding: 0 20px;
}
#global-search-offscreen .cmp-search__results {
  padding: 0 20px 80px;
}
#global-search-offscreen .cmp-search__icon {
  display: none;
}
#global-search-offscreen .cmp-search__spinner {
  width: 24px;
  height: 24px;
  margin-top: -12px;
}
#global-search-offscreen .cmp-search__btn-close::before, #global-search-offscreen .cmp-search__btn-close::after {
  height: 15px;
  margin-top: -6px;
}
#global-search-offscreen .cmp-search__input {
  font-size: 36px;
  padding: 5px 88px 5px 10px;
}
#global-search-offscreen .cmp-search__input::placeholder {
  color: #A0A0A3;
}
#global-search-offscreen .cmp-search__clear {
  right: 19px;
}
#global-search-offscreen .cmp-search__clear-icon {
  width: 24px;
  height: 24px;
}
#global-search-offscreen-toggle.is-active + #global-search-offscreen {
  opacity: 1;
}
#global-search-offscreen-toggle.is-active + #global-search-offscreen .cmp-search {
  visibility: visible;
  padding: 40px 0 20px;
}

.login-container {
  position: relative;
  flex: 1;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
}
@media only screen and (min-width: 64em) {
  .login-container {
    display: flex;
  }
}
.login-container a {
  text-decoration: none;
}
.login-container #user-banner {
  flex-flow: row;
  left: 0;
  border: none;
}
.login-container #user-banner .no-initials {
  display: none;
}
.login-container a#user-banner {
  margin-left: 10px;
  margin-left: 0.625rem;
  padding: 0;
}

#user-banner {
  position: relative;
  display: block;
}
#user-banner p {
  margin: 0;
  font-size: 11px;
}
@media (min-width: 30em) {
  #user-banner p {
    font-size: 1rem;
  }
}
@media only screen and (min-width: 64em) {
  #user-banner {
    margin-left: 10px;
    margin-left: 0.625rem;
  }
}
@media only screen and (min-width: 77.75em) {
  #user-banner {
    margin-left: 20px;
    margin-left: 1.25rem;
  }
}
@media (min-width: 30em) {
  #user-banner {
    display: flex;
    align-items: center;
  }
}
#user-banner .user-img,
#user-banner .initials {
  display: block;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  margin: 0 auto;
}
@media (min-width: 30em) {
  #user-banner .user-img,
#user-banner .initials {
    margin: unset;
  }
}
@media (min-width: 30em) and (max-width: 88.0625em) {
  #user-banner .user-img,
#user-banner .initials {
    width: 39px;
    height: 39px;
  }
}
@media only screen and (min-width: 77.75em) {
  #user-banner .user-img,
#user-banner .initials {
    width: 60px;
    height: 60px;
  }
}
#user-banner .user-img.is-sign-in {
  width: 28px;
  height: 28px;
  flex: none;
}
#user-banner .user-img.is-sign-in + .user-text {
  text-align: right;
  margin-left: 0;
}
@media only screen and (min-width: 77.75em) {
  #user-banner .user-img.is-sign-in + .user-text {
    text-align: left;
    padding-right: 0;
  }
  #user-banner .user-img.is-sign-in + .user-text span {
    width: auto;
    min-width: auto;
    margin: 0;
    padding-right: 15px;
    padding-left: 20px;
  }
}
#user-banner .user-img.is-sign-in + .user-text::before {
  right: 0;
  top: 3px;
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#user-banner .user-img.no-initials + .user-text {
  width: auto;
}
#user-banner .initials {
  background-color: #99E1F3;
  text-align: center;
  color: #183052;
  font-weight: 600;
  line-height: 36px;
  font-size: 16px;
  width: 36px;
  height: 36px;
}
@media (min-width: 30em) and (max-width: 88.0625em) {
  #user-banner .initials {
    line-height: 36px;
    font-size: 16px;
    width: 36px;
    height: 36px;
  }
}
@media only screen and (min-width: 77.75em) {
  #user-banner .initials {
    line-height: 40px;
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
}
#user-banner .user-text {
  position: relative;
}
#user-banner .user-text::before {
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  min-width: 16px;
  min-width: 1rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 5px;
  top: 0.3125rem;
  width: 16px;
  width: 1rem;
  height: 14px;
  height: 0.875rem;
  content: "";
  position: absolute;
  right: 0;
  background-image: url("styles/resources/assets/icons/chevron-down-black.svg");
  background-size: contain;
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
  display: inline-block;
}
#user-banner.is-open .user-text::before {
  transform: rotate(180deg);
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
}
#user-banner > span {
  font-weight: 500;
  text-align: right;
  font-size: 16px;
  padding-right: 10px;
}
@media only screen and (min-width: 77.75em) {
  #user-banner > span {
    padding-right: 0;
    text-align: left;
  }
}
#user-banner:focus:not(.sign-in--unauth) {
  outline: 2px solid #000000;
  outline-offset: 5px;
}

.user-text {
  align-self: center;
  width: 100%;
  height: 1rem;
}
@media (min-width: 30em) {
  .user-text {
    margin-left: 10px;
    height: auto;
  }
}
.user-text span,
.user-text a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  color: #000000;
  position: relative;
  font-weight: 500;
  font-size: 11px;
}
.theme-dark .user-text span,
.theme-dark .user-text a {
  color: #FFFFFF;
}
.theme-dark .user-text span,
.theme-dark .user-text a {
  color: #FFFFFF;
}
@media (min-width: 30em) {
  .user-text span,
.user-text a {
    font-size: 1rem;
  }
}
@media (min-width: 30em) and (max-width: 77.6875em) {
  .user-text span,
.user-text a {
    padding-right: 0;
  }
}
@media only screen and (min-width: 64em) {
  .user-text span,
.user-text a {
    padding-right: 15px;
    padding-right: 0.9375rem;
    min-width: 105px;
    min-width: 6.5625rem;
    margin-right: 5px;
    margin-right: 0.3125rem;
    display: block;
  }
}
@media only screen and (min-width: 77.75em) {
  .user-text span,
.user-text a {
    margin: 0;
  }
}

.drop-down {
  min-width: 160px;
  position: relative;
  padding-right: 32px;
  bottom: -7px;
  display: none;
  right: 0;
  z-index: 701;
}
@media only screen and (min-width: 64em) {
  .drop-down {
    display: flex;
  }
}
@media only screen and (min-width: 77.75em) {
  .drop-down {
    display: flex;
    min-width: 200px;
  }
}
.drop-down ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding: 0;
  position: absolute;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
  width: 233px;
  left: -37px;
}
.drop-down__item {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: normal;
  color: #101820;
  display: flex;
  position: relative;
  background: #FFFFFF;
  border: 1px solid transparent;
  min-height: 46px;
  width: 100%;
  text-align: left;
  text-decoration: none;
  transition: background 150ms;
}
.drop-down__item:hover {
  cursor: pointer;
  background: #ccf0f9;
}
.drop-down__item:hover a {
  text-decoration: none;
}
.drop-down__item:focus {
  cursor: pointer;
  background: #99e1f3;
}
.drop-down__item a {
  padding: 14px 14px;
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  flex-basis: 1 1 0;
  width: 100%;
  align-items: flex-start;
}
@media only screen and (min-width: 64em) and (max-width: 88.0625em) {
  .drop-down__item a {
    padding: 10px 10px;
  }
}
.drop-down__item a .image-filter, .drop-down__item a .image-filter-svg, .drop-down__item a img {
  width: 24px;
  height: 24px;
}
.drop-down__item a .image-filter img {
  width: 24px;
  height: 24px;
}
.drop-down__item a span {
  margin-left: 26px;
  display: block;
  position: relative;
  width: 100%;
  align-self: center;
  line-height: 25px;
  color: #000;
}
.drop-down__item:last-child {
  border-top: 1px solid #DDDDDD;
  margin-top: 10px;
}
.drop-down__item:last-child a .image-filter {
  margin: 2px 0 0 2px;
}
.drop-down__item:last-child a .image-filter img {
  width: 24px;
  height: 20px;
}
.drop-down__active {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  background: #99e1f3;
}
.theme-dark .drop-down__active {
  color: #FFFFFF;
}
.theme-dark .drop-down__active {
  color: #FFFFFF;
}
.drop-down__active a {
  font-weight: 700;
}
.drop-down__active img {
  filter: grayscale(1);
}

.login-loader {
  border: 3px solid #FFFFFF;
  border-top: 3px solid #006CE0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
}

.user-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 77.75em) {
  .user-container .login-container {
    flex: 0;
  }
}
.user-container .login-container .drop-down {
  display: block;
  position: absolute;
  min-width: 200px;
  z-index: 701;
}

@media only screen and (min-width: 64em) {
  .no-initials-min-width {
    margin-left: -48px;
  }
}
@media only screen and (min-width: 77.75em) {
  .no-initials-min-width {
    margin-left: -24px;
  }
}
@media only screen and (min-width: 64em) {
  .no-initials-min-width .drop-down {
    margin-left: -48px;
  }
}
@media only screen and (min-width: 77.75em) {
  .no-initials-min-width .drop-down {
    min-width: 160px;
    margin-left: -84px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sign-in-wrapper {
  display: flex;
}

/** Credit https://flexboxgrid.com with rewrites */
.flex-col {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.flex-col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-col-gutter-lr {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
.flex-col-no-gutter {
  padding: 0;
}

.flex-row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-left: -0.75rem;
  margin-right: -12px;
  margin-right: -0.75rem;
}
.flex-row [class^=flex-col],
.flex-row [class*=flex-col],
.flex-row .flex-col-gutter-lr {
  padding-left: 12px;
  padding-left: 0.75rem;
  padding-right: 12px;
  padding-right: 0.75rem;
}
.flex-row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-row.natural-height {
  align-items: flex-start;
}
.flex-row.flex-column {
  flex-direction: column;
}
.flex-row.gutters-sm {
  margin-left: -6px;
  margin-left: -0.375rem;
  margin-right: -6px;
  margin-right: -0.375rem;
}
.flex-row.gutters-sm [class^=flex-col],
.flex-row.gutters-sm [class*=flex-col],
.flex-row.gutters-sm .flex-col-gutter-lr {
  padding-left: 6px;
  padding-left: 0.375rem;
  padding-right: 6px;
  padding-right: 0.375rem;
}
.flex-row.gutters-lg {
  margin-left: -24px;
  margin-left: -1.5rem;
  margin-right: -24px;
  margin-right: -1.5rem;
}
.flex-row.gutters-lg [class^=flex-col],
.flex-row.gutters-lg [class*=flex-col],
.flex-row.gutters-lg .flex-col-gutter-lr {
  padding-left: 24px;
  padding-left: 1.5rem;
  padding-right: 24px;
  padding-right: 1.5rem;
}
.flex-row.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.first {
  order: -1;
}

.last {
  order: 1;
}

.align-start {
  align-self: flex-start;
}

.align-end {
  align-self: flex-end;
}

.align-center {
  align-self: center;
}

.align-baseline {
  align-self: baseline;
}

.align-stretch {
  align-self: stretch;
}

.flex-col-xs {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

.flex-col-xs-1 {
  box-sizing: border-box;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

.flex-col-xs-offset-1 {
  margin-left: 8.3333333333%;
}

.flex-col-xs-2 {
  box-sizing: border-box;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

.flex-col-xs-offset-2 {
  margin-left: 16.6666666667%;
}

.flex-col-xs-3 {
  box-sizing: border-box;
  flex-basis: 25%;
  max-width: 25%;
}

.flex-col-xs-offset-3 {
  margin-left: 25%;
}

.flex-col-xs-4 {
  box-sizing: border-box;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

.flex-col-xs-offset-4 {
  margin-left: 33.3333333333%;
}

.flex-col-xs-5 {
  box-sizing: border-box;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

.flex-col-xs-offset-5 {
  margin-left: 41.6666666667%;
}

.flex-col-xs-6 {
  box-sizing: border-box;
  flex-basis: 50%;
  max-width: 50%;
}

.flex-col-xs-offset-6 {
  margin-left: 50%;
}

.flex-col-xs-7 {
  box-sizing: border-box;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

.flex-col-xs-offset-7 {
  margin-left: 58.3333333333%;
}

.flex-col-xs-8 {
  box-sizing: border-box;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

.flex-col-xs-offset-8 {
  margin-left: 66.6666666667%;
}

.flex-col-xs-9 {
  box-sizing: border-box;
  flex-basis: 75%;
  max-width: 75%;
}

.flex-col-xs-offset-9 {
  margin-left: 75%;
}

.flex-col-xs-10 {
  box-sizing: border-box;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

.flex-col-xs-offset-10 {
  margin-left: 83.3333333333%;
}

.flex-col-xs-11 {
  box-sizing: border-box;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

.flex-col-xs-offset-11 {
  margin-left: 91.6666666667%;
}

.flex-col-xs-12 {
  box-sizing: border-box;
  flex-basis: 100%;
  max-width: 100%;
}

.flex-col-xs-offset-12 {
  margin-left: 100%;
}

.flex-row.start-xs {
  justify-content: flex-start;
}

.flex-row.center-xs {
  justify-content: center;
}

.flex-row.end-xs {
  justify-content: flex-end;
}

.flex-row.top-xs {
  align-items: flex-start;
}

.flex-row.middle-xs {
  align-items: center;
}

.flex-row.bottom-xs {
  align-items: flex-end;
}

.flex-row.around-xs {
  justify-content: space-around;
}

.flex-row.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  order: 1;
}

@media only screen and (min-width: 40em) {
  .flex-col-sm {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .flex-col-sm-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .flex-col-sm-offset-1 {
    margin-left: 8.3333333333%;
  }

  .flex-col-sm-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .flex-col-sm-offset-2 {
    margin-left: 16.6666666667%;
  }

  .flex-col-sm-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
  }

  .flex-col-sm-offset-3 {
    margin-left: 25%;
  }

  .flex-col-sm-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .flex-col-sm-offset-4 {
    margin-left: 33.3333333333%;
  }

  .flex-col-sm-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .flex-col-sm-offset-5 {
    margin-left: 41.6666666667%;
  }

  .flex-col-sm-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
  }

  .flex-col-sm-offset-6 {
    margin-left: 50%;
  }

  .flex-col-sm-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .flex-col-sm-offset-7 {
    margin-left: 58.3333333333%;
  }

  .flex-col-sm-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .flex-col-sm-offset-8 {
    margin-left: 66.6666666667%;
  }

  .flex-col-sm-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
  }

  .flex-col-sm-offset-9 {
    margin-left: 75%;
  }

  .flex-col-sm-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .flex-col-sm-offset-10 {
    margin-left: 83.3333333333%;
  }

  .flex-col-sm-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .flex-col-sm-offset-11 {
    margin-left: 91.6666666667%;
  }

  .flex-col-sm-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
  }

  .flex-col-sm-offset-12 {
    margin-left: 100%;
  }

  .flex-row.start-sm {
    justify-content: flex-start;
  }

  .flex-row.center-sm {
    justify-content: center;
  }

  .flex-row.end-sm {
    justify-content: flex-end;
  }

  .flex-row.top-sm {
    align-items: flex-start;
  }

  .flex-row.middle-sm {
    align-items: center;
  }

  .flex-row.bottom-sm {
    align-items: flex-end;
  }

  .flex-row.around-sm {
    justify-content: space-around;
  }

  .flex-row.between-sm {
    justify-content: space-between;
  }

  .first-sm {
    order: -1;
  }

  .last-sm {
    order: 1;
  }
}
@media only screen and (min-width: 48em) {
  .flex-col-md {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .flex-col-md-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .flex-col-md-offset-1 {
    margin-left: 8.3333333333%;
  }

  .flex-col-md-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .flex-col-md-offset-2 {
    margin-left: 16.6666666667%;
  }

  .flex-col-md-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
  }

  .flex-col-md-offset-3 {
    margin-left: 25%;
  }

  .flex-col-md-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .flex-col-md-offset-4 {
    margin-left: 33.3333333333%;
  }

  .flex-col-md-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .flex-col-md-offset-5 {
    margin-left: 41.6666666667%;
  }

  .flex-col-md-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
  }

  .flex-col-md-offset-6 {
    margin-left: 50%;
  }

  .flex-col-md-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .flex-col-md-offset-7 {
    margin-left: 58.3333333333%;
  }

  .flex-col-md-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .flex-col-md-offset-8 {
    margin-left: 66.6666666667%;
  }

  .flex-col-md-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
  }

  .flex-col-md-offset-9 {
    margin-left: 75%;
  }

  .flex-col-md-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .flex-col-md-offset-10 {
    margin-left: 83.3333333333%;
  }

  .flex-col-md-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .flex-col-md-offset-11 {
    margin-left: 91.6666666667%;
  }

  .flex-col-md-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
  }

  .flex-col-md-offset-12 {
    margin-left: 100%;
  }

  .flex-row.start-md {
    justify-content: flex-start;
  }

  .flex-row.center-md {
    justify-content: center;
  }

  .flex-row.end-md {
    justify-content: flex-end;
  }

  .flex-row.top-md {
    align-items: flex-start;
  }

  .flex-row.middle-md {
    align-items: center;
  }

  .flex-row.bottom-md {
    align-items: flex-end;
  }

  .flex-row.around-md {
    justify-content: space-around;
  }

  .flex-row.between-md {
    justify-content: space-between;
  }

  .first-md {
    order: -1;
  }

  .last-md {
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .flex-col-lg {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .flex-col-lg-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .flex-col-lg-offset-1 {
    margin-left: 8.3333333333%;
  }

  .flex-col-lg-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .flex-col-lg-offset-2 {
    margin-left: 16.6666666667%;
  }

  .flex-col-lg-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
  }

  .flex-col-lg-offset-3 {
    margin-left: 25%;
  }

  .flex-col-lg-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .flex-col-lg-offset-4 {
    margin-left: 33.3333333333%;
  }

  .flex-col-lg-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .flex-col-lg-offset-5 {
    margin-left: 41.6666666667%;
  }

  .flex-col-lg-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
  }

  .flex-col-lg-offset-6 {
    margin-left: 50%;
  }

  .flex-col-lg-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .flex-col-lg-offset-7 {
    margin-left: 58.3333333333%;
  }

  .flex-col-lg-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .flex-col-lg-offset-8 {
    margin-left: 66.6666666667%;
  }

  .flex-col-lg-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
  }

  .flex-col-lg-offset-9 {
    margin-left: 75%;
  }

  .flex-col-lg-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .flex-col-lg-offset-10 {
    margin-left: 83.3333333333%;
  }

  .flex-col-lg-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .flex-col-lg-offset-11 {
    margin-left: 91.6666666667%;
  }

  .flex-col-lg-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
  }

  .flex-col-lg-offset-12 {
    margin-left: 100%;
  }

  .flex-row.start-lg {
    justify-content: flex-start;
  }

  .flex-row.center-lg {
    justify-content: center;
  }

  .flex-row.end-lg {
    justify-content: flex-end;
  }

  .flex-row.top-lg {
    align-items: flex-start;
  }

  .flex-row.middle-lg {
    align-items: center;
  }

  .flex-row.bottom-lg {
    align-items: flex-end;
  }

  .flex-row.around-lg {
    justify-content: space-around;
  }

  .flex-row.between-lg {
    justify-content: space-between;
  }

  .first-lg {
    order: -1;
  }

  .last-lg {
    order: 1;
  }
}
@media only screen and (min-width: 77.75em) {
  .flex-col-xl {
    box-sizing: border-box;
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }

  .flex-col-xl-1 {
    box-sizing: border-box;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .flex-col-xl-offset-1 {
    margin-left: 8.3333333333%;
  }

  .flex-col-xl-2 {
    box-sizing: border-box;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .flex-col-xl-offset-2 {
    margin-left: 16.6666666667%;
  }

  .flex-col-xl-3 {
    box-sizing: border-box;
    flex-basis: 25%;
    max-width: 25%;
  }

  .flex-col-xl-offset-3 {
    margin-left: 25%;
  }

  .flex-col-xl-4 {
    box-sizing: border-box;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .flex-col-xl-offset-4 {
    margin-left: 33.3333333333%;
  }

  .flex-col-xl-5 {
    box-sizing: border-box;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .flex-col-xl-offset-5 {
    margin-left: 41.6666666667%;
  }

  .flex-col-xl-6 {
    box-sizing: border-box;
    flex-basis: 50%;
    max-width: 50%;
  }

  .flex-col-xl-offset-6 {
    margin-left: 50%;
  }

  .flex-col-xl-7 {
    box-sizing: border-box;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .flex-col-xl-offset-7 {
    margin-left: 58.3333333333%;
  }

  .flex-col-xl-8 {
    box-sizing: border-box;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .flex-col-xl-offset-8 {
    margin-left: 66.6666666667%;
  }

  .flex-col-xl-9 {
    box-sizing: border-box;
    flex-basis: 75%;
    max-width: 75%;
  }

  .flex-col-xl-offset-9 {
    margin-left: 75%;
  }

  .flex-col-xl-10 {
    box-sizing: border-box;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .flex-col-xl-offset-10 {
    margin-left: 83.3333333333%;
  }

  .flex-col-xl-11 {
    box-sizing: border-box;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .flex-col-xl-offset-11 {
    margin-left: 91.6666666667%;
  }

  .flex-col-xl-12 {
    box-sizing: border-box;
    flex-basis: 100%;
    max-width: 100%;
  }

  .flex-col-xl-offset-12 {
    margin-left: 100%;
  }

  .flex-row.start-xl {
    justify-content: flex-start;
  }

  .flex-row.center-xl {
    justify-content: center;
  }

  .flex-row.end-xl {
    justify-content: flex-end;
  }

  .flex-row.top-xl {
    align-items: flex-start;
  }

  .flex-row.middle-xl {
    align-items: center;
  }

  .flex-row.bottom-xl {
    align-items: flex-end;
  }

  .flex-row.around-xl {
    justify-content: space-around;
  }

  .flex-row.between-xl {
    justify-content: space-between;
  }

  .first-xl {
    order: -1;
  }

  .last-xl {
    order: 1;
  }
}
.show {
  display: block !important;
}

.row.show {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide {
  display: none !important;
}

.show-xs {
  display: block !important;
}

.flex-row.show-xs {
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hide-xs {
  display: none !important;
}

@media only screen and (max-width: 39.9375em) {
  .show-xs-only {
    display: block !important;
  }

  .flex-row.show-xs-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xs-only {
    display: none !important;
  }
}
@media only screen and (min-width: 40em) {
  .show-sm {
    display: block !important;
  }

  .flex-row.show-sm {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm {
    display: none !important;
  }
}
@media only screen and (min-width: 40em) and (max-width: 63.9375em) {
  .show-sm-only {
    display: block !important;
  }

  .flex-row.show-sm-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-sm-only {
    display: none !important;
  }
}
@media only screen and (min-width: 48em) {
  .show-md {
    display: block !important;
  }

  .flex-row.show-md {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md {
    display: none !important;
  }
}
@media only screen and (min-width: 48em) and (max-width: 77.6875em) {
  .show-md-only {
    display: block !important;
  }

  .flex-row.show-md-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-md-only {
    display: none !important;
  }
}
@media only screen and (min-width: 64em) {
  .show-lg {
    display: block !important;
  }

  .flex-row.show-lg {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg {
    display: none !important;
  }
}
@media only screen and (min-width: 64em) and (max-width: 88.0625em) {
  .show-lg-only {
    display: block !important;
  }

  .flex-row.show-lg-only {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-lg-only {
    display: none !important;
  }
}
@media only screen and (min-width: 77.75em) {
  .show-xl {
    display: block !important;
  }

  .flex-row.show-xl {
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .hide-xl {
    display: none !important;
  }
}
.cmp-custom-header {
  display: flex;
  justify-content: center;
  background: #66D3EE;
}
.cmp-custom-header__content {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 16px 20px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 64em) {
  .cmp-custom-header__content {
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-custom-header__content {
    width: 1024px;
    width: 64rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-custom-header__content {
    width: 1244px;
    width: 77.75rem;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-custom-header__content {
    width: 1360px;
    width: 85rem;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-custom-header__content {
    padding: 50px 40px;
    padding: 3.125rem 2.5rem;
  }
}
.cmp-custom-header__logo-container {
  display: flex;
  align-items: center;
  flex: 1;
  height: 100%;
  max-width: 174px;
  margin-right: 32px;
}
.cmp-custom-header__logo-container a {
  display: inline-flex;
  width: 100%;
}
.cmp-custom-header__logo-container a:focus {
  outline: 2px solid #000000;
  outline-offset: 4px;
}
.cmp-custom-header__logo-container img {
  width: 100%;
}
.cmp-custom-header__logo-container img#mobile-logo {
  display: block;
}
.cmp-custom-header__logo-container img#desktop-logo {
  display: none;
}
.cmp-custom-header__link-container {
  display: flex;
  flex-direction: column;
  align-self: center;
}
.cmp-custom-header__link-container-upper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cmp-custom-header__link-container-lower {
  display: none;
  justify-content: flex-end;
}
.cmp-custom-header__list-upper {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
.cmp-custom-header__list-upper li a:hover::before, .cmp-custom-header__list-upper .cmp-custom-header__list-upper-active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  left: 0;
  bottom: -8px;
  border-bottom: 4px solid #000000;
}
.cmp-custom-header__list-upper li {
  display: inline-flex;
  align-items: center;
  margin-right: 34px;
}
.cmp-custom-header__list-upper li:last-of-type {
  margin-right: 58px;
}
@media only screen and (min-width: 77.75em) {
  .cmp-custom-header__list-upper li:last-of-type {
    margin-right: 34px;
  }
}
.cmp-custom-header__list-upper li a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  height: 24px;
  text-decoration: none;
  font-weight: 500;
}
.cmp-custom-header__list-upper li a:focus {
  outline: 2px solid #000000;
  outline-offset: 10px;
}
.cmp-custom-header__list-upper li .search-link span {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
}
.cmp-custom-header__list-upper li .search-link span::after {
  content: url("styles/resources/assets/icons/search-icon-black.svg");
  margin-left: 10px;
  margin-top: -5px;
  height: 24px;
  width: 24px;
}
.cmp-custom-header__list-lower {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.cmp-custom-header__list-lower li {
  margin-right: 32px;
}
.cmp-custom-header__list-lower li:last-of-type {
  margin-right: 0;
}
.cmp-custom-header__list-lower li a {
  color: #000000;
  font-weight: 400;
  text-decoration: underline;
  transition: background 150ms ease;
}
.cmp-custom-header__list-lower li a:hover, .cmp-custom-header__list-lower li a:focus {
  color: #FFFFFF;
  background: #254A7E;
}
.cmp-custom-header__list-lower li a:focus {
  outline: 2px solid #183052;
  outline-offset: 1px;
  border-radius: 1px;
}
.cmp-custom-header__list-lower li a:active {
  background: #183052;
}
.cmp-custom-header .sign-in.sign-in--unauth .sign-in-btn span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.cmp-custom-header .sign-in.sign-in--unauth .sign-in-btn span::after {
  content: url("styles/resources/assets/icons/login_white_24dp.svg");
  margin-left: 15px;
  margin-left: 0.9375rem;
  height: 20px;
  height: 1.25rem;
  width: 20px;
  width: 1.25rem;
}
.cmp-custom-header__horizontal-rule {
  width: 100%;
  border-top: 1px solid rgba(17, 68, 131, 0.9019607843);
}
.cmp-custom-header__lower {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding: 16px 20px;
}
@media only screen and (min-width: 64em) {
  .cmp-custom-header__lower {
    width: 1024px;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-custom-header__lower {
    width: 1244px;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-custom-header__lower {
    width: 1360px;
  }
}
.cmp-custom-header__menu-container {
  height: 24px;
  min-width: 75px;
}
.cmp-custom-header__menu-container button {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  outline: none;
  background: inherit;
  color: #000000;
  cursor: pointer;
}
.cmp-custom-header__menu-container button span {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.cmp-custom-header__menu-container button span::after {
  content: url("styles/resources/assets/icons/hamburger-black.svg");
  margin-left: 10px;
  width: 24px;
  height: 19px;
}
.cmp-custom-header__menu-container button span.open::after {
  content: url("styles/resources/assets/icons/close-black.svg");
  width: 21px;
  height: 21px;
}
.cmp-custom-header__menu-container button:focus {
  outline: 2px solid #000000;
  outline-offset: 4px;
}
.cmp-custom-header__search-container {
  height: 24px;
  min-width: 80px;
}
.cmp-custom-header__search-container a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #000000;
  text-decoration: none;
}
.cmp-custom-header__search-container a span {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  white-space: nowrap;
}
.cmp-custom-header__search-container a span::after {
  content: url("styles/resources/assets/icons/search-icon-black.svg");
  margin-left: 6px;
  height: 24px;
  width: 24px;
}
.cmp-custom-header__search-container a:focus {
  outline: 2px solid #000000;
  outline-offset: 4px;
}

@media only screen and (min-width: 640px) {
  .cmp-custom-header__logo-container {
    max-width: 236px;
  }
}
@media only screen and (min-width: 1024px) {
  .cmp-custom-header__logo-container {
    min-width: 328px;
    max-width: 328px;
  }
  .cmp-custom-header__logo-container img#mobile-logo {
    display: none;
  }
  .cmp-custom-header__logo-container img#desktop-logo {
    display: block;
  }
  .cmp-custom-header__list-upper {
    display: flex;
    align-items: flex-start;
  }
  .cmp-custom-header__lower {
    display: none;
  }
  .cmp-custom-header__horizontal-rule {
    display: none;
  }
  .cmp-custom-header__link-container-lower {
    margin-top: 16px;
    display: flex;
  }
}
/** Hero Banner **/
.hero-banner {
  background: #183052;
  color: #FFFFFF;
  padding: 25px 0 50px 0;
}
@media only screen and (min-width: 48em) {
  .hero-banner {
    text-align: center;
    padding: 80px 0 100px 0;
  }
}
.hero-banner h1 {
  color: #FFFFFF;
  margin-bottom: 30px;
}
.hero-banner h1 span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (min-width: 48em) {
  .hero-banner h1 span {
    position: relative;
    top: 15px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 48em) {
  .hero-banner h1 {
    margin-bottom: 40px;
  }
}
.hero-banner p {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
  color: #FFFFFF;
  max-width: 860px;
  margin: 0 auto;
  font-weight: 300;
}
@media screen and (max-width: 639px) {
  .hero-banner p {
    font-size: 1.375rem;
  }
}
.hero-banner p b,
.hero-banner p strong {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
  color: #FFFFFF;
  font-weight: 700;
}
@media screen and (max-width: 639px) {
  .hero-banner p b,
.hero-banner p strong {
    font-size: 1.375rem;
  }
}
.hero-banner p a {
  text-decoration: underline;
}
.page-mygov-home .hero-banner p,
.page-mygov-home .hero-banner p b,
.page-mygov-home .hero-banner p strong {
  font-size: 20px;
}
@media only screen and (min-width: 64em) {
  .page-mygov-home .hero-banner p,
.page-mygov-home .hero-banner p b,
.page-mygov-home .hero-banner p strong {
    font-size: 24px;
  }
}
.hero-banner .cmp-search--header {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
}
.hero-banner .cmp-search--header .cmp-search__loading-indicator {
  top: 22px;
  left: 20px;
}
.hero-banner .cmp-search--header .cmp-search__icon {
  background-image: url("styles/resources/assets/icons/search.svg");
  background-size: contain;
  width: 26px;
  height: 26px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.hero-banner .cmp-search--header .cmp-search__input {
  position: static;
  font-size: 18px;
  height: 70px;
  padding: 24px 106px 24px 62px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  background-position: left 22px center;
}
.hero-banner .cmp-search--header .cmp-search__clear {
  right: 16px;
  font-size: 14px;
  height: calc(100% - 24px);
  padding: 0 6px;
}
.hero-banner .cmp-search--header .cmp-search__clear-icon {
  width: 24px;
  height: 24px;
}
.hero-banner .cmp-search--header .cmp-search__results {
  text-align: left;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
}
.hero-banner .cmp-search--header .cmp-search__results li:not(:first-child) {
  border-top: 1px solid #DDDDDD;
}
.hero-banner .cmp-search--header .cmp-search__item {
  color: #183052;
  padding: 15px 22px;
  text-decoration: none;
}
.hero-banner .cmp-search--header .cmp-search__item::before, .hero-banner .cmp-search--header .cmp-search__item::after {
  right: 27px;
}
.hero-banner .cmp-search--header .cmp-search__item::before {
  background-image: url("styles/resources/assets/icons/arrow-right-grey.svg");
}
.hero-banner .cmp-search--header .cmp-search__item::after {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
}
.hero-banner .cmp-search--header .cmp-search__item:hover, .hero-banner .cmp-search--header .cmp-search__item:focus, .hero-banner .cmp-search--header .cmp-search__item.cmp-search__item--is-focused {
  background-color: #E5F1FD;
}
.hero-banner .cmp-search--header .cmp-search__item:hover::before, .hero-banner .cmp-search--header .cmp-search__item:hover::after, .hero-banner .cmp-search--header .cmp-search__item:focus::before, .hero-banner .cmp-search--header .cmp-search__item:focus::after, .hero-banner .cmp-search--header .cmp-search__item.cmp-search__item--is-focused::before, .hero-banner .cmp-search--header .cmp-search__item.cmp-search__item--is-focused::after {
  right: 22px;
}
.hero-banner.info {
  background: #FFD643;
  color: #000000;
}
.hero-banner.info h1 {
  color: #000000;
}
.hero-banner.info p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #000000;
  font-weight: 300;
  margin-left: auto;
  margin-right: auto;
}
.theme-dark .hero-banner.info p {
  color: #FFFFFF;
}
.hero-banner.info p b,
.hero-banner.info p strong {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
  font-weight: 500;
  color: #000000;
}
.theme-dark .hero-banner.info p b,
.theme-dark .hero-banner.info p strong {
  color: #FFFFFF;
}
.hero-banner.info a {
  color: #2B78E3;
}
.hero-banner ul.social-list {
  margin-left: -9px;
  margin-bottom: 0;
  padding-left: 0;
  text-align: center;
}
.hero-banner ul.social-list li {
  display: inline-block;
  height: 44px;
  list-style-type: none;
}
.hero-banner ul.social-list li a {
  display: inline-block;
  position: relative;
  top: 0;
  height: 44px;
  width: 44px;
  margin: 0 2px;
}
.hero-banner ul.social-list li img {
  position: absolute;
  left: 9px;
  top: 9px;
  height: 26px;
  width: 26px;
}
.hero-banner.aus-gov {
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(246deg, rgba(24, 48, 82, 0.7), #183052 40%);
}
@media only screen and (min-width: 48em) {
  .hero-banner.aus-gov {
    background: linear-gradient(246deg, rgba(24, 48, 82, 0.6), #183052 50%);
  }
  .hero-banner.aus-gov > .l-padding {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 64em) {
  .hero-banner.aus-gov {
    padding: 120px 0;
    background: linear-gradient(246deg, rgba(24, 48, 82, 0.5), #183052 53%);
  }
  .hero-banner.aus-gov > .l-padding {
    padding-left: 20px;
  }
}
@media (max-width: 63.9375em) {
  .hero-banner.aus-gov {
    padding: 60px 0 60px 0;
  }
}
.hero-banner.aus-gov h1 {
  color: #FFFFFF;
  width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
}
@media (min-width: 22.4375em) {
  .hero-banner.aus-gov h1 {
    font-size: 40px;
  }
}
@media (min-width: 30em) {
  .hero-banner.aus-gov h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 48em) {
  .hero-banner.aus-gov h1 {
    max-width: 770px;
    overflow-wrap: normal;
  }
}
.hero-banner.aus-gov .cmp-text {
  padding: 0;
}
.hero-banner.aus-gov p,
.hero-banner.aus-gov .cmp-text p {
  color: #000000;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
  color: #FFFFFF;
  font-weight: 300;
  margin: 10px 0;
  padding: 10px 0;
}
@media screen and (max-width: 639px) {
  .hero-banner.aus-gov p,
.hero-banner.aus-gov .cmp-text p {
    font-size: 1.375rem;
  }
}
.hero-banner.aus-gov p b,
.hero-banner.aus-gov p strong,
.hero-banner.aus-gov .cmp-text p b,
.hero-banner.aus-gov .cmp-text p strong {
  font-weight: 700;
}
.hero-banner.aus-gov p a,
.hero-banner.aus-gov .cmp-text p a {
  color: #FFFFFF;
}
.hero-banner.aus-gov p a:focus,
.hero-banner.aus-gov .cmp-text p a:focus {
  outline-color: #FFFFFF;
}
@media only screen and (min-width: 48em) {
  .hero-banner.aus-gov p,
.hero-banner.aus-gov .cmp-text p {
    max-width: 770px;
  }
}
.hero-banner.aus-gov .link-container {
  display: flex;
  justify-content: flex-start;
  flex-flow: column wrap;
}
@media only screen and (min-width: 40em) {
  .hero-banner.aus-gov .link-container {
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
  }
}
.hero-banner.aus-gov .link-container a:not(.btn) {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #FFFFFF;
  font-weight: normal;
  margin: 20px 0;
  font-size: 16px;
}
.theme-dark .hero-banner.aus-gov .link-container a:not(.btn) {
  color: #FFFFFF;
}
@media (min-width: 30em) {
  .hero-banner.aus-gov .link-container a:not(.btn) {
    font-size: 20px;
  }
}
.hero-banner.aus-gov .link-container a:not(.btn)::after {
  background: url("styles/resources/assets/icons/arrow-right-white.svg") no-repeat;
}
.hero-banner.aus-gov .link-container a:not(.btn):focus {
  outline-color: #FFFFFF;
}
.hero-banner.aus-gov .link-container .link, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink {
  display: block;
  margin: 10px 0;
}
.hero-banner.aus-gov .link-container .btn {
  max-width: 60%;
  margin-right: 30px;
}
@media only screen and (min-width: 40em) {
  .hero-banner.aus-gov .link-container .btn + .link:last-child, .hero-banner.aus-gov .link-container .btn + .linked-services__rightInternalLink:last-child {
    padding: 15px 0;
  }
}
.hero-banner.aus-gov .link-container .link + .link:last-child, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .link:last-child, .hero-banner.aus-gov .link-container .link + .linked-services__rightInternalLink:last-child, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .linked-services__rightInternalLink:last-child {
  margin-left: 0;
}
@media only screen and (min-width: 40em) {
  .hero-banner.aus-gov .link-container .link + .link:last-child, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .link:last-child, .hero-banner.aus-gov .link-container .link + .linked-services__rightInternalLink:last-child, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .linked-services__rightInternalLink:last-child {
    margin-left: 30px;
  }
}
.hero-banner.aus-gov .link-container .link + .link:last-child::before, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .link:last-child::before, .hero-banner.aus-gov .link-container .link + .linked-services__rightInternalLink:last-child::before, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .linked-services__rightInternalLink:last-child::before {
  display: none;
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #FFFFFF;
  left: -20px;
}
@media only screen and (min-width: 40em) {
  .hero-banner.aus-gov .link-container .link + .link:last-child::before, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .link:last-child::before, .hero-banner.aus-gov .link-container .link + .linked-services__rightInternalLink:last-child::before, .hero-banner.aus-gov .link-container .linked-services__rightInternalLink + .linked-services__rightInternalLink:last-child::before {
    display: block;
  }
}
.hero-banner.aus-gov ul.social-list {
  position: relative;
  text-align: left;
  z-index: 400;
}
.hero-banner.aus-gov ul.social-list li a {
  margin: 0 5px;
  height: 38px;
  width: 36px;
}
.hero-banner.aus-gov ul.social-list li a:focus {
  outline-color: #FFFFFF;
}
@media only screen and (min-width: 40em) {
  .hero-banner.aus-gov ul.social-list li a {
    height: 40px;
    width: 38px;
  }
}
.hero-banner.aus-gov ul.social-list li img {
  width: 18px;
  height: 18px;
}
@media (min-width: 30em) {
  .hero-banner.aus-gov ul.social-list li img {
    width: 21px;
    height: 21px;
  }
}
.hero-banner.aus-gov > img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero-banner.aus-gov > img {
    width: 100%;
    height: auto;
    transform: translateY(-38%);
  }
}

.cmp-custom-intro__title {
  padding: 0;
  font-size: 50px;
  font-weight: 300;
  color: black;
  margin: 48px 0 0 0;
  line-height: 66px;
}

.cmp-custom-intro__subtitle {
  padding: 0;
  margin: 8px 0 0 0;
  font-size: 28px;
  line-height: 37px;
  color: black;
  font-weight: 300;
}

.key-message-container {
  position: relative;
  display: block;
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 40px 30px;
  min-height: 85px;
  background-color: #FFFFFF;
}
.key-message-container::before, .key-message-container::after {
  content: "";
  position: absolute;
  height: 5px;
  top: 0;
}
.key-message-container::before {
  width: 50px;
  left: 0;
  background-color: #006CE0;
}
.key-message-container::after {
  width: calc(100% - 49px);
  right: 0;
  background-color: #183052;
}
.key-message-container > h2 {
  margin: 0;
  display: block;
  position: relative;
  max-width: 100%;
}
@media only screen and (min-width: 64em) {
  .key-message-container > h2 {
    max-width: 770px;
  }
}
.key-message-container .cmp-text {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  position: relative;
  display: block;
  max-width: 100%;
}
.theme-dark .key-message-container .cmp-text {
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .key-message-container .cmp-text {
    max-width: 770px;
  }
}
.key-message-container .cmp-text p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  margin: 0;
  padding: 0;
}
.theme-dark .key-message-container .cmp-text p {
  color: #FFFFFF;
}
.key-message-container .cmp-text p + p {
  margin-top: 15px;
}

.cmp-link, .cmp-sign-in-teaser > .cmp-experiencefragment a:not(.cmp-button), .cmp-link--light {
  position: relative;
  color: #254A7E;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: normal;
  transition: 150ms ease;
  text-decoration: underline;
}
.cmp-link::after, .cmp-sign-in-teaser > .cmp-experiencefragment a:not(.cmp-button)::after, .cmp-link--light::after {
  content: "";
  display: none;
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 2px;
  border: 2px solid #183052;
}
.cmp-link:hover, .cmp-sign-in-teaser > .cmp-experiencefragment a:hover:not(.cmp-button), .cmp-link--light:hover, .cmp-link:focus, .cmp-sign-in-teaser > .cmp-experiencefragment a:focus:not(.cmp-button), .cmp-link--light:focus, .cmp-link:active, .cmp-sign-in-teaser > .cmp-experiencefragment a:active:not(.cmp-button), .cmp-link--light:active {
  text-decoration: none;
}
.cmp-link:hover, .cmp-sign-in-teaser > .cmp-experiencefragment a:hover:not(.cmp-button), .cmp-link--light:hover {
  color: #FFFFFF;
  background: #254A7E;
}
.cmp-link:focus, .cmp-sign-in-teaser > .cmp-experiencefragment a:focus:not(.cmp-button), .cmp-link--light:focus {
  color: #FFFFFF;
  background: #254A7E;
  outline: none;
}
.cmp-link:focus::after, .cmp-sign-in-teaser > .cmp-experiencefragment a:focus:not(.cmp-button)::after, .cmp-link--light:focus::after {
  display: block;
}
.cmp-link:active, .cmp-sign-in-teaser > .cmp-experiencefragment a:active:not(.cmp-button), .cmp-link--light:active {
  color: #FFFFFF;
  background: #183052;
  outline: none;
}
.cmp-link:active::after, .cmp-sign-in-teaser > .cmp-experiencefragment a:active:not(.cmp-button)::after, .cmp-link--light:active::after {
  display: block;
}
.cmp-link--light {
  color: #FFFFFF;
  text-decoration-color: #33C4E8;
}
.cmp-link--light:hover, .cmp-link--light:focus {
  color: #183052;
  background: #FFFFFF;
}
.cmp-link--light:active {
  color: #183052;
  background: #EDF2F4;
}
.cmp-link--light::after {
  border: 2px solid #33C4E8;
}
.cmp-link.lg, .cmp-sign-in-teaser > .cmp-experiencefragment a.lg:not(.cmp-button), .lg.cmp-link--light {
  font-size: 1.75rem;
  line-height: 2.5rem;
  font-weight: 300;
}

.link-tiles {
  display: flex;
  flex-flow: column wrap;
  padding: 0;
  margin: 40px 0 60px;
}
@media only screen and (min-width: 64em) {
  .link-tiles {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 48em) {
  .link-tiles {
    flex-flow: row wrap;
  }
}
.link-tiles__tile {
  display: flex;
  position: relative;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  height: 100px;
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  background-color: #FFFFFF;
  padding-left: 20px;
  margin: 7px;
}
@media only screen and (min-width: 48em) {
  .link-tiles__tile {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 64em) {
  .link-tiles__tile {
    width: calc(33% - 15px);
  }
}
@media only screen and (min-width: 88.125em) {
  .link-tiles__tile {
    width: calc(25% - 15px);
  }
}
.link-tiles__tile > img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.link-tiles__tile > a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
  margin: 0 0 0 15px;
  text-decoration: none;
  color: #000000;
  max-width: 48%;
  line-height: 1.37;
}
.theme-dark .link-tiles__tile > a {
  color: #FFFFFF;
}
.link-tiles__tile > a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 64em) {
  .link-tiles__tile > a::after {
    height: 100%;
  }
}
.link-tiles__tile > a:focus {
  outline: none;
}
.link-tiles__tile > a:focus::after {
  border: 1px solid #006CE0;
}
.link-tiles__tile:hover {
  cursor: pointer;
}
.link-tiles__tile:hover .link-tiles__arrow {
  right: 25px;
}
.link-tiles__arrow {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  min-width: 32px;
  min-width: 2rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  right: 30px;
  top: 35px;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  transition-property: right;
  transition-duration: 300ms;
  background-size: 16px;
  background-position: center;
  background-color: rgba(0, 108, 224, 0.1);
  border-radius: 5px;
}

.un_link-services-generic-tile {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 0;
  max-width: 927px;
  padding: 10px;
  margin-top: 3px;
}
@media only screen and (min-width: 40em) {
  .un_link-services-generic-tile {
    padding: 30px 30px 25px 35px;
  }
}
.un_link-services-generic-tile__header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.un_link-services-generic-tile__header .heading {
  margin-top: 10;
  margin-bottom: 10px;
  flex-basis: 70%;
}
@media only screen and (min-width: 40em) {
  .un_link-services-generic-tile__header .heading {
    flex-basis: auto;
  }
}
.un_link-services-generic-tile__content p {
  font-size: 14px;
  margin: 0;
  line-height: 20px;
}
.un_link-services-generic-tile__panel {
  max-width: 927px;
  position: relative;
}
.un_link-services-generic-tile__panel::before, .un_link-services-generic-tile__panel::after {
  content: "";
  position: absolute;
  height: 5px;
  top: 0;
}
.un_link-services-generic-tile__panel::before {
  width: 50px;
  left: 0;
  background-color: #006CE0;
}
.un_link-services-generic-tile__panel::after {
  width: calc(100% - 49px);
  right: 0;
  background-color: #183052;
}

.linked-services p {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #101820;
  max-width: 770px;
}
.theme-dark .linked-services p {
  color: #FFFFFF;
}
.linked-services p b,
.linked-services p strong {
  color: #101820;
}
.linked-services__sub_header {
  max-width: 927px !important;
}
.linked-services__list {
  display: flex;
  flex-flow: column wrap;
  padding: 0;
  margin: 0 -7px 60px;
}
@media only screen and (min-width: 48em) {
  .linked-services__list {
    flex-flow: row wrap;
  }
}
.linked-services__list--item {
  display: flex;
  padding: 7px;
}
@media only screen and (min-width: 48em) {
  .linked-services__list--item {
    width: 50%;
  }
}
@media only screen and (min-width: 64em) {
  .linked-services__list--item {
    width: 50%;
  }
}
@media only screen and (min-width: 77.75em) {
  .linked-services__list--item {
    width: 33.33%;
  }
}
@media only screen and (min-width: 88.125em) {
  .linked-services__list--item {
    width: 25%;
  }
}
.linked-services__list--item--skeleton {
  box-shadow: none;
}
.linked-services__list--item .list-link {
  display: flex;
  padding: 0 30px;
  align-items: center;
  background: #FFFFFF;
  height: 100px;
  width: 100%;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
}
.linked-services__list--item .list-link__wrapper-block {
  display: flex;
}
.linked-services__list--item .list-link__wrapper-block-external {
  display: flex;
  margin-left: auto;
}
.linked-services__list--item .list-link:hover .list-link__external {
  transform: translate(3px, -3px);
}
.linked-services__list--item .list-link__icon {
  height: 40px;
  width: 40px;
  min-height: 40px;
  min-width: 40px;
}
.linked-services__list--item .list-link__title {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
  color: #333333;
  line-height: 24px;
  padding: 0 20px 0 20px;
}
.theme-dark .linked-services__list--item .list-link__title {
  color: #FFFFFF;
}
.linked-services__list--item .list-link__external {
  transition: transform 150ms ease-out;
  backface-visibility: hidden;
  height: 32px;
  width: 32px;
  min-height: 32px;
  min-width: 32px;
  background-color: rgba(0, 121, 202, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  margin-left: auto;
}
.linked-services__list--item .list-link__external--cta {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
}
.linked-services__list--item .list-link__internal {
  transition: transform 150ms ease-out;
  backface-visibility: hidden;
  height: 32px;
  width: 40px;
  min-height: 32px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  margin-left: auto;
}
.linked-services__list--item .list-link__internal--cta {
  height: 18px;
  width: 18px;
  min-height: 18px;
  min-width: 18px;
}
.linked-services__list--item .list-link--skeleton {
  display: block;
  padding: 30px 20px;
  box-shadow: none;
}
.linked-services__rightInternalLink {
  width: 500px;
}
.linked-services__rightInternalLink:not(.action)::after {
  top: 6px;
  float: right;
}

.linked-services-tile {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-bottom: 0.0625rem solid #CCCCCC;
  padding: 1.25rem 0.625rem;
}
.linked-services-tile__section-heading-border {
  border-bottom: 0.125rem solid #525252;
}
.linked-services-tile__block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.linked-services-tile__block--title {
  font-size: var(--font-size-15);
}
.linked-services-tile__block--title-name {
  font-weight: bold !important;
}
.linked-services-tile__block--title-dateStr {
  font-weight: normal;
}
.linked-services-tile__block--label {
  display: flex;
  flex-flow: row nowrap;
}
.linked-services-tile__block--label button.btn {
  display: block;
  height: 3rem;
}
.linked-services-tile__block--label-sso-link {
  display: flex !important;
  flex-direction: row;
  min-width: 12rem !important;
  margin-right: 0.625rem;
}
.linked-services-tile__block--label-sso-link i {
  margin-right: 0.625rem;
  width: 1.2rem;
  height: 1.2rem;
  background: url("styles/resources/assets/icons/icon-link-to-ms.svg") no-repeat center;
  background-size: 1.2rem;
}
.linked-services-tile__block--label-sso-link:hover i {
  background: url("styles/resources/assets/icons/icon-link-to-ms-white.svg") no-repeat center;
}
@media (max-width: 374px) {
  .linked-services-tile__block--label-sso-link {
    padding: 0.75rem 0.625rem !important;
    min-width: 9.375rem !important;
  }
}
.linked-services-tile__block--label-unlink {
  min-width: 0rem !important;
}
@media (max-width: 374px) {
  .linked-services-tile__block--label-unlink {
    padding: 0.625rem 0.625rem !important;
  }
}
@media (max-width: 639px) {
  .linked-services-tile__block--label {
    margin-top: 0.625rem;
  }
}
@media (max-width: 639px) {
  .linked-services-tile__block {
    flex-flow: column;
    align-items: start;
  }
}

.cmp-menu-overlay {
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  width: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -999;
  position: fixed;
  background: rgba(0, 0, 0, 0);
  transition: background-color 0.4s ease-in-out;
}
.cmp-menu-overlay.open {
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
}

.cmp-menu {
  width: 0;
  max-width: 330px;
  background: #FFFFFF;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: width 0.4s ease-in-out;
}
.cmp-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cmp-menu__list li.border-top::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 1.25rem;
  background: #d9d9d6;
}
.cmp-menu__link, .cmp-menu__accordion-trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  background: #FFFFFF;
  border: none;
  text-decoration: none;
}
.cmp-menu__link img, .cmp-menu__accordion-trigger img {
  height: 20px;
  width: 20px;
  margin-right: 1.25rem;
}
.cmp-menu__link .menu_nav_icon, .cmp-menu__accordion-trigger .menu_nav_icon {
  height: 20px;
  width: 20px;
  margin-right: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
}
.cmp-menu__link .menu_nav_icon.signin, .cmp-menu__accordion-trigger .menu_nav_icon.signin {
  background-image: url("styles/resources/assets/icons/ico-sign-in.svg");
}
.cmp-menu__link .menu_nav_icon.signout, .cmp-menu__accordion-trigger .menu_nav_icon.signout {
  background-image: url("styles/resources/assets/icons/ico-sign-out.svg");
}
.cmp-menu__link .menu_nav_icon.home, .cmp-menu__accordion-trigger .menu_nav_icon.home {
  background-image: url("styles/resources/assets/icons/ico-home.svg");
}
.cmp-menu__link .menu_nav_icon.help, .cmp-menu__accordion-trigger .menu_nav_icon.help {
  background-image: url("styles/resources/assets/icons/ico-help.svg");
}
.cmp-menu__link .menu_nav_icon.search, .cmp-menu__accordion-trigger .menu_nav_icon.search {
  background-image: url("styles/resources/assets/icons/ico-search.svg");
}
.cmp-menu__link .menu_nav_icon.create-account, .cmp-menu__accordion-trigger .menu_nav_icon.create-account {
  background-image: url("styles/resources/assets/icons/ico-tile-profile.svg");
}
.cmp-menu__link .menu_nav_icon.browse, .cmp-menu__accordion-trigger .menu_nav_icon.browse {
  background-image: url("styles/resources/assets/icons/ico-browse.svg");
}
.cmp-menu__link.link--grey, .cmp-menu__accordion-trigger.link--grey {
  font-weight: 400;
  color: #555555;
}
.cmp-menu__link:hover, .cmp-menu__accordion-trigger:hover {
  background: #99e1f3;
}
.cmp-menu__link:focus, .cmp-menu__link:active, .cmp-menu__accordion-trigger:focus, .cmp-menu__accordion-trigger:active {
  outline-offset: -3px;
}
.cmp-menu__accordion-trigger::after {
  content: url("styles/resources/assets/icons/chevron-down-black.svg");
  margin-left: auto;
  width: 12px;
}
.cmp-menu__accordion-trigger.open::after {
  transform-origin: center;
  transform: rotate(180deg);
}
.cmp-menu__accordion-panel {
  display: flex;
  max-height: 0;
  overflow: hidden;
  flex-direction: column;
  background: #f7f7f7;
  transition: max-height 0.4s ease-in-out;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cmp-menu__accordion-panel li a {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  padding-left: 3.75rem;
  font-size: 1rem;
  color: #555555;
  text-decoration: none;
}
.cmp-menu__accordion-panel li a.chevron-right {
  justify-content: space-between;
}
.cmp-menu__accordion-panel li a.chevron-right::after {
  content: url("styles/resources/assets/icons/chevron-right-grey.svg");
  display: inline-block;
  position: relative;
  margin-left: 1.25rem;
  height: 12px;
  width: 12px;
  bottom: 6px;
  right: 4px;
}
.cmp-menu__accordion-panel li a:focus, .cmp-menu__accordion-panel li a:active {
  outline-offset: -3px;
}
.cmp-menu__accordion-panel li:hover {
  background: #99e1f3;
}
.cmp-menu.open {
  width: 100%;
}

@media only screen and (min-width: 64em) {
  .cmp-custom-header__menu-container {
    display: none;
  }
}

.cmp-menu-no-scroll {
  height: 100%;
  overflow: hidden;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 700;
  background-color: rgba(0, 0, 0, 0.75);
}
.modal__content {
  display: flex;
  flex-direction: column;
  z-index: 1000;
  background: #FFFFFF;
  border: 0;
  outline: none;
  padding: 0;
  width: 100vw;
}
@media only screen and (min-width: 48em) {
  .modal__content {
    width: 780px;
    border-radius: 5px;
    outline: transparent 7px ridge;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.modal__content--filter.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  max-height: none;
  width: 100vw;
}
@media only screen and (min-width: 48em) {
  .modal__content--inbox.modal__content, .modal__content--common.modal__content {
    width: 500px;
  }
}
.modal__content--inbox.modal__content .modal-header, .modal__content--common.modal__content .modal-header {
  padding: 30px 50px 10px 20px;
  height: auto;
}
.modal__content--inbox.modal__content .modal-header h2, .modal__content--common.modal__content .modal-header h2 {
  margin-bottom: 0;
}
.modal__content--inbox.modal__content .modal-header .close, .modal__content--common.modal__content .modal-header .close {
  top: 30px;
}
.modal__content--inbox.modal__content .modal-header .close.slo-modal:focus, .modal__content--common.modal__content .modal-header .close.slo-modal:focus {
  outline-color: var(--black);
}
@media only screen and (min-width: 48em) {
  .modal__content--inbox.modal__content .modal-header, .modal__content--common.modal__content .modal-header {
    padding: 30px 60px 10px 30px;
  }
  .modal__content--inbox.modal__content .modal-header .close, .modal__content--common.modal__content .modal-header .close {
    right: 30px;
  }
}
.modal__content--inbox.modal__content .modal-header p, .modal__content--common.modal__content .modal-header p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
}
.theme-dark .modal__content--inbox.modal__content .modal-header p, .theme-dark .modal__content--common.modal__content .modal-header p {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-header p b,
.modal__content--inbox.modal__content .modal-header p strong, .modal__content--common.modal__content .modal-header p b,
.modal__content--common.modal__content .modal-header p strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .modal__content--inbox.modal__content .modal-header p b,
.theme-dark .modal__content--inbox.modal__content .modal-header p strong, .theme-dark .modal__content--common.modal__content .modal-header p b,
.theme-dark .modal__content--common.modal__content .modal-header p strong {
  color: #FFFFFF;
}
.theme-dark .modal__content--inbox.modal__content .modal-header p b,
.theme-dark .modal__content--inbox.modal__content .modal-header p strong, .theme-dark .modal__content--common.modal__content .modal-header p b,
.theme-dark .modal__content--common.modal__content .modal-header p strong {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-header__subheader, .modal__content--common.modal__content .modal-header__subheader {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin-top: 20px;
  margin-bottom: 0;
}
.theme-dark .modal__content--inbox.modal__content .modal-header__subheader, .theme-dark .modal__content--common.modal__content .modal-header__subheader {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-header__subheader b,
.modal__content--inbox.modal__content .modal-header__subheader strong, .modal__content--common.modal__content .modal-header__subheader b,
.modal__content--common.modal__content .modal-header__subheader strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .modal__content--inbox.modal__content .modal-header__subheader b,
.theme-dark .modal__content--inbox.modal__content .modal-header__subheader strong, .theme-dark .modal__content--common.modal__content .modal-header__subheader b,
.theme-dark .modal__content--common.modal__content .modal-header__subheader strong {
  color: #FFFFFF;
}
.theme-dark .modal__content--inbox.modal__content .modal-header__subheader b,
.theme-dark .modal__content--inbox.modal__content .modal-header__subheader strong, .theme-dark .modal__content--common.modal__content .modal-header__subheader b,
.theme-dark .modal__content--common.modal__content .modal-header__subheader strong {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-body, .modal__content--common.modal__content .modal-body {
  padding-top: 20px;
  padding-bottom: 35px;
}
.modal__content--inbox.modal__content .modal-body p, .modal__content--common.modal__content .modal-body p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin-top: 10px;
  margin-bottom: 10px;
}
.theme-dark .modal__content--inbox.modal__content .modal-body p, .theme-dark .modal__content--common.modal__content .modal-body p {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-body p b,
.modal__content--inbox.modal__content .modal-body p strong, .modal__content--common.modal__content .modal-body p b,
.modal__content--common.modal__content .modal-body p strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .modal__content--inbox.modal__content .modal-body p b,
.theme-dark .modal__content--inbox.modal__content .modal-body p strong, .theme-dark .modal__content--common.modal__content .modal-body p b,
.theme-dark .modal__content--common.modal__content .modal-body p strong {
  color: #FFFFFF;
}
.theme-dark .modal__content--inbox.modal__content .modal-body p b,
.theme-dark .modal__content--inbox.modal__content .modal-body p strong, .theme-dark .modal__content--common.modal__content .modal-body p b,
.theme-dark .modal__content--common.modal__content .modal-body p strong {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-body__subheader, .modal__content--common.modal__content .modal-body__subheader {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin-top: 0;
  margin-bottom: 0px !important;
}
.theme-dark .modal__content--inbox.modal__content .modal-body__subheader, .theme-dark .modal__content--common.modal__content .modal-body__subheader {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-body__subheader b,
.modal__content--inbox.modal__content .modal-body__subheader strong, .modal__content--common.modal__content .modal-body__subheader b,
.modal__content--common.modal__content .modal-body__subheader strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .modal__content--inbox.modal__content .modal-body__subheader b,
.theme-dark .modal__content--inbox.modal__content .modal-body__subheader strong, .theme-dark .modal__content--common.modal__content .modal-body__subheader b,
.theme-dark .modal__content--common.modal__content .modal-body__subheader strong {
  color: #FFFFFF;
}
.theme-dark .modal__content--inbox.modal__content .modal-body__subheader b,
.theme-dark .modal__content--inbox.modal__content .modal-body__subheader strong, .theme-dark .modal__content--common.modal__content .modal-body__subheader b,
.theme-dark .modal__content--common.modal__content .modal-body__subheader strong {
  color: #FFFFFF;
}
.modal__content--inbox.modal__content .modal-body p:first-of-type, .modal__content--common.modal__content .modal-body p:first-of-type {
  margin-top: 0;
}
.modal__content--inbox.modal__content .modal-body p:last-of-type, .modal__content--common.modal__content .modal-body p:last-of-type {
  margin-bottom: 30px;
}
.modal__content--inbox.modal__content .modal-body .input-group, .modal__content--common.modal__content .modal-body .input-group {
  margin-top: 0;
  margin-bottom: 0;
}
.modal__content--inbox.modal__content .modal-body .input-group .error-text, .modal__content--common.modal__content .modal-body .input-group .error-text {
  margin-bottom: 10px;
}
.modal__content--inbox.modal__content .modal-body .input-group + .modal-cta, .modal__content--common.modal__content .modal-body .input-group + .modal-cta {
  margin-top: 20px;
}
.modal__content--inbox.modal__content .modal-body .inbox-ul-folder-list > li > a, .modal__content--common.modal__content .modal-body .inbox-ul-folder-list > li > a {
  margin-left: 3px;
  margin-right: 3px;
  outline-offset: 0;
}
@media (max-width: 47.9375em) {
  .modal__content--inbox.modal__content .modal-body .inbox-ul-folder-list, .modal__content--common.modal__content .modal-body .inbox-ul-folder-list {
    width: 100vw;
    margin-left: -20px;
  }
}
@media only screen and (min-width: 48em) {
  .modal__content--inbox.modal__content .modal-body .inbox-ul-folder-list, .modal__content--common.modal__content .modal-body .inbox-ul-folder-list {
    width: 500px;
  }
}
.modal__content--inbox.modal__content .modal-footer, .modal__content--common.modal__content .modal-footer {
  padding: 5px 20px 35px;
}
@media only screen and (min-width: 48em) {
  .modal__content--inbox.modal__content .modal-footer, .modal__content--common.modal__content .modal-footer {
    padding: 0 30px 35px;
  }
}
.modal__content--inbox.modal__content #btn-close-modal.black-icon, .modal__content--common.modal__content #btn-close-modal.black-icon {
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
  background: none;
  top: 1.2rem;
  padding: 0;
  right: 0.75rem;
}
.modal__content--common.modal__content .modal-body p:last-of-type {
  margin-bottom: unset;
}
.modal__content--transition.modal__content {
  padding: 30px 20px 35px;
}
@media only screen and (min-width: 48em) {
  .modal__content--transition.modal__content {
    padding: 30px 30px 35px;
  }
}
.modal__content--transition.modal__content .modal-header {
  height: 100%;
  padding: 0;
}
.modal__content--transition.modal__content .modal-header h2 {
  max-width: 80%;
  margin-top: 0;
  margin-bottom: 10px;
}
.modal__content--transition.modal__content .modal-header .close {
  top: 0;
  right: 0;
}
.modal__content--transition.modal__content .modal-body {
  padding: 0;
}
.modal__content--transition.modal__content .modal-body .sub-heading {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  margin-bottom: 10px;
}
.theme-dark .modal__content--transition.modal__content .modal-body .sub-heading {
  color: #FFFFFF;
}
.theme-dark .modal__content--transition.modal__content .modal-body .sub-heading {
  color: #FFFFFF;
}
.modal__content--transition.modal__content .modal-body .description {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin-bottom: 0;
  margin-top: 0;
}
.theme-dark .modal__content--transition.modal__content .modal-body .description {
  color: #FFFFFF;
}
.modal__content--transition.modal__content .modal-body .description b,
.modal__content--transition.modal__content .modal-body .description strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .modal__content--transition.modal__content .modal-body .description b,
.theme-dark .modal__content--transition.modal__content .modal-body .description strong {
  color: #FFFFFF;
}
.theme-dark .modal__content--transition.modal__content .modal-body .description b,
.theme-dark .modal__content--transition.modal__content .modal-body .description strong {
  color: #FFFFFF;
}
@media (min-width: 22.4375em) and (max-width: 47.9375em) {
  .modal__content--transition.modal__content {
    width: 334px;
    padding: 30px 15px 30px 15px;
    border-radius: 5px;
  }
}
@media only screen and (min-width: 48em) {
  .modal__content--transition.modal__content {
    width: 670px;
    padding: 30px 30px 35px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 29.9375em) {
  .modal__content--transition.modal__content {
    width: 100%;
    padding: 20px 15px 20px 15px;
    width: 100%;
    border-radius: 0;
  }
}
.modal__content .modal-header {
  width: 100%;
  background: #FFFFFF;
  padding: 25px 20px 10px;
  /*
  	This stuff provides the "sticky" header.
  	We don't want a sticky header for small screen heights (or high levels
  	 of zoom) because then too large a portion of the screen is "filler".
   */
}
@media only screen and (min-height: 25pxem) {
  .modal__content .modal-header {
    border-radius: 5px 5px 0 0;
    position: sticky;
    top: 0;
    left: 0;
    height: 70px;
    z-index: 1002;
  }
  .modal__content .modal-header::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    left: 0;
    bottom: -15px;
    z-index: 1001;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 50%, #FFFFFF);
  }
}
@media only screen and (min-height: 25pxem) and (-ms-high-contrast: none), only screen and (min-height: 25pxem) and (-ms-high-contrast: active) {
  .modal__content .modal-header {
    position: relative;
  }
}
.modal__content .modal-header h2 {
  word-wrap: break-word;
  outline: 0;
  margin-top: 0;
}
.modal__content .modal-header .close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal__content .modal-body {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  z-index: 1000;
}
@media only screen and (min-width: 48em) {
  .modal__content .modal-body {
    padding: 30px;
  }
}
.modal__content .modal-body #ytplayer {
  width: 100%;
  height: 52vw;
}
@media only screen and (min-width: 48em) {
  .modal__content .modal-body #ytplayer {
    width: 720px;
    height: 405px;
  }
}
.modal__content .modal-body p {
  word-wrap: break-word;
}
.modal__content .modal-footer {
  position: relative;
  height: fit-content;
  width: 100%;
  z-index: 1002;
  background: #FFFFFF;
  padding: 5px 20px 10px;
}
.modal__content .modal-footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 15px;
  left: 0;
  top: -15px;
  z-index: 1001;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 50%, #FFFFFF);
}
.modal__content .modal-footer .input-group {
  margin: 0;
}
@media (max-width: 47.9375em) {
  .modal__content .modal-footer button {
    margin-bottom: 10px;
  }
  .modal__content .modal-footer button.btn-apply-filters {
    margin-bottom: 20px;
  }
}
.modal__content .modal-footer .modal-cta {
  margin-top: 10px;
  /* for mobile screens to prevent CTA buttons from hiding behind browser bottom menu */
}
@media only screen and (max-height: 41.6875em) {
  .modal__content .modal-footer .modal-cta {
    margin-bottom: 60px;
  }
}
@media (min-width: 360px) {
  .modal__content .modal-cta {
    display: flex;
    margin-top: 30px;
  }
}
@media (max-width: 63.9375em) {
  .modal__content .modal-cta {
    display: flex;
    flex-direction: column;
  }
}
.modal__content .modal-cta button {
  width: 100%;
  margin-top: 1em;
  margin-right: 0;
}
@media (min-width: 360px) {
  .modal__content .modal-cta button {
    display: inline-block;
    margin-right: 20px;
  }
}
.modal__content .modal-cta button:last-of-type {
  margin-right: 0;
}

.ReactModal__Body--open {
  overflow: hidden;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    #btn-close-modal:focus {
      outline-offset: -2px;
    }
  }
}
.most-viewed-carousel-container {
  width: 100%;
}
.most-viewed-carousel-container .react-multi-carousel-item {
  height: 300px;
}

.most-viewed-carousel-item {
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}
.most-viewed-carousel-item img {
  height: 25px;
}
.most-viewed-carousel-item span {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 10px;
  display: block;
}
.theme-dark .most-viewed-carousel-item span {
  color: #FFFFFF;
}
.theme-dark .most-viewed-carousel-item span {
  color: #FFFFFF;
}
.most-viewed-carousel-item p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  margin-top: 0;
}
.theme-dark .most-viewed-carousel-item p {
  color: #FFFFFF;
}
.most-viewed-carousel-item .most-viewed-carousel-link {
  position: relative;
  display: block;
  margin-top: 0;
  color: #006CE0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
}
.most-viewed-carousel-item .most-viewed-carousel-link::after {
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  min-width: 14px;
  min-width: 0.875rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  content: "";
  position: absolute;
  top: 2px;
  right: 5px;
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
  transition: all 150ms;
}
.most-viewed-carousel-item .most-viewed-carousel-link.arrow::after {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
}
.most-viewed-carousel-item .most-viewed-carousel-link.external::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-image: url("styles/resources/assets/icons/icon-external-link.svg");
}
.most-viewed-carousel-item:hover .most-viewed-carousel-link::after, .most-viewed-carousel-item:focus .most-viewed-carousel-link::after {
  right: 0;
}

.news__comp {
  margin: 40px 0 0;
  padding: 0 7px;
}
.news__comp .feature {
  position: relative;
  width: 100%;
  flex-basis: 50%;
  padding: 0 0 20px 0;
}
@media only screen and (min-width: 64em) {
  .news__comp .feature {
    padding-right: 60px;
  }
}
.news__comp .feature .feature__image {
  width: auto;
  min-width: 270px;
  min-height: 120px;
}
.news__comp .feature .feature__image img {
  width: 100%;
  max-height: auto;
  object-fit: cover;
}
.news__comp .feature .feature__title {
  padding-top: 20px;
  margin: 0 0 10px;
}
.news__comp .feature .feature__title a {
  text-decoration: none;
  color: #000000;
}
.news__comp .feature .feature__title a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media only screen and (min-width: 64em) {
  .news__comp .feature .feature__title a::after {
    height: 100%;
    width: calc(100% - 60px);
  }
}
.news__comp .feature .feature__title a:focus {
  outline: none;
}
.news__comp .feature .feature__title a:focus::after {
  border: 1px solid #006CE0;
}
.news__comp .feature .feature__description,
.news__comp .feature .feature__published {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  display: block;
  max-width: 530px;
  margin-top: 0;
}
.theme-dark .news__comp .feature .feature__description,
.theme-dark .news__comp .feature .feature__published {
  color: #FFFFFF;
}
.news__comp .feature .feature__description .cmp-text,
.news__comp .feature .feature__published .cmp-text {
  padding: 0;
}
.news__comp .feature .feature__description .cmp-text p,
.news__comp .feature .feature__description .cmp-text p b,
.news__comp .feature .feature__description .cmp-text p strong,
.news__comp .feature .feature__published .cmp-text p,
.news__comp .feature .feature__published .cmp-text p b,
.news__comp .feature .feature__published .cmp-text p strong {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  color: #101820;
}
.theme-dark .news__comp .feature .feature__description .cmp-text p,
.theme-dark .news__comp .feature .feature__description .cmp-text p b,
.theme-dark .news__comp .feature .feature__description .cmp-text p strong,
.theme-dark .news__comp .feature .feature__published .cmp-text p,
.theme-dark .news__comp .feature .feature__published .cmp-text p b,
.theme-dark .news__comp .feature .feature__published .cmp-text p strong {
  color: #FFFFFF;
}
.news__comp .feature .feature__description .cmp-text p b,
.news__comp .feature .feature__description .cmp-text p strong,
.news__comp .feature .feature__description .cmp-text p b b,
.news__comp .feature .feature__description .cmp-text p b strong,
.news__comp .feature .feature__description .cmp-text p strong b,
.news__comp .feature .feature__description .cmp-text p strong strong,
.news__comp .feature .feature__published .cmp-text p b,
.news__comp .feature .feature__published .cmp-text p strong,
.news__comp .feature .feature__published .cmp-text p b b,
.news__comp .feature .feature__published .cmp-text p b strong,
.news__comp .feature .feature__published .cmp-text p strong b,
.news__comp .feature .feature__published .cmp-text p strong strong {
  color: #101820;
}
.news__comp .feature .feature__published {
  margin: 15px 0;
}
.news__comp .feature .feature__icon {
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  min-width: 32px;
  min-width: 2rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  transition-property: margin-left;
  transition-duration: 300ms;
  background-size: 16px;
  background-position: center;
  background-color: rgba(0, 108, 224, 0.1);
  border-radius: 5px;
}
.news__comp .feature:hover .feature__icon, .news__comp .feature:focus .feature__icon {
  margin-left: 5px;
}
.news__comp .list-container {
  position: relative;
  padding: 20px 0;
}
@media only screen and (min-width: 64em) {
  .news__comp .list-container {
    padding: 0 20px 20px 60px;
    border-left: 1px solid #DDDDDD;
  }
}
.news__comp .list-container .article-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  width: 100%;
}
.news__comp .list-container .article-list li {
  position: relative;
  display: block;
  border-top: 1px solid #DDDDDD;
  padding: 15px 0;
}
.news__comp .list-container .article-list li:hover h3:after {
  right: -15px;
}
.news__comp .list-container .article-list li h3 {
  display: block;
  text-decoration: none;
  padding: 0;
  margin: 0 0 10px 0;
  height: 100%;
}
.news__comp .list-container .article-list li h3:after {
  content: "";
  position: relative;
  display: inline-block;
  right: -10px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  background-size: 16px;
  background-position: center;
  transition-property: all;
  transition-duration: 300ms;
}
.news__comp .list-container .article-list li h3 a {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  width: 100%;
}
.theme-dark .news__comp .list-container .article-list li h3 a {
  color: #FFFFFF;
}
.news__comp .list-container .article-list li h3 a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.news__comp .list-container .article-list li h3 a:focus {
  outline: none;
}
.news__comp .list-container .article-list li h3 a:focus::after {
  border: 1px solid #006CE0;
}
.news__comp .list-container .article-list li span,
.news__comp .list-container .article-list li p,
.news__comp .list-container .article-list li p i {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  display: block;
  margin: 10px 0;
}
.news__comp .list-container .article-list li span > b,
.news__comp .list-container .article-list li span strong,
.news__comp .list-container .article-list li p > b,
.news__comp .list-container .article-list li p strong,
.news__comp .list-container .article-list li p i > b,
.news__comp .list-container .article-list li p i strong {
  font-size: 16px;
}
.news__comp .list-container .article-list li span > i,
.news__comp .list-container .article-list li p > i,
.news__comp .list-container .article-list li p i > i {
  display: inline;
  margin: 0;
  padding: 0;
}
.theme-dark .news__comp .list-container .article-list li span,
.theme-dark .news__comp .list-container .article-list li p,
.theme-dark .news__comp .list-container .article-list li p i {
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .news__comp .list-container .article-list li:first-child {
    border-top: 0;
    padding-top: 0;
  }
}
.news__comp .list-container .btn-container {
  padding-top: 20px;
  position: relative;
  display: block;
  width: 100%;
}
.news__comp .list-container .btn-container .btn {
  width: 100%;
  background: transparent;
}
.news__comp .list-container .btn-container .btn:hover, .news__comp .list-container .btn-container .btn:focus {
  background: #006CE0;
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .news__comp .list-container .btn-container {
    position: relative;
  }
  .news__comp .list-container .btn-container .btn {
    max-width: 330px;
  }
}

.notification-banner {
  background-color: #F5F5F5;
  padding: 20px 30px 20px 0;
  display: flex;
  flex-direction: column;
}
.notification-banner__text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin: 0;
  padding-bottom: 10px;
}
.theme-dark .notification-banner__text {
  color: #FFFFFF;
}
.notification-banner__text b,
.notification-banner__text strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .notification-banner__text b,
.theme-dark .notification-banner__text strong {
  color: #FFFFFF;
}
.theme-dark .notification-banner__text b,
.theme-dark .notification-banner__text strong {
  color: #FFFFFF;
}
.notification-banner .is-underlined {
  text-decoration: underline;
}
.notification-banner__cta {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  padding: 0;
  margin: 0;
}
.theme-dark .notification-banner__cta {
  color: #FFFFFF;
}
.notification-banner__cta a {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #006CE0;
  text-decoration: underline;
}
.theme-dark .notification-banner__cta a {
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .notification-banner {
    padding: 20px 0;
    flex-direction: row;
    align-items: center;
  }
  .notification-banner__text {
    padding-right: 20px;
    padding-bottom: 0;
  }
}

.pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 40px auto 60px;
}
@media only screen and (min-width: 64em) {
  .pagination {
    margin: 40px 0 60px;
    justify-content: flex-start;
  }
}
.pagination > li {
  width: 30px;
  height: 30px;
  display: flex;
  margin-right: 6px;
}
.pagination > li.previous a, .pagination > li.next a {
  position: relative;
  border: none;
  background: transparent;
  transition: none;
}
.pagination > li.previous a:after, .pagination > li.next a:after {
  content: "";
  position: absolute;
  height: 14px;
  width: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.pagination > li.previous.disabled a, .pagination > li.next.disabled a {
  cursor: default;
}
.pagination > li.previous.disabled a:hover, .pagination > li.previous.disabled a:focus, .pagination > li.next.disabled a:hover, .pagination > li.next.disabled a:focus {
  border: none;
}
.pagination > li.previous a:after {
  background: url("styles/resources/assets/icons/arrow-left.svg") no-repeat;
}
.pagination > li.next a:after {
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
}
.pagination > li.disabled .pagination > li.active a {
  border: 2px solid #006CE0;
  border-radius: 5px;
}
.pagination > li.next.disabled a:after {
  opacity: 0.4;
  background: url("styles/resources/assets/icons/arrow-right-grey.svg") no-repeat;
}
.pagination > li.previous.disabled a:after {
  opacity: 0.4;
  background: url("styles/resources/assets/icons/arrow-left-grey.svg") no-repeat;
}
.pagination > li.active a {
  color: #006CE0;
  border: 2px solid #006CE0;
}
.pagination > li.active a:focus {
  box-shadow: 0 0 0 1px #006CE0;
}
.pagination > li a {
  width: 30px;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 150ms ease;
}
.theme-dark .pagination > li a {
  color: #FFFFFF;
}
.pagination > li a b,
.pagination > li a strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .pagination > li a b,
.theme-dark .pagination > li a strong {
  color: #FFFFFF;
}
.theme-dark .pagination > li a b,
.theme-dark .pagination > li a strong {
  color: #FFFFFF;
}
.pagination > li a:active, .pagination > li a:focus, .pagination > li a:hover {
  border: 2px solid #006CE0;
  border-radius: 5px;
  color: #006CE0;
}
.pagination > li a:focus {
  box-shadow: 0 0 0 3px #183052;
  outline: none;
}
.pagination .break-me {
  cursor: not-allowed;
}
.pagination .break-me > a {
  pointer-events: none;
  border-color: transparent;
  background-color: transparent;
}
.pagination .break-me > a:hover, .pagination .break-me > a:focus {
  border-color: transparent;
}
.pagination .break-me > a:hover .indicator::after, .pagination .break-me > a:focus .indicator::after {
  color: #006CE0;
}
.pagination .break-me .indicator {
  position: relative;
}
.pagination .break-me .indicator:after {
  content: "...";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -65%);
  color: #DDDDDD;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 150ms ease;
}

.enhanced-polling:empty {
  display: none !important;
}

.quick-exit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 110px;
  max-height: 15vh;
  min-height: 40px;
  background-color: #FCB80E;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.quick-exit__header {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #101820;
  margin: 0;
  font-size: 20px;
}
@media only screen and (min-width: 64em) {
  .quick-exit__header {
    padding-bottom: 10px;
  }
}
.quick-exit__body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin: 0;
}
.theme-dark .quick-exit__body {
  color: #FFFFFF;
}
.quick-exit__body b,
.quick-exit__body strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .quick-exit__body b,
.theme-dark .quick-exit__body strong {
  color: #FFFFFF;
}
.theme-dark .quick-exit__body b,
.theme-dark .quick-exit__body strong {
  color: #FFFFFF;
}
.quick-exit strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  margin: 0;
}
.theme-dark .quick-exit strong {
  color: #FFFFFF;
}
.theme-dark .quick-exit strong {
  color: #FFFFFF;
}
@media only screen and (min-width: 64em) {
  .quick-exit {
    text-align: left;
  }
}
.quick-exit p {
  line-height: 1em;
}

.hide-quick-exit {
  display: none;
}

.quickexit .sticky-container {
  z-index: 900;
}
@media only screen and (min-width: 64em) {
  .quickexit .sticky-container {
    z-index: 1000;
  }
}

.section.top-border {
  border-top: 1px solid grey;
}
.section.left-border {
  border-left: 1px solid red;
}
.section.bottom-border {
  border-bottom: 1px solid grey;
}

.section-heading {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.section-heading, .section-heading:first-child, .authenticated-container__page .section-heading, .authenticated-container__page .section-heading:first-child {
  margin: 20px 0 28px;
  margin: 1.25rem 0 1.75rem;
}
.section-heading.sr-only, .section-heading:first-child.sr-only, .authenticated-container__page .section-heading.sr-only, .authenticated-container__page .section-heading:first-child.sr-only {
  margin: 0;
}
.section-heading.sr-only {
  width: 1px;
  width: 0.0625rem;
  position: absolute;
  margin: 0;
  display: inline;
}
.section-heading:after {
  height: 1px;
  height: 0.0625rem;
  content: "";
  position: absolute;
  bottom: 0;
  background-color: rgba(14, 99, 147, 0.2);
  margin: auto;
  right: 0;
  left: 0;
}
.section-heading div > :first-child {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media only screen and (min-width: 64em) {
  .section-heading div > :first-child {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}
.section-heading h2 {
  font-family: "Roboto", sans-serif;
  margin-right: 10px;
  margin-right: 0.625rem;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  margin-top: 0;
  margin-left: 0;
  line-height: 1.4444444444;
}
.section-heading h2::first-line {
  line-height: 1.5;
}
.section-heading a {
  font-family: "Roboto", sans-serif;
  line-height: 28px;
  line-height: 1.75rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  font-size: 16px;
  font-size: 1rem;
  display: inline-flex;
  position: relative;
  text-decoration: none;
  color: #254A7E;
  line-height: 1.1875;
  margin-top: auto;
  margin-left: auto;
  white-space: nowrap;
  padding-right: 0;
  font-weight: 500;
}
@media (min-width: 22.4375em) {
  .section-heading a {
    max-width: 95%;
  }
}
@media only screen and (min-width: 48em) {
  .section-heading a {
    margin-bottom: 7px;
    margin-bottom: 0.4375rem;
    max-width: 90%;
  }
}
@media only screen and (min-width: 64em) {
  .section-heading a {
    max-width: 75%;
  }
}
.section-heading a:hover {
  text-decoration: underline;
}
.section-heading a:hover, .section-heading a:focus {
  color: #254A7E;
}
.section-heading a:hover:after, .section-heading a:focus:after {
  transform: none;
}
.section-heading a:focus {
  outline: 2px solid #000000;
  outline: 0.125rem solid #000000;
  text-decoration: none;
}
.section-heading a:after {
  width: 7px;
  width: 0.4375rem;
  height: 11px;
  height: 0.6875rem;
  margin-left: 9px;
  margin-left: 0.5625rem;
  content: "";
  background: no-repeat bottom center;
  background-image: url("styles/resources/assets/icons/chevron-right-dark-blue.svg");
  position: static;
  align-self: center;
}
.section-heading .items-count {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.625;
  align-self: flex-end;
}
.section-heading.is-underlined {
  position: relative;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}
.section-heading.is-underlined::before, .section-heading.is-underlined::after {
  content: "";
  position: absolute;
  height: 5px;
  bottom: 0;
}
.section-heading.is-underlined::before {
  width: 50px;
  left: 0;
  background-color: #006CE0;
}
.section-heading.is-underlined::after {
  width: calc(100% - 49px);
  right: 0;
  background-color: #183052;
}
.section-heading.is-underlined + .section-description {
  padding-top: 20px;
  padding-top: 1.25rem;
}
.section-heading:focus, .section-heading:active {
  outline: none;
}
.page-ausgov-home .section-heading a::after, .page-mygov-home .section-heading a::after {
  top: 12px;
  top: 0.75rem;
}
@media (max-width: 47.9375em) {
  .section-heading {
    flex-direction: column;
  }
  .section-heading a {
    margin-left: 0;
  }
}

@media only screen and (min-width: 64em) {
  .section-heading.is-padded,
.section-description.is-padded {
    margin-left: 40px;
    margin-left: 2.5rem;
  }
}
.section-heading.is-centered,
.section-description.is-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading.is-centered p,
.section-description.is-centered p {
  text-align: center;
}
.authenticated-container .section-heading,
.authenticated-container .section-description {
  margin-left: 0;
}

.section-heading.is-centered {
  padding-right: 0;
}

/** Site wide alert **/
.sitewide-alert {
  display: none;
  background: #DC3548;
  color: #FFFFFF;
  padding: 20px 60px 20px 80px;
  flex-wrap: wrap;
  position: relative;
  min-height: 60px;
  transition-duration: 300ms;
}
.sitewide-alert.is-active {
  display: flex;
}
.sitewide-alert i.info {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 60px;
  height: 100%;
  background: url("styles/resources/assets/icons/icon-alert-circle.svg") no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: 20px;
  background-position: center center;
}
.sitewide-alert button.close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 60px;
  height: 100%;
  border: 0;
  background: url("styles/resources/assets/icons/icon-close-white.svg") no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: 16px;
  background-position: center center;
  text-indent: -9999px;
}
.sitewide-alert p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #FFFFFF;
  margin: 0;
  align-self: center;
  margin-right: 20px;
}
.theme-dark .sitewide-alert p {
  color: #FFFFFF;
}
@media (max-width: 63.9375em) {
  .sitewide-alert p + p {
    margin-top: 16px;
  }
}
.sitewide-alert p strong,
.sitewide-alert p b {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  color: #FFFFFF;
}
.theme-dark .sitewide-alert p strong,
.theme-dark .sitewide-alert p b {
  color: #FFFFFF;
}
.theme-dark .sitewide-alert p strong,
.theme-dark .sitewide-alert p b {
  color: #FFFFFF;
}
.sitewide-alert a {
  color: #FFFFFF;
  text-decoration: none;
  align-self: center;
  font-weight: 700;
  position: relative;
  padding: 5px 20px 5px 0;
  display: inline-block;
}
.sitewide-alert a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url("styles/resources/assets/icons/arrow-right-white.svg") no-repeat;
  background-size: 14px;
  width: 14px;
  height: 14px;
  transition: all 300ms;
}
.sitewide-alert a:hover, .sitewide-alert a:focus {
  text-decoration: underline;
}
.sitewide-alert a:hover::before, .sitewide-alert a:focus::before {
  right: -5px;
}
@media (max-width: 47.9375em) {
  .sitewide-alert {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 80px;
  }
  .sitewide-alert p {
    line-height: 1.5;
  }
}
.sitewide-alert.is-persistent {
  padding-right: 0;
}
.sitewide-alert.is-persistent .close {
  display: none;
}
.sitewide-alert.is-ongoing {
  background: #F69900;
}
.sitewide-alert.is-resolved {
  background: #1A9F50;
}
.sitewide-alert.is-offscreen {
  height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translate(0, -170px);
}

.react-loading-skeleton {
  background-color: #EEE;
  background-image: linear-gradient(90deg, #EEE, #F5F5F5, #EEE);
  background-size: 200px 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  width: 100%;
  animation: skeletonKeyframes 1s ease-in-out infinite;
}

.loading-skeleton {
  border-radius: 2px;
  border-radius: 0.125rem;
  background-color: #E4EAEC;
  background-image: linear-gradient(90deg, #E4EAEC, #F5F5F5, #E4EAEC);
  background-size: 200px 100%;
  background-size: 12.5rem 100%;
  background-repeat: no-repeat;
  display: inline-block;
  line-height: 1;
  width: 100%;
  animation: skeletonKeyframes 1s ease-in-out infinite;
}

@keyframes skeletonKeyframes {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
/* to overide the border-top stying of profile-panel class */
.profile__panel.skeleton:before, .profile__panel.skeleton:after {
  content: none;
}

.smart-search,
.page-mygov-home .smart-search,
.global-header .wrapper .smart-search {
  padding: 10px 0 10px;
}
@media only screen and (min-width: 77.75em) {
  .smart-search,
.page-mygov-home .smart-search,
.global-header .wrapper .smart-search {
    text-align: center;
  }
}
.smart-search .l-padding,
.page-mygov-home .smart-search .l-padding,
.global-header .wrapper .smart-search .l-padding {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
.smart-search .search-header,
.page-mygov-home .smart-search .search-header,
.global-header .wrapper .smart-search .search-header {
  margin: 0 0 15px;
  text-align: left;
  font-size: 50px;
  line-height: 56px;
}
@media only screen and (min-width: 64em) {
  .smart-search .search-header,
.page-mygov-home .smart-search .search-header,
.global-header .wrapper .smart-search .search-header {
    margin-bottom: 20px;
    font-size: 50px;
  }
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-header,
.page-mygov-home .smart-search .search-header,
.global-header .wrapper .smart-search .search-header {
    display: block;
    font-size: 72px;
    line-height: 80px;
  }
}
.smart-search h1.search-result__title,
.page-mygov-home .smart-search h1.search-result__title,
.global-header .wrapper .smart-search h1.search-result__title {
  line-height: 1.25;
  letter-spacing: -0.0005em;
  font-weight: 300;
  font-size: 3.875rem;
}
@media screen and (max-width: 639px) {
  .smart-search h1.search-result__title,
.page-mygov-home .smart-search h1.search-result__title,
.global-header .wrapper .smart-search h1.search-result__title {
    font-size: 2.25rem;
  }
}
.smart-search h2.search-result__title,
.page-mygov-home .smart-search h2.search-result__title,
.global-header .wrapper .smart-search h2.search-result__title {
  line-height: 1.25;
  margin-top: 2.5rem;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
}
@media screen and (max-width: 639px) {
  .smart-search h2.search-result__title,
.page-mygov-home .smart-search h2.search-result__title,
.global-header .wrapper .smart-search h2.search-result__title {
    font-size: 1.625rem;
  }
}
.smart-search h3.search-result__title,
.page-mygov-home .smart-search h3.search-result__title,
.global-header .wrapper .smart-search h3.search-result__title {
  line-height: 1.25;
  margin-top: 1.875rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
}
@media screen and (max-width: 639px) {
  .smart-search h3.search-result__title,
.page-mygov-home .smart-search h3.search-result__title,
.global-header .wrapper .smart-search h3.search-result__title {
    font-size: 1.375rem;
  }
}
.smart-search h4.search-result__title,
.page-mygov-home .smart-search h4.search-result__title,
.global-header .wrapper .smart-search h4.search-result__title {
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.375rem;
}
@media screen and (max-width: 639px) {
  .smart-search h4.search-result__title,
.page-mygov-home .smart-search h4.search-result__title,
.global-header .wrapper .smart-search h4.search-result__title {
    font-size: 1.25rem;
  }
}
.smart-search h5.search-result__title,
.page-mygov-home .smart-search h5.search-result__title,
.global-header .wrapper .smart-search h5.search-result__title {
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 639px) {
  .smart-search h5.search-result__title,
.page-mygov-home .smart-search h5.search-result__title,
.global-header .wrapper .smart-search h5.search-result__title {
    font-size: 1.125rem;
  }
}
.smart-search h6.search-result__title,
.page-mygov-home .smart-search h6.search-result__title,
.global-header .wrapper .smart-search h6.search-result__title {
  line-height: 1.25;
  margin-top: 1.25rem;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .smart-search h6.search-result__title,
.page-mygov-home .smart-search h6.search-result__title,
.global-header .wrapper .smart-search h6.search-result__title {
    font-size: 1rem;
  }
}
.smart-search p.search-result__description,
.page-mygov-home .smart-search p.search-result__description,
.global-header .wrapper .smart-search p.search-result__description {
  line-height: 1.875;
  margin: 1.875rem 0 0 0;
  font-weight: 300;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .smart-search p.search-result__description,
.page-mygov-home .smart-search p.search-result__description,
.global-header .wrapper .smart-search p.search-result__description {
    line-height: 1.25;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}
.smart-search .search-result__title,
.page-mygov-home .smart-search .search-result__title,
.global-header .wrapper .smart-search .search-result__title {
  font-size: 28px;
  font-size: 1.75rem;
  color: #254A7E;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-thickness: 1px;
  width: 100%;
  transition: color 150ms;
  font-family: "Roboto", sans-serif;
}
@media only screen and (min-width: 1024px) {
  .smart-search .search-result__title::after,
.page-mygov-home .smart-search .search-result__title::after,
.global-header .wrapper .smart-search .search-result__title::after {
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
    min-width: 24px;
    min-width: 1.5rem;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition-property: transform, margin, background;
    transition-duration: 300ms;
    transition-timing-function: ease;
    right: 32px;
    right: 2rem;
    top: unset;
    background-image: url("styles/resources/assets/icons/chevron-right-dark-blue.svg");
    transition: transform 150ms ease;
  }
}
.smart-search .search-result__title b,
.smart-search .search-result__title strong,
.page-mygov-home .smart-search .search-result__title b,
.page-mygov-home .smart-search .search-result__title strong,
.global-header .wrapper .smart-search .search-result__title b,
.global-header .wrapper .smart-search .search-result__title strong {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
}
.smart-search .search-result__description,
.page-mygov-home .smart-search .search-result__description,
.global-header .wrapper .smart-search .search-result__description {
  padding-top: 16px;
  padding-top: 1rem;
  padding-right: 24px;
  padding-right: 1.5rem;
  line-height: 28px;
  line-height: 1.75rem;
  color: #000000;
  margin: 0;
  text-decoration: none;
  font-weight: 200;
}
.smart-search .search-result__description b,
.smart-search .search-result__description strong,
.page-mygov-home .smart-search .search-result__description b,
.page-mygov-home .smart-search .search-result__description strong,
.global-header .wrapper .smart-search .search-result__description b,
.global-header .wrapper .smart-search .search-result__description strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 28px;
  line-height: 1.75rem;
}
.theme-dark .smart-search .search-result__description b,
.theme-dark .smart-search .search-result__description strong,
.theme-dark .page-mygov-home .smart-search .search-result__description b,
.theme-dark .page-mygov-home .smart-search .search-result__description strong,
.theme-dark .global-header .wrapper .smart-search .search-result__description b,
.theme-dark .global-header .wrapper .smart-search .search-result__description strong {
  color: #FFFFFF;
}
.theme-dark .smart-search .search-result__description b,
.theme-dark .smart-search .search-result__description strong,
.theme-dark .page-mygov-home .smart-search .search-result__description b,
.theme-dark .page-mygov-home .smart-search .search-result__description strong,
.theme-dark .global-header .wrapper .smart-search .search-result__description b,
.theme-dark .global-header .wrapper .smart-search .search-result__description strong {
  color: #FFFFFF;
}
.smart-search .search-result__searchterm,
.page-mygov-home .smart-search .search-result__searchterm,
.global-header .wrapper .smart-search .search-result__searchterm {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  font-weight: 700;
  display: block;
  text-decoration: underline;
  margin: 0;
  position: relative;
  transition: color 150ms;
  color: #254A7E;
  font-weight: 200;
}
.theme-dark .smart-search .search-result__searchterm,
.theme-dark .page-mygov-home .smart-search .search-result__searchterm,
.theme-dark .global-header .wrapper .smart-search .search-result__searchterm {
  color: #FFFFFF;
}
.smart-search .search-result__searchterm:hover, .smart-search .search-result__searchterm:focus,
.page-mygov-home .smart-search .search-result__searchterm:hover,
.page-mygov-home .smart-search .search-result__searchterm:focus,
.global-header .wrapper .smart-search .search-result__searchterm:hover,
.global-header .wrapper .smart-search .search-result__searchterm:focus {
  color: #FFFFFF;
  background-color: #254A7E;
}
.smart-search .search-result__searchterm:focus,
.page-mygov-home .smart-search .search-result__searchterm:focus,
.global-header .wrapper .smart-search .search-result__searchterm:focus {
  border: 0;
  outline: 0.125rem solid #254A7E;
}
.smart-search .search-suggestion__autocomplete,
.page-mygov-home .smart-search .search-suggestion__autocomplete,
.global-header .wrapper .smart-search .search-suggestion__autocomplete {
  display: inline-block;
  flex-direction: column;
  padding: 5px 0;
  margin-bottom: 10px;
}
.smart-search .search-suggestion__suggestion,
.page-mygov-home .smart-search .search-suggestion__suggestion,
.global-header .wrapper .smart-search .search-suggestion__suggestion {
  padding: 32px 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.smart-search .search-suggestion__suggestion:hover .search-result__title,
.page-mygov-home .smart-search .search-suggestion__suggestion:hover .search-result__title,
.global-header .wrapper .smart-search .search-suggestion__suggestion:hover .search-result__title {
  color: #FFFFFF;
  background: #254A7E;
  text-decoration: none;
  width: fit-content;
}
.smart-search .search-suggestion__suggestion:hover .search-result__title::after,
.page-mygov-home .smart-search .search-suggestion__suggestion:hover .search-result__title::after,
.global-header .wrapper .smart-search .search-suggestion__suggestion:hover .search-result__title::after {
  transform: translateX(5px);
}
.smart-search .search-suggestion__suggestion-link,
.page-mygov-home .smart-search .search-suggestion__suggestion-link,
.global-header .wrapper .smart-search .search-suggestion__suggestion-link {
  display: block;
  padding: 0;
  text-decoration: none;
}
.smart-search .search-suggestion__suggestion-link:focus,
.page-mygov-home .smart-search .search-suggestion__suggestion-link:focus,
.global-header .wrapper .smart-search .search-suggestion__suggestion-link:focus {
  outline: 0.125rem solid #183052;
}
.smart-search .search-suggestion__suggestion-link:focus .search-result__title::after,
.page-mygov-home .smart-search .search-suggestion__suggestion-link:focus .search-result__title::after,
.global-header .wrapper .smart-search .search-suggestion__suggestion-link:focus .search-result__title::after {
  transform: translateX(5px);
}
.smart-search .search-suggestion__suggestion-link:after,
.page-mygov-home .smart-search .search-suggestion__suggestion-link:after,
.global-header .wrapper .smart-search .search-suggestion__suggestion-link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.smart-search .search-suggestion__autocomplete:focus, .smart-search .search-suggestion__suggestion-link:focus,
.page-mygov-home .smart-search .search-suggestion__autocomplete:focus,
.page-mygov-home .smart-search .search-suggestion__suggestion-link:focus,
.global-header .wrapper .smart-search .search-suggestion__autocomplete:focus,
.global-header .wrapper .smart-search .search-suggestion__suggestion-link:focus {
  border: 0;
  outline: 0.1875rem solid #2B78E3;
}
.smart-search .search-wrapper,
.page-mygov-home .smart-search .search-wrapper,
.global-header .wrapper .smart-search .search-wrapper {
  width: 100%;
  margin: auto 0;
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-wrapper,
.page-mygov-home .smart-search .search-wrapper,
.global-header .wrapper .smart-search .search-wrapper {
    max-width: 900px;
  }
}
.smart-search .search-wrapper .search-input-wrapper,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.smart-search .search-wrapper .search-input-wrapper .reset-button,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button {
  position: absolute;
  margin: auto;
  right: 18px;
  top: 0;
  bottom: 0;
  border: none;
  text-decoration: none;
  width: 100%;
  height: auto;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/clear-dark-blue.svg");
}
@media only screen and (min-width: 64em) {
  .smart-search .search-wrapper .search-input-wrapper .reset-button,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button {
    right: 22px;
  }
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-wrapper .search-input-wrapper .reset-button,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button {
    width: 30px;
    width: 1.875rem;
    height: 30px;
    height: 1.875rem;
    min-width: 30px;
    min-width: 1.875rem;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 24px;
  }
}
.smart-search .search-wrapper .search-input-wrapper .reset-button:focus,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button:focus,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button:focus {
  outline: 0.1875rem solid #000000;
}
.smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only) {
  position: relative;
  padding-right: 29px;
  margin-right: 15px;
  background: transparent;
  height: 100%;
}
@media (max-width: 63.9375em) {
  .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only) {
    font-size: 14px;
  }
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only),
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .reset-button span:not(.sr-only) {
    margin-right: 24px;
    padding-right: 45px;
  }
}
.smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .loading-spinner {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/spinner-dark-blue.svg");
  margin: 13px 28px 0;
}
@media only screen and (min-width: 64em) {
  .smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .loading-spinner {
    width: 24px;
    width: 1.5rem;
    height: 24px;
    height: 1.5rem;
    min-width: 24px;
    min-width: 1.5rem;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: 12px 24px;
  }
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .loading-spinner,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .loading-spinner {
    width: 30px;
    width: 1.875rem;
    height: 30px;
    height: 1.875rem;
    min-width: 30px;
    min-width: 1.875rem;
    display: block;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    margin-right: 24px;
  }
}
.smart-search .search-wrapper .search-input-wrapper .search-icon,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .search-icon,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .search-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  margin: auto;
  margin-right: 18px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  border: none;
  background-color: transparent;
  background-image: url("styles/resources/assets/icons/search-black.svg");
}
@media only screen and (min-width: 64em) {
  .smart-search .search-wrapper .search-input-wrapper .search-icon,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .search-icon,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .search-icon {
    margin-right: 22px;
  }
}
@media only screen and (min-width: 77.75em) {
  .smart-search .search-wrapper .search-input-wrapper .search-icon,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .search-icon,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .search-icon {
    margin-right: 24px;
  }
}
.smart-search .search-wrapper .search-input-wrapper .search-input-action,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .search-input-action,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .search-input-action {
  z-index: 500;
  position: absolute;
  right: 0;
  top: 0;
  height: 61px;
  width: 61px;
}
@media only screen and (min-width: 64em) {
  .smart-search .search-wrapper .search-input-wrapper .search-input-action,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .search-input-action,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .search-input-action {
    height: 61px;
    width: 100px;
    display: flex;
  }
}
.smart-search .search-wrapper .search-input-wrapper .smart-search-text-input,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input {
  border: 1px solid #000000;
  border-radius: 2px;
  margin: 0;
  background-color: #FFFFFF;
  top: 0;
  color: #000000;
  height: 61px;
  padding-left: 15px;
  padding-right: 95px;
  font-size: 18px;
  transition: border 150ms, box-shadow none;
}
.smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:hover, .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:hover,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:hover,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus {
  border-width: 2px;
}
.smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus, .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:active,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:active,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:focus,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input:active {
  outline: 2px solid #183052;
  outline-offset: 2px;
  -webkit-appearance: none;
}
.smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-clear, .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-reveal,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-clear,
.page-mygov-home .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-reveal,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-clear,
.global-header .wrapper .smart-search .search-wrapper .search-input-wrapper .smart-search-text-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container {
  background: transparent;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container button,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button {
  color: #254A7E;
  padding: 1px;
  background-color: transparent;
  border-color: transparent;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container button:hover,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button:hover,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button:hover {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #254A7E;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus, .smart-search .search-wrapper .react-autosuggest__suggestions-container button:active,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button:active,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button:active {
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 1px;
  outline-offset: 2px;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button:focus {
  background-color: transparent;
  outline: 2px solid #254A7E;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-container button:active,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-container button:active,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-container button:active {
  background-color: #183052;
  outline: 2px solid #183052;
}
.smart-search .search-wrapper .react-autosuggest__suggestions-list,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestions-list,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestions-list {
  margin: 20px 0;
  border-left: 4px solid #254A7E;
  padding-left: 20px;
}
.smart-search .search-wrapper .react-autosuggest__suggestion,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestion,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestion {
  list-style: none;
  text-align: left;
  cursor: pointer;
  border: 0;
}
.smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__searchterm,
.smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-suggestion__suggestion-link,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__searchterm,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-suggestion__suggestion-link,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__searchterm,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-suggestion__suggestion-link {
  border: 0;
  outline: 3px solid #2B78E3;
}
.smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__title::after,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__title::after,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__suggestion--highlighted:not(:hover) .search-result__title::after {
  transform: translateX(5px);
}
.smart-search .search-wrapper .react-autosuggest__section-container,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__section-container,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__section-container {
  padding-top: 15px;
}
.smart-search .search-wrapper .react-autosuggest__section-container #suggestion-header,
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__section-container #suggestion-header,
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__section-container #suggestion-header {
  text-align: left;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
  margin: 36px 0;
  margin: 2.25rem 0;
}
.smart-search .search-wrapper .react-autosuggest__section-container:not(:first-child),
.page-mygov-home .smart-search .search-wrapper .react-autosuggest__section-container:not(:first-child),
.global-header .wrapper .smart-search .search-wrapper .react-autosuggest__section-container:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.smart-search .search-wrapper .suggested-results,
.page-mygov-home .smart-search .search-wrapper .suggested-results,
.global-header .wrapper .smart-search .search-wrapper .suggested-results {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.smart-search .search-wrapper .suggested-results,
.smart-search .search-wrapper .search-results,
.page-mygov-home .smart-search .search-wrapper .suggested-results,
.page-mygov-home .smart-search .search-wrapper .search-results,
.global-header .wrapper .smart-search .search-wrapper .suggested-results,
.global-header .wrapper .smart-search .search-wrapper .search-results {
  text-align: left;
  width: 99%;
}
.smart-search .search-wrapper .suggested-results__item,
.smart-search .search-wrapper .search-results__item,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item,
.page-mygov-home .smart-search .search-wrapper .search-results__item,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item,
.global-header .wrapper .smart-search .search-wrapper .search-results__item {
  position: relative;
  border-bottom: 0.0625rem solid #DDDDDD;
}
.smart-search .search-wrapper .suggested-results__item:first-child,
.smart-search .search-wrapper .search-results__item:first-child,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item:first-child,
.page-mygov-home .smart-search .search-wrapper .search-results__item:first-child,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item:first-child,
.global-header .wrapper .smart-search .search-wrapper .search-results__item:first-child {
  border-top: 0.0625rem solid #DDDDDD;
}
.smart-search .search-wrapper .suggested-results__item a:hover, .smart-search .search-wrapper .suggested-results__item a:focus, .smart-search .search-wrapper .suggested-results__item a:active,
.smart-search .search-wrapper .search-results__item a:hover,
.smart-search .search-wrapper .search-results__item a:focus,
.smart-search .search-wrapper .search-results__item a:active,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:active,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:focus,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:active,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:active,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:focus,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:active {
  color: #FFFFFF !important;
  border-bottom: unset;
}
.smart-search .search-wrapper .suggested-results__item a:hover,
.smart-search .search-wrapper .search-results__item a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:hover {
  background-color: #F5F5F5;
}
.smart-search .search-wrapper .suggested-results__item a:focus, .smart-search .search-wrapper .suggested-results__item a:active,
.smart-search .search-wrapper .search-results__item a:focus,
.smart-search .search-wrapper .search-results__item a:active,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item a:active,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:focus,
.page-mygov-home .smart-search .search-wrapper .search-results__item a:active,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item a:active,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:focus,
.global-header .wrapper .smart-search .search-wrapper .search-results__item a:active {
  border-radius: 1px;
  border-radius: 0.0625rem;
}
.smart-search .search-wrapper .suggested-results__item:hover, .smart-search .search-wrapper .suggested-results__item:focus-within,
.smart-search .search-wrapper .search-results__item:hover,
.smart-search .search-wrapper .search-results__item:focus-within,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results__item:focus-within,
.page-mygov-home .smart-search .search-wrapper .search-results__item:hover,
.page-mygov-home .smart-search .search-wrapper .search-results__item:focus-within,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__item:focus-within,
.global-header .wrapper .smart-search .search-wrapper .search-results__item:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results__item:focus-within {
  background: #F5F5F5;
}
.smart-search .search-wrapper .suggested-results__status,
.smart-search .search-wrapper .search-results__status,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status,
.page-mygov-home .smart-search .search-wrapper .search-results__status,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status,
.global-header .wrapper .smart-search .search-wrapper .search-results__status {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 20px 0;
  margin: 1.25rem 0;
  line-height: 1.6666666667;
  color: #000000;
  margin: 0;
  position: relative;
  padding-left: 28px;
}
.theme-dark .smart-search .search-wrapper .suggested-results__status,
.theme-dark .smart-search .search-wrapper .search-results__status,
.theme-dark .page-mygov-home .smart-search .search-wrapper .suggested-results__status,
.theme-dark .page-mygov-home .smart-search .search-wrapper .search-results__status,
.theme-dark .global-header .wrapper .smart-search .search-wrapper .suggested-results__status,
.theme-dark .global-header .wrapper .smart-search .search-wrapper .search-results__status {
  color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results__status::before,
.smart-search .search-wrapper .search-results__status::before,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status::before,
.page-mygov-home .smart-search .search-wrapper .search-results__status::before,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status::before,
.global-header .wrapper .smart-search .search-wrapper .search-results__status::before {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 5px;
}
.smart-search .search-wrapper .suggested-results__status--loading,
.smart-search .search-wrapper .search-results__status--loading,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status--loading,
.page-mygov-home .smart-search .search-wrapper .search-results__status--loading,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status--loading,
.global-header .wrapper .smart-search .search-wrapper .search-results__status--loading {
  opacity: 0;
  animation: fadeIn 300ms 2000ms forwards;
  transition: 150ms;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.smart-search .search-wrapper .suggested-results__status--loading::before,
.smart-search .search-wrapper .search-results__status--loading::before,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status--loading::before,
.page-mygov-home .smart-search .search-wrapper .search-results__status--loading::before,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status--loading::before,
.global-header .wrapper .smart-search .search-wrapper .search-results__status--loading::before {
  background-image: url("styles/resources/assets/icons/icon-info-white.svg");
}
.smart-search .search-wrapper .suggested-results__status--error::before,
.smart-search .search-wrapper .search-results__status--error::before,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status--error::before,
.page-mygov-home .smart-search .search-wrapper .search-results__status--error::before,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status--error::before,
.global-header .wrapper .smart-search .search-wrapper .search-results__status--error::before {
  background-image: url("styles/resources/assets/icons/icon-warning-white.svg");
}
.smart-search .search-wrapper .suggested-results__status--empty::before,
.smart-search .search-wrapper .search-results__status--empty::before,
.page-mygov-home .smart-search .search-wrapper .suggested-results__status--empty::before,
.page-mygov-home .smart-search .search-wrapper .search-results__status--empty::before,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__status--empty::before,
.global-header .wrapper .smart-search .search-wrapper .search-results__status--empty::before {
  background-image: url("styles/resources/assets/icons/icon-alert-circle.svg");
}
.smart-search .search-wrapper .suggested-results__count,
.smart-search .search-wrapper .search-results__count,
.page-mygov-home .smart-search .search-wrapper .suggested-results__count,
.page-mygov-home .smart-search .search-wrapper .search-results__count,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__count,
.global-header .wrapper .smart-search .search-wrapper .search-results__count {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  margin: 0;
  position: relative;
  text-align: left;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.theme-dark .smart-search .search-wrapper .suggested-results__count,
.theme-dark .smart-search .search-wrapper .search-results__count,
.theme-dark .page-mygov-home .smart-search .search-wrapper .suggested-results__count,
.theme-dark .page-mygov-home .smart-search .search-wrapper .search-results__count,
.theme-dark .global-header .wrapper .smart-search .search-wrapper .suggested-results__count,
.theme-dark .global-header .wrapper .smart-search .search-wrapper .search-results__count {
  color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .bot-response,
.smart-search .search-wrapper .search-results .bot-response,
.page-mygov-home .smart-search .search-wrapper .suggested-results .bot-response,
.page-mygov-home .smart-search .search-wrapper .search-results .bot-response,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .bot-response,
.global-header .wrapper .smart-search .search-wrapper .search-results .bot-response {
  margin: 0 0 50px 0;
}
.smart-search .search-wrapper .suggested-results .bot-response .followUp-questions li a,
.smart-search .search-wrapper .search-results .bot-response .followUp-questions li a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .bot-response .followUp-questions li a,
.page-mygov-home .smart-search .search-wrapper .search-results .bot-response .followUp-questions li a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .bot-response .followUp-questions li a,
.global-header .wrapper .smart-search .search-wrapper .search-results .bot-response .followUp-questions li a {
  color: #006CE0;
  font-size: 20px;
}
.smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.smart-search .search-wrapper .search-results .results-section .search-result-list,
.page-mygov-home .smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.page-mygov-home .smart-search .search-wrapper .search-results .results-section .search-result-list,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.global-header .wrapper .smart-search .search-wrapper .search-results .results-section .search-result-list {
  list-style: none;
  padding-left: 0;
}
.smart-search .search-wrapper .suggested-results .pagination,
.smart-search .search-wrapper .search-results .pagination,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 15px 0 0;
  padding-top: 30px;
}
.smart-search .search-wrapper .suggested-results .pagination > li a:not(.disabled):focus,
.smart-search .search-wrapper .search-results .pagination > li a:not(.disabled):focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li a:not(.disabled):focus,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li a:not(.disabled):focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li a:not(.disabled):focus,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li a:not(.disabled):focus {
  border-color: #FFFFFF;
  box-shadow: 0 0 0 2px #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a::after,
.smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a::after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a::after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a::after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a::after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a::after {
  background-image: url("styles/resources/assets/icons/arrow-left-white.svg");
}
.smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover,
.smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover::after,
.smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover::after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover::after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover::after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.previous:not(.disabled) a:hover::after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.previous:not(.disabled) a:hover::after {
  background-image: url("styles/resources/assets/icons/arrow-left.svg");
}
.smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a::after,
.smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a::after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a::after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a::after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a::after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a::after {
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
}
.smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover,
.smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover {
  border-color: #FFFFFF;
  background-color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover::after,
.smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover::after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover::after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover::after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li.next:not(.disabled) a:hover::after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li.next:not(.disabled) a:hover::after {
  background-image: url("styles/resources/assets/icons/arrow-right.svg");
}
.smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a,
.smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a {
  background-color: #183052;
  color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover,
.smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me) a:hover {
  background-color: #FFFFFF;
  color: #525252;
  border-color: transparent;
}
.smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me).active a,
.smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me).active a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me).active a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me).active a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination > li:not(.previous):not(.next):not(.break-me).active a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination > li:not(.previous):not(.next):not(.break-me).active a {
  color: #006CE0;
  border-color: #006CE0;
  background-color: #FFFFFF;
}
.smart-search .search-wrapper .suggested-results .pagination a:focus,
.smart-search .search-wrapper .search-results .pagination a:focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination a:focus,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination a:focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination a:focus,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination a:focus {
  outline: 2px solid #183052;
  outline-offset: 0.5px;
  box-shadow: none;
}
.smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a,
.smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a,
.smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a,
.smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a {
  background-color: #183052;
  color: #FFFFFF;
  border-color: transparent;
}
.smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover,
.smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover,
.smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover,
.smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover {
  background-color: #FFFFFF;
  color: #525252;
  border-color: transparent;
}
.smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover span:after,
.smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover span:after,
.smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover span:after,
.smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover span:after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover span:after,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover span:after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover span:after,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover span:after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:hover span:after,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:hover span:after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:hover span:after,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:hover span:after {
  color: #525252;
}
.smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:focus,
.smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:focus,
.smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:focus,
.smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:focus,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:focus,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:focus,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.previous:not(.disabled) a:focus,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.next:not(.disabled) a:focus,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.previous:not(.disabled) a:focus,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.next:not(.disabled) a:focus {
  border-color: #FFFFFF;
  border-radius: 5px;
}
.smart-search .search-wrapper .suggested-results .pagination li.previous.disabled a,
.smart-search .search-wrapper .suggested-results .pagination li.next.disabled a,
.smart-search .search-wrapper .search-results .pagination li.previous.disabled a,
.smart-search .search-wrapper .search-results .pagination li.next.disabled a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.previous.disabled a,
.page-mygov-home .smart-search .search-wrapper .suggested-results .pagination li.next.disabled a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.previous.disabled a,
.page-mygov-home .smart-search .search-wrapper .search-results .pagination li.next.disabled a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.previous.disabled a,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .pagination li.next.disabled a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.previous.disabled a,
.global-header .wrapper .smart-search .search-wrapper .search-results .pagination li.next.disabled a {
  display: none;
}
.smart-search .search-wrapper .suggested-results__next,
.smart-search .search-wrapper .search-results__next,
.page-mygov-home .smart-search .search-wrapper .suggested-results__next,
.page-mygov-home .smart-search .search-wrapper .search-results__next,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__next,
.global-header .wrapper .smart-search .search-wrapper .search-results__next {
  height: 28px;
  background: transparent;
  border: none;
  margin-left: 20px;
}
.smart-search .search-wrapper .suggested-results__next i,
.smart-search .search-wrapper .search-results__next i,
.page-mygov-home .smart-search .search-wrapper .suggested-results__next i,
.page-mygov-home .smart-search .search-wrapper .search-results__next i,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__next i,
.global-header .wrapper .smart-search .search-wrapper .search-results__next i {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("styles/resources/assets/icons/chevron-right.svg") no-repeat;
  background-size: 28px;
}
.smart-search .search-wrapper .suggested-results__current,
.smart-search .search-wrapper .search-results__current,
.page-mygov-home .smart-search .search-wrapper .suggested-results__current,
.page-mygov-home .smart-search .search-wrapper .search-results__current,
.global-header .wrapper .smart-search .search-wrapper .suggested-results__current,
.global-header .wrapper .smart-search .search-wrapper .search-results__current {
  margin-left: 3px;
  margin-right: 3px;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  border: 1px solid #006CE0;
  color: #006CE0;
}
.smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.smart-search .search-wrapper .search-results .results-section .search-result-list,
.page-mygov-home .smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.page-mygov-home .smart-search .search-wrapper .search-results .results-section .search-result-list,
.global-header .wrapper .smart-search .search-wrapper .suggested-results .results-section .search-result-list,
.global-header .wrapper .smart-search .search-wrapper .search-results .results-section .search-result-list {
  list-style: none;
  padding-left: 0;
}

.page-mygov-search div.smartsearchbanner:last-of-type .smart-search {
  padding: 10px 0 40px;
}
@media only screen and (max-height: 56em) {
  .page-mygov-search div.smartsearchbanner:last-of-type .smart-search {
    padding: 0 0 124px;
  }
}
@media only screen and (min-width: 77.75em) {
  .page-mygov-search div.smartsearchbanner:last-of-type .smart-search {
    padding: 0 0 100px;
  }
}

.system-error {
  display: flex;
  flex-direction: column;
}
.system-error a {
  margin: 10px 10px 0 0;
}
.system-error__content {
  margin: 1.2em 0 1.2em 0;
}

.cmp-container[dir=rtl] th {
  text-align: right;
}

.cmp-container[dir=rtl] td {
  text-align: right;
}

.tableofcontents .cmp-table-of-contents {
  margin: 2.5rem 0;
  padding: 0 0 0 1.5rem;
  border-left: solid 4px #254A7E;
}
.tableofcontents .cmp-table-of-contents h2.cmp-toc__title {
  margin: 0 0 0.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.125rem;
}
.tableofcontents .cmp-table-of-contents .cmp-toc__content li {
  margin-top: 0.5rem;
}
.tableofcontents .cmp-table-of-contents .cmp-toc__content ol,
.tableofcontents .cmp-table-of-contents .cmp-toc__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tableofcontents .cmp-table-of-contents .cmp-toc__content ol li,
.tableofcontents .cmp-table-of-contents .cmp-toc__content ul li {
  line-height: 1.5556;
  font-weight: 300;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .tableofcontents .cmp-table-of-contents h2.cmp-toc__title {
    letter-spacing: 0.001em;
    font-size: 1rem;
  }
  .tableofcontents .cmp-table-of-contents .cmp-toc__content ol li,
.tableofcontents .cmp-table-of-contents .cmp-toc__content ul li {
    line-height: 1.25;
    font-size: 1rem;
  }
}
.tableofcontents .cmp-table-of-contents + .cmp-toc__template-placeholder {
  display: none;
}

.cmp-container[dir=rtl] .cmp-table-of-contents {
  border-left: none;
  border-right: solid 4px #254A7E;
  padding: 0 1.5rem 0 0;
}

.cmp-toc__content a {
  color: #254A7E;
  padding: 1px;
}

.cmp-toc__content a:hover {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #254A7E;
}

.cmp-toc__content a:active {
  background-color: #183052;
  outline: 2px solid #183052;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 1px;
  outline-offset: 2px;
}

.cmp-toc__content a:focus {
  background-color: #254A7E;
  outline: 2px solid #254A7E;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 1px;
  outline-offset: 2px;
}

@supports (container-type: inline-size) and (container-name: list) {
  .list .cmp-list.cmp-teaser-list {
    container-type: inline-size;
    container-name: list;
  }
  .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser {
    container-type: inline-size;
    container-name: item;
  }
  @container list (min-width:440px ) and (max-width:984px) {
    .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser {
      flex-direction: row;
      align-items: flex-start;
      align-content: baseline;
    }
  }
  @container item (min-width:440px ) and (max-width:728px) {
    .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-image {
      width: 10rem;
      height: 100%;
      padding-right: 1rem;
    }
    .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-image__image {
      height: 100%;
    }
    .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text {
      max-width: calc(100% - 10rem);
    }
    .list .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-title {
      margin-top: 0;
    }
  }
}
.cmp-list.cmp-teaser-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 2fr));
  gap: 1rem;
  margin: 1.25rem 0;
}
@media only screen and (min-width: 48em) {
  .cmp-list.cmp-teaser-list {
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-list.cmp-teaser-list {
    gap: 2rem;
  }
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  border: 1px solid #EDF2F4;
  border-radius: 4px;
  padding: 1rem;
  position: relative;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  opacity: 1;
  text-align: left;
  overflow: hidden;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-image {
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  margin: 0;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-image__image {
  height: 14rem;
  object-fit: cover;
  width: 100%;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text {
  flex-grow: 1;
  width: 100%;
  margin: 0;
  margin-bottom: 2rem;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text:after {
  display: block;
  content: "";
  background: url(styles/resources/assets/icons/chevron-right-black.svg) no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-title {
  margin: 1.5rem 0 1rem;
  line-height: 1.25;
  letter-spacing: 0.001em;
  font-weight: 500;
  font-size: 1.25rem;
}
@media only screen and (min-width: 40em) {
  .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-title {
    font-size: 1.375rem;
  }
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-description {
  margin: 0;
  line-height: 1.25;
  font-weight: 300;
}
@media (min-width: 30em) and (max-width: 88.0625em) {
  .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-description {
    line-height: 1.5556;
    font-size: 1rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text .cmp-list__item-description {
    font-size: 1.125rem;
  }
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser > .cmp-list__item-text:first-child .cmp-list__item-title {
  margin-top: 0;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser a.cmp-list__item-link {
  background-color: unset;
  color: unset;
  border: none;
  box-shadow: none;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser a.cmp-list__item-link:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background: transparent;
  margin: 0;
  width: auto;
  min-width: auto;
  height: auto;
  align-self: unset;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser a.cmp-list__item-link:hover, .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser a.cmp-list__item-link:focus {
  background-color: unset;
  color: unset;
  box-shadow: none;
  border: none;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser a.cmp-list__item-link:focus {
  outline: none;
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser:hover, .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser:focus-within {
  background: #EDF2F4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}
.cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser:focus-within {
  border: 2px solid #254A7E;
}

.cmp-container[dir=rtl] .cmp-list__item.cmp-list__item-teaser {
  text-align: initial;
}

.cmp-container[dir=rtl] .cmp-list.cmp-teaser-list .cmp-list__item.cmp-list__item-teaser .cmp-list__item-text:after {
  right: initial;
  left: 1rem;
  transform: rotateY(180deg);
}

@keyframes ShowToasts {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes HideToasts {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.toast__container {
  bottom: 40px;
  bottom: 2.5rem;
  left: 20px;
  left: 1.25rem;
  right: 20px;
  right: 1.25rem;
  position: fixed;
  z-index: 1100;
  width: fit-content;
  max-width: calc(100% - 20px - 20px);
  visibility: hidden;
  transition: visibility 0s linear 150ms, opacity 150ms linear, transform 150ms ease;
  animation: HideToasts 100ms;
  animation-fill-mode: forwards;
}
.toast__container.is-visible {
  transition: visibility 0s linear, opacity 150ms linear, transform 150ms ease;
  visibility: visible;
  animation: ShowToasts 150ms;
  animation-fill-mode: forwards;
}
@media only screen and (min-width: 64em) {
  .toast__container {
    max-width: 770px;
    max-width: 48.125rem;
    left: 5vw;
  }
}
@media (max-width: 47.9375em) {
  .toast__container {
    height: 100vh;
    height: -webkit-fill-available;
    pointer-events: none;
    bottom: auto;
    top: 0;
    display: flex;
  }
  .toast__container > .toast__message {
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    margin-top: auto;
    pointer-events: initial;
  }
}
.toast__message {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  min-height: 60px;
  padding: 15px 55px 15px 80px;
  background: #006CE0;
  color: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  transition-property: opacity, transform;
  transition-duration: 150ms;
}
@media only screen and (min-width: 64em) {
  .toast__message {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.toast__message button.close {
  width: 48px;
  width: 3rem;
  min-width: 48px;
  min-width: 3rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background: url("styles/resources/assets/icons/icon-close-bold-white.svg") no-repeat;
  background-size: 14px;
  background-position: right 20px top 23px;
}
.toast__message button.close:focus {
  outline-color: #000000;
}
.toast__message p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #FFFFFF;
  margin: 0;
  align-self: center;
}
.theme-dark .toast__message p {
  color: #FFFFFF;
}
.toast__message p strong,
.toast__message p b {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  color: #FFFFFF;
}
.theme-dark .toast__message p strong,
.theme-dark .toast__message p b {
  color: #FFFFFF;
}
.theme-dark .toast__message p strong,
.theme-dark .toast__message p b {
  color: #FFFFFF;
}
.toast__message.is-error {
  background: #DC3548;
}
.toast__message.is-information {
  background: #006CE0;
}
.toast__message.is-success {
  background: #168845;
}
.toast__icon {
  width: 60px;
  width: 3.75rem;
  min-width: 60px;
  min-width: 3.75rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-color: rgba(0, 0, 0, 0.2);
  background-size: 24px;
  background-position: center top 17px;
  border-radius: 5px 0 0 5px;
  background-image: url("styles/resources/assets/icons/icon-info-white.svg");
}
.is-error .toast__icon {
  background-image: url("styles/resources/assets/icons/icon-warning-white.svg");
}
.is-success .toast__icon {
  background-image: url("styles/resources/assets/icons/icon-check-circle-white.svg");
}

.toast__message {
  min-height: 43px;
  min-height: 2.6875rem;
  border-radius: 5px;
  border-radius: 0.3125rem;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  background: #006CE0;
  color: #101820;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.125rem 0.375rem 0 rgba(0, 0, 0, 0.25);
  transition-property: opacity, transform;
  transition-duration: 150ms;
  height: auto;
  align-items: stretch;
  line-height: 1.25;
  padding: 0;
}
.toast__message p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  font-size: 16px;
  font-size: 1rem;
  padding: 12px 8px 12px 16px;
  padding: 0.75rem 0.5rem 0.75rem 1rem;
  color: #101820;
  align-self: center;
  line-height: 1.25;
  position: static;
}
.theme-dark .toast__message p {
  color: #FFFFFF;
}
.toast__message p strong,
.toast__message p b {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
  color: #101820;
}
.theme-dark .toast__message p strong,
.theme-dark .toast__message p b {
  color: #FFFFFF;
}
.theme-dark .toast__message p strong,
.theme-dark .toast__message p b {
  color: #FFFFFF;
}
.toast__message button.close {
  width: 14px;
  width: 0.875rem;
  height: auto;
  min-width: 14px;
  min-width: 0.875rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-size: 14px;
  background-size: 0.875rem;
  padding: 0 16px 0 8px;
  padding: 0 1rem 0 0.5rem;
  background-position: 8px center;
  background-position: 0.5rem center;
  background-image: url("styles/resources/assets/icons/Close @16.svg");
  background-repeat: no-repeat;
  position: static;
  box-sizing: content-box;
  border: 0 none;
}
.toast__message button.close:focus {
  outline-color: #000000;
}
.toast__message.is-error {
  background: #dc3548;
}
.toast__message.is-error .toast__icon {
  background-image: url("styles/resources/assets/icons/icon-warning-white.svg");
  background-color: #af2939;
}
.toast__message.is-information {
  background: #016ce0;
}
.toast__message.is-information .toast__icon {
  background-image: url("styles/resources/assets/icons/icon-info-white.svg");
  background-color: #0055b3;
}
.toast__message.is-success {
  background: #A7D0B1;
}
.toast__message.is-success .toast__icon {
  background-image: url("styles/resources/assets/icons/icon-check-circle-white.svg");
  background-color: #1A9F50;
}

.toast__icon {
  width: 44px;
  width: 2.75rem;
  height: auto;
  min-width: 44px;
  min-width: 2.75rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  background-size: 22px;
  background-size: 1.375rem;
  border-radius: 5px 0 0 5px;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background-position: center center;
  position: static;
}

.top-navigation-bar {
  display: none;
  align-items: left;
  justify-content: center;
  background: #FFFFFF;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid #D9D9D6;
}
.top-navigation-bar__list {
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: row wrap;
}
@media only screen and (min-width: 64em) {
  .top-navigation-bar__list {
    width: 1024px;
  }
}
@media only screen and (min-width: 77.75em) {
  .top-navigation-bar__list {
    width: 1244px;
  }
}
@media only screen and (min-width: 88.125em) {
  .top-navigation-bar__list {
    width: 1360px;
  }
}
.top-navigation-bar__item {
  display: inline-block;
  white-space: nowrap;
  background-color: #FFFFFF;
  margin-right: 4px;
}
.top-navigation-bar__item a {
  position: relative;
  color: #000000;
  font-size: 18px;
  font-weight: 550;
  text-decoration: none;
  display: block;
  padding: 16px;
}
.top-navigation-bar__item a:hover, .top-navigation-bar__item a:focus {
  outline: none;
  background-color: #CCF0F9;
}
.top-navigation-bar__item a:hover ::after, .top-navigation-bar__item a:focus ::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: #183052;
  width: 100%;
}
.top-navigation-bar__item a:focus {
  outline: 2px solid #183052;
  outline-offset: -2px;
}
.top-navigation-bar__item-active a ::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background: #000000;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .top-navigation-bar {
    display: flex;
  }
  .top-navigation-bar__list {
    padding: 0 40px;
  }
}
.translation-widget-mobile {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: sticky;
  position: -webkit-sticky;
  /* stylelint-disable-line */
  /* Translation Widget Mobile Device Fixes.
  classes are added via NavOffscreen.js */
}
.translation-widget-mobile.is-chrome {
  bottom: auto;
}
.translation-widget-mobile.is-phone.is-ios {
  position: -webkit-sticky;
  /* stylelint-disable-line */
  cursor: pointer;
}
.translation-widget-mobile.is-phone.is-ios.is-open {
  position: absolute;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1) {
  .translation-widget-mobile.is-phone.is-ios {
    bottom: 60px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  .translation-widget-mobile.is-phone.is-ios {
    bottom: 80px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 414px) and (max-width: 896px) {
  .translation-widget-mobile.is-phone.is-ios {
    bottom: 120px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 3) {
  .translation-widget-mobile.is-phone.is-ios {
    bottom: 120px;
  }
}
.translation-widget-mobile.is-phone.is-android {
  bottom: 60px;
}
@media only screen and (min-width: 753px) and (max-width: 1037px) {
  .translation-widget-mobile.is-phone.is-android {
    bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .translation-widget-mobile.is-phone.is-android {
    bottom: 80px;
  }
}
.translation-widget-mobile.is-phone.is-samsung {
  bottom: 0;
}
.translation-widget-mobile.is-ipad {
  position: -webkit-sticky;
  /* stylelint-disable-line */
  cursor: pointer;
  bottom: 40px;
}
.translation-widget-mobile.is-ipad.is-chrome {
  bottom: 0;
}
.translation-widget-mobile.search-active {
  display: none;
}
.translation-widget-mobile strong {
  font-weight: 400;
}
.translation-widget-mobile.is-open {
  display: block;
  background: #183052;
  z-index: 1000;
  position: absolute;
  top: 0;
}
.translation-widget-mobile.is-open .nav__link strong {
  font-weight: 500;
}
.translation-widget-mobile .nav__link {
  display: flex !important;
  flex-flow: row;
  align-items: center;
  width: 100%;
  font-size: 22px;
  height: 80px;
  position: relative;
  background: #183052;
  cursor: pointer;
}
.translation-widget-mobile .nav__link:focus {
  outline-offset: -7.5px;
  outline: 2px #183052 solid;
}
.translation-widget-mobile .nav__link.is-open {
  font-weight: 400 !important;
  box-shadow: 5px 0 0 0 #FFFFFF inset !important;
}
.translation-widget-mobile .nav__link::before {
  background-image: url("styles/resources/assets/icons/chevron-down-white.svg") !important;
}
.translation-widget-mobile .nav__link .globe-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 15px;
}
.translation-widget-mobile .subnav__link.is-active {
  border-left: 5px solid #006CE0;
}
.translation-widget-mobile .subnav__link.is-active span {
  font-weight: 600;
}
.translation-widget-mobile .subnav__link:focus, .translation-widget-mobile .subnav__link:hover {
  cursor: pointer;
}
.translation-widget-mobile .subnav__link:focus span, .translation-widget-mobile .subnav__link:hover span {
  font-weight: 600;
}
.translation-widget-mobile .subnav__link:focus {
  outline-offset: -7.5px;
  outline: 2px #183052 solid;
}

.translation-widget {
  display: flex;
  flex-flow: column nowrap;
  position: relative;
}
.translation-widget.footer {
  padding-top: 0;
}
.translation-widget.footer .translation-widget__button {
  max-width: 240px;
  width: 100%;
  height: 46px;
  background: transparent;
}
@media only screen and (min-width: 48em) {
  .translation-widget.footer .translation-widget__button {
    width: 80%;
  }
}
.translation-widget.footer .translation-widget__button .chevron-container {
  position: absolute;
  right: 12px;
}
.translation-widget.footer .translation-widget__button .globe-icon {
  margin: 0 12px 0 6px;
}
.translation-widget.footer .translation-widget__button:focus {
  outline-offset: 5px;
}
.translation-widget.footer .language-options {
  width: 100%;
  max-width: 240px;
  right: auto;
}
@media only screen and (min-width: 48em) {
  .translation-widget.footer .language-options {
    width: 80%;
  }
}
@media only screen and (min-width: 64em) {
  .translation-widget.footer .language-options {
    width: 100%;
    min-width: 240px;
  }
}
.translation-widget.footer .language-options li:focus {
  outline-offset: -5px;
}
.translation-widget.footer .language-options li:first-of-type {
  border-radius: 5px 5px 0 0;
}
.translation-widget.footer .language-options li:last-of-type {
  border-radius: 0 0 5px 5px;
}
.translation-widget.header_desktop {
  display: none;
  right: 12px;
  z-index: 700;
  margin: 0 0 0 10px;
}
@media only screen and (min-width: 40em) {
  .translation-widget.header_desktop {
    display: flex;
  }
}
@media only screen and (min-width: 77.75em) {
  .translation-widget.header_desktop {
    right: 24px;
  }
}
.translation-widget.header_desktop .translation-widget__button {
  display: flex;
  width: 100%;
  border-radius: 0;
  border-width: 0;
  padding: 0;
  color: #000000;
  background: transparent;
}
.translation-widget.header_desktop .translation-widget__button:focus, .translation-widget.header_desktop .translation-widget__button:active {
  outline: unset;
  outline-offset: unset;
}
.translation-widget.header_desktop .translation-widget__button.is-open {
  border-radius: 0;
  position: relative;
}
.translation-widget.header_desktop .translation-widget__button span {
  display: block;
  position: relative;
}
.translation-widget.header_desktop .translation-widget__button span strong {
  font-weight: 500;
}
.translation-widget.header_desktop .language-options {
  position: absolute;
  top: 45px;
  left: 6px;
  bottom: 0;
  list-style-type: none;
  border-radius: 4px;
  height: fit-content;
  padding: 0;
  overflow: hidden;
  width: calc(100% + 15px);
}
.translation-widget.header_desktop .language-options li {
  border-radius: 0;
}
.translation-widget.header_desktop .language-options li:focus {
  outline-offset: -5px;
  outline: 2px #183052 solid;
}
.translation-widget p {
  padding: 0;
  margin: 0;
  color: #FFFFFF;
  font-weight: bold;
}
.translation-widget__button {
  display: flex;
  position: relative;
  flex-flow: row nowrap;
  align-items: center;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  background: #183052;
  text-align: left;
  color: #FFFFFF;
  white-space: nowrap;
}
.translation-widget__button .globe-icon {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  min-width: 20px;
  min-width: 1.25rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 12px 0 6px;
  padding-bottom: 1px;
}
.translation-widget__button .chevron-container {
  margin-left: 12px;
  transition-property: transform;
  transition-duration: 150ms;
  transition-timing-function: ease;
  will-change: transform;
}
.translation-widget__button .chevron-container.up {
  transform: rotate(180deg);
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
}
.translation-widget__button.is-open {
  border-radius: 0 0 5px 5px;
}
.translation-widget__button:focus {
  outline-color: #FFFFFF;
  z-index: 401;
}
.translation-widget .language-options {
  position: absolute;
  width: 100%;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 400;
  margin: 10px auto 0;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  text-align: left;
  background: #FFFFFF;
  transition-property: transform, opacity;
  transition-duration: 150ms;
  transition-timing-function: ease;
  will-change: transform;
  display: none;
  max-height: 357px;
}
.translation-widget .language-options.visible {
  transform: translateY(-20px);
  transition: transform 150ms ease, opacity 150ms ease, visibility 0s linear 0s;
  display: block;
}
.translation-widget .language-options li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: flex;
  align-items: center;
  height: 46px;
  width: 100%;
  padding: 0 0 0 24px;
  text-decoration: none;
  background-color: #FFFFFF;
  transition: background-color 150ms ease;
  z-index: 402;
  position: relative;
}
.theme-dark .translation-widget .language-options li {
  color: #FFFFFF;
}
.translation-widget .language-options li b,
.translation-widget .language-options li strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .translation-widget .language-options li b,
.theme-dark .translation-widget .language-options li strong {
  color: #FFFFFF;
}
.theme-dark .translation-widget .language-options li b,
.theme-dark .translation-widget .language-options li strong {
  color: #FFFFFF;
}
.translation-widget .language-options li.is-active {
  background-color: #EDF2F4;
}
.translation-widget .language-options li.is-active span {
  font-weight: 600;
}
.translation-widget .language-options li .tick-container {
  position: absolute;
  right: 15px;
  top: 8px;
}
.translation-widget .language-options li .tick-container .tick-icon {
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  min-width: 24px;
  min-width: 1.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.translation-widget .language-options li:hover {
  cursor: pointer;
  background-color: #EDF2F4;
}
.translation-widget .language-options li:focus span, .translation-widget .language-options li:hover span {
  text-decoration: underline;
}

/** Buttons **/
button:hover, button:focus {
  cursor: pointer;
}
button:hover[disabled], button:hover.disabled, button:focus[disabled], button:focus.disabled {
  cursor: not-allowed;
  border-color: #A0A0A3;
}

.button-gui {
  margin-top: 1.25rem;
}

.btn,
.un_link-confirmation__button,
.cmp-button,
.cmp-custom-header .sign-in.sign-in--unauth {
  padding: 12px 32px;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: min-content;
  font-weight: 500;
  font-size: 18px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  border: none;
  transition-property: background, color, padding, margin;
  transition-duration: 150ms;
  height: 48px;
}
@media only screen and (min-width: 48em) {
  .btn,
.un_link-confirmation__button,
.cmp-button,
.cmp-custom-header .sign-in.sign-in--unauth {
    display: inline-flex;
  }
}
.btn:hover,
.un_link-confirmation__button:hover,
.cmp-button:hover,
.cmp-custom-header .sign-in.sign-in--unauth:hover {
  background: #333333;
}
.btn:focus,
.un_link-confirmation__button:focus,
.cmp-button:focus,
.cmp-custom-header .sign-in.sign-in--unauth:focus {
  outline-width: 2px;
  outline-width: 0.125rem;
  outline-style: solid;
  outline-color: #000000;
  text-decoration: underline;
}
.btn:active,
.un_link-confirmation__button:active,
.cmp-button:active,
.cmp-custom-header .sign-in.sign-in--unauth:active {
  background: #333333;
  text-decoration: underline;
}
.btn[disabled], .btn.disabled,
[disabled].un_link-confirmation__button,
[disabled].cmp-button,
.cmp-custom-header [disabled].sign-in.sign-in--unauth,
.disabled.un_link-confirmation__button,
.disabled.cmp-button,
.cmp-custom-header .disabled.sign-in.sign-in--unauth {
  background: var(--grey1c-100);
  color: var(--grey9c-100);
  cursor: not-allowed;
  pointer-events: none;
}
.btn.mygov,
.mygov.un_link-confirmation__button,
.mygov.cmp-button,
.cmp-custom-header .mygov.sign-in.sign-in--unauth {
  background: #026540;
}
.btn.mygov:focus,
.mygov.un_link-confirmation__button:focus,
.mygov.cmp-button:focus,
.cmp-custom-header .mygov.sign-in.sign-in--unauth:focus {
  background: #0061C8;
}
.btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.is-loading.cmp-button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before {
  background-image: url("styles/resources/assets/icons/spinner-button.svg");
}
.btn.is-loading-mygov::before,
.is-loading-mygov.un_link-confirmation__button::before,
.is-loading-mygov.cmp-button::before,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth::before {
  background-image: url("styles/resources/assets/icons/spinner_myGov_light.svg");
}
.btn.is-loading, .btn.is-loading-mygov,
.is-loading.un_link-confirmation__button,
.is-loading.cmp-button,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth,
.is-loading-mygov.un_link-confirmation__button,
.is-loading-mygov.cmp-button,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth {
  padding: 16px 17px 16px 45px;
  padding: 1rem 1.0625rem 1rem 2.8125rem;
  pointer-events: none;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn.is-loading-mygov, .btn.is-loading-mygov.ia-btn,
.is-loading-mygov.un_link-confirmation__button,
.is-loading-mygov.cmp-button,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.is-loading-mygov::before,
.is-loading-mygov.un_link-confirmation__button::before,
.is-loading-mygov.cmp-button::before,
.cmp-custom-header .is-loading-mygov.sign-in.sign-in--unauth::before {
  width: 17px;
  width: 1.0625rem;
  height: 17px;
  height: 1.0625rem;
  min-width: 17px;
  min-width: 1.0625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  position: relative;
  margin-right: 12px;
  margin-right: 0.75rem;
  animation: rotate 2.5s linear infinite;
}
.btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.is-loading.cmp-button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  min-width: 26px;
  min-width: 1.625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: calc(50% - 14px);
  top: calc(50% - 0.875rem);
  left: calc(50% - 55px);
  left: calc(50% - 3.4375rem);
  animation: rotate 1s linear infinite;
}
@media only screen and (min-width: 48em) {
  .btn.is-loading::before,
.is-loading.un_link-confirmation__button::before,
.is-loading.cmp-button::before,
.cmp-custom-header .is-loading.sign-in.sign-in--unauth::before {
    left: 25px;
    left: 1.5625rem;
  }
}
.btn.mygov-green,
.mygov-green.un_link-confirmation__button,
.mygov-green.cmp-button,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth {
  background: #026540;
}
.btn.mygov-green span::after,
.mygov-green.un_link-confirmation__button span::after,
.mygov-green.cmp-button span::after,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth span::after {
  backface-visibility: none;
}
.btn.mygov-green:hover,
.mygov-green.un_link-confirmation__button:hover,
.mygov-green.cmp-button:hover,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth:hover {
  background: #78C433;
  color: #101820;
}
.btn.mygov-green:hover span::after,
.mygov-green.un_link-confirmation__button:hover span::after,
.mygov-green.cmp-button:hover span::after,
.cmp-custom-header .mygov-green.sign-in.sign-in--unauth:hover span::after {
  filter: invert(1);
}
.btn.outline,
.outline.un_link-confirmation__button,
.outline.cmp-button,
.cmp-custom-header .outline.sign-in.sign-in--unauth {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #000000;
}
.btn.outline:hover, .btn.outline:focus,
.outline.un_link-confirmation__button:hover,
.outline.cmp-button:hover,
.cmp-custom-header .outline.sign-in.sign-in--unauth:hover,
.outline.un_link-confirmation__button:focus,
.outline.cmp-button:focus,
.cmp-custom-header .outline.sign-in.sign-in--unauth:focus {
  text-decoration: underline;
  color: #313131;
  border-color: #313131;
}
.btn.outline[disabled], .btn.outline.disabled,
.outline[disabled].un_link-confirmation__button,
.outline[disabled].cmp-button,
.cmp-custom-header .outline[disabled].sign-in.sign-in--unauth,
.outline.disabled.un_link-confirmation__button,
.outline.disabled.cmp-button,
.cmp-custom-header .outline.disabled.sign-in.sign-in--unauth {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.secondary, .btn.cmp-feature-teaser__action-link,
.secondary.un_link-confirmation__button,
.secondary.cmp-button,
.cmp-custom-header .secondary.sign-in.sign-in--unauth,
.cmp-feature-teaser__action-link.un_link-confirmation__button,
.cmp-button.cmp-feature-teaser__action-link,
.cmp-custom-header .sign-in.sign-in--unauth.cmp-feature-teaser__action-link {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #000000;
}
.btn.secondary:hover, .btn.cmp-feature-teaser__action-link:hover, .btn.secondary:focus, .btn.cmp-feature-teaser__action-link:focus,
.secondary.un_link-confirmation__button:hover,
.secondary.cmp-button:hover,
.cmp-custom-header .secondary.sign-in.sign-in--unauth:hover,
.cmp-feature-teaser__action-link.un_link-confirmation__button:hover,
.cmp-button.cmp-feature-teaser__action-link:hover,
.cmp-custom-header .sign-in.sign-in--unauth.cmp-feature-teaser__action-link:hover,
.secondary.un_link-confirmation__button:focus,
.secondary.cmp-button:focus,
.cmp-custom-header .secondary.sign-in.sign-in--unauth:focus,
.cmp-feature-teaser__action-link.un_link-confirmation__button:focus,
.cmp-button.cmp-feature-teaser__action-link:focus,
.cmp-custom-header .sign-in.sign-in--unauth.cmp-feature-teaser__action-link:focus {
  color: #313131;
  text-decoration: underline;
  border-color: #313131;
}
.btn.secondary[disabled], .btn[disabled].cmp-feature-teaser__action-link, .btn.secondary.disabled, .btn.disabled.cmp-feature-teaser__action-link,
.secondary[disabled].un_link-confirmation__button,
.secondary[disabled].cmp-button,
.cmp-custom-header .secondary[disabled].sign-in.sign-in--unauth,
[disabled].cmp-feature-teaser__action-link.un_link-confirmation__button,
[disabled].cmp-button.cmp-feature-teaser__action-link,
.cmp-custom-header [disabled].sign-in.sign-in--unauth.cmp-feature-teaser__action-link,
.secondary.disabled.un_link-confirmation__button,
.secondary.disabled.cmp-button,
.cmp-custom-header .secondary.disabled.sign-in.sign-in--unauth,
.disabled.cmp-feature-teaser__action-link.un_link-confirmation__button,
.disabled.cmp-button.cmp-feature-teaser__action-link,
.cmp-custom-header .disabled.sign-in.sign-in--unauth.cmp-feature-teaser__action-link {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.tertiary,
.tertiary.un_link-confirmation__button,
.tertiary.cmp-button,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth {
  padding: 15px 16px;
  padding: 0.9375rem 1rem;
  border-width: 2px;
  border-width: 0.125rem;
  color: #000000;
  background: #FFFFFF;
  border-style: solid;
  border-color: #D1D2D3;
}
.btn.tertiary:hover, .btn.tertiary:focus,
.tertiary.un_link-confirmation__button:hover,
.tertiary.cmp-button:hover,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth:hover,
.tertiary.un_link-confirmation__button:focus,
.tertiary.cmp-button:focus,
.cmp-custom-header .tertiary.sign-in.sign-in--unauth:focus {
  background-color: #F5F9FE;
}
.btn.tertiary[disabled], .btn.tertiary.disabled,
.tertiary[disabled].un_link-confirmation__button,
.tertiary[disabled].cmp-button,
.cmp-custom-header .tertiary[disabled].sign-in.sign-in--unauth,
.tertiary.disabled.un_link-confirmation__button,
.tertiary.disabled.cmp-button,
.cmp-custom-header .tertiary.disabled.sign-in.sign-in--unauth {
  background: #F5F5F5;
  border-color: #A0A0A3;
  color: #A0A0A3;
  cursor: not-allowed;
}
.btn.icon span,
.icon.un_link-confirmation__button span,
.icon.cmp-button span,
.cmp-custom-header .icon.sign-in.sign-in--unauth span {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 27px;
  padding-right: 1.6875rem;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  position: relative;
  transition: all 150ms;
}
.btn.icon span.btn-icon-filter,
.icon.un_link-confirmation__button span.btn-icon-filter,
.icon.cmp-button span.btn-icon-filter,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-filter {
  background-image: url("styles/resources/assets/icons/icon-filter-white.svg");
}
.btn.icon span.btn-icon-arrow,
.icon.un_link-confirmation__button span.btn-icon-arrow,
.icon.cmp-button span.btn-icon-arrow,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-arrow {
  background-image: url("styles/resources/assets/icons/arrow-right-white.svg");
}
.btn.icon span.btn-icon-external-link,
.icon.un_link-confirmation__button span.btn-icon-external-link,
.icon.cmp-button span.btn-icon-external-link,
.cmp-custom-header .icon.sign-in.sign-in--unauth span.btn-icon-external-link {
  background-image: url("styles/resources/assets/icons/icon-external-link-white.svg");
}
.btn.icon.icon-after:hover span.clear::after,
.icon.icon-after.un_link-confirmation__button:hover span.clear::after,
.icon.icon-after.cmp-button:hover span.clear::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth:hover span.clear::after {
  background-image: url("styles/resources/assets/icons/clear-white.svg");
}
.btn.icon.icon-after span,
.icon.icon-after.un_link-confirmation__button span,
.icon.icon-after.cmp-button span,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span {
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  font-weight: 400;
}
.btn.icon.icon-after span::after,
.icon.icon-after.un_link-confirmation__button span::after,
.icon.icon-after.cmp-button span::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition: all 150ms;
}
.btn.icon.icon-after span.clear::after,
.icon.icon-after.un_link-confirmation__button span.clear::after,
.icon.icon-after.cmp-button span.clear::after,
.cmp-custom-header .icon.icon-after.sign-in.sign-in--unauth span.clear::after {
  background-image: url("styles/resources/assets/icons/clear-dark-blue.svg");
}
.btn.icon.icon-before:hover span.clear::before,
.icon.icon-before.un_link-confirmation__button:hover span.clear::before,
.icon.icon-before.cmp-button:hover span.clear::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth:hover span.clear::before {
  background-image: url("styles/resources/assets/icons/clear-white.svg");
}
.btn.icon.icon-before span,
.icon.icon-before.un_link-confirmation__button span,
.icon.icon-before.cmp-button span,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span {
  padding-right: 27px;
  padding-right: 1.6875rem;
  position: relative;
  font-weight: 400;
}
.btn.icon.icon-before span::after,
.icon.icon-before.un_link-confirmation__button span::after,
.icon.icon-before.cmp-button span::after,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span::after {
  display: none;
}
.btn.icon.icon-before span::before,
.icon.icon-before.un_link-confirmation__button span::before,
.icon.icon-before.cmp-button span::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span::before {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  transition: all 150ms;
}
.btn.icon.icon-before span.clear::before,
.icon.icon-before.un_link-confirmation__button span.clear::before,
.icon.icon-before.cmp-button span.clear::before,
.cmp-custom-header .icon.icon-before.sign-in.sign-in--unauth span.clear::before {
  background-image: url("styles/resources/assets/icons/clear-dark-blue.svg");
}
.btn.loading, .btn.loading[disabled], .btn.loading.disabled,
.loading.un_link-confirmation__button,
.loading.cmp-button,
.cmp-custom-header .loading.sign-in.sign-in--unauth {
  background: url("styles/resources/assets/icons/spinner.svg") no-repeat;
  background-position: center;
}
.btn.loading-mygov, .btn.loading-mygov[disabled], .btn.loading-mygov.disabled,
.loading-mygov.un_link-confirmation__button,
.loading-mygov.cmp-button,
.cmp-custom-header .loading-mygov.sign-in.sign-in--unauth {
  background: url("styles/resources/assets/icons/spinner_myGov_light.svg") no-repeat;
  background-position: center;
}
.btn.loading, .btn.loading-mygov,
.loading.un_link-confirmation__button,
.loading.cmp-button,
.cmp-custom-header .loading.sign-in.sign-in--unauth,
.loading-mygov.un_link-confirmation__button,
.loading-mygov.cmp-button,
.cmp-custom-header .loading-mygov.sign-in.sign-in--unauth {
  text-indent: -9999px;
  text-indent: -624.9375rem;
  background-size: 30px;
  background-size: 1.875rem;
  border-color: #A0A0A3;
  pointer-events: none;
}
.btn.loading[disabled], .btn.loading.disabled, .btn.loading-mygov[disabled], .btn.loading-mygov.disabled,
.loading[disabled].un_link-confirmation__button,
.loading[disabled].cmp-button,
.cmp-custom-header .loading[disabled].sign-in.sign-in--unauth,
.loading.disabled.un_link-confirmation__button,
.loading.disabled.cmp-button,
.cmp-custom-header .loading.disabled.sign-in.sign-in--unauth,
.loading-mygov[disabled].un_link-confirmation__button,
.loading-mygov[disabled].cmp-button,
.cmp-custom-header .loading-mygov[disabled].sign-in.sign-in--unauth,
.loading-mygov.disabled.un_link-confirmation__button,
.loading-mygov.disabled.cmp-button,
.cmp-custom-header .loading-mygov.disabled.sign-in.sign-in--unauth {
  text-indent: -9999px;
  text-indent: -624.9375rem;
  background-size: 30px;
  background-size: 1.875rem;
}
.btn.close,
.close.un_link-confirmation__button,
.close.cmp-button,
.cmp-custom-header .close.sign-in.sign-in--unauth {
  height: 30px;
  height: 1.875rem;
  width: 30px;
  width: 1.875rem;
  margin: 0;
  padding: 0;
  min-width: auto;
  background: transparent;
}
.btn.close i,
.close.un_link-confirmation__button i,
.close.cmp-button i,
.cmp-custom-header .close.sign-in.sign-in--unauth i {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  min-width: 30px;
  min-width: 1.875rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("styles/resources/assets/icons/icon-close-black.svg");
}
.btn.toggle,
.toggle.un_link-confirmation__button,
.toggle.cmp-button,
.cmp-custom-header .toggle.sign-in.sign-in--unauth {
  padding: 0 25px 0 3px;
  padding: 0 1.5625rem 0 0.1875rem;
  min-height: 20px;
  min-height: 1.25rem;
  display: block;
  margin: 0;
  height: auto;
  width: auto;
  background: transparent;
  color: #000000;
  min-width: auto;
}
.btn.toggle::after,
.toggle.un_link-confirmation__button::after,
.toggle.cmp-button::after,
.cmp-custom-header .toggle.sign-in.sign-in--unauth::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 2px;
  top: 0.125rem;
  background-image: url("styles/resources/assets/icons/chevron-down.svg");
  transition-property: none;
}
.btn.toggle.is-expanded::after,
.toggle.is-expanded.un_link-confirmation__button::after,
.toggle.is-expanded.cmp-button::after,
.cmp-custom-header .toggle.is-expanded.sign-in.sign-in--unauth::after {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  min-width: 15px;
  min-width: 0.9375rem;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin, background;
  transition-duration: 300ms;
  transition-timing-function: ease;
  top: 2px;
  top: 0.125rem;
  background-image: url("styles/resources/assets/icons/chevron-up.svg");
  transition-property: none;
}

.link, .linked-services__rightInternalLink {
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 3px;
  padding-left: 0.1875rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  color: #101820;
  background: transparent;
  border: none;
  transition: color;
  transition-duration: 150ms;
}
.link:focus, .linked-services__rightInternalLink:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-style: solid;
  outline-color: #000000;
}
.link.link-btn, .link-btn.linked-services__rightInternalLink {
  color: #000000;
}
.link:not(.action)::after, .linked-services__rightInternalLink:not(.action)::after {
  right: -10px;
  right: -0.625rem;
  top: 2px;
  top: 0.125rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-size: 16px;
  background-size: 1rem;
  content: "";
  position: relative;
  display: inline-block;
  background: url("styles/resources/assets/icons/arrow-right.svg") no-repeat;
  background-position: center;
  transition-property: all;
  transition-duration: 300ms;
}
.link:not(.action):hover, .linked-services__rightInternalLink:not(.action):hover, .link:not(.action):focus, .linked-services__rightInternalLink:not(.action):focus {
  text-decoration: underline;
}
.link:not(.action):hover::after, .linked-services__rightInternalLink:not(.action):hover::after, .link:not(.action):focus::after, .linked-services__rightInternalLink:not(.action):focus::after {
  right: -15px;
  right: -0.9375rem;
}
.link[disabled]:hover, [disabled].linked-services__rightInternalLink:hover, .link.disabled:hover, .disabled.linked-services__rightInternalLink:hover {
  text-decoration: none;
}
.link:not(.action)[disabled], .linked-services__rightInternalLink:not(.action)[disabled], .link:not(.action).disabled, .linked-services__rightInternalLink:not(.action).disabled {
  color: #A0A0A3;
  cursor: not-allowed;
}
.link:not(.action)[disabled]::after, .linked-services__rightInternalLink:not(.action)[disabled]::after, .link:not(.action).disabled::after, .linked-services__rightInternalLink:not(.action).disabled::after {
  background: url("styles/resources/assets/icons/arrow-right-grey.svg") no-repeat;
}
.link:not(.action)[disabled]:hover::after, .linked-services__rightInternalLink:not(.action)[disabled]:hover::after, .link:not(.action)[disabled]:focus::after, .linked-services__rightInternalLink:not(.action)[disabled]:focus::after, .link:not(.action).disabled:hover::after, .linked-services__rightInternalLink:not(.action).disabled:hover::after, .link:not(.action).disabled:focus::after, .linked-services__rightInternalLink:not(.action).disabled:focus::after {
  right: -10px;
  right: -0.625rem;
}
.link.highlight, .highlight.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #000000;
  border: 0;
}
.link.highlight:hover, .highlight.linked-services__rightInternalLink:hover, .link.highlight:focus, .highlight.linked-services__rightInternalLink:focus {
  color: #0061C8;
  text-decoration: none;
}
.link.highlight[disabled], .highlight[disabled].linked-services__rightInternalLink, .link.highlight.disabled, .highlight.disabled.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #A0A0A3;
  cursor: not-allowed;
}
.link.highlight.back, .highlight.back.linked-services__rightInternalLink {
  padding-right: 3px;
  padding-right: 0.1875rem;
}
.link.highlight.back::before, .highlight.back.linked-services__rightInternalLink::before {
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  margin-right: 6px;
  margin-right: 0.375rem;
  content: "";
  position: relative;
  display: inline-block;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  transition-property: all;
  transition-duration: 300ms;
  background-image: url("styles/resources/assets/icons/icon-left-blue-chevron.svg");
}
.link.highlight.back::after, .highlight.back.linked-services__rightInternalLink::after {
  content: none;
}
.link.action, .action.linked-services__rightInternalLink {
  padding-right: 3px;
  padding-right: 0.1875rem;
  text-decoration: underline;
  color: #000000;
  border: 0;
}
.link.action.external, .action.external.linked-services__rightInternalLink {
  display: inline-flex;
  align-items: center;
}
.link.action.external:hover img, .action.external.linked-services__rightInternalLink:hover img {
  transform: translate(3px, -3px);
}
.link.action.external img, .action.external.linked-services__rightInternalLink img {
  transition: transform 150ms ease-out;
  backface-visibility: hidden;
  top: -1px;
  top: -0.0625rem;
  margin-left: 12px;
  margin-left: 0.75rem;
  height: 16px;
  height: 1rem;
  width: 16px;
  width: 1rem;
  position: relative;
}
.link.action:hover, .action.linked-services__rightInternalLink:hover, .link.action:focus, .action.linked-services__rightInternalLink:focus {
  color: #0061C8;
  text-decoration: none;
}
.link.action[disabled], .action[disabled].linked-services__rightInternalLink, .link.action.disabled, .action.disabled.linked-services__rightInternalLink {
  text-decoration: underline;
  color: #A0A0A3;
  cursor: not-allowed;
}
.link.action.icon, .action.icon.linked-services__rightInternalLink {
  padding-left: 27px;
  padding-left: 1.6875rem;
}
.link.action.icon span, .action.icon.linked-services__rightInternalLink span {
  position: relative;
}
.link.action.icon span::after, .action.icon.linked-services__rightInternalLink span::after {
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  min-width: 18px;
  min-width: 1.125rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  left: -25px;
  left: -1.5625rem;
}
.link.action.icon span.btn-icon-delete::after, .action.icon.linked-services__rightInternalLink span.btn-icon-delete::after {
  background-image: url("styles/resources/assets/icons/authenticated/icon-trash.svg");
}
.link.action.icon span.btn-icon-folder-move::after, .action.icon.linked-services__rightInternalLink span.btn-icon-folder-move::after {
  background-image: url("styles/resources/assets/icons/authenticated/icon-folder-move.svg");
}

@media only screen and (min-width: 48em) {
  .app-group {
    display: flex;
    justify-content: center;
  }
}
.app-group .app-download {
  width: 200px;
  width: 12.5rem;
  height: 60px;
  height: 3.75rem;
  text-indent: -9999px;
  text-indent: -624.9375rem;
  display: block;
}
.app-group .app-download.apple {
  background: url("styles/resources/assets/icons/apple-icon.png") no-repeat;
  background-size: 100%;
}
.app-group .app-download.google {
  background: url("styles/resources/assets/icons/google-icon.png") no-repeat;
  background-size: 100%;
}
.app-group .app-download:first-child {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 48em) {
  .app-group .app-download:first-child {
    margin-right: 20px;
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
.app-group .app-download:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-style: solid;
  outline-color: #000000;
}

.theme-dark .btn.loading-mygov .theme-dark .btn.is-loading-mygov {
  background-image: url("styles/resources/assets/icons/spinner_myGov_dark.svg");
}

.un_link-confirmation {
  display: flex;
  flex-direction: column;
}
.un_link-confirmation__button {
  min-width: 320px;
  margin-right: 60px !important;
}
.un_link-confirmation__button.secondary, .un_link-confirmation__button.cmp-feature-teaser__action-link {
  min-width: 320px;
}
.un_link-confirmation__content {
  margin: 0 0 1.2em 0;
}
.un_link-confirmation__content--text {
  /* common styles for both inner and outer ul and ol */
  /* common styles for outer ul and ol */
  /* styles only for ul */
  /* styles only for ol */
  /* styles for ul and ol with white background */
}
.un_link-confirmation__content--text ul,
.un_link-confirmation__content--text ol {
  position: relative;
  margin: 0;
  list-style: none;
  overflow-wrap: break-word;
}
.un_link-confirmation__content--text ul li,
.un_link-confirmation__content--text ol li {
  margin: 0 0 12px 0;
  position: relative;
}
.un_link-confirmation__content--text ul li:last-child,
.un_link-confirmation__content--text ol li:last-child {
  margin: 0;
}
.un_link-confirmation__content--text ul li a,
.un_link-confirmation__content--text ol li a {
  color: #006CE0;
}
.un_link-confirmation__content--text ul li ul,
.un_link-confirmation__content--text ul li ol,
.un_link-confirmation__content--text ol li ul,
.un_link-confirmation__content--text ol li ol {
  padding: 15px 0 0 24px;
}
.un_link-confirmation__content--text ul li ul li::before,
.un_link-confirmation__content--text ul li ol li::before,
.un_link-confirmation__content--text ol li ul li::before,
.un_link-confirmation__content--text ol li ol li::before {
  left: -24px;
}
.un_link-confirmation__content--text > ul,
.un_link-confirmation__content--text > ol {
  margin: 20px 0 40px;
}
.un_link-confirmation__content--text ul {
  position: relative;
}
.un_link-confirmation__content--text ul li {
  /* styling of the blue bullet on the left of outer lis */
}
.un_link-confirmation__content--text ul li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: -26px;
  width: 4px;
  height: 4px;
  background-color: #525252;
  border-radius: 50%;
}
.un_link-confirmation__content--text ol {
  counter-reset: step-counter;
}
.un_link-confirmation__content--text ol li {
  counter-increment: step-counter;
}
.un_link-confirmation__content--text ol li::before {
  content: counter(step-counter);
  color: #006CE0;
  position: absolute;
  left: -30px;
}
.un_link-confirmation__content--text.is-bg-white ul,
.un_link-confirmation__content--text.is-bg-white ol {
  background: #FFFFFF;
}
.un_link-confirmation__content--text.is-bg-white > ul {
  padding: 0 30px 0 27px;
}
.un_link-confirmation__content--text.is-bg-white > ol {
  padding: 0 30px 0 57px;
}
.un_link-confirmation__content--text.is-bg-white > ol > li::before {
  width: 26px;
  height: 26px;
  background: #006CE0;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  top: 2px;
  left: -57px;
}
.un_link-confirmation a {
  margin: 10px 10px 0 0;
}
.un_link-confirmation h1 {
  font-size: 2em;
}

.unlinked-services-tile {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-bottom: 0.0625rem solid #CCCCCC;
  padding: 1.25rem 0.625rem;
}
.unlinked-services-tile h2 {
  color: #000000;
}
.unlinked-services-tile__section-heading-border {
  border-bottom: 0.125rem solid #525252;
}
.unlinked-services-tile__block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.unlinked-services-tile__block--title {
  font-size: var(--font-size-16);
}
.unlinked-services-tile__block button.btn {
  display: block;
  min-width: 0rem;
  height: 3rem;
}
@media (max-width: 639px) {
  .unlinked-services-tile__block button.btn {
    display: none;
  }
}
.unlinked-services-tile__block--btn-icon {
  display: none;
}
@media (max-width: 639px) {
  .unlinked-services-tile__block--btn-icon {
    display: block;
    width: 1.2rem;
    height: 1.4rem;
    background: url("styles/resources/assets/icons/chevron-right-black.svg") no-repeat center;
    background-size: 1.5rem;
  }
}
@media (max-width: 639px) {
  .unlinked-services-tile__block:focus {
    padding: 0.75rem;
    outline: 0.125rem solid var(--navy);
    border-radius: 5px;
  }
}

.cmp-video .section-heading {
  margin: 60px 0 20px;
}
.cmp-video .sub-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3571428571;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #DDDDDD;
  margin-bottom: 40px;
}
.theme-dark .cmp-video .sub-title {
  color: #FFFFFF;
}
.cmp-video iframe {
  display: block;
}

.welcome__heading {
  margin: 0 0 20px;
}
.welcome__heading--text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  display: block;
  font-size: 18px !important;
}
.theme-dark .welcome__heading--text {
  color: #FFFFFF;
}
.welcome__heading--text b,
.welcome__heading--text strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .welcome__heading--text b,
.theme-dark .welcome__heading--text strong {
  color: #FFFFFF;
}
.theme-dark .welcome__heading--text b,
.theme-dark .welcome__heading--text strong {
  color: #FFFFFF;
}
.welcome__personal-detail {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  margin-bottom: 6px;
}
.theme-dark .welcome__personal-detail {
  color: #FFFFFF;
}
.welcome__personal-detail b,
.welcome__personal-detail strong {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  color: #101820;
  font-weight: 700;
}
.theme-dark .welcome__personal-detail b,
.theme-dark .welcome__personal-detail strong {
  color: #FFFFFF;
}
.theme-dark .welcome__personal-detail b,
.theme-dark .welcome__personal-detail strong {
  color: #FFFFFF;
}
.welcome__sign-in-detail {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: normal;
  color: #525252;
  margin: 0 0 40px;
}
.theme-dark .welcome__sign-in-detail {
  color: #FFFFFF;
}
.welcome__inbox {
  display: flex;
  align-items: center;
  margin-top: 40px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}
.welcome__inbox--message {
  margin-left: 26px;
  position: relative;
  padding-left: 12px;
}
.welcome__inbox--message::before {
  content: "";
  background-image: url("styles/resources/assets/icons/authenticated/icon-inbox.svg");
  width: 26px;
  width: 1.625rem;
  height: 24px;
  height: 1.5rem;
  min-width: 26px;
  min-width: 1.625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  display: inline-block;
  left: -26px;
  top: 3px;
}
.welcome__inbox--link {
  color: #006CE0;
  font-weight: 500;
}
.welcome__inbox--link.link, .welcome__inbox--link.linked-services__rightInternalLink {
  border-bottom: none;
  text-decoration: underline;
  padding-left: 5px;
}
.welcome__inbox--link .cta {
  margin-left: 7px;
}
.welcome__next-payment {
  display: flex;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  color: #555555;
}
.welcome__next-payment--message {
  margin-left: 26px;
  position: relative;
  padding-left: 12px;
  line-height: 25px;
}
.welcome__next-payment--message::before {
  content: "";
  background-image: url("styles/resources/assets/icons/authenticated/icon-wallet.svg");
  width: 26px;
  width: 1.625rem;
  height: 24px;
  height: 1.5rem;
  min-width: 26px;
  min-width: 1.625rem;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: transform, margin;
  transition-duration: 300ms;
  transition-timing-function: ease;
  display: inline-block;
  left: -26px;
  top: 13px;
}
.welcome__next-payment--message--details {
  font-weight: 600;
}
.welcome__next-payment--link {
  color: #006CE0;
  font-weight: 500;
}
.welcome__next-payment--link.link, .welcome__next-payment--link.linked-services__rightInternalLink {
  border-bottom: none;
  text-decoration: underline;
  padding-left: 5px;
}
.welcome__next-payment--link .cta {
  margin-left: 7px;
}

.at-a-glance {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  margin-bottom: 40px;
}
.at-a-glance ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: stretch;
  flex-direction: column;
  color: black;
  box-shadow: 0 0 2px rgba(17, 17, 18, 0.2509803922);
  width: 100%;
}
@media only screen and (min-width: 77.75em) {
  .at-a-glance ul {
    flex-direction: row;
  }
  .at-a-glance ul[data-row-count="1"] {
    width: 33.33%;
  }
  .at-a-glance ul[data-row-count="2"] {
    width: 66.66%;
  }
}
.at-a-glance li {
  display: flex;
  margin: 0;
  position: relative;
  background-color: #F8F8F8;
}
.at-a-glance li > * {
  display: flex;
  align-items: center;
  padding: 20px;
}
.at-a-glance li > a {
  color: inherit;
  text-decoration: none;
  width: 100%;
}
.at-a-glance li + li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  height: 1px;
  background: #DDDDDD;
  width: calc(100% - 40px);
}
@media only screen and (min-width: 77.75em) {
  .at-a-glance li {
    display: inline-flex;
    align-items: stretch;
    flex: 1;
    border-top-width: 1px;
    border-bottom-width: 1px;
  }
  .at-a-glance li:first-child {
    border-bottom-left-radius: 5px;
  }
  .at-a-glance li:last-child {
    border-top-right-radius: 5px;
  }
  .at-a-glance li + li::before {
    left: 0;
    top: 20px;
    width: 1px;
    height: calc(100% - 40px);
  }
}
.at-a-glance__icon {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
@media only screen and (min-width: 40em) {
  .at-a-glance__icon {
    width: 44px;
    height: 44px;
  }
}
.at-a-glance__emphasised {
  text-decoration: underline;
  font-style: normal;
  color: #006CE0;
  font-weight: 500;
}
.at-a-glance .wrap-children > * {
  display: inline-block;
}

.assistant-btn {
  background-color: #000000;
  color: #FFFFFF;
  width: 100%;
  border: none;
  padding: 10px 0;
  font-size: 16px;
  pointer-events: auto;
  border-top: 2px solid #FFFFFF;
}
.assistant-btn:hover {
  background: #4D4D4D;
}
.assistant-btn:focus {
  background: #4D4D4D;
  outline-color: #000000;
}
.assistant-btn:active {
  background: #333333;
}
@media only screen and (min-width: 64em) {
  .assistant-btn {
    display: none;
  }
}

@media (max-width: 63.9375em) {
  .assistant-btn-open {
    position: relative;
    padding-top: 26px;
  }
  .assistant-btn-open .assistant-btn-img {
    border-radius: 50px;
    background-color: #000000;
    width: 38px;
    height: 38px;
    padding: 8px;
    position: absolute;
    top: -15px;
    left: calc(50% - 19px);
  }
}
@media only screen and (min-width: 64em) {
  .assistant-btn-open .assistant-up-btn {
    transform: rotateZ(90deg);
  }
}

.assistant-btn-dsk {
  display: none;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  font-size: 16px;
  width: auto;
  padding: 20px;
  border-radius: 8px 0 0 8px;
  pointer-events: auto;
}
.assistant-btn-dsk.assistant-btn-open {
  position: absolute;
  top: calc(75% - 38px);
  transform: translateX(-100%);
}
.assistant-btn-dsk:hover {
  background: #4D4D4D;
}
.assistant-btn-dsk:focus {
  background: #4D4D4D;
  outline-color: #000000;
}
.assistant-btn-dsk:active {
  background: #333333;
}
@media only screen and (min-width: 64em) {
  .assistant-btn-dsk {
    display: inline-block;
  }
}

.assistant-btn-img {
  vertical-align: middle;
}

@media only screen and (min-width: 64em) {
  .assistant-btn-text {
    margin-left: 12px;
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 3px;
  }
}

.assistant-panel {
  display: flex;
  position: fixed;
  bottom: 0px;
  height: 0%;
  z-index: 800;
  right: -400px;
  pointer-events: none;
}
@media (max-width: 63.9375em) {
  .assistant-panel {
    flex-direction: column;
    height: 0%;
    left: 0px;
    width: 100%;
    right: unset;
  }
}
@media only screen and (min-width: 64em) {
  .assistant-panel {
    align-items: center;
    height: 100%;
    position: fixed;
    right: -400px;
    top: 0px;
  }
}

.assistant-panel-closed {
  position: fixed;
  z-index: 800;
}
@media (max-width: 63.9375em) {
  .assistant-panel-closed {
    width: 100%;
    bottom: 0px;
  }
}
@media only screen and (min-width: 64em) {
  .assistant-panel-closed {
    top: calc(50% - 38px);
    right: 0px;
  }
}

.assistant-drawer {
  background-color: #FFFFFF;
  transition: width 0.3s;
  pointer-events: auto;
}
@media (max-width: 63.9375em) {
  .assistant-drawer {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (min-width: 64em) {
  .assistant-drawer {
    display: inline-block;
    border: 1px solid #DAE3E7;
    height: 100%;
    width: 400px;
  }
}

@media only screen and (min-width: 64em) {
  .assistant-drawer-large {
    width: 600px;
  }
}

.assistant-drawer-large .assistant-up-btn {
  transform: rotateZ(90deg);
}

.assistant-body {
  transition: width 0.4s;
  width: 100%;
}

@media only screen and (min-width: 64em) {
  .assistant-open-body {
    width: calc(100% - 400px);
  }
}

@media only screen and (min-width: 64em) {
  .assistant-open-body-large {
    width: calc(100% - 600px);
  }
}

.assistant-title {
  background-color: #000000;
  color: #FFFFFF;
  width: 100%;
  border: none;
  padding: 22px 20px 24px 20px;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.assistant-title button {
  border-radius: 1px;
}
.assistant-title button:focus {
  outline: 2px solid #33C4E8;
}

.assistant-iframe {
  border: none;
  width: 100%;
}
@media (max-width: 63.9375em) {
  .assistant-iframe {
    flex-grow: 1;
  }
}
@media only screen and (min-width: 64em) {
  .assistant-iframe {
    height: calc(100% - 90px);
  }
}

.assistant-up-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  height: 32px;
  width: 32px;
  transform: rotateZ(-90deg);
  transition: transform 0.3s;
}
@media (max-width: 63.9375em) {
  .assistant-up-btn {
    display: none;
  }
}

.assistant-close-btn {
  background-color: transparent;
  border: none;
  padding: 0;
  height: 32px;
  width: 32px;
  margin: 0 0 0 34px;
}

.cmp-container.root.responsivegrid .aem-Grid .last-updated {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  color: #000000;
  text-align: right;
  margin: 0 0 2.5rem 0;
  padding: 0 20px !important;
  /* lg-above - min-width: 1024px */
  /* xl-above - min-width: 1244px */
}
.cmp-container.root.responsivegrid .aem-Grid .last-updated:empty {
  display: none !important;
}
@media (min-width: 64em) {
  .cmp-container.root.responsivegrid .aem-Grid .last-updated {
    margin: 2.5rem 0 2.5rem 0;
    padding: 1.25rem 20px !important;
  }
}
@media (min-width: 77.75em) {
  .cmp-container.root.responsivegrid .aem-Grid .last-updated {
    padding: 1.25rem 40px !important;
  }
}
.cmp-container.root.responsivegrid .aem-Grid .enhanced-polling:empty + .last-updated {
  margin: 2.5rem 0 2.5rem 0;
  padding: 0 20px !important;
}
.cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
  display: block;
}
@media only screen and (min-width: 40em) {
  .cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
    width: 640px;
    margin-left: calc((100% - 640px) / 2) !important;
  }
}
@media only screen and (min-width: 48em) {
  .cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
    width: 768px;
    margin-left: calc((100% - 768px) / 2) !important;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
    width: calc(1024px / 8 * 3);
    margin-left: auto !important;
    float: right !important;
    margin-right: calc((100% - 1024px) / 2) !important;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
    display: inline-block;
    width: calc(1244px / 8 * 3);
    margin-right: calc((100% - 1244px) / 2) !important;
    text-align: right;
    padding-right: 40px !important;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-container.root.responsivegrid .aem-Grid.aem-Grid--default--12:not(.l-row) > .aem-GridColumn.aem-GridColumn--default--5 + .last-updated.aem-GridColumn.aem-GridColumn--default--3 {
    margin-right: calc((100% - 1360px) / 2) !important;
  }
}

.cmp-last-updated__item-date {
  white-space: nowrap;
}

.content-list .cmp-image {
  margin: 0;
}
@media (min-width: 22.4375em) {
  .content-list .cmp-image__image {
    width: 124px;
    height: 100%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 88.125em) {
  .content-list .cmp-image__image {
    width: 406px;
    height: 218px;
    object-fit: cover;
  }
}

.cmp-list {
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 48em) {
  .cmp-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.cmp-list__item {
  margin: 0 0 20px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .cmp-list__item {
    width: 355px;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-list__item {
    width: 482px;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-list__item {
    width: 572px;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-list__item {
    width: 410px;
  }
}
.cmp-list__item article {
  height: 100%;
}

.cmp-list__item-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #EDF2F4;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
@media (min-width: 22.4375em) {
  .cmp-list__item-link {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-list__item-link {
    flex-direction: column;
    justify-content: space-between;
  }
}
.cmp-list__item-link::after {
  content: "";
  background: url(styles/resources/assets/icons/chevron-right-black.svg) no-repeat;
  margin: 20px 16px 10px 20px;
  width: 32px;
  height: 32px;
  align-self: end;
  min-width: 32px;
}

.cmp-list__item-link:hover {
  background-color: #EDF2F4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #EDF2F4;
}

.cmp-list__item-link:focus {
  background-color: #EDF2F4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  outline: 2px solid #254A7E;
}

.cmp-list__item-link:focus-visible {
  background-color: #EDF2F4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  outline: 2px solid #254A7E;
}

.cmp-list__item-link:active {
  background-color: #EDF2F4;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
  outline: 2px solid #254A7E;
}

.cmp-list__item-text {
  margin: 0 0 20px 0;
}

.cmp-list__item-title {
  margin: 28px 20px 0 20px;
  display: block;
  font-size: 22px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000000;
}

.cmp-list__item-description {
  margin: 16px 20px 0 20px;
  display: block;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #000000;
}
@media only screen and (min-width: 77.75em) {
  .cmp-list__item-description {
    font-size: 18px;
  }
}

.list .cmp-list-standard {
  font-size: 1rem;
  line-height: 1.25;
  color: #000000;
  padding-inline-start: 37px;
  padding-inline-start: 2.3125rem;
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 48em) {
  .list .cmp-list-standard {
    line-height: 1.875;
  }
}
@media only screen and (min-width: 64em) {
  .list .cmp-list-standard {
    font-size: 1.125rem;
  }
}
.list .cmp-list-standard li {
  padding-top: 10px;
  padding-top: 0.625rem;
}
.list .cmp-list-standard :not(:first-child),
.list .cmp-list-standard :not(:last-child) {
  margin-top: unset;
  margin-bottom: unset;
}
.list .cmp-list-standard .cmp-list__item-standard .cmp-list__item-description-standard::before {
  content: "|";
  padding: 0 0.625rem;
}

.cmp-global-banners__group {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 64em) {
  .cmp-global-banners__group {
    flex-direction: row;
  }
}
.cmp-global-banners__content {
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 1.25rem;
}
@media only screen and (min-width: 64em) {
  .cmp-global-banners__content {
    width: 1024px;
    padding: 1.25rem 2.5rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-global-banners__content {
    width: 1244px;
  }
}
@media only screen and (min-width: 88.125em) {
  .cmp-global-banners__content {
    width: 1360px;
  }
}
.cmp-global-banners__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 1.25rem;
}
.cmp-global-banners__header.critical::before, .cmp-global-banners__header.warning::before, .cmp-global-banners__header.info::before, .cmp-global-banners__content.critical::before, .cmp-global-banners__content.warning::before, .cmp-global-banners__content.info::before {
  width: 1.5em;
  height: 1.5em;
}
@media only screen and (min-width: 48em) {
  .cmp-global-banners__header.critical::before, .cmp-global-banners__header.warning::before, .cmp-global-banners__header.info::before, .cmp-global-banners__content.critical::before, .cmp-global-banners__content.warning::before, .cmp-global-banners__content.info::before {
    width: 2.125em;
    height: 2.125em;
  }
}
.cmp-global-banners__header.critical::before, .cmp-global-banners__content.critical::before {
  content: url("styles/resources/assets/icons/report.svg");
}
.cmp-global-banners__header.warning::before, .cmp-global-banners__content.warning::before {
  content: url("styles/resources/assets/icons/report-problem.svg");
}
.cmp-global-banners__header.info::before, .cmp-global-banners__content.info::before {
  content: url("styles/resources/assets/icons/info.svg");
}
.cmp-global-banners__message-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 2.75rem;
  flex: 1;
}
.cmp-global-banners__message-list--mobile {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #FFFFFF;
  padding: 0 1.25rem;
  flex: 1;
}
.cmp-global-banners__message-list .cmp-global-banners__message {
  padding: 0;
}
.cmp-global-banners__message {
  padding: 1.25rem 0;
  border-bottom: 1px solid #000000;
}
.cmp-global-banners__message:last-of-type {
  border-bottom: none;
}
.cmp-global-banners__message:not(:first-of-type) {
  padding-top: 1.25rem;
}
.cmp-global-banners__message:not(:last-of-type) {
  padding-bottom: 1.25rem;
}
.cmp-global-banners__message p {
  color: #000000;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
@media only screen and (min-width: 64em) {
  .cmp-global-banners__message p {
    font-size: 1.125rem;
    line-height: 1.875;
  }
}
.cmp-global-banners__message p:only-of-type {
  margin: 0;
}
.cmp-global-banners__message p:last-of-type {
  margin: 0;
}
.cmp-global-banners__message a {
  color: #006d88;
  font-weight: 400;
}
@media only screen and (min-width: 48em) {
  .cmp-global-banners__message a {
    color: #000000;
  }
}
.cmp-global-banners__button {
  font-size: 1rem;
  font-weight: 400;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 1px solid #000000;
}
@media only screen and (min-width: 64em) {
  .cmp-global-banners__button {
    font-size: 1.125rem;
  }
}
.cmp-global-banners__button::after {
  content: url("styles/resources/assets/icons/close.svg");
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.5rem;
}
@media only screen and (min-width: 48em) {
  .cmp-global-banners__button::after {
    width: 0.875em;
    height: 0.875em;
  }
}
.cmp-global-banners .critical {
  background: #fbb4af;
}
.cmp-global-banners .warning {
  background: #fff389;
}
.cmp-global-banners .info {
  background: #a6d5fa;
}

.separator .cmp-separator__horizontal-rule {
  margin: 2.25rem 0;
  border-top: 1px solid #d9d9d6;
}

.body-separator .cmp-separator__horizontal-rule {
  margin: 2.5rem 0 0 0;
  border-top: 1px solid #d9d9d6;
}

.cmp-sign-in-teaser {
  display: flex;
  flex-direction: column;
  padding: 2.25rem 0;
}
@media (max-width: 47.9375em) {
  .cmp-sign-in-teaser .cmp-btn-link__conjunction {
    margin: 0 1rem 0 0;
  }
}
@media only screen and (min-width: 64em) {
  .cmp-sign-in-teaser {
    flex-direction: row;
    padding: 3.75rem 0;
  }
}
.cmp-sign-in-teaser > .cmp-experiencefragment {
  width: 100%;
  margin-bottom: 24px;
}
@media only screen and (min-width: 64em) {
  .cmp-sign-in-teaser > .cmp-experiencefragment {
    max-width: 340px;
    margin-right: 90px;
    margin-bottom: 0;
  }
}
.cmp-sign-in-teaser > .cmp-experiencefragment h2,
.cmp-sign-in-teaser > .cmp-experiencefragment .h2 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.25;
  letter-spacing: 0.001em;
  font-weight: 400;
  font-size: 2.25rem;
  margin: 0;
  margin-bottom: 1.125rem;
}
.cmp-sign-in-teaser > .cmp-experiencefragment h3,
.cmp-sign-in-teaser > .cmp-experiencefragment .h3 {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 1.625rem;
  margin: 0;
  margin-bottom: 1.125rem;
}
.cmp-sign-in-teaser > .cmp-experiencefragment p {
  font-family: "Roboto", sans-serif;
  color: #000000;
  line-height: 1.5556;
  font-weight: 300;
  font-size: 1.125rem;
}
.cmp-sign-in-teaser > .cmp-experiencefragment .cmp-button {
  margin-bottom: 1.125rem;
}
.cmp-sign-in-teaser > .cmp-experiencefragment .text .cmp-text {
  padding: 0;
  margin: 0;
}
.cmp-sign-in-teaser > .cmp-experiencefragment .text .cmp-text p {
  margin-top: 0 !important;
  margin-bottom: 1.125rem !important;
}
@media only screen and (min-width: 64em) {
  .cmp-sign-in-teaser > .cmp-experiencefragment #hidden-tablet {
    display: none;
  }
}
@media only screen and (min-width: 77.75em) {
  .cmp-sign-in-teaser > .cmp-experiencefragment #hidden-desktop {
    display: none;
  }
}

.cmp-form sa-matrix {
  display: block;
  margin-bottom: 40px;
}

.cmp-form .text td p {
  line-height: 1.5556;
  margin-top: 1.875rem;
  font-weight: 300;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .cmp-form .text td p {
    line-height: 1.25;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.cmp-form .question-answer [type=radio]:before {
  content: "";
  background-color: #fff;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 32px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #333, 0 0 0 10px #fff;
  margin: 5px 0px 0px 5px;
}

.cmp-form .question-answer [type=radio]:checked:before {
  background-color: #254A7E;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #254a7e, 0 0 0 10px #fff;
}

.cmp-form :not(.cmp-text) > p:not([class^=gui-] *) {
  line-height: 1.5556;
  margin-top: 1.875rem;
  font-weight: 300;
  font-size: 1.125rem;
}
@media screen and (max-width: 639px) {
  .cmp-form :not(.cmp-text) > p:not([class^=gui-] *) {
    line-height: 1.25;
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.cmp-form .rating-answer label {
  position: relative;
  text-align: center;
  cursor: pointer;
  display: block;
  margin-top: 0;
}

.cmp-form .rating-answer-input:focus + .rating-answer-label {
  outline-offset: 0.125rem;
  outline: #000000 solid 0.125rem;
  z-index: 1;
}

.cmp-form .rating-answer-input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.cmp-form .rating-answer-input:checked + .rating-answer-label {
  background: #D9D9D6;
}

@media only screen and (min-width: 64em) {
  .cmp-form .title {
    padding: 0;
    font-size: 62px;
    font-weight: 300;
    color: black;
    margin: 0 0 20px 0;
  }

  .cmp-form .header {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 30px 0;
    padding: 0;
  }

  .cmp-form .question-title {
    display: inline-block;
    flex-grow: 1;
    margin: 0;
    padding: 0;
  }

  .cmp-form .answer-title {
    display: inline-block;
    width: 90px;
    text-align: center;
    margin: 0 5px;
    padding: 0;
  }

  .cmp-form .question {
    display: flex;
    margin: 0 0 60px 0;
  }
  .cmp-form .question:last-of-type {
    margin-bottom: 0;
  }

  .cmp-form sa-matrix-question.question p.question-text {
    margin: 0;
    padding: 0;
    flex-grow: 1;
  }

  .cmp-form .question-answer {
    display: inline-block;
    width: 90px;
    min-width: 90px;
    margin: 0 5px;
    padding: 0;
    text-align: center;
  }

  .cmp-form .question-answer input {
    margin: 0;
    width: 20px;
    height: 20px;
  }

  .cmp-form .question-answer label {
    display: none;
  }

  .cmp-form .rating {
    margin-bottom: 40px;
  }

  .cmp-form .rating-answers {
    color: black;
    display: flex;
  }

  .cmp-form .rating-answer:not(:last-child) label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cmp-form .rating-answer:not(:first-child) label {
    margin-left: -2px;
  }

  .cmp-form .rating-answer:nth-child(n+2) label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .cmp-form .rating-answers.question-error {
    display: inline-flex;
  }
}
@media (max-width: 63.9375em) {
  .cmp-form .title {
    padding: 0;
    font-size: 32px;
    font-weight: 300;
    color: black;
    margin: 0 0 20px 0;
  }

  .cmp-form .header {
    display: none;
  }

  .cmp-form .question {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .cmp-form .question:last-of-type {
    margin-bottom: 0;
  }

  .cmp-form sa-matrix-question.question p.question-text {
    margin: 0 0 10px 0;
  }

  .cmp-form .question-answer {
    font-size: 20px;
    font-weight: 300;
    color: black;
    padding: 0;
    margin: 32px;
    display: flex;
  }

  .cmp-form .question-answer input {
    margin: 0 32px 0 0;
    width: 20px;
    height: 20px;
  }

  .cmp-form .question-answer label {
    vertical-align: top;
    font-weight: 500;
  }

  .cmp-form .rating {
    margin-bottom: 40px;
  }

  .cmp-form .rating-answers {
    display: flex;
    flex-direction: column;
  }

  .cmp-form .rating-answer label {
    margin-top: -2px;
  }

  .cmp-form .rating-answer:not(:last-child) label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .cmp-form .rating-answer:nth-child(n+2) label {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.cmp-form .question-error {
  border: 2px solid var(--system-red-120);
  outline-offset: 4px;
  border-radius: 2px;
  padding: 12px 0 8px 16px;
  margin: 0;
}

.cmp-form .question-error-text {
  color: var(--system-red-120);
  font-size: 14px;
  font-size: 0.875rem;
  margin: 12px 0 25px 0;
  display: flex;
  align-items: center;
}

.cmp-form .rating-answers.question-error {
  padding: 12px 16px 8px 16px;
}

.cmp-form .question-error-icon {
  background-image: url("styles/resources/assets/icons/callout-error-red.svg");
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 6px 0 0;
  min-width: 24px;
}

.checkbox-group {
  display: flex;
  width: 100%;
  padding: 0.5rem;
}
.checkbox-group input[type=checkbox] {
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 3px;
  padding: 0;
  height: 1rem;
  width: 1rem;
  margin-top: 0.25rem;
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  flex-grow: 0;
  cursor: pointer;
}
.checkbox-group input[type=checkbox]:checked {
  border: 2px solid #000000;
  background-color: #254A7E;
  background-image: url("styles/resources/assets/icons/check-white.svg");
  background-size: contain;
}
.checkbox-group input[type=checkbox]:indeterminate {
  border: 2px solid #000000;
  background-color: #254A7E;
  background-image: url("styles/resources/assets/icons/check-white.svg");
  background-size: contain;
}
.checkbox-group label {
  column-gap: 1rem;
  padding-left: 1rem;
  margin: 0;
  font-weight: normal;
  font-size: var(--font-size-16);
}
.checkbox-group:focus {
  outline: 2px solid #333333;
  border-radius: 3px;
}

.progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
}
.progress-bar div.progress-bar__base, .progress-bar div.progress-bar__progress {
  height: 6px;
  height: 0.375rem;
  border-radius: 3px;
  border-radius: 0.1875rem;
}
.progress-bar div.progress-bar__base {
  background-color: #BBBCBC;
  width: 100%;
  width: 85%;
}
.progress-bar div.progress-bar__progress {
  background-color: #183052;
}
.progress-bar div.progress-bar__percentage {
  font-size: var(--font-size-14);
  font-weight: bold;
  color: #666666;
}

.side-panel {
  background-color: transparent;
  width: 100%;
  border-radius: 5px;
  padding: 20px 0;
  padding: 1.25rem 0;
  /* Tablet or Desktop */
}
@media only screen and (min-width: 48em) {
  .side-panel {
    padding: 24px 18px;
    padding: 1.5rem 1.125rem;
  }
  .side-panel-border {
    border: 1px solid var(--grey1c-100);
  }
}
.side-panel h3:first-of-type {
  margin-top: 4px;
}
.side-panel li {
  padding: 0;
}
.side-panel p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.loading-dots-container {
  display: flex;
  align-items: center;
}
.loading-dots-container p {
  font-weight: 600;
}
.loading-dots-container p.text-below {
  margin-top: 20px;
}
.loading-dots-container.right {
  flex-direction: row;
  justify-content: flex-start;
}
.loading-dots-container.bottom {
  flex-direction: column;
  justify-content: space-around;
}
.loading-dots-container.small.right {
  gap: 25px;
  margin-left: 16px;
}
.loading-dots-container.small .loading-dots, .loading-dots-container.small .loading-dots:before, .loading-dots-container.small .loading-dots:after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
}
.loading-dots-container.small .loading-dots:before {
  left: -15px;
}
.loading-dots-container.small .loading-dots:after {
  left: 15px;
}
.loading-dots-container.small p {
  font-size: 0.875rem;
}
.loading-dots-container.medium.right {
  gap: 45px;
  margin-left: 36px;
}
.loading-dots-container.medium .loading-dots, .loading-dots-container.medium .loading-dots:before, .loading-dots-container.medium .loading-dots:after {
  width: 20px;
  height: 20px;
  border-radius: 10px;
}
.loading-dots-container.medium .loading-dots:before {
  left: -30px;
}
.loading-dots-container.medium .loading-dots:after {
  left: 30px;
}
.loading-dots-container.medium p {
  font-size: 1.075rem;
}
.loading-dots-container.large.right {
  gap: 65px;
  margin-left: 56px;
}
.loading-dots-container.large .loading-dots, .loading-dots-container.large .loading-dots:before, .loading-dots-container.large .loading-dots:after {
  width: 30px;
  height: 30px;
  border-radius: 15px;
}
.loading-dots-container.large .loading-dots:before {
  left: -45px;
}
.loading-dots-container.large .loading-dots:after {
  left: 45px;
}
.loading-dots-container.large p {
  font-size: 1.275rem;
}

.loading-dots {
  display: inline-block;
  position: relative;
  animation-delay: 0.5s !important;
  animation: loadingAnimation 1s infinite linear alternate;
}
.loading-dots, .loading-dots:before, .loading-dots:after {
  background-color: #75787B;
  color: #75787B;
}
.loading-dots:before, .loading-dots:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  animation: loadingAnimation 1s infinite alternate;
}
.loading-dots:before {
  animation-delay: 0s;
}
.loading-dots:after {
  animation-delay: 1s;
}

@keyframes loadingAnimation {
  0% {
    background-color: #75787B;
  }
  50%, 100% {
    background-color: #adadad;
  }
}
.loading-component-svg {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  column-gap: 50%;
  box-shadow: 0 0.125rem 0.375rem rgba(16, 24, 32, 0.25);
  border-radius: 14px;
  background: #FFFFFF;
}
.loading-component-svg.brand-blue {
  background: #66D3EE;
}
.loading-component-svg.dark {
  background: #183052;
  color: #FFFFFF;
}
.loading-component-svg img, .loading-component-svg .loading-spinner {
  user-select: none;
}
.loading-component-svg .loading-text {
  font-size: var(--font-size-18);
  text-align: center;
  padding: 0.6rem 0.6rem 0 0.6rem;
  animation: fadeAnimation 2.1s infinite ease-in-out;
}
@keyframes fadeAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

.loading-text > p {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  width: max-content;
}

.loading-spinner {
  position: relative;
  display: inline-block;
  border-radius: 50%;
  background: conic-gradient(rgba(255, 255, 255, 0), #66d3ee, #183052);
  animation: loadingSpinner 2.1s infinite linear;
}
.loading-spinner:after {
  background: #FFFFFF;
  width: 87%;
  height: 87%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.loading-spinner--blue-grey:after {
  background: #EDF2F4;
}
.loading-spinner, .loading-spinner.spinner-medium {
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
}
.loading-spinner.spinner-xsmall {
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
}
.loading-spinner.spinner-small {
  width: 34px;
  width: 2.125rem;
  height: 34px;
  height: 2.125rem;
}
.loading-spinner.spinner-large {
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
}
.loading-spinner.spinner-xlarge {
  width: 120px;
  width: 7.5rem;
  height: 120px;
  height: 7.5rem;
}

@keyframes loadingSpinner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.light .loading-spinner:after {
  background: #FFFFFF;
}

.dark .loading-spinner {
  background: conic-gradient(rgba(255, 255, 255, 0), #66d3ee, #99e1f3);
}
.dark .loading-spinner:after {
  background: #183052;
}

.cmp-form sa-question {
  display: block;
  margin-bottom: 40px;
}

sa-question.sa-question-error {
  display: inline-block;
  border: 2px solid var(--system-red-120);
  outline-offset: 4px;
  border-radius: 2px;
  padding: 12px 16px 8px 16px;
  margin: 0;
}

sa-question .question2-text {
  margin-top: 0;
  text-align: left;
}

sa-question .answer-btns {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-size: 0;
}

sa-question .answer-btn {
  border-radius: 0.25rem;
  display: inline-block;
}

sa-question .answer-btn:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

sa-question .answer-btn:nth-child(n+2) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

sa-question .answer-btn:not(:first-child) {
  margin-left: -2px;
}

sa-question .answer-btn.selected {
  background-color: #D9D9D6 !important;
}

sa-question .subquestion-text {
  line-height: 1.5556;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.125rem;
  display: block;
}

sa-question .answers-select {
  border: solid var(--input-border-width) var(--input-border-color) !important;
  border-radius: 0;
  height: 48px;
  height: 3rem;
  appearance: none;
  background-color: #FFFFFF;
  background-image: url("styles/resources/assets/icons/chevron-down-black.svg");
  background-size: 1rem 0.5rem;
  background-position: right 1rem center;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-right: 40px;
  padding-right: 2.5rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-left: 16px;
  padding-left: 1rem;
  font-family: var(--family-roboto);
  font-style: var(--style-normal);
  font-weight: var(--font-weight-normal);
  color: var(--black);
  font-size: var(--default-font-size);
  line-height: 1.33;
  letter-spacing: var(--character-spacing-0);
  opacity: 1;
  display: block;
  position: relative;
  margin-top: 12px;
  margin-top: 0.75rem;
  margin-right: 0;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  margin-left: 0;
  transition-property: border;
  transition-duration: 150ms;
  transition-timing-function: ease;
  z-index: 400;
  max-width: calc(100vw - 80px);
}

@media (max-width: 63.9375em) {
  sa-question .subquestion-text {
    line-height: 1.25;
    margin-top: 1.5rem;
    margin-bottom: 40px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-size: 1rem;
  }
}
.cmp-form sa-rating-question {
  display: block;
  margin-bottom: 40px;
}

.cmp-form sa-rating-question .rating-question {
  margin-top: 30px;
  margin-bottom: 12px;
}

sa-rating-question.sa-question-error {
  display: inline-block;
  border: 2px solid var(--system-red-120);
  outline-offset: 4px;
  border-radius: 2px;
  padding: 12px 16px 8px 16px;
  margin: 0;
}

/* --- General --- */
html {
  box-sizing: border-box;
  font-size: 100%;
  overflow-x: hidden;
}
html.fixed {
  overflow: hidden;
}
html body {
  overflow-x: hidden;
}

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

body {
  font-family: "Roboto", sans-serif;
}

a:focus,
button:focus {
  outline-width: 3px;
  outline-width: 0.1875rem;
  outline-offset: 2px;
  outline-offset: 0.125rem;
  outline-style: solid;
  outline-color: #000000;
  z-index: 401;
}

.container-centre {
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 64em) {
  .container-centre {
    padding-right: 40px;
    padding-right: 2.5rem;
    padding-left: 40px;
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 64em) {
  .container-centre {
    width: 1024px;
    width: 64rem;
  }
}
@media only screen and (min-width: 77.75em) {
  .container-centre {
    width: 1244px;
    width: 77.75rem;
  }
}
@media only screen and (min-width: 88.125em) {
  .container-centre {
    width: 1360px;
    width: 85rem;
  }
}

.arrow-up {
  transform: rotate(180deg);
}
