@charset "UTF-8";
@import '//fonts.googleapis.com/css?family=Lato:700';
@import '//use.typekit.net/kue6kgy.css';
/*
     SickKids Theme - Shared Colors 
*/
/*
    Internal Colors
    - Re-useable IN THIS FILE
    - Store all colors internally with a '_color-' prefix.
    - Use a double-digit numerical identifier, even for single 
      colors to help find and replace later.
    - Utility for HSL conversion: https://shemeerns.com/plugins/color-picker/
    - Info about HSL: https://sujansundareswaran.com/blog/why-hsl-is-better-than-hex-and-rgb
*/
/* 
    Public Colors 
    - Create human-readable names for using colors in code.
    - Do not use private color variables in your code!
*/
/* 
    Bootstrap Color Maps
    - Colors map for Bootstrap themeing.
    - IMPORTANT: This limited set of APPROVED styleguide colors >>OVERRIDES<<
      the Bootstrap built-in colors list, SEE: vendors/_bootstrap.scss
    - See: https://getbootstrap.com/docs/4.5/getting-started/theming/#color
           https://getbootstrap.com/docs/4.5/getting-started/theming/#theme-colors
*/
/* 
    Color Shades 
    - Central storage for tint values re-use & consistency.
    - See: abstracts/functions.scss
*/
/*
    Global non-Bootstrap Variables
*/
/* 
    Main Bootstrap Include

    Allow project-specific control over supported 
    bootstrap components AND utilities

    Should be as close as possible to a direct copy
    of /node_modules/bootstrap/scss/bootstrap.scss 
    and /node_modules/bootstrap/scss/_utilities.scss 
    for consistency and maintenance.

    IMPORTANT: 
    We override some Bootstrap variables and mixins
     - $colors and $theme-colors to eliminate un-approved 
       non-styleguide colors from the project!
     - Some mixins are overridden to reduce a lot of 
       CSS overriding for things like buttons
*/
/*
     SickKids Theme - Shared Colors 
*/
/*
    Internal Colors
    - Re-useable IN THIS FILE
    - Store all colors internally with a '_color-' prefix.
    - Use a double-digit numerical identifier, even for single 
      colors to help find and replace later.
    - Utility for HSL conversion: https://shemeerns.com/plugins/color-picker/
    - Info about HSL: https://sujansundareswaran.com/blog/why-hsl-is-better-than-hex-and-rgb
*/
/* 
    Public Colors 
    - Create human-readable names for using colors in code.
    - Do not use private color variables in your code!
*/
/* 
    Bootstrap Color Maps
    - Colors map for Bootstrap themeing.
    - IMPORTANT: This limited set of APPROVED styleguide colors >>OVERRIDES<<
      the Bootstrap built-in colors list, SEE: vendors/_bootstrap.scss
    - See: https://getbootstrap.com/docs/4.5/getting-started/theming/#color
           https://getbootstrap.com/docs/4.5/getting-started/theming/#theme-colors
*/
/* 
    Color Shades 
    - Central storage for tint values re-use & consistency.
    - See: abstracts/functions.scss
*/
/*
    Global non-Bootstrap Variables
*/
/* 
    Bootstrap Variables ONLY 

    This file is based off node_modules/bootstrap/_variables.scss
    and node_modules/bootstrap/vendor/_rfs.scss...

    PLEASE be mindful of the section and variable order!

    If you need to create new variables specifically for this project, consider
    using the project's main.scss file, an existing .scss file, or 
    creating an abstracts/_variables.scss.
*/
/* RFS */
/* Bootstrap Variables */
/*!
 * Bootstrap v4.5.2 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
/*
     SickKids Theme - Shared Colors 
*/
/*
    Internal Colors
    - Re-useable IN THIS FILE
    - Store all colors internally with a '_color-' prefix.
    - Use a double-digit numerical identifier, even for single 
      colors to help find and replace later.
    - Utility for HSL conversion: https://shemeerns.com/plugins/color-picker/
    - Info about HSL: https://sujansundareswaran.com/blog/why-hsl-is-better-than-hex-and-rgb
*/
/* 
    Public Colors 
    - Create human-readable names for using colors in code.
    - Do not use private color variables in your code!
*/
/* 
    Bootstrap Color Maps
    - Colors map for Bootstrap themeing.
    - IMPORTANT: This limited set of APPROVED styleguide colors >>OVERRIDES<<
      the Bootstrap built-in colors list, SEE: vendors/_bootstrap.scss
    - See: https://getbootstrap.com/docs/4.5/getting-started/theming/#color
           https://getbootstrap.com/docs/4.5/getting-started/theming/#theme-colors
*/
/* 
    Color Shades 
    - Central storage for tint values re-use & consistency.
    - See: abstracts/functions.scss
*/
/*
    Global non-Bootstrap Variables
*/
/* 
    Bootstrap Variables ONLY 

    This file is based off node_modules/bootstrap/_variables.scss
    and node_modules/bootstrap/vendor/_rfs.scss...

    PLEASE be mindful of the section and variable order!

    If you need to create new variables specifically for this project, consider
    using the project's main.scss file, an existing .scss file, or 
    creating an abstracts/_variables.scss.
*/
/* RFS */
/* Bootstrap Variables */
/*
    We override alerts to provide contrast correction
    for the text and background 
*/
/*
    We override badges to provide contrast correction by
    using thick borders with regular body text. 

    See also: /src/features/badge
*/
/*
    We override button mixins to follow the unique look & feel
    from styleguide, without massive overrides to CSS (reducing code).

    These have been kept as close as possible by changing the method 
    definition when possible, but some color/focus/borders simply had to 
    be changed. USE A DIFF TOOL before updating, https://quickdiff.net/.

    See also: /src/features/buttons
    Note: Primary buttons have unique border hover color in /src/features/buttons
    Note: this is not the entire set of mixins from bootstrap/scss/mixins/_buttons.scss
*/
:root {
  --blue: #0067b1;
  --red: #DB2E2E;
  --green: #09695C;
  --gray: #595959;
  --primary: #0067b1;
  --secondary: #00BEE1;
  --dark: #072C8A;
  --danger: #DB2E2E;
  --success: #09695C;
  --text: #595959;
  --breakpoint-xs: 0;
  --breakpoint-sm: 36em;
  --breakpoint-md: 48em;
  --breakpoint-lg: 62em;
  --breakpoint-xl: 75em;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "proxima-nova", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #595959;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
}

p {
  margin-top: 0;
  margin-bottom: 2rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0067b1;
  text-decoration: underline;
  background-color: transparent;
}
a:hover {
  color: #072C8A;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
@media (max-width: 75em) {
  legend {
    font-size: calc(1.275rem + 0.3vw);
  }
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 2rem;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
  line-height: 1.2;
  color: #0067b1;
}

h1, .h1 {
  font-size: 3.5rem;
}
@media (max-width: 75em) {
  h1, .h1 {
    font-size: calc(1.475rem + 2.7vw);
  }
}

h2, .h2 {
  font-size: 2.75rem;
}
@media (max-width: 75em) {
  h2, .h2 {
    font-size: calc(1.4rem + 1.8vw);
  }
}

h3, .h3 {
  font-size: 2.25rem;
}
@media (max-width: 75em) {
  h3, .h3 {
    font-size: calc(1.35rem + 1.2vw);
  }
}

h4, .h4 {
  font-size: 1.5rem;
}
@media (max-width: 75em) {
  h4, .h4 {
    font-size: calc(1.275rem + 0.3vw);
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1rem;
  font-weight: 300;
}

.display-1 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 75em) {
  .display-1 {
    font-size: calc(1.625rem + 4.5vw);
  }
}

.display-2 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 75em) {
  .display-2 {
    font-size: calc(1.575rem + 3.9vw);
  }
}

.display-3 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 75em) {
  .display-3 {
    font-size: calc(1.525rem + 3.3vw);
  }
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 75em) {
  .display-4 {
    font-size: calc(1.475rem + 2.7vw);
  }
}

hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 0.125rem solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 2rem;
  font-size: 2.25rem;
}
@media (max-width: 75em) {
  .blockquote {
    font-size: calc(1.35rem + 1.2vw);
  }
}

.blockquote-footer {
  display: block;
  font-size: 1.25rem;
  color: #595959;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 0.125rem solid #dee2e6;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 1rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #595959;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 36em) {
  .container-sm, .container {
    max-width: 33.75em;
  }
}
@media (min-width: 48em) {
  .container-md, .container-sm, .container {
    max-width: 45em;
  }
}
@media (min-width: 62em) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 60em;
  }
}
@media (min-width: 75em) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 71.25em;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

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

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 36em) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 48em) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 62em) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 75em) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
.form-control, .FormDateTime__Input, .FormTextbox__Input {
  display: block;
  width: 100%;
  height: calc(1.8em + 1rem);
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #595959;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.125rem solid #b3d1e8;
  border-radius: 0.5rem;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control, .FormDateTime__Input, .FormTextbox__Input {
    transition: none;
  }
}
.form-control::-ms-expand, .FormDateTime__Input::-ms-expand, .FormTextbox__Input::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring, .FormDateTime__Input:-moz-focusring, .FormTextbox__Input:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #595959;
}
.form-control:focus, .FormDateTime__Input:focus, .FormTextbox__Input:focus {
  color: #595959;
  background-color: #fff;
  border-color: #0067b1;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.form-control::-moz-placeholder, .FormDateTime__Input::-moz-placeholder, .FormTextbox__Input::-moz-placeholder {
  color: #9b9b9b;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .FormDateTime__Input:-ms-input-placeholder, .FormTextbox__Input:-ms-input-placeholder {
  color: #9b9b9b;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .FormDateTime__Input::-ms-input-placeholder, .FormTextbox__Input::-ms-input-placeholder {
  color: #9b9b9b;
  opacity: 1;
}
.form-control::placeholder, .FormDateTime__Input::placeholder, .FormTextbox__Input::placeholder {
  color: #9b9b9b;
  opacity: 1;
}
.form-control:disabled, .FormDateTime__Input:disabled, .FormTextbox__Input:disabled, .form-control[readonly], [readonly].FormDateTime__Input, [readonly].FormTextbox__Input {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control, input[type=date].FormDateTime__Input, input[type=date].FormTextbox__Input,
input[type=time].form-control,
input[type=time].FormDateTime__Input,
input[type=time].FormTextbox__Input,
input[type=datetime-local].form-control,
input[type=datetime-local].FormDateTime__Input,
input[type=datetime-local].FormTextbox__Input,
input[type=month].form-control,
input[type=month].FormDateTime__Input,
input[type=month].FormTextbox__Input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value, select.FormDateTime__Input:focus::-ms-value, select.FormTextbox__Input:focus::-ms-value {
  color: #595959;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.8;
}

.col-form-label-lg {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.2;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #595959;
  background-color: transparent;
  border: solid transparent;
  border-width: 0.125rem 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.2em + 0.75rem);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  border-radius: 0.25rem;
}

.form-control-lg {
  height: calc(1.5em + 1.25rem);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.8rem;
}

select.form-control[size], select[size].FormDateTime__Input, select[size].FormTextbox__Input, select.form-control[multiple], select[multiple].FormDateTime__Input, select[multiple].FormTextbox__Input {
  height: auto;
}

textarea.form-control, textarea.FormDateTime__Input, textarea.FormTextbox__Input {
  height: auto;
}

.form-group, .Form__Element {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.375rem;
  margin-left: -0.375rem;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #0067b1;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #fff;
  background-color: rgba(0, 103, 177, 0.9);
  border-radius: 0.5rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.Form__Element.ValidationSuccess .FormTextbox__Input ~ .valid-feedback,
.Form__Element.ValidationSuccess select ~ .valid-feedback,
.is-valid ~ .valid-tooltip,
.Form__Element.ValidationSuccess .FormTextbox__Input ~ .valid-tooltip,
.Form__Element.ValidationSuccess select ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .was-validated .FormDateTime__Input:valid, .was-validated .FormTextbox__Input:valid, .form-control.is-valid, .is-valid.FormDateTime__Input, .is-valid.FormTextbox__Input, .Form__Element.ValidationSuccess .FormTextbox__Input, .Form__Element.ValidationSuccess select.form-control, .Form__Element.ValidationSuccess select.FormDateTime__Input {
  border-color: #0067b1;
  padding-right: calc(1.8em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M12 23.97a12 12 0 10-12-12 12 12 0 0012 12' fill='%23d9e8f3'/%3e%3cpath fill='none' stroke='%230067b1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20.01 6.57L9.14 17.43h0l-5.23-5.22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.45em + 0.1875rem) center;
  background-size: calc(0.9em + 0.375rem) calc(0.9em + 0.375rem);
}
.was-validated .form-control:valid:focus, .was-validated .FormDateTime__Input:valid:focus, .was-validated .FormTextbox__Input:valid:focus, .form-control.is-valid:focus, .is-valid.FormDateTime__Input:focus, .is-valid.FormTextbox__Input:focus, .Form__Element.ValidationSuccess .FormTextbox__Input:focus, .Form__Element.ValidationSuccess select.form-control:focus, .Form__Element.ValidationSuccess select.FormDateTime__Input:focus {
  border-color: #0067b1;
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.25);
}

.was-validated textarea.form-control:valid, .was-validated textarea.FormDateTime__Input:valid, .was-validated textarea.FormTextbox__Input:valid, textarea.form-control.is-valid, textarea.is-valid.FormDateTime__Input, textarea.is-valid.FormTextbox__Input, .Form__Element.ValidationSuccess textarea.FormTextbox__Input {
  padding-right: calc(1.8em + 0.75rem);
  background-position: top calc(0.45em + 0.1875rem) right calc(0.45em + 0.1875rem);
}

.was-validated .custom-select:valid, .was-validated .FormSelection select:valid, .FormSelection .was-validated select:valid, .custom-select.is-valid, .FormSelection select.is-valid, .Form__Element.ValidationSuccess .custom-select.FormTextbox__Input, .Form__Element.ValidationSuccess select.custom-select, .FormSelection .Form__Element.ValidationSuccess select, .Form__Element.ValidationSuccess .FormSelection select {
  border-color: #0067b1;
  padding-right: calc(0.75em + 2.0625rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23072C8A' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.5rem center/0.5rem 0.625rem, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M12 23.97a12 12 0 10-12-12 12 12 0 0012 12' fill='%23d9e8f3'/%3e%3cpath fill='none' stroke='%230067b1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20.01 6.57L9.14 17.43h0l-5.23-5.22'/%3e%3c/svg%3e") #fff no-repeat center right 1.5rem/calc(0.9em + 0.375rem) calc(0.9em + 0.375rem);
}
.was-validated .custom-select:valid:focus, .was-validated .FormSelection select:valid:focus, .FormSelection .was-validated select:valid:focus, .custom-select.is-valid:focus, .FormSelection select.is-valid:focus, .Form__Element.ValidationSuccess .custom-select.FormTextbox__Input:focus, .Form__Element.ValidationSuccess select.custom-select:focus, .FormSelection .Form__Element.ValidationSuccess select:focus, .Form__Element.ValidationSuccess .FormSelection select:focus {
  border-color: #0067b1;
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label, .Form__Element.ValidationSuccess .form-check-input.FormTextbox__Input ~ .form-check-label, .Form__Element.ValidationSuccess select.form-check-input ~ .form-check-label {
  color: #0067b1;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .Form__Element.ValidationSuccess .form-check-input.FormTextbox__Input ~ .valid-feedback, .Form__Element.ValidationSuccess select.form-check-input ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip,
.Form__Element.ValidationSuccess .form-check-input.FormTextbox__Input ~ .valid-tooltip,
.Form__Element.ValidationSuccess select.form-check-input ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label, .Form__Element.ValidationSuccess .custom-control-input.FormTextbox__Input ~ .custom-control-label, .Form__Element.ValidationSuccess select.custom-control-input ~ .custom-control-label {
  color: #0067b1;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before, .Form__Element.ValidationSuccess .custom-control-input.FormTextbox__Input ~ .custom-control-label::before, .Form__Element.ValidationSuccess select.custom-control-input ~ .custom-control-label::before {
  border-color: #0067b1;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before, .Form__Element.ValidationSuccess .custom-control-input.FormTextbox__Input:checked ~ .custom-control-label::before, .Form__Element.ValidationSuccess select.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #0085e4;
  background-color: #0085e4;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before, .Form__Element.ValidationSuccess .custom-control-input.FormTextbox__Input:focus ~ .custom-control-label::before, .Form__Element.ValidationSuccess select.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .Form__Element.ValidationSuccess .custom-control-input.FormTextbox__Input:focus:not(:checked) ~ .custom-control-label::before, .Form__Element.ValidationSuccess select.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #0067b1;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .was-validated .FormFileUpload .FormFileUpload__Input:valid ~ .custom-file-label, .FormFileUpload .was-validated .FormFileUpload__Input:valid ~ .custom-file-label, .was-validated .FormFileUpload .custom-file-input:valid ~ .Form__Element__Caption, .FormFileUpload .was-validated .custom-file-input:valid ~ .Form__Element__Caption, .was-validated .FormFileUpload .FormFileUpload__Input:valid ~ .Form__Element__Caption, .FormFileUpload .was-validated .FormFileUpload__Input:valid ~ .Form__Element__Caption, .custom-file-input.is-valid ~ .custom-file-label, .FormFileUpload .is-valid.FormFileUpload__Input ~ .custom-file-label, .Form__Element.ValidationSuccess .custom-file-input.FormTextbox__Input ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationSuccess .FormFileUpload__Input.FormTextbox__Input ~ .custom-file-label, .Form__Element.ValidationSuccess .FormFileUpload .FormFileUpload__Input.FormTextbox__Input ~ .custom-file-label, .Form__Element.ValidationSuccess select.custom-file-input ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationSuccess select.FormFileUpload__Input ~ .custom-file-label, .Form__Element.ValidationSuccess .FormFileUpload select.FormFileUpload__Input ~ .custom-file-label, .FormFileUpload .custom-file-input.is-valid ~ .Form__Element__Caption, .FormFileUpload .is-valid.FormFileUpload__Input ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload .custom-file-input.FormTextbox__Input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess .custom-file-input.FormTextbox__Input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess .FormFileUpload__Input.FormTextbox__Input ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload .FormFileUpload__Input.FormTextbox__Input ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload select.custom-file-input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess select.custom-file-input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess select.FormFileUpload__Input ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload select.FormFileUpload__Input ~ .Form__Element__Caption {
  border-color: #0067b1;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .was-validated .FormFileUpload .FormFileUpload__Input:valid:focus ~ .custom-file-label, .FormFileUpload .was-validated .FormFileUpload__Input:valid:focus ~ .custom-file-label, .was-validated .FormFileUpload .custom-file-input:valid:focus ~ .Form__Element__Caption, .FormFileUpload .was-validated .custom-file-input:valid:focus ~ .Form__Element__Caption, .was-validated .FormFileUpload .FormFileUpload__Input:valid:focus ~ .Form__Element__Caption, .FormFileUpload .was-validated .FormFileUpload__Input:valid:focus ~ .Form__Element__Caption, .custom-file-input.is-valid:focus ~ .custom-file-label, .FormFileUpload .is-valid.FormFileUpload__Input:focus ~ .custom-file-label, .Form__Element.ValidationSuccess .custom-file-input.FormTextbox__Input:focus ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationSuccess .FormFileUpload__Input.FormTextbox__Input:focus ~ .custom-file-label, .Form__Element.ValidationSuccess .FormFileUpload .FormFileUpload__Input.FormTextbox__Input:focus ~ .custom-file-label, .Form__Element.ValidationSuccess select.custom-file-input:focus ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationSuccess select.FormFileUpload__Input:focus ~ .custom-file-label, .Form__Element.ValidationSuccess .FormFileUpload select.FormFileUpload__Input:focus ~ .custom-file-label, .FormFileUpload .custom-file-input.is-valid:focus ~ .Form__Element__Caption, .FormFileUpload .is-valid.FormFileUpload__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload .custom-file-input.FormTextbox__Input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess .custom-file-input.FormTextbox__Input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess .FormFileUpload__Input.FormTextbox__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload .FormFileUpload__Input.FormTextbox__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload select.custom-file-input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess select.custom-file-input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationSuccess select.FormFileUpload__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationSuccess .FormFileUpload select.FormFileUpload__Input:focus ~ .Form__Element__Caption {
  border-color: #0067b1;
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #DB2E2E;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #fff;
  background-color: rgba(219, 46, 46, 0.9);
  border-radius: 0.5rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.Form__Element.ValidationFail .FormTextbox__Input ~ .invalid-feedback,
.Form__Element.ValidationFail select ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.Form__Element.ValidationFail .FormTextbox__Input ~ .invalid-tooltip,
.Form__Element.ValidationFail select ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .was-validated .FormDateTime__Input:invalid, .was-validated .FormTextbox__Input:invalid, .form-control.is-invalid, .is-invalid.FormDateTime__Input, .is-invalid.FormTextbox__Input, .Form__Element.ValidationFail .FormTextbox__Input, .Form__Element.ValidationFail select.form-control, .Form__Element.ValidationFail select.FormDateTime__Input {
  border-color: #DB2E2E;
  padding-right: calc(1.8em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M12 23.97a12 12 0 10-12-12 12 12 0 0012 12' fill='%23fae0e0' data-name='Layer 4'/%3e%3cg data-name='X mark' fill='none' stroke='%23DB2E2E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M5.46 5.49l13.01 13.02M18.56 5.4L5.37 18.6'/%3e%3c/g%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.45em + 0.1875rem) center;
  background-size: calc(0.9em + 0.375rem) calc(0.9em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .was-validated .FormDateTime__Input:invalid:focus, .was-validated .FormTextbox__Input:invalid:focus, .form-control.is-invalid:focus, .is-invalid.FormDateTime__Input:focus, .is-invalid.FormTextbox__Input:focus, .Form__Element.ValidationFail .FormTextbox__Input:focus, .Form__Element.ValidationFail select.form-control:focus, .Form__Element.ValidationFail select.FormDateTime__Input:focus {
  border-color: #DB2E2E;
  box-shadow: 0 0 0 0 rgba(219, 46, 46, 0.25);
}

.was-validated textarea.form-control:invalid, .was-validated textarea.FormDateTime__Input:invalid, .was-validated textarea.FormTextbox__Input:invalid, textarea.form-control.is-invalid, textarea.is-invalid.FormDateTime__Input, textarea.is-invalid.FormTextbox__Input, .Form__Element.ValidationFail textarea.FormTextbox__Input {
  padding-right: calc(1.8em + 0.75rem);
  background-position: top calc(0.45em + 0.1875rem) right calc(0.45em + 0.1875rem);
}

.was-validated .custom-select:invalid, .was-validated .FormSelection select:invalid, .FormSelection .was-validated select:invalid, .custom-select.is-invalid, .FormSelection select.is-invalid, .Form__Element.ValidationFail .custom-select.FormTextbox__Input, .Form__Element.ValidationFail select.custom-select, .FormSelection .Form__Element.ValidationFail select, .Form__Element.ValidationFail .FormSelection select {
  border-color: #DB2E2E;
  padding-right: calc(0.75em + 2.0625rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23072C8A' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.5rem center/0.5rem 0.625rem, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3e%3cpath d='M12 23.97a12 12 0 10-12-12 12 12 0 0012 12' fill='%23fae0e0' data-name='Layer 4'/%3e%3cg data-name='X mark' fill='none' stroke='%23DB2E2E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3e%3cpath d='M5.46 5.49l13.01 13.02M18.56 5.4L5.37 18.6'/%3e%3c/g%3e%3c/svg%3e") #fff no-repeat center right 1.5rem/calc(0.9em + 0.375rem) calc(0.9em + 0.375rem);
}
.was-validated .custom-select:invalid:focus, .was-validated .FormSelection select:invalid:focus, .FormSelection .was-validated select:invalid:focus, .custom-select.is-invalid:focus, .FormSelection select.is-invalid:focus, .Form__Element.ValidationFail .custom-select.FormTextbox__Input:focus, .Form__Element.ValidationFail select.custom-select:focus, .FormSelection .Form__Element.ValidationFail select:focus, .Form__Element.ValidationFail .FormSelection select:focus {
  border-color: #DB2E2E;
  box-shadow: 0 0 0 0 rgba(219, 46, 46, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label, .Form__Element.ValidationFail .form-check-input.FormTextbox__Input ~ .form-check-label, .Form__Element.ValidationFail select.form-check-input ~ .form-check-label {
  color: #DB2E2E;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .Form__Element.ValidationFail .form-check-input.FormTextbox__Input ~ .invalid-feedback, .Form__Element.ValidationFail select.form-check-input ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip,
.Form__Element.ValidationFail .form-check-input.FormTextbox__Input ~ .invalid-tooltip,
.Form__Element.ValidationFail select.form-check-input ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label, .Form__Element.ValidationFail .custom-control-input.FormTextbox__Input ~ .custom-control-label, .Form__Element.ValidationFail select.custom-control-input ~ .custom-control-label {
  color: #DB2E2E;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before, .Form__Element.ValidationFail .custom-control-input.FormTextbox__Input ~ .custom-control-label::before, .Form__Element.ValidationFail select.custom-control-input ~ .custom-control-label::before {
  border-color: #DB2E2E;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before, .Form__Element.ValidationFail .custom-control-input.FormTextbox__Input:checked ~ .custom-control-label::before, .Form__Element.ValidationFail select.custom-control-input:checked ~ .custom-control-label::before {
  border-color: #e25a5a;
  background-color: #e25a5a;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before, .Form__Element.ValidationFail .custom-control-input.FormTextbox__Input:focus ~ .custom-control-label::before, .Form__Element.ValidationFail select.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(219, 46, 46, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .Form__Element.ValidationFail .custom-control-input.FormTextbox__Input:focus:not(:checked) ~ .custom-control-label::before, .Form__Element.ValidationFail select.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #DB2E2E;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .was-validated .FormFileUpload .FormFileUpload__Input:invalid ~ .custom-file-label, .FormFileUpload .was-validated .FormFileUpload__Input:invalid ~ .custom-file-label, .was-validated .FormFileUpload .custom-file-input:invalid ~ .Form__Element__Caption, .FormFileUpload .was-validated .custom-file-input:invalid ~ .Form__Element__Caption, .was-validated .FormFileUpload .FormFileUpload__Input:invalid ~ .Form__Element__Caption, .FormFileUpload .was-validated .FormFileUpload__Input:invalid ~ .Form__Element__Caption, .custom-file-input.is-invalid ~ .custom-file-label, .FormFileUpload .is-invalid.FormFileUpload__Input ~ .custom-file-label, .Form__Element.ValidationFail .custom-file-input.FormTextbox__Input ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationFail .FormFileUpload__Input.FormTextbox__Input ~ .custom-file-label, .Form__Element.ValidationFail .FormFileUpload .FormFileUpload__Input.FormTextbox__Input ~ .custom-file-label, .Form__Element.ValidationFail select.custom-file-input ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationFail select.FormFileUpload__Input ~ .custom-file-label, .Form__Element.ValidationFail .FormFileUpload select.FormFileUpload__Input ~ .custom-file-label, .FormFileUpload .custom-file-input.is-invalid ~ .Form__Element__Caption, .FormFileUpload .is-invalid.FormFileUpload__Input ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload .custom-file-input.FormTextbox__Input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail .custom-file-input.FormTextbox__Input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail .FormFileUpload__Input.FormTextbox__Input ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload .FormFileUpload__Input.FormTextbox__Input ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload select.custom-file-input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail select.custom-file-input ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail select.FormFileUpload__Input ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload select.FormFileUpload__Input ~ .Form__Element__Caption {
  border-color: #DB2E2E;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .was-validated .FormFileUpload .FormFileUpload__Input:invalid:focus ~ .custom-file-label, .FormFileUpload .was-validated .FormFileUpload__Input:invalid:focus ~ .custom-file-label, .was-validated .FormFileUpload .custom-file-input:invalid:focus ~ .Form__Element__Caption, .FormFileUpload .was-validated .custom-file-input:invalid:focus ~ .Form__Element__Caption, .was-validated .FormFileUpload .FormFileUpload__Input:invalid:focus ~ .Form__Element__Caption, .FormFileUpload .was-validated .FormFileUpload__Input:invalid:focus ~ .Form__Element__Caption, .custom-file-input.is-invalid:focus ~ .custom-file-label, .FormFileUpload .is-invalid.FormFileUpload__Input:focus ~ .custom-file-label, .Form__Element.ValidationFail .custom-file-input.FormTextbox__Input:focus ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationFail .FormFileUpload__Input.FormTextbox__Input:focus ~ .custom-file-label, .Form__Element.ValidationFail .FormFileUpload .FormFileUpload__Input.FormTextbox__Input:focus ~ .custom-file-label, .Form__Element.ValidationFail select.custom-file-input:focus ~ .custom-file-label, .FormFileUpload .Form__Element.ValidationFail select.FormFileUpload__Input:focus ~ .custom-file-label, .Form__Element.ValidationFail .FormFileUpload select.FormFileUpload__Input:focus ~ .custom-file-label, .FormFileUpload .custom-file-input.is-invalid:focus ~ .Form__Element__Caption, .FormFileUpload .is-invalid.FormFileUpload__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload .custom-file-input.FormTextbox__Input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail .custom-file-input.FormTextbox__Input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail .FormFileUpload__Input.FormTextbox__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload .FormFileUpload__Input.FormTextbox__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload select.custom-file-input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail select.custom-file-input:focus ~ .Form__Element__Caption, .FormFileUpload .Form__Element.ValidationFail select.FormFileUpload__Input:focus ~ .Form__Element__Caption, .Form__Element.ValidationFail .FormFileUpload select.FormFileUpload__Input:focus ~ .Form__Element__Caption {
  border-color: #DB2E2E;
  box-shadow: 0 0 0 0 rgba(219, 46, 46, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 36em) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group, .form-inline .Form__Element {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control, .form-inline .FormDateTime__Input, .form-inline .FormTextbox__Input {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select,
.form-inline .FormSelection select,
.FormSelection .form-inline select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .FormCaptcha__Refresh, .FormResetButton, .EPiServerForms button[type=submit] {
  display: inline-block;
  font-weight: 400;
  color: #595959;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0.125rem solid transparent;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.2;
  border-radius: 2rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, .FormCaptcha__Refresh, .FormResetButton, .EPiServerForms button[type=submit] {
    transition: none;
  }
}
.btn:hover, .FormCaptcha__Refresh:hover, .FormResetButton:hover, .EPiServerForms button[type=submit]:hover {
  color: #595959;
  text-decoration: none;
}
.btn:focus, .FormCaptcha__Refresh:focus, .FormResetButton:focus, .EPiServerForms button[type=submit]:focus, .btn.focus, .focus.FormCaptcha__Refresh, .focus.FormResetButton, .EPiServerForms button.focus[type=submit] {
  outline: 0;
  box-shadow: none;
}
.btn.disabled, .disabled.FormCaptcha__Refresh, .disabled.FormResetButton, .EPiServerForms button.disabled[type=submit], .btn:disabled, .FormCaptcha__Refresh:disabled, .FormResetButton:disabled, .EPiServerForms button[type=submit]:disabled {
  opacity: 0.65;
  box-shadow: none;
}
.btn:not(:disabled):not(.disabled), .FormCaptcha__Refresh:not(:disabled):not(.disabled), .FormResetButton:not(:disabled):not(.disabled), .EPiServerForms button[type=submit]:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.btn:not(:disabled):not(.disabled):active, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active, .FormResetButton:not(:disabled):not(.disabled):active, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled).active, .FormCaptcha__Refresh:not(:disabled):not(.disabled).active, .FormResetButton:not(:disabled):not(.disabled).active, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled).active {
  box-shadow: none;
}
a.btn.disabled, a.disabled.FormCaptcha__Refresh, a.disabled.FormResetButton,
fieldset:disabled a.btn,
fieldset:disabled a.FormCaptcha__Refresh,
fieldset:disabled a.FormResetButton {
  pointer-events: none;
}

.btn-primary, .FormCaptcha__Refresh, .FormResetButton, .EPiServerForms button[type=submit] {
  color: #fff;
  background-color: #0067b1;
  border-color: #0067b1;
  box-shadow: none;
}
.btn-primary:hover, .FormCaptcha__Refresh:hover, .FormResetButton:hover, .EPiServerForms button[type=submit]:hover, .btn-primary.hover, .hover.FormCaptcha__Refresh, .hover.FormResetButton, .EPiServerForms button.hover[type=submit] {
  color: #0067b1;
  background-color: white;
  border-color: #0067b1;
}
.btn-primary:focus, .FormCaptcha__Refresh:focus, .FormResetButton:focus, .EPiServerForms button[type=submit]:focus, .btn-primary.focus, .focus.FormCaptcha__Refresh, .focus.FormResetButton, .EPiServerForms button.focus[type=submit] {
  color: #0067b1;
  background-color: white;
  border-color: #0067b1;
  box-shadow: none;
}
.btn-primary.disabled, .disabled.FormCaptcha__Refresh, .disabled.FormResetButton, .EPiServerForms button.disabled[type=submit], .btn-primary:disabled, .FormCaptcha__Refresh:disabled, .FormResetButton:disabled, .EPiServerForms button[type=submit]:disabled {
  color: #fff;
  background-color: #0067b1;
  border-color: #0067b1;
}
.btn-primary:not(:disabled):not(.disabled):active, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active, .FormResetButton:not(:disabled):not(.disabled):active, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .FormCaptcha__Refresh:not(:disabled):not(.disabled).active, .FormResetButton:not(:disabled):not(.disabled).active, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled).active {
  color: #0067b1;
  background-color: #d9e8f3;
  border-color: transparent;
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active:hover, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active:hover, .FormResetButton:not(:disabled):not(.disabled):active:hover, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active:hover, .btn-primary:not(:disabled):not(.disabled):active.hover, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active.hover, .FormResetButton:not(:disabled):not(.disabled):active.hover, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active.hover, .btn-primary:not(:disabled):not(.disabled).active:hover, .FormCaptcha__Refresh:not(:disabled):not(.disabled).active:hover, .FormResetButton:not(:disabled):not(.disabled).active:hover, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled).active:hover, .btn-primary:not(:disabled):not(.disabled).active.hover, .FormCaptcha__Refresh:not(:disabled):not(.disabled).active.hover, .FormResetButton:not(:disabled):not(.disabled).active.hover, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled).active.hover {
  border-color: #0067b1;
  background-color: white;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active:focus, .FormResetButton:not(:disabled):not(.disabled):active:focus, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .FormCaptcha__Refresh:not(:disabled):not(.disabled).active:focus, .FormResetButton:not(:disabled):not(.disabled).active:focus, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #0067b1;
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active:hover:focus, .FormCaptcha__Refresh:not(:disabled):not(.disabled):active:hover:focus, .FormResetButton:not(:disabled):not(.disabled):active:hover:focus, .EPiServerForms button[type=submit]:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #d9e8f3;
  background-color: #d9e8f3;
}

.btn-secondary {
  color: #fff;
  background-color: #00BEE1;
  border-color: #00BEE1;
  box-shadow: none;
}
.btn-secondary:hover, .btn-secondary.hover {
  color: #00BEE1;
  background-color: white;
  border-color: #00BEE1;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #00BEE1;
  background-color: white;
  border-color: #00BEE1;
  box-shadow: none;
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #00BEE1;
  border-color: #00BEE1;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #00BEE1;
  background-color: #d9f5fb;
  border-color: transparent;
  box-shadow: none;
}
.btn-secondary:not(:disabled):not(.disabled):active:hover, .btn-secondary:not(:disabled):not(.disabled):active.hover, .btn-secondary:not(:disabled):not(.disabled).active:hover, .btn-secondary:not(:disabled):not(.disabled).active.hover {
  border-color: #00BEE1;
  background-color: white;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #00BEE1;
  box-shadow: none;
}
.btn-secondary:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #d9f5fb;
  background-color: #d9f5fb;
}

.btn-dark {
  color: #fff;
  background-color: #072C8A;
  border-color: #072C8A;
  box-shadow: none;
}
.btn-dark:hover, .btn-dark.hover {
  color: #072C8A;
  background-color: white;
  border-color: #072C8A;
}
.btn-dark:focus, .btn-dark.focus {
  color: #072C8A;
  background-color: white;
  border-color: #072C8A;
  box-shadow: none;
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #072C8A;
  border-color: #072C8A;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active {
  color: #072C8A;
  background-color: #dadfed;
  border-color: transparent;
  box-shadow: none;
}
.btn-dark:not(:disabled):not(.disabled):active:hover, .btn-dark:not(:disabled):not(.disabled):active.hover, .btn-dark:not(:disabled):not(.disabled).active:hover, .btn-dark:not(:disabled):not(.disabled).active.hover {
  border-color: #072C8A;
  background-color: white;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #072C8A;
  box-shadow: none;
}
.btn-dark:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #dadfed;
  background-color: #dadfed;
}

.btn-danger {
  color: #fff;
  background-color: #DB2E2E;
  border-color: #DB2E2E;
  box-shadow: none;
}
.btn-danger:hover, .btn-danger.hover {
  color: #DB2E2E;
  background-color: white;
  border-color: #DB2E2E;
}
.btn-danger:focus, .btn-danger.focus {
  color: #DB2E2E;
  background-color: white;
  border-color: #DB2E2E;
  box-shadow: none;
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #DB2E2E;
  border-color: #DB2E2E;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active {
  color: #DB2E2E;
  background-color: #fae0e0;
  border-color: transparent;
  box-shadow: none;
}
.btn-danger:not(:disabled):not(.disabled):active:hover, .btn-danger:not(:disabled):not(.disabled):active.hover, .btn-danger:not(:disabled):not(.disabled).active:hover, .btn-danger:not(:disabled):not(.disabled).active.hover {
  border-color: #DB2E2E;
  background-color: white;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #DB2E2E;
  box-shadow: none;
}
.btn-danger:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #fae0e0;
  background-color: #fae0e0;
}

.btn-success {
  color: #fff;
  background-color: #09695C;
  border-color: #09695C;
  box-shadow: none;
}
.btn-success:hover, .btn-success.hover {
  color: #09695C;
  background-color: white;
  border-color: #09695C;
}
.btn-success:focus, .btn-success.focus {
  color: #09695C;
  background-color: white;
  border-color: #09695C;
  box-shadow: none;
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #09695C;
  border-color: #09695C;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active {
  color: #09695C;
  background-color: #dae9e7;
  border-color: transparent;
  box-shadow: none;
}
.btn-success:not(:disabled):not(.disabled):active:hover, .btn-success:not(:disabled):not(.disabled):active.hover, .btn-success:not(:disabled):not(.disabled).active:hover, .btn-success:not(:disabled):not(.disabled).active.hover {
  border-color: #09695C;
  background-color: white;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #09695C;
  box-shadow: none;
}
.btn-success:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #dae9e7;
  background-color: #dae9e7;
}

.btn-text {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
  box-shadow: none;
}
.btn-text:hover, .btn-text.hover {
  color: #595959;
  background-color: white;
  border-color: #595959;
}
.btn-text:focus, .btn-text.focus {
  color: #595959;
  background-color: white;
  border-color: #595959;
  box-shadow: none;
}
.btn-text.disabled, .btn-text:disabled {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
}
.btn-text:not(:disabled):not(.disabled):active, .btn-text:not(:disabled):not(.disabled).active {
  color: #595959;
  background-color: #e6e6e6;
  border-color: transparent;
  box-shadow: none;
}
.btn-text:not(:disabled):not(.disabled):active:hover, .btn-text:not(:disabled):not(.disabled):active.hover, .btn-text:not(:disabled):not(.disabled).active:hover, .btn-text:not(:disabled):not(.disabled).active.hover {
  border-color: #595959;
  background-color: white;
}
.btn-text:not(:disabled):not(.disabled):active:focus, .btn-text:not(:disabled):not(.disabled).active:focus {
  background-color: white;
  border-color: #595959;
  box-shadow: none;
}
.btn-text:not(:disabled):not(.disabled):active:hover:focus {
  border-color: #e6e6e6;
  background-color: #e6e6e6;
}

.btn-outline-primary {
  color: #0067b1;
  background-color: white;
  border-color: #0067b1;
}
.btn-outline-primary:hover, .btn-outline-primary.hover {
  color: #0067b1;
  background-color: white;
  border-color: #b3d1e8;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  background-color: #d9e8f3;
  box-shadow: none;
}
.btn-outline-primary:focus:hover, .btn-outline-primary:focus.hover, .btn-outline-primary.focus:hover, .btn-outline-primary.focus.hover {
  background-color: white;
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #0067b1;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active {
  color: #0067b1;
  background-color: white;
  border-color: #b3d1e8;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus {
  background-color: #d9e8f3;
  border-color: #0067b1;
  box-shadow: none;
}
.btn-outline-primary:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #b3d1e8;
}

.btn-outline-secondary {
  color: #00BEE1;
  background-color: white;
  border-color: #00BEE1;
}
.btn-outline-secondary:hover, .btn-outline-secondary.hover {
  color: #00BEE1;
  background-color: white;
  border-color: #b3ecf6;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  background-color: #d9f5fb;
  box-shadow: none;
}
.btn-outline-secondary:focus:hover, .btn-outline-secondary:focus.hover, .btn-outline-secondary.focus:hover, .btn-outline-secondary.focus.hover {
  background-color: white;
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #00BEE1;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #00BEE1;
  background-color: white;
  border-color: #b3ecf6;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus {
  background-color: #d9f5fb;
  border-color: #00BEE1;
  box-shadow: none;
}
.btn-outline-secondary:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #b3ecf6;
}

.btn-outline-dark {
  color: #072C8A;
  background-color: white;
  border-color: #072C8A;
}
.btn-outline-dark:hover, .btn-outline-dark.hover {
  color: #072C8A;
  background-color: white;
  border-color: #b5c0dc;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  background-color: #dadfed;
  box-shadow: none;
}
.btn-outline-dark:focus:hover, .btn-outline-dark:focus.hover, .btn-outline-dark.focus:hover, .btn-outline-dark.focus.hover {
  background-color: white;
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #072C8A;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active {
  color: #072C8A;
  background-color: white;
  border-color: #b5c0dc;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus {
  background-color: #dadfed;
  border-color: #072C8A;
  box-shadow: none;
}
.btn-outline-dark:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #b5c0dc;
}

.btn-outline-danger {
  color: #DB2E2E;
  background-color: white;
  border-color: #DB2E2E;
}
.btn-outline-danger:hover, .btn-outline-danger.hover {
  color: #DB2E2E;
  background-color: white;
  border-color: #f4c0c0;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  background-color: #fae0e0;
  box-shadow: none;
}
.btn-outline-danger:focus:hover, .btn-outline-danger:focus.hover, .btn-outline-danger.focus:hover, .btn-outline-danger.focus.hover {
  background-color: white;
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #DB2E2E;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active {
  color: #DB2E2E;
  background-color: white;
  border-color: #f4c0c0;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus {
  background-color: #fae0e0;
  border-color: #DB2E2E;
  box-shadow: none;
}
.btn-outline-danger:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #f4c0c0;
}

.btn-outline-success {
  color: #09695C;
  background-color: white;
  border-color: #09695C;
}
.btn-outline-success:hover, .btn-outline-success.hover {
  color: #09695C;
  background-color: white;
  border-color: #b5d2ce;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  background-color: #dae9e7;
  box-shadow: none;
}
.btn-outline-success:focus:hover, .btn-outline-success:focus.hover, .btn-outline-success.focus:hover, .btn-outline-success.focus.hover {
  background-color: white;
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #09695C;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active {
  color: #09695C;
  background-color: white;
  border-color: #b5d2ce;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus {
  background-color: #dae9e7;
  border-color: #09695C;
  box-shadow: none;
}
.btn-outline-success:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-success:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #b5d2ce;
}

.btn-outline-text {
  color: #595959;
  background-color: white;
  border-color: #595959;
}
.btn-outline-text:hover, .btn-outline-text.hover {
  color: #595959;
  background-color: white;
  border-color: #cdcdcd;
}
.btn-outline-text:focus, .btn-outline-text.focus {
  background-color: #e6e6e6;
  box-shadow: none;
}
.btn-outline-text:focus:hover, .btn-outline-text:focus.hover, .btn-outline-text.focus:hover, .btn-outline-text.focus.hover {
  background-color: white;
}
.btn-outline-text.disabled, .btn-outline-text:disabled {
  color: #595959;
  background-color: transparent;
}
.btn-outline-text:not(:disabled):not(.disabled):active, .btn-outline-text:not(:disabled):not(.disabled).active {
  color: #595959;
  background-color: white;
  border-color: #cdcdcd;
}
.btn-outline-text:not(:disabled):not(.disabled):active:focus, .btn-outline-text:not(:disabled):not(.disabled).active:focus {
  background-color: #e6e6e6;
  border-color: #595959;
  box-shadow: none;
}
.btn-outline-text:not(:disabled):not(.disabled):focus:hover {
  background-color: white;
}
.btn-outline-text:not(:disabled):not(.disabled):active:hover:focus {
  background-color: white;
  border-color: #cdcdcd;
}

.btn-link {
  font-weight: 400;
  color: #0067b1;
  text-decoration: underline;
}
.btn-link:hover {
  color: #072C8A;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .FormCaptcha__Refresh, .btn-group-lg > .FormResetButton, .EPiServerForms .btn-group-lg > button[type=submit] {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 2rem;
}

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .FormCaptcha__Refresh, .btn-group-sm > .FormResetButton, .EPiServerForms .btn-group-sm > button[type=submit] {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  border-radius: 2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0 0;
  margin: 0 0 0;
  font-size: 1rem;
  color: #595959;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  box-shadow: 0 1rem 1rem -0.5rem rgba(0, 103, 177, 0.15);
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 36em) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 48em) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 62em) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 75em) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 1rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.375rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #0067b1;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.dropdown-item:last-child {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #0067b1;
  text-decoration: none;
  background-color: #d9e8f3;
}
.dropdown-item.active, .dropdown-item:active {
  color: #0067b1;
  text-decoration: none;
  background-color: #d9e8f3;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.375rem 1.5rem;
  color: #0067b1;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, .btn-group > .FormCaptcha__Refresh, .btn-group > .FormResetButton, .EPiServerForms .btn-group > button[type=submit],
.btn-group-vertical > .btn,
.btn-group-vertical > .FormCaptcha__Refresh,
.btn-group-vertical > .FormResetButton,
.EPiServerForms .btn-group-vertical > button[type=submit] {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover, .btn-group > .FormCaptcha__Refresh:hover, .btn-group > .FormResetButton:hover, .EPiServerForms .btn-group > button[type=submit]:hover,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .FormCaptcha__Refresh:hover,
.btn-group-vertical > .FormResetButton:hover,
.EPiServerForms .btn-group-vertical > button[type=submit]:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .FormCaptcha__Refresh:focus, .btn-group > .FormResetButton:focus, .EPiServerForms .btn-group > button[type=submit]:focus, .btn-group > .btn:active, .btn-group > .FormCaptcha__Refresh:active, .btn-group > .FormResetButton:active, .EPiServerForms .btn-group > button[type=submit]:active, .btn-group > .btn.active, .btn-group > .active.FormCaptcha__Refresh, .btn-group > .active.FormResetButton, .EPiServerForms .btn-group > button.active[type=submit],
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .FormCaptcha__Refresh:focus,
.btn-group-vertical > .FormResetButton:focus,
.EPiServerForms .btn-group-vertical > button[type=submit]:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .FormCaptcha__Refresh:active,
.btn-group-vertical > .FormResetButton:active,
.EPiServerForms .btn-group-vertical > button[type=submit]:active,
.btn-group-vertical > .btn.active,
.btn-group-vertical > .active.FormCaptcha__Refresh,
.btn-group-vertical > .active.FormResetButton,
.EPiServerForms .btn-group-vertical > button.active[type=submit] {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .btn-group > .FormCaptcha__Refresh:not(:first-child), .btn-group > .FormResetButton:not(:first-child), .EPiServerForms .btn-group > button[type=submit]:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -0.125rem;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .FormCaptcha__Refresh:not(:last-child):not(.dropdown-toggle), .btn-group > .FormResetButton:not(:last-child):not(.dropdown-toggle), .EPiServerForms .btn-group > button[type=submit]:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > .FormCaptcha__Refresh,
.btn-group > .btn-group:not(:last-child) > .FormResetButton,
.EPiServerForms .btn-group > .btn-group:not(:last-child) > button[type=submit] {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), .btn-group > .FormCaptcha__Refresh:not(:first-child), .btn-group > .FormResetButton:not(:first-child), .EPiServerForms .btn-group > button[type=submit]:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > .FormCaptcha__Refresh,
.btn-group > .btn-group:not(:first-child) > .FormResetButton,
.EPiServerForms .btn-group > .btn-group:not(:first-child) > button[type=submit] {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.65625rem;
  padding-left: 0.65625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > .FormCaptcha__Refresh + .dropdown-toggle-split, .btn-group-sm > .FormResetButton + .dropdown-toggle-split, .EPiServerForms .btn-group-sm > button[type=submit] + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > .FormCaptcha__Refresh + .dropdown-toggle-split, .btn-group-lg > .FormResetButton + .dropdown-toggle-split, .EPiServerForms .btn-group-lg > button[type=submit] + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group.show .dropdown-toggle {
  box-shadow: none;
}
.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn, .btn-group-vertical > .FormCaptcha__Refresh, .btn-group-vertical > .FormResetButton, .EPiServerForms .btn-group-vertical > button[type=submit],
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .FormCaptcha__Refresh:not(:first-child), .btn-group-vertical > .FormResetButton:not(:first-child), .EPiServerForms .btn-group-vertical > button[type=submit]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -0.125rem;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .FormCaptcha__Refresh:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .FormResetButton:not(:last-child):not(.dropdown-toggle), .EPiServerForms .btn-group-vertical > button[type=submit]:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.btn-group-vertical > .btn-group:not(:last-child) > .FormCaptcha__Refresh,
.btn-group-vertical > .btn-group:not(:last-child) > .FormResetButton,
.EPiServerForms .btn-group-vertical > .btn-group:not(:last-child) > button[type=submit] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .FormCaptcha__Refresh:not(:first-child), .btn-group-vertical > .FormResetButton:not(:first-child), .EPiServerForms .btn-group-vertical > button[type=submit]:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .FormCaptcha__Refresh,
.btn-group-vertical > .btn-group:not(:first-child) > .FormResetButton,
.EPiServerForms .btn-group-vertical > .btn-group:not(:first-child) > button[type=submit] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .btn-group-toggle > .FormCaptcha__Refresh, .btn-group-toggle > .FormResetButton, .EPiServerForms .btn-group-toggle > button[type=submit],
.btn-group-toggle > .btn-group > .btn,
.btn-group-toggle > .btn-group > .FormCaptcha__Refresh,
.btn-group-toggle > .btn-group > .FormResetButton,
.EPiServerForms .btn-group-toggle > .btn-group > button[type=submit] {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .FormCaptcha__Refresh input[type=radio], .btn-group-toggle > .FormResetButton input[type=radio], .EPiServerForms .btn-group-toggle > button[type=submit] input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .FormCaptcha__Refresh input[type=checkbox],
.btn-group-toggle > .FormResetButton input[type=checkbox],
.EPiServerForms .btn-group-toggle > button[type=submit] input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .input-group > .FormDateTime__Input, .input-group > .FormTextbox__Input,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.FormSelection .input-group > select,
.input-group > .custom-file,
.input-group > .FormFileUpload {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control, .input-group > .FormDateTime__Input + .form-control, .input-group > .FormTextbox__Input + .form-control, .input-group > .form-control + .FormDateTime__Input, .input-group > .FormDateTime__Input + .FormDateTime__Input, .input-group > .FormTextbox__Input + .FormDateTime__Input, .input-group > .form-control + .FormTextbox__Input, .input-group > .FormDateTime__Input + .FormTextbox__Input, .input-group > .FormTextbox__Input + .FormTextbox__Input,
.input-group > .form-control + .custom-select,
.input-group > .FormDateTime__Input + .custom-select,
.input-group > .FormTextbox__Input + .custom-select,
.FormSelection .input-group > .form-control + select,
.FormSelection .input-group > .FormDateTime__Input + select,
.FormSelection .input-group > .FormTextbox__Input + select,
.input-group > .form-control + .custom-file,
.input-group > .FormDateTime__Input + .custom-file,
.input-group > .FormTextbox__Input + .custom-file,
.input-group > .form-control + .FormFileUpload,
.input-group > .FormDateTime__Input + .FormFileUpload,
.input-group > .FormTextbox__Input + .FormFileUpload,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .FormDateTime__Input,
.input-group > .form-control-plaintext + .FormTextbox__Input,
.input-group > .form-control-plaintext + .custom-select,
.FormSelection .input-group > .form-control-plaintext + select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .form-control-plaintext + .FormFileUpload,
.input-group > .custom-select + .form-control,
.FormSelection .input-group > select + .form-control,
.input-group > .custom-select + .FormDateTime__Input,
.FormSelection .input-group > select + .FormDateTime__Input,
.input-group > .custom-select + .FormTextbox__Input,
.FormSelection .input-group > select + .FormTextbox__Input,
.input-group > .custom-select + .custom-select,
.FormSelection .input-group > select + .custom-select,
.FormSelection .input-group > .custom-select + select,
.FormSelection .input-group > select + select,
.input-group > .custom-select + .custom-file,
.FormSelection .input-group > select + .custom-file,
.input-group > .custom-select + .FormFileUpload,
.FormSelection .input-group > select + .FormFileUpload,
.input-group > .custom-file + .form-control,
.input-group > .FormFileUpload + .form-control,
.input-group > .custom-file + .FormDateTime__Input,
.input-group > .FormFileUpload + .FormDateTime__Input,
.input-group > .custom-file + .FormTextbox__Input,
.input-group > .FormFileUpload + .FormTextbox__Input,
.input-group > .custom-file + .custom-select,
.input-group > .FormFileUpload + .custom-select,
.FormSelection .input-group > .custom-file + select,
.FormSelection .input-group > .FormFileUpload + select,
.input-group > .custom-file + .custom-file,
.input-group > .FormFileUpload + .custom-file,
.input-group > .custom-file + .FormFileUpload,
.input-group > .FormFileUpload + .FormFileUpload {
  margin-left: -0.125rem;
}
.input-group > .form-control:focus, .input-group > .FormDateTime__Input:focus, .input-group > .FormTextbox__Input:focus,
.input-group > .custom-select:focus,
.FormSelection .input-group > select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label,
.input-group > .FormFileUpload .custom-file-input:focus ~ .custom-file-label,
.FormFileUpload .input-group > .custom-file .FormFileUpload__Input:focus ~ .custom-file-label,
.input-group > .FormFileUpload .FormFileUpload__Input:focus ~ .custom-file-label,
.FormFileUpload .input-group > .custom-file .custom-file-input:focus ~ .Form__Element__Caption,
.input-group > .FormFileUpload .custom-file-input:focus ~ .Form__Element__Caption,
.FormFileUpload .input-group > .custom-file .FormFileUpload__Input:focus ~ .Form__Element__Caption,
.input-group > .FormFileUpload .FormFileUpload__Input:focus ~ .Form__Element__Caption {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus, .input-group > .FormFileUpload .custom-file-input:focus, .FormFileUpload .input-group > .custom-file .FormFileUpload__Input:focus, .input-group > .FormFileUpload .FormFileUpload__Input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child), .input-group > .FormDateTime__Input:not(:last-child), .input-group > .FormTextbox__Input:not(:last-child),
.input-group > .custom-select:not(:last-child),
.FormSelection .input-group > select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child), .input-group > .FormDateTime__Input:not(:first-child), .input-group > .FormTextbox__Input:not(:first-child),
.input-group > .custom-select:not(:first-child),
.FormSelection .input-group > select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file, .input-group > .FormFileUpload {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .FormFileUpload:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .FormFileUpload .Form__Element__Caption, .FormFileUpload .input-group > .custom-file:not(:last-child) .Form__Element__Caption, .input-group > .FormFileUpload:not(:last-child) .Form__Element__Caption, .input-group > .custom-file:not(:last-child) .custom-file-label::after, .input-group > .FormFileUpload:not(:last-child) .custom-file-label::after, .input-group > .custom-file:not(:last-child) .FormFileUpload .Form__Element__Caption::after, .FormFileUpload .input-group > .custom-file:not(:last-child) .Form__Element__Caption::after, .input-group > .FormFileUpload:not(:last-child) .Form__Element__Caption::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .FormFileUpload:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .FormFileUpload .Form__Element__Caption, .FormFileUpload .input-group > .custom-file:not(:first-child) .Form__Element__Caption, .input-group > .FormFileUpload:not(:first-child) .Form__Element__Caption {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend .FormCaptcha__Refresh, .input-group-prepend .FormResetButton, .input-group-prepend .EPiServerForms button[type=submit], .EPiServerForms .input-group-prepend button[type=submit],
.input-group-append .btn,
.input-group-append .FormCaptcha__Refresh,
.input-group-append .FormResetButton,
.input-group-append .EPiServerForms button[type=submit],
.EPiServerForms .input-group-append button[type=submit] {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend .FormCaptcha__Refresh:focus, .input-group-prepend .FormResetButton:focus, .input-group-prepend .EPiServerForms button[type=submit]:focus, .EPiServerForms .input-group-prepend button[type=submit]:focus,
.input-group-append .btn:focus,
.input-group-append .FormCaptcha__Refresh:focus,
.input-group-append .FormResetButton:focus,
.input-group-append .EPiServerForms button[type=submit]:focus,
.EPiServerForms .input-group-append button[type=submit]:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend .FormCaptcha__Refresh + .btn, .input-group-prepend .FormResetButton + .btn, .input-group-prepend .EPiServerForms button[type=submit] + .btn, .EPiServerForms .input-group-prepend button[type=submit] + .btn, .input-group-prepend .btn + .FormCaptcha__Refresh, .input-group-prepend .FormCaptcha__Refresh + .FormCaptcha__Refresh, .input-group-prepend .FormResetButton + .FormCaptcha__Refresh, .input-group-prepend .EPiServerForms button[type=submit] + .FormCaptcha__Refresh, .EPiServerForms .input-group-prepend button[type=submit] + .FormCaptcha__Refresh, .input-group-prepend .btn + .FormResetButton, .input-group-prepend .FormCaptcha__Refresh + .FormResetButton, .input-group-prepend .FormResetButton + .FormResetButton, .input-group-prepend .EPiServerForms button[type=submit] + .FormResetButton, .EPiServerForms .input-group-prepend button[type=submit] + .FormResetButton, .input-group-prepend .EPiServerForms .btn + button[type=submit], .EPiServerForms .input-group-prepend .btn + button[type=submit], .input-group-prepend .EPiServerForms .FormCaptcha__Refresh + button[type=submit], .EPiServerForms .input-group-prepend .FormCaptcha__Refresh + button[type=submit], .input-group-prepend .EPiServerForms .FormResetButton + button[type=submit], .EPiServerForms .input-group-prepend .FormResetButton + button[type=submit], .input-group-prepend .EPiServerForms button[type=submit] + button[type=submit], .EPiServerForms .input-group-prepend button[type=submit] + button[type=submit],
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .FormCaptcha__Refresh + .input-group-text,
.input-group-prepend .FormResetButton + .input-group-text,
.input-group-prepend .EPiServerForms button[type=submit] + .input-group-text,
.EPiServerForms .input-group-prepend button[type=submit] + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .input-group-text + .FormCaptcha__Refresh,
.input-group-prepend .input-group-text + .FormResetButton,
.input-group-prepend .EPiServerForms .input-group-text + button[type=submit],
.EPiServerForms .input-group-prepend .input-group-text + button[type=submit],
.input-group-append .btn + .btn,
.input-group-append .FormCaptcha__Refresh + .btn,
.input-group-append .FormResetButton + .btn,
.input-group-append .EPiServerForms button[type=submit] + .btn,
.EPiServerForms .input-group-append button[type=submit] + .btn,
.input-group-append .btn + .FormCaptcha__Refresh,
.input-group-append .FormCaptcha__Refresh + .FormCaptcha__Refresh,
.input-group-append .FormResetButton + .FormCaptcha__Refresh,
.input-group-append .EPiServerForms button[type=submit] + .FormCaptcha__Refresh,
.EPiServerForms .input-group-append button[type=submit] + .FormCaptcha__Refresh,
.input-group-append .btn + .FormResetButton,
.input-group-append .FormCaptcha__Refresh + .FormResetButton,
.input-group-append .FormResetButton + .FormResetButton,
.input-group-append .EPiServerForms button[type=submit] + .FormResetButton,
.EPiServerForms .input-group-append button[type=submit] + .FormResetButton,
.input-group-append .EPiServerForms .btn + button[type=submit],
.EPiServerForms .input-group-append .btn + button[type=submit],
.input-group-append .EPiServerForms .FormCaptcha__Refresh + button[type=submit],
.EPiServerForms .input-group-append .FormCaptcha__Refresh + button[type=submit],
.input-group-append .EPiServerForms .FormResetButton + button[type=submit],
.EPiServerForms .input-group-append .FormResetButton + button[type=submit],
.input-group-append .EPiServerForms button[type=submit] + button[type=submit],
.EPiServerForms .input-group-append button[type=submit] + button[type=submit],
.input-group-append .btn + .input-group-text,
.input-group-append .FormCaptcha__Refresh + .input-group-text,
.input-group-append .FormResetButton + .input-group-text,
.input-group-append .EPiServerForms button[type=submit] + .input-group-text,
.EPiServerForms .input-group-append button[type=submit] + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .input-group-text + .FormCaptcha__Refresh,
.input-group-append .input-group-text + .FormResetButton,
.input-group-append .EPiServerForms .input-group-text + button[type=submit],
.EPiServerForms .input-group-append .input-group-text + button[type=submit] {
  margin-left: -0.125rem;
}

.input-group-prepend {
  margin-right: -0.125rem;
}

.input-group-append {
  margin-left: -0.125rem;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #595959;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0.125rem solid #b3d1e8;
  border-radius: 0.5rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .input-group-lg > .FormDateTime__Input:not(textarea), .input-group-lg > .FormTextbox__Input:not(textarea),
.input-group-lg > .custom-select,
.FormSelection .input-group-lg > select {
  height: calc(1.5em + 1.25rem);
}

.input-group-lg > .form-control, .input-group-lg > .FormDateTime__Input, .input-group-lg > .FormTextbox__Input,
.input-group-lg > .custom-select,
.FormSelection .input-group-lg > select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-prepend > .FormCaptcha__Refresh,
.input-group-lg > .input-group-prepend > .FormResetButton,
.EPiServerForms .input-group-lg > .input-group-prepend > button[type=submit],
.input-group-lg > .input-group-append > .btn,
.input-group-lg > .input-group-append > .FormCaptcha__Refresh,
.input-group-lg > .input-group-append > .FormResetButton,
.EPiServerForms .input-group-lg > .input-group-append > button[type=submit] {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.8rem;
}

.input-group-sm > .form-control:not(textarea), .input-group-sm > .FormDateTime__Input:not(textarea), .input-group-sm > .FormTextbox__Input:not(textarea),
.input-group-sm > .custom-select,
.FormSelection .input-group-sm > select {
  height: calc(1.2em + 0.75rem);
}

.input-group-sm > .form-control, .input-group-sm > .FormDateTime__Input, .input-group-sm > .FormTextbox__Input,
.input-group-sm > .custom-select,
.FormSelection .input-group-sm > select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .FormCaptcha__Refresh,
.input-group-sm > .input-group-prepend > .FormResetButton,
.EPiServerForms .input-group-sm > .input-group-prepend > button[type=submit],
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .FormCaptcha__Refresh,
.input-group-sm > .input-group-append > .FormResetButton,
.EPiServerForms .input-group-sm > .input-group-append > button[type=submit] {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
  border-radius: 0.25rem;
}

.input-group-lg > .custom-select, .FormSelection .input-group-lg > select,
.input-group-sm > .custom-select,
.FormSelection .input-group-sm > select {
  padding-right: 1.5rem;
}

.input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .FormCaptcha__Refresh, .input-group > .input-group-prepend > .FormResetButton, .EPiServerForms .input-group > .input-group-prepend > button[type=submit],
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .FormCaptcha__Refresh,
.input-group > .input-group-append:not(:last-child) > .FormResetButton,
.EPiServerForms .input-group > .input-group-append:not(:last-child) > button[type=submit],
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .FormCaptcha__Refresh:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .FormResetButton:not(:last-child):not(.dropdown-toggle),
.EPiServerForms .input-group > .input-group-append:last-child > button[type=submit]:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .FormCaptcha__Refresh, .input-group > .input-group-append > .FormResetButton, .EPiServerForms .input-group > .input-group-append > button[type=submit],
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .FormCaptcha__Refresh,
.input-group > .input-group-prepend:not(:first-child) > .FormResetButton,
.EPiServerForms .input-group > .input-group-prepend:not(:first-child) > button[type=submit],
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .FormCaptcha__Refresh:not(:first-child),
.input-group > .input-group-prepend:first-child > .FormResetButton:not(:first-child),
.EPiServerForms .input-group > .input-group-prepend:first-child > button[type=submit]:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.8rem;
  padding-left: 2rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1.5rem;
  height: 1.65rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #0067b1;
  border-color: #b3d1e8;
  background-color: white;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), none;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #0067b1;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #0067b1;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.15rem;
  left: -2rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #b3d1e8 solid 0.125rem;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.custom-control-label::after {
  position: absolute;
  top: 0.15rem;
  left: -2rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg width='11' height='8' viewBox='0 0 11 8' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%230067b1' d='M3.19212 7.64524L0.318192 4.75134C-0.12146 4.30865 -0.105354 3.61476 0.365568 3.18632C0.852594 2.77302 1.59072 2.80242 2.03038 3.24511L4.0562 5.26796L8.95581 0.351241C9.41157 -0.0914513 10.1497 -0.120844 10.6206 0.292453C11.1076 0.720894 11.1228 1.41478 10.6832 1.85747L4.91928 7.64549C4.69945 7.86728 4.38583 8 4.05513 8C3.74149 7.99911 3.41177 7.86639 3.19194 7.64549L3.19212 7.64524Z' /%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%230067b1' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%230067b1'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 3.125rem;
}
.custom-switch .custom-control-label::before {
  left: -3.125rem;
  width: 2.625rem;
  pointer-events: all;
  border-radius: 0.75rem;
}
.custom-switch .custom-control-label::after {
  top: 0.4rem;
  left: -2.875rem;
  width: 1rem;
  height: 1rem;
  background-color: #b3d1e8;
  border-radius: 0.75rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(1.125rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select, .FormSelection select {
  display: inline-block;
  width: 100%;
  height: calc(1.8em + 1rem);
  padding: 0.375rem 1.5rem 0.375rem 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #0067b1;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23072C8A' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.5rem center/0.5rem 0.625rem;
  border: 0.125rem solid #b3d1e8;
  border-radius: 0.5rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus, .FormSelection select:focus {
  border-color: #0067b1;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0 rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value, .FormSelection select:focus::-ms-value {
  color: #595959;
  background-color: #fff;
}
.custom-select[multiple], .FormSelection select[multiple], .custom-select[size]:not([size="1"]), .FormSelection select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.5rem;
  background-image: none;
}
.custom-select:disabled, .FormSelection select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand, .FormSelection select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring, .FormSelection select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #0067b1;
}

.custom-select-sm {
  height: calc(1.2em + 0.75rem);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1.25rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file, .FormFileUpload {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.8em + 1rem);
  margin-bottom: 0;
}

.custom-file-input, .FormFileUpload .FormFileUpload__Input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.8em + 1rem);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label, .FormFileUpload .FormFileUpload__Input:focus ~ .custom-file-label, .FormFileUpload .custom-file-input:focus ~ .Form__Element__Caption, .FormFileUpload .FormFileUpload__Input:focus ~ .Form__Element__Caption {
  border-color: #0067b1;
  box-shadow: none;
}
.custom-file-input[disabled] ~ .custom-file-label, .FormFileUpload [disabled].FormFileUpload__Input ~ .custom-file-label, .FormFileUpload .custom-file-input[disabled] ~ .Form__Element__Caption, .FormFileUpload [disabled].FormFileUpload__Input ~ .Form__Element__Caption, .custom-file-input:disabled ~ .custom-file-label, .FormFileUpload .FormFileUpload__Input:disabled ~ .custom-file-label, .FormFileUpload .custom-file-input:disabled ~ .Form__Element__Caption, .FormFileUpload .FormFileUpload__Input:disabled ~ .Form__Element__Caption {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after, .FormFileUpload .FormFileUpload__Input:lang(en) ~ .custom-file-label::after, .FormFileUpload .custom-file-input:lang(en) ~ .Form__Element__Caption::after, .FormFileUpload .FormFileUpload__Input:lang(en) ~ .Form__Element__Caption::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after, .FormFileUpload .FormFileUpload__Input ~ .custom-file-label[data-browse]::after, .FormFileUpload .custom-file-input ~ [data-browse].Form__Element__Caption::after, .FormFileUpload .FormFileUpload__Input ~ [data-browse].Form__Element__Caption::after {
  content: attr(data-browse);
}

.custom-file-label, .FormFileUpload .Form__Element__Caption {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.8em + 1rem);
  padding: 0.375rem 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #595959;
  background-color: #fff;
  border: 0.125rem solid #b3d1e8;
  border-radius: 0.5rem;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.custom-file-label::after, .FormFileUpload .Form__Element__Caption::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.8em + 0.75rem);
  padding: 0.375rem 1rem;
  line-height: 1.8;
  color: #595959;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.5rem 0.5rem 0;
}

.custom-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, none;
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.FormFileUpload .Form__Element__Caption,
.custom-select,
.FormSelection select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.FormFileUpload .Form__Element__Caption,
.custom-select,
.FormSelection select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.375rem 0.5rem;
  text-decoration: none;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 0.125rem solid white;
}
.nav-tabs .nav-item {
  margin-bottom: -0.125rem;
}
.nav-tabs .nav-link {
  border: 0.125rem solid transparent;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: white;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #0067b1;
  background-color: #d9e8f3;
  border-color: white;
}
.nav-tabs .dropdown-menu {
  margin-top: -0.125rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 0.5rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #0067b1;
  background-color: #d9e8f3;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
}
.navbar .container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  margin-right: 0;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.25rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 0.125rem solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 35.98em) {
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 36em) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 47.98em) {
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 48em) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 61.98em) {
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 62em) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 74.98em) {
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 75em) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: #0067b1;
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: #0067b1;
}
.navbar-light .navbar-nav .nav-link {
  color: #0067b1;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: #0067b1;
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #0067b1;
}
.navbar-light .navbar-toggler {
  color: #0067b1;
  border-color: #0067b1;
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%230067b1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: #0067b1;
}
.navbar-light .navbar-text a {
  color: #0067b1;
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: #0067b1;
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid #0067b1;
  border-radius: 0.5rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 2rem;
}

.card-title {
  margin-bottom: 2rem;
}

.card-subtitle {
  margin-top: -1rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 2rem;
}

.card-header {
  padding: 2rem 2rem;
  margin-bottom: 0;
  color: #0067b1;
  background-color: #f2f7fb;
  border-bottom: 0 solid #0067b1;
}
.card-header:first-child {
  border-radius: 0.5rem 0.5rem 0 0;
}

.card-footer {
  padding: 2rem 2rem;
  color: #0067b1;
  background-color: #f2f7fb;
  border-top: 0 solid #0067b1;
}
.card-footer:last-child {
  border-radius: 0 0 0.5rem 0.5rem;
}

.card-header-tabs {
  margin-right: -1rem;
  margin-bottom: -2rem;
  margin-left: -1rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -1rem;
  margin-left: -1rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 0.5rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.card-deck .card {
  margin-bottom: 1rem;
}
@media (min-width: 36em) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -1rem;
    margin-left: -1rem;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 1rem;
    margin-bottom: 0;
    margin-left: 1rem;
  }
}

.card-group > .card {
  margin-bottom: 1rem;
}
@media (min-width: 36em) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 2rem;
}
@media (min-width: 36em) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: 0;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.5rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -0.125rem;
  line-height: 1.25;
  color: #0067b1;
  text-decoration: none;
  background-color: #fff;
  border: 0.125rem solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #072C8A;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.2;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.badge {
  display: inline-block;
  padding: 0.625rem 0.875rem;
  font-size: 87.5%;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, .FormCaptcha__Refresh .badge, .FormResetButton .badge, .EPiServerForms button[type=submit] .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #0067b1;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #0067b1;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.5);
}

.badge-secondary {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #00BEE1;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #00BEE1;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 190, 225, 0.5);
}

.badge-dark {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #072C8A;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #072C8A;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(7, 44, 138, 0.5);
}

.badge-danger {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #DB2E2E;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #DB2E2E;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(219, 46, 46, 0.5);
}

.badge-success {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #09695C;
}
a.badge-success:hover, a.badge-success:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #09695C;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(9, 105, 92, 0.5);
}

.badge-text {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #595959;
}
a.badge-text:hover, a.badge-text:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #595959;
}
a.badge-text:focus, a.badge-text.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(89, 89, 89, 0.5);
}

.jumbotron {
  padding: 0 0;
  margin-bottom: 0;
  background-color: transparent;
  border-radius: 0.8rem;
}
@media (min-width: 36em) {
  .jumbotron {
    padding: 0 0;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert, .Form__Element.ValidationFail .Form__Element__ValidationError {
  position: relative;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1rem;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.375rem 0.75rem;
  color: inherit;
}

.alert-primary {
  color: #0067b1;
  background-color: #f7fafd;
  border-color: #f7fafd;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-primary hr {
  margin: 0.5rem 0;
  background-color: #cce1ef;
}
.alert-primary .alert-link {
  color: #00497e;
}

.alert-secondary {
  color: #00bee1;
  background-color: #f7fdfe;
  border-color: #f7fdfe;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-secondary hr {
  margin: 0.5rem 0;
  background-color: #ccf2f9;
}
.alert-secondary .alert-link {
  color: #0093ae;
}

.alert-dark {
  color: #072c8a;
  background-color: #f8f9fb;
  border-color: #f8f9fb;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-dark hr {
  margin: 0.5rem 0;
  background-color: #cdd5e8;
}
.alert-dark .alert-link {
  color: #051d59;
}

.alert-danger, .Form__Element.ValidationFail .Form__Element__ValidationError {
  color: #db2e2e;
  background-color: #fef9f9;
  border-color: #fef9f9;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-danger hr, .Form__Element.ValidationFail .Form__Element__ValidationError hr {
  margin: 0.5rem 0;
  background-color: #f8d5d5;
}
.alert-danger .alert-link, .Form__Element.ValidationFail .Form__Element__ValidationError .alert-link {
  color: #b71f1f;
}

.alert-success {
  color: #09695c;
  background-color: #f8fbfa;
  border-color: #f8fbfa;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-success hr {
  margin: 0.5rem 0;
  background-color: #cee1de;
}
.alert-success .alert-link {
  color: #053a33;
}

.alert-text {
  color: #595959;
  background-color: #fafafa;
  border-color: #fafafa;
  border-radius: 0.25rem;
  padding: 0.5rem;
}
.alert-text hr {
  margin: 0.5rem 0;
  background-color: #dedede;
}
.alert-text .alert-link {
  color: #404040;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #d9e8f3;
  border-radius: 0.5rem;
  box-shadow: none;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0067b1;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.5rem;
}

.list-group-item-action {
  width: 100%;
  color: #0067b1;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #072C8A;
  text-decoration: none;
  background-color: #d9e8f3;
}
.list-group-item-action:active {
  color: white;
  background-color: #0067b1;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 1rem 1rem;
  text-decoration: none;
  background-color: #fff;
  border: 0.0625rem solid #d9e8f3;
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -0.0625rem;
  border-top-width: 0.0625rem;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 0.0625rem;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -0.0625rem;
  border-left-width: 0.0625rem;
}

@media (min-width: 36em) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 0.0625rem;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -0.0625rem;
    border-left-width: 0.0625rem;
  }
}
@media (min-width: 48em) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 0.0625rem;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -0.0625rem;
    border-left-width: 0.0625rem;
  }
}
@media (min-width: 62em) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 0.0625rem;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -0.0625rem;
    border-left-width: 0.0625rem;
  }
}
@media (min-width: 75em) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 0.0625rem;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -0.0625rem;
    border-left-width: 0.0625rem;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 0.0625rem;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #00365c;
  background-color: #b8d4e9;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #00365c;
  background-color: #a5c8e3;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #00365c;
  border-color: #00365c;
}

.list-group-item-secondary {
  color: #006375;
  background-color: #b8edf7;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #006375;
  background-color: #a1e7f4;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #006375;
  border-color: #006375;
}

.list-group-item-dark {
  color: #041748;
  background-color: #bac4de;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #041748;
  background-color: #a9b5d6;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #041748;
  border-color: #041748;
}

.list-group-item-danger {
  color: #721818;
  background-color: #f5c4c4;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721818;
  background-color: #f1aeae;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721818;
  border-color: #721818;
}

.list-group-item-success {
  color: #053730;
  background-color: #bad5d1;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #053730;
  background-color: #aacbc6;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #053730;
  border-color: #053730;
}

.list-group-item-text {
  color: #2e2e2e;
  background-color: #d1d1d1;
}
.list-group-item-text.list-group-item-action:hover, .list-group-item-text.list-group-item-action:focus {
  color: #2e2e2e;
  background-color: #c4c4c4;
}
.list-group-item-text.list-group-item-action.active {
  color: #fff;
  background-color: #2e2e2e;
  border-color: #2e2e2e;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
@media (max-width: 75em) {
  .close {
    font-size: calc(1.275rem + 0.3vw);
  }
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -3.125rem);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0.125rem solid rgba(0, 0, 0, 0.2);
  border-radius: 0.8rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.5);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 0.125rem solid #dee2e6;
  border-top-left-radius: 0.675rem;
  border-top-right-radius: 0.675rem;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.8;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 0.125rem solid #dee2e6;
  border-bottom-right-radius: 0.675rem;
  border-bottom-left-radius: 0.675rem;
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 36em) {
  .modal-dialog {
    max-width: 31.25rem;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    max-width: 18.75rem;
  }
}
@media (min-width: 62em) {
  .modal-lg,
.modal-xl {
    max-width: 50rem;
  }
}
@media (min-width: 75em) {
  .modal-xl {
    max-width: 71.25rem;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 36em) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 48em) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 62em) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 75em) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
/* 
    We specifically choose which utilities to include to 
    improve performance, and avoid too much 
    bootstrap class clutter as well :)

    SEE: node_modules/bootstrap/scss/_utilities.scss
*/
.bg-primary {
  background-color: #0067b1 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #00497e !important;
}

.bg-secondary {
  background-color: #00BEE1 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #0093ae !important;
}

.bg-dark {
  background-color: #072C8A !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #051d59 !important;
}

.bg-danger {
  background-color: #DB2E2E !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #b71f1f !important;
}

.bg-success {
  background-color: #09695C !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #053a33 !important;
}

.bg-text {
  background-color: #595959 !important;
}

a.bg-text:hover, a.bg-text:focus,
button.bg-text:hover,
button.bg-text:focus {
  background-color: #404040 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 36em) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 48em) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 62em) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 75em) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

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

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

@media (min-width: 36em) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 48em) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 62em) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 75em) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

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

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.5rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.5rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.5rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.mt-2,
.my-2 {
  margin-top: 1rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 1rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 1rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 1rem !important;
}

.m-3 {
  margin: 2rem !important;
}

.mt-3,
.my-3 {
  margin-top: 2rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 2rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 2rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 2rem !important;
}

.m-4 {
  margin: 3rem !important;
}

.mt-4,
.my-4 {
  margin-top: 3rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 3rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 3rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 3rem !important;
}

.m-5 {
  margin: 5rem !important;
}

.mt-5,
.my-5 {
  margin-top: 5rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 5rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 5rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

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

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

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

.p-1 {
  padding: 0.5rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.5rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.5rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.5rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2,
.py-2 {
  padding-top: 1rem !important;
}

.pr-2,
.px-2 {
  padding-right: 1rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 1rem !important;
}

.pl-2,
.px-2 {
  padding-left: 1rem !important;
}

.p-3 {
  padding: 2rem !important;
}

.pt-3,
.py-3 {
  padding-top: 2rem !important;
}

.pr-3,
.px-3 {
  padding-right: 2rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 2rem !important;
}

.pl-3,
.px-3 {
  padding-left: 2rem !important;
}

.p-4 {
  padding: 3rem !important;
}

.pt-4,
.py-4 {
  padding-top: 3rem !important;
}

.pr-4,
.px-4 {
  padding-right: 3rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 3rem !important;
}

.pl-4,
.px-4 {
  padding-left: 3rem !important;
}

.p-5 {
  padding: 5rem !important;
}

.pt-5,
.py-5 {
  padding-top: 5rem !important;
}

.pr-5,
.px-5 {
  padding-right: 5rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 5rem !important;
}

.pl-5,
.px-5 {
  padding-left: 5rem !important;
}

.m-n1 {
  margin: -0.5rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.5rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.5rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.5rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.5rem !important;
}

.m-n2 {
  margin: -1rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -1rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -1rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -1rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -1rem !important;
}

.m-n3 {
  margin: -2rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -2rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -2rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -2rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -2rem !important;
}

.m-n4 {
  margin: -3rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -3rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -3rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -3rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -3rem !important;
}

.m-n5 {
  margin: -5rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -5rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -5rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -5rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 36em) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.5rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.5rem !important;
  }

  .m-sm-2 {
    margin: 1rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 1rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 1rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 1rem !important;
  }

  .m-sm-3 {
    margin: 2rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 2rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 2rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 2rem !important;
  }

  .m-sm-4 {
    margin: 3rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 3rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 3rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 3rem !important;
  }

  .m-sm-5 {
    margin: 5rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 5rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 5rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

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

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

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

  .p-sm-1 {
    padding: 0.5rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.5rem !important;
  }

  .p-sm-2 {
    padding: 1rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 1rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 1rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 1rem !important;
  }

  .p-sm-3 {
    padding: 2rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 2rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 2rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 2rem !important;
  }

  .p-sm-4 {
    padding: 3rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 3rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 3rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 3rem !important;
  }

  .p-sm-5 {
    padding: 5rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 5rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 5rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 5rem !important;
  }

  .m-sm-n1 {
    margin: -0.5rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n2 {
    margin: -1rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -1rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -1rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -1rem !important;
  }

  .m-sm-n3 {
    margin: -2rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -2rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -2rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -2rem !important;
  }

  .m-sm-n4 {
    margin: -3rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -3rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -3rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -3rem !important;
  }

  .m-sm-n5 {
    margin: -5rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -5rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -5rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -5rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 48em) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.5rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.5rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.5rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.5rem !important;
  }

  .m-md-2 {
    margin: 1rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 1rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 1rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 1rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 1rem !important;
  }

  .m-md-3 {
    margin: 2rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 2rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 2rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 2rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 2rem !important;
  }

  .m-md-4 {
    margin: 3rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 3rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 3rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 3rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 3rem !important;
  }

  .m-md-5 {
    margin: 5rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 5rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 5rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 5rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

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

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

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

  .p-md-1 {
    padding: 0.5rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.5rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.5rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.5rem !important;
  }

  .p-md-2 {
    padding: 1rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 1rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 1rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 1rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 1rem !important;
  }

  .p-md-3 {
    padding: 2rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 2rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 2rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 2rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 2rem !important;
  }

  .p-md-4 {
    padding: 3rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 3rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 3rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 3rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 3rem !important;
  }

  .p-md-5 {
    padding: 5rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 5rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 5rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 5rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 5rem !important;
  }

  .m-md-n1 {
    margin: -0.5rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.5rem !important;
  }

  .m-md-n2 {
    margin: -1rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -1rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -1rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -1rem !important;
  }

  .m-md-n3 {
    margin: -2rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -2rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -2rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -2rem !important;
  }

  .m-md-n4 {
    margin: -3rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -3rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -3rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -3rem !important;
  }

  .m-md-n5 {
    margin: -5rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -5rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -5rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -5rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 62em) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.5rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.5rem !important;
  }

  .m-lg-2 {
    margin: 1rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 1rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 1rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 1rem !important;
  }

  .m-lg-3 {
    margin: 2rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 2rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 2rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 2rem !important;
  }

  .m-lg-4 {
    margin: 3rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 3rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 3rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 3rem !important;
  }

  .m-lg-5 {
    margin: 5rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 5rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 5rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

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

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

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

  .p-lg-1 {
    padding: 0.5rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.5rem !important;
  }

  .p-lg-2 {
    padding: 1rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 1rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 1rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 1rem !important;
  }

  .p-lg-3 {
    padding: 2rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 2rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 2rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 2rem !important;
  }

  .p-lg-4 {
    padding: 3rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 3rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 3rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 3rem !important;
  }

  .p-lg-5 {
    padding: 5rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 5rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 5rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 5rem !important;
  }

  .m-lg-n1 {
    margin: -0.5rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n2 {
    margin: -1rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -1rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -1rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -1rem !important;
  }

  .m-lg-n3 {
    margin: -2rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -2rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -2rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -2rem !important;
  }

  .m-lg-n4 {
    margin: -3rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -3rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -3rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -3rem !important;
  }

  .m-lg-n5 {
    margin: -5rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -5rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -5rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -5rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 75em) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.5rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.5rem !important;
  }

  .m-xl-2 {
    margin: 1rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 1rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 1rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 1rem !important;
  }

  .m-xl-3 {
    margin: 2rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 2rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 2rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 2rem !important;
  }

  .m-xl-4 {
    margin: 3rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 3rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 3rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 3rem !important;
  }

  .m-xl-5 {
    margin: 5rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 5rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 5rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

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

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

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

  .p-xl-1 {
    padding: 0.5rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.5rem !important;
  }

  .p-xl-2 {
    padding: 1rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 1rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 1rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 1rem !important;
  }

  .p-xl-3 {
    padding: 2rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 2rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 2rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 2rem !important;
  }

  .p-xl-4 {
    padding: 3rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 3rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 3rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 3rem !important;
  }

  .p-xl-5 {
    padding: 5rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 5rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 5rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 5rem !important;
  }

  .m-xl-n1 {
    margin: -0.5rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n2 {
    margin: -1rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -1rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -1rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -1rem !important;
  }

  .m-xl-n3 {
    margin: -2rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -2rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -2rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -2rem !important;
  }

  .m-xl-n4 {
    margin: -3rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -3rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -3rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -3rem !important;
  }

  .m-xl-n5 {
    margin: -5rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -5rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -5rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -5rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 36em) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 48em) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 62em) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 75em) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #0067b1 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #003a65 !important;
}

.text-secondary {
  color: #00BEE1 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #007d95 !important;
}

.text-dark {
  color: #072C8A !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #031541 !important;
}

.text-danger {
  color: #DB2E2E !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a11c1c !important;
}

.text-success {
  color: #09695C !important;
}

a.text-success:hover, a.text-success:focus {
  color: #03231e !important;
}

.text-text {
  color: #595959 !important;
}

a.text-text:hover, a.text-text:focus {
  color: #333333 !important;
}

.text-body {
  color: #595959 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

/* Utilities */
/* Color Functions */
/* SVGs */
/* Utilities */
/* Common styles */
/* Buttons */
/* 
    See also basic-elements.scss 
*/
body {
  min-width: 20rem;
  max-width: 120rem;
  margin: 0 auto;
}

:target {
  scroll-snap-margin-top: 5rem;
  scroll-margin-top: 5rem;
}
@media (min-width: 48em) {
  :target {
    scroll-snap-margin-top: 10rem;
    scroll-margin-top: 10rem;
  }
}
@media (min-width: 75em) {
  :target {
    scroll-snap-margin-top: 7rem;
    scroll-margin-top: 7rem;
  }
}

.news-detail-page :target {
  scroll-snap-margin-top: 8rem;
  scroll-margin-top: 8rem;
}
@media (min-width: 48em) {
  .news-detail-page :target {
    scroll-snap-margin-top: 13rem;
    scroll-margin-top: 13rem;
  }
}
@media (min-width: 75em) {
  .news-detail-page :target {
    scroll-snap-margin-top: 13rem;
    scroll-margin-top: 13rem;
  }
}

/*
    Component Spacing
    - The project follows a pattern of 'margin-bottom' spacing, so try and
      avoid using 'padding-top' / 'margin-top', you want 
      the layout to flow downwards for the most part.
    - .content-area can be used to apply "Standard Margins" on any page/content area property, but recall, 
      most individual components have their own "Content Spacing" option as well
*/
.content-area {
  margin-bottom: 5rem;
}
.content-area > :first-child:not(.jumbotron):not(#article-toolbar):not(.content-area) {
  margin-top: 3rem;
}
.content-area > .jumbotron, .content-area > .container:not(.content-area), .content-area > .container-fluid:not(.content-area) {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .content-area > .jumbotron, .content-area > .container:not(.content-area), .content-area > .container-fluid:not(.content-area) {
    margin-bottom: 5rem;
  }
}
.content-area .container-sm:not(.content-area) {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .content-area .container-sm:not(.content-area) {
    margin-bottom: 5rem;
  }
}
.content-area .container-md:not(.content-area) {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .content-area .container-md:not(.content-area) {
    margin-bottom: 5rem;
  }
}
.content-area .container-lg:not(.content-area) {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .content-area .container-lg:not(.content-area) {
    margin-bottom: 5rem;
  }
}
.content-area .container-xl:not(.content-area) {
  margin-bottom: 3rem;
}
@media (min-width: 48em) {
  .content-area .container-xl:not(.content-area) {
    margin-bottom: 5rem;
  }
}
@media (min-width: 48em) {
  .content-area > .card-collection:not(.content-area) {
    margin-bottom: 3rem;
  }
}
.content-area > .content-area {
  margin-bottom: 0;
}

/*
    Page-level utilities
*/
.page-top-tab-link {
  position: absolute;
  z-index: 1030;
  transform: translateY(-150%);
  display: block;
  width: 100%;
  background-color: #f7fafd;
  padding: 1rem 2rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-top-tab-link {
    transition: none;
  }
}
.page-top-tab-link:focus {
  transform: translateY(0%);
}
@media (min-width: 48em) {
  .page-top-tab-link {
    text-align: left;
  }
}
.page-top-tab-link > img, .page-top-tab-link > svg {
  width: 2rem;
  height: 2rem;
  vertical-align: middle;
}

.no-js .page-top-tab-link {
  position: relative;
  transform: translateY(0%);
}

.no-js #go-to-sitemap {
  font-size: 1.25rem;
  font-weight: 700;
}

#top {
  display: block;
  height: 0;
}

#back-to-top {
  bottom: 0px;
  right: 0px;
  width: auto;
  margin-left: auto;
  display: inline-block;
  color: #0067b1;
  background-color: white;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
}
@media (min-width: 48em) {
  #back-to-top {
    text-align: right;
  }
}
#back-to-top > img, #back-to-top > svg {
  line-height: 1;
  width: 2em;
  height: 2em;
  vertical-align: bottom;
}
#back-to-top:hover, #back-to-top:focus {
  background-color: #d9e8f3;
  text-decoration: underline;
}

@media print {
  .d-display-none {
    position: initial !important;
  }
}
/* 
    Utility classes for SVG path colors
    - Also generates tints from styleguide
*/
.svg-stroke-fg {
  stroke: #0067b1;
  background-color: transparent;
}

.svg-fg {
  fill: white;
  background-color: transparent;
}

.svg-bg {
  fill: #0067b1;
  background-color: transparent;
}

.svg-primary {
  fill: #0067b1;
  background-color: transparent;
}
.svg-primary-60 {
  fill: #66a4d0;
  background-color: #66a4d0;
}
.svg-primary-30 {
  fill: #b3d1e8;
  background-color: #b3d1e8;
}
.svg-primary-15 {
  fill: #d9e8f3;
  background-color: #d9e8f3;
}

.svg-secondary {
  fill: #00bee1;
  background-color: transparent;
}
.svg-secondary-60 {
  fill: #66d8ed;
  background-color: #66d8ed;
}
.svg-secondary-30 {
  fill: #b3ecf6;
  background-color: #b3ecf6;
}
.svg-secondary-15 {
  fill: #d9f5fb;
  background-color: #d9f5fb;
}

.svg-dark {
  fill: #072c8a;
  background-color: transparent;
}
.svg-dark-60 {
  fill: #6a80b9;
  background-color: #6a80b9;
}
.svg-dark-30 {
  fill: #b5c0dc;
  background-color: #b5c0dc;
}
.svg-dark-15 {
  fill: #dadfed;
  background-color: #dadfed;
}

.svg-brand {
  fill: #0067b1;
  background-color: transparent;
}
.svg-brand-60 {
  fill: #66a4d0;
  background-color: #66a4d0;
}
.svg-brand-30 {
  fill: #b3d1e8;
  background-color: #b3d1e8;
}
.svg-brand-15 {
  fill: #d9e8f3;
  background-color: #d9e8f3;
}

/*
    The global body text-align: right causes the epi quickNavigator "invisible" span text to show,
    so we reset that specifically here since they don't specify it
*/
#epi-quickNavigator .epi-quickNavigator-editLink a span {
  text-align: left;
}

body {
  text-align: right;
}

main,
header,
footer {
  text-align: left;
}

hr {
  height: 0.125rem;
  margin: 2rem 0;
  padding: 0;
  border: 0;
  background-color: #d9e8f3;
}
@media (min-width: 75em) {
  hr {
    margin: 4rem 0;
  }
}

h5, .h5, h6, .h6 {
  margin-bottom: 1rem;
}

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a,
.h1 > a, .h2 > a, .h3 > a, .h4 > a, .h5 > a, .h6 > a {
  color: #0067b1;
}

a:focus {
  background-color: #d9e8f3;
  text-decoration: underline;
}

a[href] {
  word-break: break-word;
}

ul, ol {
  padding-left: 2rem;
}

.inline-dl {
  /*padding-left: bootstrap.$spacer; - commented out for removing bullets on the department, clinica and service page and lining them up with the rest of the text*/
}
.inline-dl::after {
  display: block;
  clear: both;
  content: "";
}

.inline-dl > dt {
  float: left;
  clear: both;
  padding-right: 0.5rem;
  display: list-item;
  list-style-type: none;
}

.inline-dl > dd {
  float: left;
  margin-bottom: 0;
}

/* 
    Styles for the parent .rich-text blocks/sections
*/
.rich-text {
  margin-bottom: 2rem;
}
.rich-text ul, .rich-text ol, .rich-text table, .rich-text figure {
  margin-bottom: 2rem;
}
.rich-text > :last-child {
  margin-bottom: 0;
}

.card + .rich-text {
  margin-top: 2rem;
}

/* 
    Extra styles for .rich-text content
*/
.text-brand {
  color: #0067b1;
}

.body-small {
  font-size: 0.875rem;
}

.underline {
  text-decoration: underline;
}

.btn-toolbar {
  align-items: flex-start;
}
.btn-toolbar .btn {
  margin-left: 0;
  margin-right: 0.375em;
}
.btn-toolbar .btn > svg {
  width: 1.875em;
  height: 1.875em;
}
.btn-toolbar .btn:focus {
  border-color: #0067b1;
}
.btn-toolbar.brand-main .btn {
  background-color: #0067b1;
  transition: 0s;
}
.btn-toolbar.brand-main .btn:focus {
  border-color: #0067b1;
}
.btn-toolbar.brand-main .btn .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-toolbar.brand-main .btn .svg-bg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar.brand-main .btn:hover, .btn-toolbar.brand-main .btn:focus {
  background-color: #00BEE1;
}
.btn-toolbar.brand-main .btn:hover .svg-fg, .btn-toolbar.brand-main .btn:focus .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-toolbar.brand-main .btn:hover .svg-bg, .btn-toolbar.brand-main .btn:focus .svg-bg {
  fill: #00bee1;
  background-color: transparent;
}
.btn-toolbar.brand-main .btn:active, .btn-toolbar.brand-main .btn:hover:active {
  background-color: #66a4d0;
}
.btn-toolbar.brand-main .btn:active .svg-fg, .btn-toolbar.brand-main .btn:hover:active .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-toolbar.brand-main .btn:active .svg-bg, .btn-toolbar.brand-main .btn:hover:active .svg-bg {
  fill: #66a4d0;
  background-color: transparent;
}

.btn-toolbar-social-small .btn {
  background-color: #d9f5fb;
  transition: 0s;
}
.btn-toolbar-social-small .btn .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar-social-small .btn .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
.btn-toolbar-social-small .btn:hover, .btn-toolbar-social-small .btn:focus {
  background-color: #d9f5fb;
}
.btn-toolbar-social-small .btn:hover .svg-fg, .btn-toolbar-social-small .btn:focus .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar-social-small .btn:hover .svg-bg, .btn-toolbar-social-small .btn:focus .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
.btn-toolbar-social-small .btn:active, .btn-toolbar-social-small .btn:hover:active {
  background-color: #0067b1;
}
.btn-toolbar-social-small .btn:active .svg-fg, .btn-toolbar-social-small .btn:hover:active .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-toolbar-social-small .btn:active .svg-bg, .btn-toolbar-social-small .btn:hover:active .svg-bg {
  fill: #0067b1;
  background-color: transparent;
}

.btn-toolbar-social-large .btn {
  margin: 0;
  background-color: #d9f5fb;
  transition: 0s;
}
.btn-toolbar-social-large .btn .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar-social-large .btn .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
.btn-toolbar-social-large .btn:hover, .btn-toolbar-social-large .btn:focus {
  background-color: #d9f5fb;
}
.btn-toolbar-social-large .btn:hover .svg-fg, .btn-toolbar-social-large .btn:focus .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar-social-large .btn:hover .svg-bg, .btn-toolbar-social-large .btn:focus .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
.btn-toolbar-social-large .btn:active, .btn-toolbar-social-large .btn:hover:active {
  background-color: #0067b1;
}
.btn-toolbar-social-large .btn:active .svg-fg, .btn-toolbar-social-large .btn:hover:active .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-toolbar-social-large .btn:active .svg-bg, .btn-toolbar-social-large .btn:hover:active .svg-bg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-toolbar-social-large .btn > svg {
  width: 2.5em;
  height: 2.5em;
}
.btn-toolbar-social-large .btn + .btn {
  margin-left: 1rem;
}
@media (min-width: 36em) {
  .btn-toolbar-social-large .btn + .btn {
    margin-left: 2rem;
  }
}

/* 
    External link anchors/buttons
*/
.external-link:after {
  content: "";
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top right;
  margin-left: 0.3125rem;
  width: 0.875em;
  height: 0.875em;
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-primary.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-primary.external-link:focus::after,
.btn.btn-primary.external-link:hover::after,
.btn.btn-outline-primary.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-secondary.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-secondary.external-link:focus::after,
.btn.btn-secondary.external-link:hover::after,
.btn.btn-outline-secondary.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%2300BEE1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%2300BEE1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%2300BEE1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-dark.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-dark.external-link:focus::after,
.btn.btn-dark.external-link:hover::after,
.btn.btn-outline-dark.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%23072C8A' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%23072C8A' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%23072C8A' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-danger.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-danger.external-link:focus::after,
.btn.btn-danger.external-link:hover::after,
.btn.btn-outline-danger.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%23DB2E2E' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%23DB2E2E' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%23DB2E2E' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-success.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-success.external-link:focus::after,
.btn.btn-success.external-link:hover::after,
.btn.btn-outline-success.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%2309695C' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%2309695C' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%2309695C' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-text.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

.btn.btn-text.external-link:focus::after,
.btn.btn-text.external-link:hover::after,
.btn.btn-outline-text.external-link::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%23595959' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%23595959' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%23595959' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

/* 
    Project-wide extra styles for base buttons
*/
.btn {
  display: block;
  width: 80%;
  max-width: 25rem;
  margin: 0 auto;
}
@media (min-width: 48em) {
  .btn {
    display: inline-block;
    width: auto;
    max-width: none;
    margin: 0;
  }
}
.btn > svg {
  width: 1em;
  height: 1em;
}

.btn:focus {
  border-width: 0.125rem;
}

@media (max-width: 47.98em) {
  .btn-primary + .btn,
.btn-outline-primary + .btn {
    margin-top: 0.5rem;
  }
}
@media (min-width: 48em) {
  .btn-primary + .btn,
.btn-outline-primary + .btn {
    margin-left: 0.5rem;
  }
}
.btn-primary:not(:disabled):not(.disabled):hover, .btn-primary:not(:disabled):not(.disabled).hover {
  border-color: #00BEE1;
}
.btn-primary:not(:disabled):not(.disabled).active:hover {
  border-color: #00BEE1;
}
.btn-primary:not(:disabled):not(.disabled) > svg {
  fill: white;
  background-color: transparent;
}
.btn-primary:not(:disabled):not(.disabled).focus > svg, .btn-primary:not(:disabled):not(.disabled).active > svg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-primary:not(:disabled):not(.disabled):hover > svg, .btn-primary:not(:disabled):not(.disabled):focus > svg, .btn-primary:not(:disabled):not(.disabled):active > svg {
  fill: #0067b1;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):hover, .btn-outline-primary:not(:disabled):not(.disabled).hover {
  border-color: #00BEE1;
}
.btn-outline-primary:not(:disabled):not(.disabled):focus, .btn-outline-primary:not(:disabled):not(.disabled).focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus {
  background-color: #d9f5fb;
  border-color: #00BEE1;
}

/*
    Unique Button Variations
*/
.btn.btn-link:hover, .btn.btn-link:focus {
  color: #0067b1;
  background-color: white;
  border-color: #00BEE1;
}
.btn.btn-link:active, .btn.btn-link.active {
  color: white;
  background-color: #0067b1;
}
.btn.btn-link:active:hover, .btn.btn-link:active:focus, .btn.btn-link.active:hover, .btn.btn-link.active:focus {
  color: #0067b1;
  background-color: white;
}
.btn.btn-link:active:hover:focus {
  border-color: #0067b1;
  color: white;
  background-color: #0067b1;
}

button.btn-link {
  text-decoration: none;
}
button.btn-link:hover, button.btn-link:focus {
  text-decoration: none;
}

.btn-icon {
  font-size: 1rem;
  width: auto;
  max-width: none;
  padding: 0;
}
.btn-icon > svg, .btn-icon > img {
  width: 2em;
  height: 2em;
}

.btn-arrow {
  background-color: #0067b1;
  transition: 0s;
}
.btn-arrow .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-arrow .svg-bg {
  fill: #0067b1;
  background-color: transparent;
}
.btn-arrow:hover, .btn-arrow:focus {
  background-color: #00BEE1;
}
.btn-arrow:hover .svg-fg, .btn-arrow:focus .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-arrow:hover .svg-bg, .btn-arrow:focus .svg-bg {
  fill: #00bee1;
  background-color: transparent;
}
.btn-arrow:active, .btn-arrow:hover:active {
  background-color: #66a4d0;
}
.btn-arrow:active .svg-fg, .btn-arrow:hover:active .svg-fg {
  fill: white;
  background-color: transparent;
}
.btn-arrow:active .svg-bg, .btn-arrow:hover:active .svg-bg {
  fill: #66a4d0;
  background-color: transparent;
}

.btn-circle {
  padding: 0.625em;
  line-height: 1;
  display: inline-flex;
  width: auto;
  max-width: none;
}
.btn-circle > span {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
  line-height: 1;
}

.btn-square {
  width: auto;
  max-width: none;
  border-radius: 0.25rem;
}

.badge-need-help {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #2D73C6;
}
a.badge-need-help:hover, a.badge-need-help:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #2D73C6;
}
a.badge-need-help:focus, a.badge-need-help.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(45, 115, 198, 0.5);
}

a.badge-need-help:hover, a.badge-need-help:focus {
  background-color: #d9e8f3;
}

.badge-seek-help {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #072C8A;
}
a.badge-seek-help:hover, a.badge-seek-help:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #072C8A;
}
a.badge-seek-help:focus, a.badge-seek-help.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(7, 44, 138, 0.5);
}

a.badge-seek-help:hover, a.badge-seek-help:focus {
  background-color: #d9e8f3;
}

.badge-provide-help {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #09695C;
}
a.badge-provide-help:hover, a.badge-provide-help:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #09695C;
}
a.badge-provide-help:focus, a.badge-provide-help.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(9, 105, 92, 0.5);
}

a.badge-provide-help:hover, a.badge-provide-help:focus {
  background-color: #d9e8f3;
}

.badge-want-to-help {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #5442A5;
}
a.badge-want-to-help:hover, a.badge-want-to-help:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #5442A5;
}
a.badge-want-to-help:focus, a.badge-want-to-help.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(84, 66, 165, 0.5);
}

a.badge-want-to-help:hover, a.badge-want-to-help:focus {
  background-color: #d9e8f3;
}

.badge-foo {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #7b0069;
}
a.badge-foo:hover, a.badge-foo:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #7b0069;
}
a.badge-foo:focus, a.badge-foo.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(123, 0, 105, 0.5);
}

a.badge-foo:hover, a.badge-foo:focus {
  background-color: #d9e8f3;
}

.badge-aboutkidshealth {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #0067b1;
}
a.badge-aboutkidshealth:hover, a.badge-aboutkidshealth:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #0067b1;
}
a.badge-aboutkidshealth:focus, a.badge-aboutkidshealth.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 103, 177, 0.5);
}

a.badge-aboutkidshealth:hover, a.badge-aboutkidshealth:focus {
  background-color: #d9e8f3;
}

.badge-research {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #F58E57;
}
a.badge-research:hover, a.badge-research:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #F58E57;
}
a.badge-research:focus, a.badge-research.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(245, 142, 87, 0.5);
}

a.badge-research:hover, a.badge-research:focus {
  background-color: #d9e8f3;
}

.badge-forkids {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #2DD9EE;
}
a.badge-forkids:hover, a.badge-forkids:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #2DD9EE;
}
a.badge-forkids:focus, a.badge-forkids.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(45, 217, 238, 0.5);
}

a.badge-forkids:hover, a.badge-forkids:focus {
  background-color: #d9e8f3;
}

.badge-opportunities {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #B256D2;
}
a.badge-opportunities:hover, a.badge-opportunities:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #B256D2;
}
a.badge-opportunities:focus, a.badge-opportunities.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(178, 86, 210, 0.5);
}

a.badge-opportunities:hover, a.badge-opportunities:focus {
  background-color: #d9e8f3;
}

.badge-bar {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #00D456;
}
a.badge-bar:hover, a.badge-bar:focus {
  color: #595959;
  background-color: white;
  border: solid 0.25rem #00D456;
}
a.badge-bar:focus, a.badge-bar.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(0, 212, 86, 0.5);
}

a.badge-bar:hover, a.badge-bar:focus {
  background-color: #d9e8f3;
}

a.badge-primary:hover, a.badge-primary:focus {
  background-color: #d9e8f3;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  background-color: #d9e8f3;
}

a.badge-dark:hover, a.badge-dark:focus {
  background-color: #d9e8f3;
}

a.badge-danger:hover, a.badge-danger:focus {
  background-color: #d9e8f3;
}

a.badge-success:hover, a.badge-success:focus {
  background-color: #d9e8f3;
}

a.badge-text:hover, a.badge-text:focus {
  background-color: #d9e8f3;
}

.badge > img, .badge > svg {
  margin: 0 0.875rem 0 0;
  vertical-align: middle;
}

.badge {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-width: 0.1875rem;
  border-radius: 0.25rem;
}

.card {
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
  transition: all 0.2s ease-in-out;
}
.card:hover {
  box-shadow: 0 0.5rem 0.1rem -0.6rem rgba(0, 103, 177, 0.05), 0 0.75rem 0.25rem -0.6rem rgba(0, 103, 177, 0.07), 0 1rem 0.65rem -0.6rem rgba(0, 103, 177, 0.08), 0 1.5rem 1rem -0.6rem rgba(0, 103, 177, 0.09), 0 1.5rem 2rem -0.6rem rgba(0, 103, 177, 0.05), 0 1.5rem 3rem -0.6rem rgba(0, 103, 177, 0.05);
}
@media (prefers-reduced-motion: reduce) {
  .card {
    transition: none;
  }
}

.card-header {
  padding: 1rem 2rem;
}

.card-footer {
  padding-top: 0;
  background-color: white;
}

.card-title,
.card-subtitle,
.card-text,
.card-text > p {
  margin-bottom: 1rem;
}

.card-title:last-child,
.card-subtitle:last-child {
  margin-bottom: 0;
}

.card-subtitle {
  font-size: 0.875rem;
}

.card-lead {
  line-height: 1.2;
}

.card a[href*="mailto:"] {
  position: relative;
  z-index: 20;
}

.card-collapse:hover {
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
}
.card-collapse .card-header {
  padding: 0.25rem;
  background-color: white;
}
.card-collapse .card-body {
  margin-bottom: 0;
  padding: 0.5rem 2rem 1rem 2rem;
}

.btn.collapse-trigger {
  width: 100%;
  max-width: none;
  padding: 1rem 2.5rem 1rem 1rem;
  background-color: white;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
  outline: none;
  border-radius: 0.5rem;
  position: relative;
}
.btn.collapse-trigger:active, .btn.collapse-trigger:active:hover:focus {
  color: #0067b1;
  background-color: #d9e8f3;
}
.btn.collapse-trigger::after {
  position: absolute;
  top: calc(50% - 0.1875rem);
  right: 1rem;
  display: inline-block;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: solid #66a4d0;
  border-width: 0 0.125rem 0.125rem 0;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.btn.collapse-trigger:focus::after, .btn.collapse-trigger:hover::after {
  border-color: #0067b1;
}
.btn.collapse-trigger[aria-expanded=true]::after {
  transform: translateY(0%) rotate(-135deg);
}

/* Extra styles for non-JavaScript fall-back */
.no-js .collapse {
  display: block;
}
.no-js .collapse-trigger::after {
  display: none;
}

.card-collection ul.cards {
  padding-left: 0;
}
.card-collection ol.cards {
  padding-left: 0;
}
.card-collection .cards > .col {
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .card-collection .cards > .col {
    margin-bottom: 2rem;
  }
}
.card-collection .cards > .col .card {
  height: 100%;
}
@media (max-width: 47.98em) {
  .card-collection .cards > .col:last-of-type {
    margin-bottom: 0;
  }
  .card-collection .cards + .footer {
    margin-top: 2rem;
  }
}

.figure {
  display: table;
}

.figure-img {
  border-radius: 0.5rem;
}

.figure-caption {
  display: table-caption;
  caption-side: bottom;
  line-height: 1.5;
  padding: 0 1rem;
  min-width: 18rem;
}

.site-footer {
  color: #0067b1;
}
@media (max-width: 35.98em) {
  .site-footer {
    text-align: center;
  }
}
.site-footer a,
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6,
.site-footer .h1, .site-footer .h2, .site-footer .h3, .site-footer .h4, .site-footer .h5, .site-footer .h6 {
  color: #0067b1;
}
.site-footer a:not(.btn):focus {
  background-color: #d9e8f3;
}
.site-footer .external-link:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}
.site-footer .row,
.site-footer .btn-toolbar {
  justify-content: center;
}
@media (min-width: 36em) {
  .site-footer .btn-toolbar-social-small {
    justify-content: flex-start;
  }
}
.site-footer .btn-toolbar-social-large {
  margin-bottom: 2rem;
}
.site-footer .footer-text {
  text-align: center;
  color: #595959;
  font-size: 0.875rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .site-footer {
    padding-bottom: 2rem;
  }
}
@supports not ((position: -webkit-sticky) or (position: sticky)) {
  .site-footer {
    padding-bottom: 2rem;
  }
}

label {
  color: #0067b1;
}

.custom-control-input:focus:checked ~ .custom-control-label::before {
  border-color: #0067b1;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-size: 75% 75%;
}

.form-control:disabled, .form-control[readonly],
.custom-control-input[disabled] ~ .custom-control-label::before,
.custom-control-input:disabled ~ .custom-control-label::before {
  border-color: #bdbdbd;
}

/* 
    Invalid styling for custom checkbox/radio 
    ....Strange that Bootstrap is missing these tbh
*/
.custom-control-input.is-invalid:active ~ .custom-control-label:before {
  background-color: white;
  border-color: #DB2E2E;
}

.custom-checkbox .custom-control-input.is-invalid:focus ~ .custom-control-label:before {
  border-color: white;
}
.custom-checkbox .custom-control-input.is-invalid:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml,%3csvg width='11' height='8' viewBox='0 0 11 8' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='white' d='M3.19212 7.64524L0.318192 4.75134C-0.12146 4.30865 -0.105354 3.61476 0.365568 3.18632C0.852594 2.77302 1.59072 2.80242 2.03038 3.24511L4.0562 5.26796L8.95581 0.351241C9.41157 -0.0914513 10.1497 -0.120844 10.6206 0.292453C11.1076 0.720894 11.1228 1.41478 10.6832 1.85747L4.91928 7.64549C4.69945 7.86728 4.38583 8 4.05513 8C3.74149 7.99911 3.41177 7.86639 3.19194 7.64549L3.19212 7.64524Z' /%3e%3c/svg%3e");
}

.custom-radio .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: white;
}
.custom-radio .custom-control-input.is-invalid:focus ~ .custom-control-label:before {
  border-color: #DB2E2E;
}
.custom-radio .custom-control-input.is-invalid:checked ~ .custom-control-label:after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23DB2E2E'/%3e%3c/svg%3e");
}

/* Base Question Form */
.question-form {
  text-align: center;
}
.question-form label {
  margin-bottom: 1rem;
}
.question-form .input-wrap {
  display: flex;
  background-color: white;
  margin: 0 0 1rem 0;
  padding: 0 0.1875rem 0 1rem;
  border: solid 0.125rem white;
  border-radius: 50rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 103, 177, 0.15);
}
.question-form .input-wrap:hover {
  box-shadow: 0 0.5rem 0.1rem -0.6rem rgba(0, 103, 177, 0.05), 0 0.75rem 0.25rem -0.6rem rgba(0, 103, 177, 0.07), 0 1rem 0.65rem -0.6rem rgba(0, 103, 177, 0.08), 0 1.5rem 1rem -0.6rem rgba(0, 103, 177, 0.09), 0 1.5rem 2rem -0.6rem rgba(0, 103, 177, 0.05), 0 1.5rem 3rem -0.6rem rgba(0, 103, 177, 0.05);
}
.question-form.focus .input-wrap {
  border-color: #0067b1;
}
.question-form .form-control {
  border-width: 0;
  padding-left: 0;
  box-shadow: none;
}
.question-form .form-control:focus {
  box-shadow: none;
}
.question-form .form-control::-moz-placeholder {
  color: #595959;
}
.question-form .form-control:-ms-input-placeholder {
  color: #595959;
}
.question-form .form-control::-ms-input-placeholder {
  color: #595959;
}
.question-form .form-control::placeholder {
  color: #595959;
}
.question-form .form-control:focus::-moz-placeholder {
  color: white;
  opacity: 0;
}
.question-form .form-control:focus:-ms-input-placeholder {
  color: white;
  opacity: 0;
}
.question-form .form-control:focus::-ms-input-placeholder {
  color: white;
  opacity: 0;
}
.question-form .form-control:focus::placeholder {
  color: white;
  opacity: 0;
}
.question-form .btn.btn-primary {
  width: auto;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.question-form .btn-arrow {
  width: auto;
  flex: 0 1 auto;
  margin: 0;
  align-self: center;
}
.question-form .subtext {
  display: none;
}
.question-form .invalid-feedback {
  margin: 0 0 1rem 0;
}
.question-form .rich-text {
  margin-bottom: 0;
}

.no-js .question-form .form-control {
  padding-left: 1rem;
  margin-right: 1rem;
}
.no-js .question-form .form-control:focus {
  border: 0.125rem solid #66a4d0;
}

@media (max-width: 47.98em) {
  .question-form .was-validated .form-control:invalid {
    flex: 1 1 auto;
  }

  .question-form .btn-primary {
    display: none;
  }
}
@media (min-width: 48em) {
  .question-form .btn-icon {
    display: none;
  }
  .question-form .subtext {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
  .question-form .input-wrap {
    padding: 0.28125rem 0.28125rem 0.28125rem 1rem;
  }
  .question-form .input-wrap > .btn-primary {
    padding: 0 1.75rem;
  }

  .question-form.question-large .form-group {
    text-align: left;
  }
  .question-form.question-large .form-group > .link {
    margin-bottom: 0;
    padding-top: 0.625rem;
    text-align: right;
  }
  .question-form.question-large .invalid-feedback {
    text-align: left;
  }

  .question-form.question-small .row {
    justify-content: center;
  }
}
@media (min-width: 62em) {
  .question-form.question-large .input-wrap > .btn-primary {
    padding: 0 3.5rem;
  }
}
/**

    The site header is a very complicated component in terms of styling.

    There are both behavioural and styling difference between mobile vs tablet & desktop.

    Traditional 'Mobile First' CSS would therefore require significant overrides.

    Instead we opt for using explicit mobile styles and explicit tablet+ styles.

    Furthermore, the navigation has a number of areas that are also unique and complex, so
    we also break out the unique submenus (emergency, journey-companion, support-sk). Yes this
    adds some complexity to the file structure, but the intention is to improve code maintenance.

    We try and do a few things:

        - Flatten selectors when possible, i.e. .nav-link, not: .navbar-nav > .nav-item > .nav-link.
        - As mentioned, use any viewport queries necessary to avoid inheritence-hell!
        - In some cases, small duplication is better than complex inheritence.
        - As mentioned, we break this up into a few files. (More windows but less scrolling!)
        - Any time something causes regressions elsewhere, consider moving/altering the code. (KISS)

*/
#site-header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1021;
  background-color: white;
}
#site-header .h1, #site-header .h2, #site-header .h3, #site-header .h4, #site-header .h5, #site-header .h6 {
  color: #0067b1;
}
#site-header .dropdown a:not(.btn) {
  color: #0067b1;
}
#site-header .dropdown .external-link:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}
#site-header a:not(.btn):focus {
  background-color: #d9e8f3;
}

.nav-link {
  text-align: left;
  font-size: 1rem;
  line-height: 1.2;
}
.nav-link:focus {
  outline: 0;
}

.dropdown-menu .dropdown-toggle {
  white-space: normal;
}

/* 
    Mobile Menu
*/
@media (max-width: 47.98em) {
  #site-header {
    width: 100%;
  }
  #site-header .navbar-brand {
    margin: 1rem;
  }
  #site-header .navbar-brand > img {
    height: 2.5rem;
  }
  #site-header .navbar-toggler {
    margin: 0 1rem 0 auto;
    border-color: transparent;
    font-size: 1.325rem;
    transition: all 0.2s ease-in-out;
  }
}
@media (max-width: 47.98em) and (prefers-reduced-motion: reduce) {
  #site-header .navbar-toggler {
    transition: none;
  }
}
@media (max-width: 47.98em) {
  #site-header .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%230067b1' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}
@media (max-width: 47.98em) {
  #site-header .navbar-toggler:focus {
    border-color: #0067b1;
  }
}
@media (max-width: 47.98em) {
  #site-header .navbar-toggler:not(.collapsed), #site-header .navbar-toggler:active {
    background-color: #0067b1;
  }
  #site-header .navbar-toggler:not(.collapsed) .navbar-toggler-icon, #site-header .navbar-toggler:active .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}
@media (max-width: 47.98em) {
  #site-navigation .nav-layout-wrap {
    height: calc(100vh - 4.5rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #d9e8f3;
  }
  #site-navigation #navbar-brand-tablet,
#site-navigation #navbar-brand-desktop,
#site-navigation #nav-search,
#site-navigation #lang-select,
#site-navigation .break {
    display: none;
  }
  #site-navigation .dropdown-menu,
#site-navigation .nav-pages {
    width: 100%;
  }
}
@media (max-width: 47.98em) {
  #nav-search-mobile {
    padding: 0.75rem 1rem 0 1rem;
  }
  #nav-search-mobile .input-wrap {
    box-shadow: 0 0.5rem 1rem rgba(0, 103, 177, 0.15);
  }
  #nav-search-mobile .input-wrap:hover {
    box-shadow: 0 0.5rem 0.1rem -0.6rem rgba(0, 103, 177, 0.05), 0 0.75rem 0.25rem -0.6rem rgba(0, 103, 177, 0.07), 0 1rem 0.65rem -0.6rem rgba(0, 103, 177, 0.08), 0 1.5rem 1rem -0.6rem rgba(0, 103, 177, 0.09), 0 1.5rem 2rem -0.6rem rgba(0, 103, 177, 0.05), 0 1.5rem 3rem -0.6rem rgba(0, 103, 177, 0.05);
  }
  #nav-search-mobile.focus .input-wrap {
    border-color: #0067b1;
  }
}
@media (max-width: 47.98em) {
  #nav-search-submit {
    background-color: #0067b1;
    transition: 0s;
  }
  #nav-search-submit .svg-fg {
    fill: white;
    background-color: transparent;
  }
  #nav-search-submit .svg-bg {
    fill: #0067b1;
    background-color: transparent;
  }
  #nav-search-submit:hover, #nav-search-submit:focus {
    background-color: #00BEE1;
  }
  #nav-search-submit:hover .svg-fg, #nav-search-submit:focus .svg-fg {
    fill: white;
    background-color: transparent;
  }
  #nav-search-submit:hover .svg-bg, #nav-search-submit:focus .svg-bg {
    fill: #00bee1;
    background-color: transparent;
  }
  #nav-search-submit:active, #nav-search-submit:hover:active {
    background-color: #66a4d0;
  }
  #nav-search-submit:active .svg-fg, #nav-search-submit:hover:active .svg-fg {
    fill: white;
    background-color: transparent;
  }
  #nav-search-submit:active .svg-bg, #nav-search-submit:hover:active .svg-bg {
    fill: #66a4d0;
    background-color: transparent;
  }
}
@media (max-width: 47.98em) {
  #lang-select-mobile {
    width: 100%;
    padding: 0.75rem 1rem;
    color: #0067b1;
    background-color: #f7f7f7;
    border-radius: 0;
    font-size: 1rem;
    text-decoration: none;
    border: none;
  }
}
@media (max-width: 47.98em) {
  #nav-mychart {
    color: #0067b1;
    background-color: #f7f7f7;
  }
  #nav-mychart:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
  }
}
@media (max-width: 47.98em) {
  .nav-content,
.dropdown-title,
.dropdown-desc,
.dropdown-submenu-close,
.nav-desc,
.nav-icon {
    display: none;
  }
}
@media (max-width: 47.98em) {
  #site-navigation .nav-link {
    width: 100%;
    border: none;
    padding: 0.75rem 1rem;
  }
  #site-navigation .nav-link.external-link {
    padding-right: 2rem;
  }
  #site-navigation .nav-link.external-link::after {
    position: absolute;
    bottom: 1em;
    right: auto;
  }
  #site-navigation .nav-link.dropdown-toggle {
    padding-right: 2rem;
    position: relative;
  }
  #site-navigation .nav-link.dropdown-toggle::after {
    position: absolute;
    top: calc(50% - 0.1875rem);
    right: 1rem;
    display: inline-block;
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border: solid #0067b1;
    border-width: 0 0.125rem 0.125rem 0;
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
  }
  #site-navigation .nav-link.dropdown-toggle:focus::after, #site-navigation .nav-link.dropdown-toggle:hover::after {
    border-color: #0067b1;
  }
  #site-navigation .nav-link.dropdown-toggle[aria-expanded=true]::after {
    transform: translateY(0%) rotate(-135deg);
  }
  #site-navigation .nav-link > svg, #site-navigation .nav-link > img {
    display: none;
  }
}
/* 
    Tablet & Destkop 
   - Reminder: if it doesn't apply to the top level header or all the dropdowns, it shouldn't be in here.
   - Reminder: being explicit with / duplication between breakpoints to avoid complicated inheritence is ok in this case.
*/
@media (min-width: 48em) {
  .navbar-brand,
#nav-search-mobile,
#nav-mychart,
#site-header #lang-select-mobile {
    display: none;
  }

  .nav-layout-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
  }

  #site-header .btn.btn-link.btn-circle {
    flex: 0 0 auto;
    align-self: center;
    width: 2.125rem;
    height: 2.125rem;
    padding: 0.125rem;
    line-height: 1;
    color: #0067b1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  #site-header .btn.btn-link.btn-circle:hover, #site-header .btn.btn-link.btn-circle:focus, #site-header .btn.btn-link.btn-circle:active {
    border-color: #0067b1;
  }
  #site-header .btn.btn-link.btn-circle > svg, #site-header .btn.btn-link.btn-circle > img {
    width: 1.25em;
    height: 1.25em;
  }
  #site-header .btn.btn-link.btn-circle .svg-fg {
    fill: #0067b1;
  }
  #site-header .btn.btn-link.btn-circle:active {
    color: white;
  }
  #site-header .btn.btn-link.btn-circle:active .svg-fg {
    fill: white;
  }

  #nav-secondary {
    flex-grow: 1;
    flex-basis: auto;
  }

  .dropdown {
    overflow: visible;
    position: initial;
  }

  #site-header .dropdown-menu {
    padding: 1rem 0;
  }

  .dropdown-title,
.dropdown-desc {
    display: block;
  }

  .dropdown-title {
    margin: 0;
  }
  .dropdown-title .nav-icon {
    margin-right: 0.5rem;
    vertical-align: bottom;
  }

  .dropdown-desc {
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
  }

  .dropdown-layout-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    overflow-y: auto;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
  }

  .nav-column-wrap {
    display: flex;
    flex: 1 1 auto;
  }

  .nav-column-wrap .navbar-nav {
    flex-basis: 50%;
  }
  .nav-column-wrap .navbar-nav:only-child {
    flex-basis: 100%;
  }

  .nav-content p {
    margin-bottom: 0.5rem;
  }

  .nav-pages .navbar-nav {
    flex-direction: column;
  }

  .nav-item {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .dropdown-layout-wrap .nav-item {
    margin-bottom: 1rem;
  }

  .dropdown-layout-wrap .nav-item .nav-link {
    flex: 1 1 0%;
    padding-right: 2.25rem;
    padding-bottom: 0.25rem;
  }
  .dropdown-layout-wrap .nav-item .nav-link.dropdown-toggle {
    position: relative;
  }
  .dropdown-layout-wrap .nav-item .nav-link.dropdown-toggle::after {
    position: absolute;
    top: 0.8125rem;
    right: 0.625rem;
    display: inline-block;
    content: "";
    width: 0.625rem;
    height: 0.625rem;
    border: solid #0067b1;
    border-width: 0 0.125rem 0.125rem 0;
    pointer-events: none;
    transform: translateY(-50%) rotate(45deg);
  }
  .dropdown-layout-wrap .nav-item .nav-link.dropdown-toggle:focus::after, .dropdown-layout-wrap .nav-item .nav-link.dropdown-toggle:hover::after {
    border-color: #0067b1;
  }
  .dropdown-layout-wrap .nav-item .nav-link.dropdown-toggle[aria-expanded=true]::after {
    transform: translateY(0%) rotate(-135deg);
  }

  .nav-link:not(.dropdown-toggle) {
    text-decoration: underline;
  }

  .nav-icon {
    flex: 0 0 auto;
    width: 1.25rem;
    height: 1.25rem;
  }

  .dropdown-menu .nav-item .nav-icon {
    margin: 0.375rem 0.25rem 0 0;
  }

  .nav-desc {
    flex: 1 1 100%;
    margin: 0;
    padding: 0 2.25rem 0 0.5rem;
    font-size: 0.875rem;
    line-height: 1.2;
  }

  .nav-icon + .nav-link + .nav-desc {
    margin-left: 1.5rem;
  }
}
@media (min-width: 48em) and (max-width: 74.98em) {
  #navbar-brand-desktop {
    display: none;
  }

  #nav-emergency {
    display: flex;
    flex: 1 1 0%;
    justify-content: flex-start;
  }

  #navbar-brand-tablet {
    display: flex;
    justify-content: center;
    margin: 0.3125rem 0.4375rem;
    padding: 0.3125rem 0.4375rem;
  }
  #navbar-brand-tablet:hover, #navbar-brand-tablet:focus, #navbar-brand-tablet:active {
    border-color: #0067b1;
    background-color: white;
  }

  #search-jc-wrap {
    display: flex;
    flex: 1 1 0%;
    justify-content: flex-end;
    align-items: center;
  }

  #nav-primary {
    flex-basis: 100%;
  }

  .nav-pages {
    flex-basis: 67%;
  }

  .nav-content {
    flex-basis: 30%;
  }
}
@media (min-width: 48em) and (max-width: 61.98em) {
  .nav-desc {
    display: none;
  }

  .dropdown-title .nav-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .dropdown-close-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .dropdown-desc {
    margin-left: 2.25rem;
  }

  .nav-pages .navbar-nav {
    margin-left: 2.25rem;
  }
  .nav-pages .navbar-nav + .navbar-nav {
    margin-left: 1.125rem;
  }

  .dropdown-menu .dropdown-title {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 62em) {
  .dropdown-title {
    line-height: 1.8;
  }
  .dropdown-title .nav-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .btn-arrow > .dropdown-close-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .dropdown-desc {
    margin-left: 3rem;
  }

  .nav-pages .navbar-nav {
    margin-left: 3rem;
  }
}
@media (min-width: 75em) {
  #navbar-brand-tablet {
    display: none;
  }

  #navbar-brand-desktop {
    padding: 0;
  }

  #nav-emergency {
    flex: 0 1 auto;
  }

  #nav-primary {
    flex: 1 1 0%;
  }

  #search-jc-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    flex: 0 1 auto;
  }

  #site-navigation .break {
    flex-basis: 100%;
    height: 0;
  }

  .nav-pages {
    flex-basis: 65%;
  }

  .nav-content {
    flex-basis: 30%;
  }
}
/* 
    A little extra centering magic for big screens 
*/
@media (min-width: 90em) {
  #nav-emergency {
    flex: 1 1 0%;
    justify-content: flex-start;
  }

  #search-jc-wrap {
    flex: 1 1 0%;
    justify-content: flex-end;
  }

  #nav-primary {
    display: flex;
    flex: 1 1 auto;
  }
  #nav-primary > .navbar-nav {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  #nav-primary > .navbar-nav > .nav-item {
    flex: 1 1 auto;
  }
}
/* Extra styles for non-JavaScript fall-back */
.no-js #site-header .nav-layout-wrap {
  align-items: stretch;
  flex-direction: column;
  height: auto;
}
.no-js #site-header #nav-search-mobile {
  display: block;
  padding: 0.5rem;
}
.no-js #site-header #nav-search-mobile .form-group {
  margin-bottom: 0;
}
.no-js #site-header #lang-select-mobile {
  display: block;
  text-align: center;
}
.no-js #site-header .navbar-brand,
.no-js #site-header .navbar-toggler,
.no-js #site-header #nav-emergency,
.no-js #site-header #emergency-dropdown,
.no-js #site-header #navbar-brand-tablet,
.no-js #site-header #nav-primary,
.no-js #site-header #search-jc-wrap,
.no-js #site-header #nav-secondary,
.no-js #site-header #nav-secondary-centering,
.no-js #site-header #nav-support-sk,
.no-js #site-header #nav-mychart {
  display: none;
}

@media (min-width: 48em) {
  .no-js #site-header #nav-search-mobile {
    padding: 1.5rem;
  }
}
@media (min-width: 62em) {
  .no-js #site-header .nav-layout-wrap {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .no-js #site-header #lang-select-mobile {
    padding: 0.5rem;
    width: auto;
  }
  .no-js #site-header #nav-search-mobile {
    flex-basis: 33%;
  }
  .no-js #site-header #nav-emergency {
    display: flex;
    flex-basis: 66%;
  }
  .no-js #site-header #nav-emergency > .dropdown-menu {
    display: block;
    width: auto;
    position: static;
    top: auto;
    float: none;
    box-shadow: none;
  }
}
/* 
    Alert
    - We don't override Bootstrap's entire alert system for this one component
*/
.header-alert {
  position: relative;
  padding: 0.25rem 0.5rem;
  color: white;
  /*background-color: functions.brand-color('alert');*/
  text-align: center;
}
.header-alert a, .header-alert .h1, .header-alert .h2, .header-alert .h3, .header-alert .h4, .header-alert .h5, .header-alert .h6 {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.5rem;
  color: white;
  /*background-color: functions.brand-color('alert');*/
  border: solid 0.125rem transparent;
}
.header-alert a:hover,
.header-alert a:focus {
  border-color: white;
}
.header-alert .rich-text {
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

/*Dark blue brand */
.background-0067B1 {
  background-color: #0067B1;
}

/*Dark blue accent */
.background-072C8A {
  background-color: #072C8A;
}

/*Red messages*/
.background-DB2E2E {
  background-color: #DB2E2E;
}

@media (max-width: 47.98em) {
  #nav-primary .dropdown-layout-wrap {
    padding: 0;
  }
  #nav-primary .dropdown.show > .dropdown-toggle {
    border-top: 0.125rem solid #99c2e0;
  }
  #nav-primary .nav-link {
    background-color: white;
  }
  #nav-primary .nav-pages-level-2 > .nav-column-wrap > .navbar-nav > .nav-item > .nav-link {
    color: white;
    background-color: #0067b1;
  }
  #nav-primary .nav-pages-level-2 > .nav-column-wrap > .navbar-nav > .nav-item > .nav-link:focus::after, #nav-primary .nav-pages-level-2 > .nav-column-wrap > .navbar-nav > .nav-item > .nav-link:hover::after, #nav-primary .nav-pages-level-2 > .nav-column-wrap > .navbar-nav > .nav-item > .nav-link::after {
    border-color: white;
  }
  #nav-primary .nav-pages-level-2 > .nav-column-wrap > .navbar-nav > .nav-item > .nav-link.external-link:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
  }
  #nav-primary .dropdown-submenu > .dropdown-menu .nav-link {
    background-color: #f2f7fb;
  }
}
@media (min-width: 48em) {
  #nav-primary {
    position: relative;
    padding: 0.3125rem 0;
  }
  #nav-primary .nav-link {
    background-color: white;
  }
  #nav-primary > .navbar-nav {
    align-items: center;
  }
  #nav-primary > .navbar-nav > .nav-item {
    margin-bottom: 0;
    position: static;
  }
  #nav-primary > .navbar-nav > .nav-item > .nav-link {
    border: 0.125rem solid white;
  }
  #nav-primary > .navbar-nav > .nav-item > .nav-link:hover, #nav-primary > .navbar-nav > .nav-item > .nav-link:focus {
    color: #072C8A;
    border-bottom-color: #0067b1;
  }
  #nav-primary > .navbar-nav > .nav-item > .dropdown-menu {
    width: 100%;
    max-width: 120rem;
  }
  #nav-primary .dropdown-layout-wrap {
    max-width: 71.25em;
  }
  #nav-primary .dropdown-layout-wrap .nav-link {
    border: none;
  }
  #nav-primary .dropdown-layout-wrap .nav-link:focus {
    background-color: #d9e8f3;
    text-decoration: underline;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages {
    display: flex;
    flex-wrap: wrap;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-title {
    flex: 1 1 auto;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-desc {
    flex: 1 1 100%;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close {
    flex: 0 0 auto;
    cursor: pointer;
    align-self: flex-start;
    background-color: #d9f5fb;
    transition: 0s;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close .svg-fg {
    fill: #0067b1;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close .svg-bg {
    fill: #d9f5fb;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:focus {
    background-color: #d9e8f3;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover .svg-fg, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:focus .svg-fg {
    fill: #0067b1;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover .svg-bg, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:focus .svg-bg {
    fill: #d9e8f3;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:active, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover:active {
    background-color: #0067b1;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:active .svg-fg, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover:active .svg-fg {
    fill: white;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:active .svg-bg, #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:hover:active .svg-bg {
    fill: #0067b1;
    background-color: transparent;
  }
  #nav-primary .dropdown-layout-wrap > .nav-pages > .dropdown-submenu-close:focus {
    border-color: #0067b1;
  }

  #navbar-brand-desktop > .btn {
    padding: 0.3125rem 0.4375rem;
  }
  #navbar-brand-desktop > .btn:hover, #navbar-brand-desktop > .btn:focus, #navbar-brand-desktop > .btn:active {
    border-color: #0067b1;
    background-color: white;
  }
}
@media (min-width: 48em) and (max-width: 74.98em) {
  #nav-primary > .navbar-nav {
    justify-content: space-around;
  }
}
@media (min-width: 75em) {
  #nav-primary {
    position: static;
  }
  #nav-primary .dropdown-menu {
    margin-top: -3rem;
  }
  #nav-primary > .navbar-nav {
    justify-content: space-evenly;
    margin: 0 auto;
    max-width: 71.25em;
  }
  #nav-primary > .navbar-nav > .nav-item {
    flex: 1 1 0%;
    justify-content: center;
  }
  #nav-primary > .navbar-nav > #navbar-brand-desktop {
    flex: 0 0 auto;
  }
  #nav-primary .dropdown-layout-wrap {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    width: 65vw;
    max-width: 120rem;
    min-width: 71.25em;
  }
}
@media screen and (min-width: 75em) and (-ms-high-contrast: active), (min-width: 75em) and (-ms-high-contrast: none) {
  #nav-primary > .navbar-nav {
    justify-content: space-around;
  }

  #nav-primary > .navbar-nav > .nav-item {
    flex: 0 0 auto;
  }
}
#nav-secondary-centering {
  display: none;
}

#nav-secondary {
  background-color: #f2f7fb;
}
#nav-secondary .nav-link {
  color: #0067b1;
}
#nav-secondary .nav-link.external-link:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
}

@media (min-width: 48em) {
  #nav-secondary {
    display: flex;
    align-self: stretch;
    align-items: center;
    padding: 0.375rem 0;
    background-color: #f2f7fb;
  }
  #nav-secondary > .navbar-nav {
    flex: 1 1 auto;
    justify-content: space-around;
  }
  #nav-secondary .nav-item {
    margin-bottom: 0;
  }
  #nav-secondary .nav-link {
    color: #0067b1;
    font-size: 0.875rem;
    text-decoration: none;
  }
  #nav-secondary .nav-link.external-link:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
  }
  #nav-secondary a:not(.btn) {
    border-bottom: solid 0.125rem transparent;
  }
  #nav-secondary a:not(.btn):hover,
#nav-secondary a:not(.btn):focus {
    background-color: transparent;
    border-bottom-color: #0067b1;
  }
}
@media (min-width: 62em) {
  #nav-secondary > .navbar-nav {
    justify-content: space-evenly;
  }
}
@media (min-width: 75em) {
  #nav-secondary-centering {
    display: flex;
    flex: 1 1 auto;
    align-self: stretch;
    background-color: #f2f7fb;
  }

  #nav-secondary {
    flex: 1 1 auto;
    justify-content: center;
  }
  #nav-secondary > .navbar-nav {
    flex: 0 1 auto;
  }
  #nav-secondary > .navbar-nav .nav-link {
    white-space: nowrap;
    margin: 0 1rem;
  }
}
/*
    Emergency Menu
*/
@media (max-width: 47.98em) {
  #emergency-dropdown {
    color: #DB2E2E;
    background-color: #fef9f9;
  }
  #emergency-dropdown.nav-link.dropdown-toggle:focus::after, #emergency-dropdown.nav-link.dropdown-toggle:hover::after, #emergency-dropdown.nav-link.dropdown-toggle::after {
    border-color: #DB2E2E;
  }

  #nav-emergency .nav-desc {
    display: block;
    margin-bottom: 0.375rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    line-height: 1.2;
  }
  #nav-emergency .navbar-nav .nav-link {
    text-decoration: underline;
  }
  #nav-emergency .nav-content {
    display: flex;
    flex-direction: column;
    background-color: #f2f7fb;
    padding: 1rem 1rem 0 1rem;
  }
  #nav-emergency .nav-content p {
    margin-bottom: 0.5rem;
  }
  #nav-emergency .nav-content .h1, #nav-emergency .nav-content .h2, #nav-emergency .nav-content .h3, #nav-emergency .nav-content .h4, #nav-emergency .nav-content .h5, #nav-emergency .nav-content .h6 {
    display: none;
  }
  #nav-emergency .nav-content .external-link::after {
    right: auto;
  }
}
@media (min-width: 48em) {
  #emergency-dropdown {
    padding: 0.375rem 0.75rem;
    line-height: 1.8;
    color: #DB2E2E;
    background-color: #fef9f9;
    border-color: #f4c0c0;
    border-style: solid;
    border-width: 0.125rem 0.125rem 0.125rem 0;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    font-size: 0.875rem;
  }
  #emergency-dropdown:hover, #emergency-dropdown:focus {
    text-decoration: underline;
  }
  #emergency-dropdown .nav-icon {
    vertical-align: middle;
  }
  #emergency-dropdown .nav-icon {
    margin-left: 0.375rem;
  }
  #emergency-dropdown:hover, #emergency-dropdown:focus, #emergency-dropdown[aria-expanded=true] {
    border-color: #DB2E2E;
  }

  #nav-emergency {
    position: relative;
  }
  #nav-emergency > .dropdown-menu {
    width: 100vw;
  }
  #nav-emergency .nav-pages {
    flex: 3 1 0%;
    padding-right: 2rem;
  }
  #nav-emergency .nav-content {
    flex: 2 1 0%;
    padding-top: 2.5rem;
  }
  #nav-emergency .nav-pages .dropdown-title {
    color: #DB2E2E;
  }
  #nav-emergency .nav-desc {
    display: block;
  }
}
@media (min-width: 62em) {
  #nav-emergency > .dropdown-menu {
    width: 80vw;
  }

  #nav-emergency .nav-content {
    margin-left: 1rem;
  }
}
@media (min-width: 75em) {
  #nav-emergency > .dropdown-menu {
    width: 50rem;
    margin-top: 0.5rem;
  }
}
/*
    Journey Companion Menu
*/
@media (max-width: 47.98em) {
  #journey-companion-dropdown {
    color: #0067b1;
    background-color: #f7f7f7;
  }

  #nav-journey-companion .container,
#nav-journey-companion .nav-content {
    display: block;
  }
  #nav-journey-companion .dropdown-menu {
    text-align: center;
  }
  #nav-journey-companion .header > .rich-text {
    margin: 0.5rem 0;
    line-height: 1.2;
  }
  #nav-journey-companion .card {
    flex-direction: row;
    align-items: center;
    max-width: 21.5rem;
    margin: 0 auto 1rem auto;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    border-width: 0;
  }
  #nav-journey-companion .card-layout-wrap {
    display: flex;
    flex: 1 1 auto;
  }
  #nav-journey-companion .card-img-wrapper {
    flex-shrink: 0;
    width: 6rem;
    padding: 0;
  }
  #nav-journey-companion .card-body {
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    text-align: left;
  }
  #nav-journey-companion .card-footer {
    display: none;
  }
  #nav-journey-companion .card-title {
    margin-bottom: 0.5rem;
    text-decoration: underline;
  }
  #nav-journey-companion .card-text {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0;
  }
}
@media (min-width: 48em) {
  #journey-companion-dropdown {
    padding: 0.375rem 0.75rem;
    line-height: 1.8;
    color: #0067b1;
    background-color: #f2f7fb;
    border-color: #b3d1e8;
    border-style: solid;
    border-width: 0.125rem 0 0.125rem 0.125rem;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-left: 0.5rem;
  }
  #journey-companion-dropdown:hover, #journey-companion-dropdown:focus {
    text-decoration: underline;
  }
  #journey-companion-dropdown .nav-icon {
    vertical-align: middle;
  }
  #journey-companion-dropdown:hover, #journey-companion-dropdown:focus, #journey-companion-dropdown[aria-expanded=true] {
    border-color: #0067b1;
  }
  #journey-companion-dropdown .nav-icon {
    margin-right: 0.25rem;
  }

  #nav-journey-companion {
    position: relative;
  }
  #nav-journey-companion .container {
    display: block;
  }
  #nav-journey-companion > .dropdown-menu {
    width: 100vw;
    max-width: 120rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  #nav-journey-companion .nav-content {
    flex-basis: 100%;
  }
  #nav-journey-companion .header > .rich-text,
#nav-journey-companion .card-collection .cards > .col {
    margin-bottom: 0;
  }
  #nav-journey-companion .card,
#nav-journey-companion .card-layout-wrap,
#nav-journey-companion .card-body {
    height: 100%;
  }
  #nav-journey-companion .card {
    box-shadow: none;
    border-width: 0;
    margin: 0;
  }
  #nav-journey-companion .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #nav-journey-companion .card-title {
    color: #0067b1;
  }
  #nav-journey-companion .card-text {
    font-size: 1rem;
  }
  #nav-journey-companion .btn-primary {
    color: #fff;
    background-color: #0067b1;
    border-color: #0067b1;
    box-shadow: none;
  }
  #nav-journey-companion .btn-primary:hover, #nav-journey-companion .btn-primary.hover {
    color: #0067b1;
    background-color: white;
    border-color: #0067b1;
  }
  #nav-journey-companion .btn-primary:focus, #nav-journey-companion .btn-primary.focus {
    color: #0067b1;
    background-color: white;
    border-color: #0067b1;
    box-shadow: none;
  }
  #nav-journey-companion .btn-primary.disabled, #nav-journey-companion .btn-primary:disabled {
    color: #fff;
    background-color: #0067b1;
    border-color: #0067b1;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):active, #nav-journey-companion .btn-primary:not(:disabled):not(.disabled).active {
    color: #0067b1;
    background-color: #d9e8f3;
    border-color: #0067b1;
    box-shadow: none;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):active:hover, #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):active.hover, #nav-journey-companion .btn-primary:not(:disabled):not(.disabled).active:hover, #nav-journey-companion .btn-primary:not(:disabled):not(.disabled).active.hover {
    border-color: #0067b1;
    background-color: white;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):active:focus, #nav-journey-companion .btn-primary:not(:disabled):not(.disabled).active:focus {
    background-color: white;
    border-color: #0067b1;
    box-shadow: none;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):active:hover:focus {
    border-color: #d9e8f3;
    background-color: #d9e8f3;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled):hover {
    border-color: #0067b1;
  }
  #nav-journey-companion .btn-primary:not(:disabled):not(.disabled).active:hover {
    border-color: #0067b1;
  }
  #nav-journey-companion .btn-primary.external-link::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='white' stroke-width='1.25'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='white' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
  }
  #nav-journey-companion .btn-primary.external-link:hover::after, #nav-journey-companion .btn-primary.external-link:focus::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.1 15.1'%3e%3cpath d='M5.6 4.763H1v9.4h9.3v-5.1' fill='none' stroke='%230067b1' stroke-width='1.25'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' stroke-linecap='square' d='M5.215 1h8.9M14.115 9.9V1'/%3e%3cpath fill='none' stroke='%230067b1' stroke-width='1.25' d='M4.315 10.8l9.8-9.8'/%3e%3c/svg%3e");
  }
  #nav-journey-companion .btn-outline-primary {
    color: #0067b1;
    background-color: white;
    border-color: #0067b1;
  }
  #nav-journey-companion .btn-outline-primary:hover, #nav-journey-companion .btn-outline-primary.hover {
    color: #0067b1;
    background-color: white;
    border-color: #b3d1e8;
  }
  #nav-journey-companion .btn-outline-primary:focus, #nav-journey-companion .btn-outline-primary.focus {
    background-color: #d9e8f3;
    box-shadow: none;
  }
  #nav-journey-companion .btn-outline-primary:focus:hover, #nav-journey-companion .btn-outline-primary:focus.hover, #nav-journey-companion .btn-outline-primary.focus:hover, #nav-journey-companion .btn-outline-primary.focus.hover {
    background-color: white;
  }
  #nav-journey-companion .btn-outline-primary.disabled, #nav-journey-companion .btn-outline-primary:disabled {
    color: #0067b1;
    background-color: transparent;
  }
  #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled):active, #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled).active {
    color: #0067b1;
    background-color: white;
    border-color: #b3d1e8;
  }
  #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled):active:focus, #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled).active:focus {
    background-color: #d9e8f3;
    border-color: #0067b1;
    box-shadow: none;
  }
  #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled):focus:hover {
    background-color: white;
  }
  #nav-journey-companion .btn-outline-primary:not(:disabled):not(.disabled):active:hover:focus {
    background-color: white;
    border-color: #b3d1e8;
  }
  #nav-journey-companion .btn-outline-primary:hover {
    border-color: #00BEE1;
  }
  #nav-journey-companion .btn-outline-primary:focus, #nav-journey-companion .btn-outline-primary.active:focus {
    background-color: #d9f5fb;
    border-color: #00BEE1;
  }
}
/*
    Support SickKids dropdown
*/
@media (max-width: 47.98em) {
  #support-sickkids-dropdown {
    color: #0067b1;
    background-color: #f7f7f7;
  }
}
@media (min-width: 48em) {
  #support-sickkids-dropdown {
    padding: 0.375rem 0.75rem;
    line-height: 1.8;
    color: white;
    background-color: #0067b1;
    border-color: #b3d1e8;
    border-style: solid;
    font-size: 0.875rem;
    border-width: 0;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
  }
  #support-sickkids-dropdown:hover, #support-sickkids-dropdown:focus {
    text-decoration: underline;
  }
  #support-sickkids-dropdown .nav-icon {
    vertical-align: middle;
  }
  #support-sickkids-dropdown[aria-expanded=true] {
    text-decoration: underline;
  }
  #support-sickkids-dropdown .nav-icon {
    margin-right: 0.5rem;
  }

  #nav-support-sk {
    background-color: #f2f7fb;
    align-self: stretch;
    display: flex;
  }
  #nav-support-sk > .dropdown-menu {
    width: 40rem;
  }
  #nav-support-sk .nav-pages {
    flex-basis: 60%;
  }
  #nav-support-sk .nav-content {
    flex-basis: 40%;
    display: inline-flex;
    justify-content: center;
  }
  #nav-support-sk .dropdown-menu .nav-link {
    flex: 1 1 0%;
  }
}
@media (min-width: 75em) {
  #nav-support-sk {
    flex: 1 1 0%;
    justify-content: flex-end;
  }
}
.pagination {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.pagination .background {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem;
  background-color: white;
  border: solid 0.125rem white;
  border-radius: 2rem;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
}
.pagination .pages {
  font-size: 0;
  padding: 0.15rem;
}
.pagination .page {
  margin: 0;
  padding: 0.625em;
  line-height: 1;
  display: inline-flex;
  width: auto;
  max-width: none;
  font-size: 1rem;
}
.pagination .active {
  text-decoration: none;
}
.pagination .controls {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 0.875rem;
  padding: 0.15rem 0;
}
.pagination .controls .btn {
  line-height: 1;
}
.pagination .controls .btn > svg {
  width: 2em;
  height: 2em;
}
.pagination span.page {
  display: inline-block;
  min-width: 1em;
  min-height: 1em;
  line-height: 1;
}

@media (max-width: 35.98em) {
  .pagination .pages {
    padding: 0.15rem 0;
  }
  .pagination .page.hide-in-mobile {
    display: none;
  }
  .pagination .controls {
    margin-left: 0.21875rem;
  }
  .pagination .controls .btn {
    margin-right: 0.15625rem;
  }
  .pagination .controls .btn + .btn {
    margin-right: 0;
  }
}
@media (min-width: 36em) {
  .pagination .page.hide-in-tablet {
    display: none;
  }
}
@media (min-width: 48em) {
  .card-collection + .pagination {
    margin-top: -3rem;
  }
}
img {
  max-width: 100%;
}

.rounded {
  border-radius: 0.5rem;
}

@media (max-width: 61.98em) {
  .img-fluid {
    width: 100%;
  }
}
.progress {
  height: 0.25rem;
  z-index: 1020;
}

.dropdown.dropdown-tabs {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
}
.dropdown.dropdown-tabs .dropdown-menu.hide {
  display: none;
}
.dropdown.dropdown-tabs .dropdown-menu.show {
  width: 100%;
}
.dropdown.dropdown-tabs .dropdown-toggle {
  position: relative;
  width: 100%;
  max-width: none;
  text-align: left;
  font-size: 1rem;
  border-radius: 0.25rem;
  position: relative;
}
@media (min-width: 62em) {
  .dropdown.dropdown-tabs .dropdown-toggle {
    display: none !important;
  }
}
.dropdown.dropdown-tabs .dropdown-toggle::after {
  position: absolute;
  top: 42.5%;
  right: 0.875rem;
}
.dropdown.dropdown-tabs .dropdown-toggle::after {
  position: absolute;
  top: calc(50% - 0.1875rem);
  right: 0.75rem;
  display: inline-block;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border: solid #66a4d0;
  border-width: 0 0.125rem 0.125rem 0;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}
.dropdown.dropdown-tabs .dropdown-toggle:focus::after, .dropdown.dropdown-tabs .dropdown-toggle:hover::after {
  border-color: #0067b1;
}
.dropdown.dropdown-tabs .dropdown-toggle[aria-expanded=true]::after {
  transform: translateY(0%) rotate(-135deg);
}
.dropdown.dropdown-tabs .nav-tabs .dropdown-item {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.dropdown.dropdown-tabs .active {
  text-decoration: underline;
}

.dropdown-tabs > .nav-tabs.dropdown-menu {
  display: none;
}
.dropdown-tabs > .nav-tabs.dropdown-menu.show {
  display: block;
}
@media (min-width: 62em) {
  .dropdown-tabs > .nav-tabs.dropdown-menu {
    flex-wrap: initial;
    position: static;
    float: none;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    border: 0.125rem solid #b3d1e8;
    border-radius: 0.5rem;
    padding: 0.125rem;
  }
  .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item {
    flex: 1 1 auto;
    padding: 0.375rem 1.5rem;
    text-align: center;
    line-height: 1.2;
    white-space: normal;
    border: 0.0625rem solid white;
    border-radius: 0.5rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
}
@media (min-width: 62em) and (prefers-reduced-motion: reduce) {
  .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item {
    transition: none;
  }
}
@media (min-width: 62em) {
  .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item:focus, .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item.focus {
    outline: 0;
    border-color: #66a4d0;
    background-color: white;
  }
}
@media (min-width: 62em) {
  .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item.active:focus {
    background-color: #d9e8f3;
  }
}
@media (min-width: 62em) {
  .dropdown-tabs > .nav-tabs.dropdown-menu .dropdown-item + .dropdown-item {
    margin-left: 0.25rem;
  }
}

/* Extra styles for non-JavaScript fall-back */
.no-js .dropdown-tabs {
  display: none;
}
.no-js .tab-content > .tab-pane {
  display: block;
  opacity: initial;
}

.quote {
  display: block;
  padding-right: 5%;
  padding-left: 5%;
}
@media (min-width: 48em) {
  .quote {
    padding: 0 5%;
  }
}
@media (min-width: 62em) {
  .quote {
    padding: 0 5%;
  }
}

.quote > .blockquote {
  display: block;
  padding-top: 2rem;
  color: #072C8A;
  font-style: italic;
  line-height: 1.44;
}
@media (max-width: 74.98em) {
  .quote > .blockquote {
    margin-bottom: 1rem;
  }
}
@media (min-width: 36em) {
  .quote > .blockquote {
    display: inline-block;
    min-height: 6rem;
    background-color: transparent;
    background-image: url("data:image/svg+xml;charset=utf8,%3csvg width='348' height='229' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill='%23E4ECFF' d='M166.669 82.87C166.669 37.206 129.275 0 83.334 0 37.414 0 0 37.185 0 82.87c0 45.663 37.394 82.869 83.334 82.869 9.95 0 19.881-1.876 28.888-5.186-1.887 20.707-8.045 41.893-18.457 61.684-.943 1.416-.943 3.291-.48 4.708.48.937 1.423 1.875 2.367 1.875 1.424.479 2.848 0 4.734-1.416 19.881-16.956 36.932-39.08 48.286-63.557 10.412-22.602 16.57-46.601 17.513-72.037.481-2.814.484-6.127.484-8.94zM348 82.87C348 37.206 310.606 0 264.666 0c-45.92 0-83.335 37.185-83.335 82.87 0 45.663 37.394 82.869 83.335 82.869 9.949 0 19.88-1.876 28.887-5.186-1.886 20.707-8.045 41.893-18.457 61.684-.943 1.416-.943 3.291-.48 4.708.48.937 1.424 1.875 2.367 1.875 1.424.479 2.848 0 4.734-1.416 19.881-16.956 36.932-39.08 48.286-63.557 10.412-22.602 16.57-46.601 17.513-72.037.481-2.814.484-6.127.484-8.94z'/%3e%3c/svg%3e");
    background-position: top right;
    background-repeat: no-repeat;
    background-size: auto 50%;
    line-height: 1.62;
  }
}
@media (min-width: 48em) {
  .quote > .blockquote {
    background-size: auto 70%;
    padding-top: 2rem;
    padding-right: 10%;
  }
}
@media (min-width: 75em) {
  .quote > .blockquote {
    padding-top: 4rem;
    padding-right: 20%;
    line-height: 1.8;
  }
}

.quote > .blockquote-footer::before {
  content: "";
}
.quote > .blockquote-footer > p {
  margin-bottom: 0;
}

.yt-embed {
  margin-bottom: 2rem;
}
.yt-embed .card-collapse .card-header {
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.yt-embed .collapse, .yt-embed .collapsing {
  padding: 0.5rem;
}
.yt-embed .card-collapse .card-body {
  max-height: 25rem;
  overflow-y: auto;
}

.accordion {
  margin-bottom: 2rem;
}
.accordion .card {
  border-top: solid 0.0625rem #d9e8f3;
}
.accordion .card:first-of-type {
  border-top-color: transparent;
}

.accordion-spaced .accordion > .card {
  margin-bottom: 1rem;
  border-top: 0;
  border-radius: 0.5rem;
}

.card-standard .card-body {
  padding-bottom: 1rem;
  width: 100%;
}
.card-standard .card-layout-wrap > :last-child {
  padding-bottom: 2rem;
}
.card-standard .card-body + .card-footer {
  padding-bottom: 1rem;
}
.card-standard .card-img-wrapper {
  position: relative;
  flex: 0 0 auto;
  /*height: 20em;
  overflow: hidden;*/
}
.card-standard .card-img-wrapper .badge {
  position: absolute;
  bottom: 1rem;
  left: 2rem;
}
.card-standard .card-layout-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.card-standard .card-text {
  font-size: 0.875rem;
}
.card-standard .btn-toolbar-social-small {
  justify-content: space-around;
  flex-wrap: nowrap;
}
@media (min-width: 48em) {
  .card-standard .btn-toolbar-social-small {
    justify-content: flex-start;
  }
}
.card-standard .card-footer {
  width: 100%;
  z-index: 10;
}
.card-standard .card-footer .btn + .btn-toolbar-social-small {
  margin-top: 1rem;
}

/*@include bootstrap.media-breakpoint-down(md) {

	.card-standard .card-img-wrapper {		
		height: 16em;
	}
}*/
@media (max-width: 61.98em) {
  .card-standard.hide-img-mobile .card-img-wrapper {
    display: none;
  }
}
/* Horizontal variation */
.card-standard.card-horizontal {
  flex-direction: row;
}
.card-standard.card-horizontal .card-img-wrapper {
  flex: 0 0 30%;
}
.card-standard.card-horizontal .card-img-wrapper > img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
  height: 100%;
}
.card-standard.card-horizontal .card-img {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.card-standard.card-horizontal .card-layout-wrap {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.card-standard.card-horizontal .card-footer {
  flex: 1 1 100%;
  align-self: flex-end;
}
.card-standard.card-horizontal .card-img-left .card-img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.card-standard.card-horizontal .card-img-right .card-img {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.card-standard.card-horizontal.img-right.img-top-in-mobile .card-img-left {
  display: none;
}

@media (max-width: 47.98em) {
  .card-standard.card-horizontal.img-top-in-mobile {
    flex-direction: column;
  }
  .card-standard.card-horizontal.img-top-in-mobile.img-right .card-img-left {
    display: block;
  }
  .card-standard.card-horizontal.img-top-in-mobile .card-img-right {
    display: none;
  }
  .card-standard.card-horizontal.img-top-in-mobile .card-img-wrapper {
    flex: 1 1 auto;
  }
  .card-standard.card-horizontal.img-top-in-mobile .card-img-wrapper .card-img {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (max-width: 61.98em) {
  .card-standard.card-horizontal.hide-img-mobile .card-layout-wrap {
    flex: 0 0 100%;
  }
}
.card-image {
  flex-direction: row;
  flex-wrap: wrap;
  background-color: transparent;
  box-shadow: none;
}
.card-image:hover {
  box-shadow: none;
}
.card-image .card-mobile-buttons {
  display: none;
}

.card-image > .card-layout-wrap {
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid #0067b1;
  border-radius: 0.5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  width: 100%;
}
.card-image > .card-layout-wrap .card-img-wrapper {
  width: 100%;
}
.card-image > .card-layout-wrap .card-img,
.card-image > .card-layout-wrap .card-body {
  flex: none;
  width: 100%;
}
.card-image > .card-layout-wrap .card-img {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.card-image > .card-layout-wrap .card-body {
  margin-left: -100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem 2rem;
}
.card-image > .card-layout-wrap .card-body .stretched-link {
  align-self: flex-start;
}
.card-image > .card-layout-wrap .card-title {
  flex-basis: 100%;
}
.card-image > .card-layout-wrap .card-buttons {
  display: flex;
  flex-basis: 100%;
  align-self: flex-end;
  align-items: flex-start;
}
.card-image > .card-layout-wrap .card-buttons .btn {
  margin-bottom: 0;
}

@media (max-width: 47.98em) {
  .card-image > .card-layout-wrap .card-buttons {
    display: none;
  }
  .card-image .card-mobile-buttons {
    display: block;
    width: 100%;
    padding-top: 1rem;
  }
}
.card-thin {
  flex-direction: row;
  align-items: center;
  padding: 1rem 1rem;
}
.card-thin .card-img-wrapper {
  flex: 0 0 auto;
  width: 3.75rem;
}
.card-thin .card-body {
  padding: 0;
}
.card-thin .card-img-wrapper + .card-body,
.card-thin .card-body + .card-img-wrapper {
  margin-left: 1rem;
}

.card-topic {
  border-bottom-width: 0.25rem;
}
.card-topic .card-img-wrapper {
  padding: 2rem 2rem 1rem 2rem;
}
.card-topic .card-img-wrapper + .card-body {
  padding-top: 0;
}
.card-topic .card-body {
  padding-bottom: 1rem;
}
.card-topic > :last-child {
  padding-bottom: 2rem;
}

@media (max-width: 47.98em) {
  .card-topic.hide-content-mobile {
    display: flex;
    align-items: center;
    flex-direction: row;
    text-align: left;
    border-bottom-width: 0.25rem;
  }
  .card-topic.hide-content-mobile .card-body,
.card-topic.hide-content-mobile .card-img-wrapper {
    padding: 1rem;
  }
  .card-topic.hide-content-mobile .card-body > img,
.card-topic.hide-content-mobile .card-img-wrapper > img {
    max-width: 3rem;
    max-height: 3rem;
  }
  .card-topic.hide-content-mobile .card-img-wrapper + .card-body {
    padding-left: 0;
  }
  .card-topic.hide-content-mobile .card-title {
    margin: 0;
    font-size: 1rem;
  }
  .card-topic.hide-content-mobile .card-mobile-title + .card-subtitle {
    margin: 0;
  }
  .card-topic.hide-content-mobile .card-body .card-title:not(.card-mobile-title),
.card-topic.hide-content-mobile .card-body > .card-text,
.card-topic.hide-content-mobile .card-footer {
    display: none;
  }
}
@media (min-width: 48em) {
  .card-topic.hide-content-mobile .card-mobile-title {
    display: none;
  }
}
.jumbotron-layered .jumbotron-body {
  z-index: 1;
  background-color: white;
  padding: 2rem;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
}
.jumbotron-layered .jumbotron-img img {
  width: 100%;
}
@media (min-width: 48em) {
  .jumbotron-layered {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
  }
  .jumbotron-layered .jumbotron-body,
.jumbotron-layered .jumbotron-img {
    flex: none;
    width: 100%;
  }
  .jumbotron-layered .jumbotron-body {
    width: 65%;
    margin-left: -82.5%;
  }
}
@media (min-width: 75em) {
  .jumbotron-layered .jumbotron-body {
    width: 50%;
    margin-left: -75%;
  }
}
@media (max-width: 47.98em) {
  .jumbotron-layered .jumbotron-body {
    text-align: center;
  }
}

.jumbotron-standard {
  position: relative;
}
.jumbotron-standard .rich-text {
  margin-bottom: 0;
}
.jumbotron-standard .pretitle {
  display: block;
  font-size: 0.875rem;
}
.jumbotron-standard .title > a {
  text-decoration: none;
}
.jumbotron-standard .jumbotron-bg > .badge {
  display: none;
}

@media (max-width: 47.98em) {
  .jumbotron-standard .jumbotron-body {
    padding-top: 1rem;
  }
  .jumbotron-standard.hide-content-mobile .jumbotron-body {
    display: none;
  }
  .jumbotron-standard .jumbotron-bg {
    position: relative;
  }
  .jumbotron-standard .jumbotron-bg > .badge {
    display: inline-block;
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
  .jumbotron-standard .jumbotron-body .badge {
    display: none;
  }
}
@media (min-width: 48em) {
  .jumbotron-standard .badge {
    margin-bottom: 2rem;
  }
  .jumbotron-standard .jumbotron-body {
    padding: 1rem 0;
  }

  .jumbotron-standard > .jumbotron-layout-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
  }
  .jumbotron-standard > .jumbotron-layout-wrap .jumbotron-bg,
.jumbotron-standard > .jumbotron-layout-wrap .jumbotron-body {
    flex: none;
    width: 100%;
  }
  .jumbotron-standard > .jumbotron-layout-wrap .jumbotron-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover";
  }
  .jumbotron-standard > .jumbotron-layout-wrap .jumbotron-body {
    margin-left: -100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .jumbotron-standard > .jumbotron-layout-wrap .jumbotron-body .row {
    margin-top: auto;
    margin-bottom: auto;
  }
}
.content-page-image-wrapping {
  position: relative;
  display: inline;
  padding-bottom: 1em;
}

.float-left {
  float: left;
  padding-right: 1em;
}

.float-right {
  float: right;
  padding-left: 1em;
}

@media (max-width: 35.98em) {
  .float-left {
    float: inherit;
    padding-right: 0em;
  }

  .float-right {
    float: inherit;
    padding-left: 0em;
  }
}
.listing-group .list-group {
  margin: 2rem 0;
}
.listing-group .list-group > :last-child, .listing-group > .row > .col > :last-child {
  margin-bottom: 0;
}
.listing-group .list-group-flush {
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
}
.listing-group .list-group-item-action {
  font-weight: 700;
  padding-right: 2rem;
}
.listing-group .list-group-item-action:focus {
  background-color: #d9e8f3;
}
.listing-group .list-group-item-action .title {
  display: inline-block;
  text-decoration: underline;
  padding-right: 1rem;
  line-height: 1.5;
}
.listing-group .list-group-item-action .subtitle {
  display: block;
  text-decoration: none;
  font-weight: 400;
  color: #595959;
  /*line-height: bootstrap.$line-height-sm;*/
}
.listing-group .list-group-item-action:not(.external-link) .link-icon {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border: solid #0067b1;
  border-width: 0 0.125rem 0.125rem 0;
  pointer-events: none;
  transform: translateY(-60%) rotate(-45deg);
}
.listing-group .list-group-item-action.external-link:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0.75rem;
}

.listing-group .list-group.list-group-spaced .list-group-item {
  margin-bottom: 1rem;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
  border: none;
  border-radius: 0;
}
.listing-group .list-group.list-group-spaced > :last-child {
  margin-bottom: 0;
}

.listing {
  position: relative;
}
.listing .title {
  text-align: center;
}
.listing .row {
  align-items: center;
}
.listing .mixed-content,
.listing .fixed-content {
  position: relative;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 48em) {
  .listing .mixed-content,
.listing .fixed-content {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.listing .fixed-content > .container,
.listing .fixed-content > .container-md {
  padding: 0;
}

/* Tablet+ */
@media (min-width: 48em) {
  .listing.mixed-right .fixed-content {
    order: 0;
  }
  .listing.mixed-right .mixed-content {
    order: 1;
  }
  .listing.mixed-right .mixed-content > picture {
    display: block;
    text-align: right;
  }

  .listing.container-fluid .title {
    min-height: 3rem;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    white-space: nowrap;
  }
  .listing.container-fluid .mixed-content {
    padding: 0 1rem 0 0;
  }
  .listing.container-fluid .fixed-content {
    margin-top: 5rem;
  }

  .listing.container-fluid.mixed-right .mixed-content {
    padding-left: 1rem;
    padding-right: 0;
  }
}
/* Desktop+ */
@media (min-width: 75em) {
  .listing.container-fluid.mixed-right .fixed-content {
    margin-left: 12.5%;
  }

  .listing.container-fluid .fixed-content {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
}
.listing-cards .fixed-content .card {
  margin-bottom: 1rem;
}

.listing-cards.no-spacing .fixed-content .card {
  margin-bottom: 0;
  border-radius: 0;
}

@media (max-width: 61.98em) {
  .listing-cards .card-standard.card-horizontal .card-layout-wrap {
    flex-basis: 100%;
  }
}
/*
    Base styles, spacing
*/
.media {
  background-color: white;
  padding: 0;
  border-radius: 0.5rem;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
}
.media .badge,
.media .lead,
.media .media-title {
  margin-top: 0;
  margin-bottom: 1rem;
}
.media .rich-text {
  margin: 0;
}
.media .rich-text + .buttons {
  margin-top: 1rem;
}
.media .media-body {
  text-align: left;
  padding: 2rem;
}
.media .media-body .lead,
.media .media-body .media-title {
  text-align: left;
}
.media .media-body .lead {
  font-size: 0.875rem;
}

.media .media-img,
.media picture.media-img > img {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
@media (min-width: 62em) {
  .media .media-img,
.media picture.media-img > img {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
  }
}
@media (min-width: 62em) {
  .media:not(.image-padded).image-right .media-img,
.media:not(.image-padded).image-right picture.media-img > img {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}

.media.image-padded {
  padding: 2rem;
  justify-content: center;
}
.media.image-padded .media-img {
  border-radius: 0.25rem;
}
.media.image-padded .media-body {
  flex: 1 1 auto;
  padding: 2rem 0 0 0;
}
@media (min-width: 48em) {
  .media.image-padded .media-body {
    flex: 1 1 0;
    padding: 0 0 0 2rem;
  }
}
@media (min-width: 48em) {
  .media.image-padded.image-right .media-body {
    padding: 0 2rem 0 0;
  }
}

/* Layout */
@media (max-width: 61.98em) {
  .media {
    flex-direction: column;
  }
  .media:not(.image-padded) {
    align-items: stretch;
  }
  .media .media-img-wrapper {
    flex: 0 0 auto;
    position: relative;
  }
  .media .media-img-wrapper .media-img {
    width: 100%;
  }
  .media .media-img-wrapper .badge {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
  }
  .media .media-body {
    flex: 1 1 auto;
    align-self: stretch;
  }
  .media .media-body .badge {
    display: none;
  }
}
@media (min-width: 62em) {
  .media {
    align-items: center;
  }
  .media .media-img-wrapper .badge {
    display: none;
  }
}
.media-img-right {
  display: none;
}

@media (min-width: 48em) {
  .media.image-padded.image-right .media-img-left {
    display: none;
  }
  .media.image-padded.image-right .media-img-right {
    display: block;
  }
}
@media (min-width: 62em) {
  .media:not(.image-padded).image-right .media-img-left {
    display: none;
  }
  .media:not(.image-padded).image-right .media-img-right {
    display: block;
  }
}
.media.image-padded .media-img-wrapper {
  align-self: stretch;
}
.media.image-padded .media-img-wrapper .media-img {
  width: auto;
  height: auto;
}
@media (min-width: 48em) {
  .media.image-padded {
    flex-direction: row;
  }
}

.facets {
  justify-content: center;
  padding: 0.5rem;
  background-color: white;
  box-shadow: 0 0.35rem 0.75rem rgba(0, 103, 177, 0.125), 0 2.5rem 1rem -2rem rgba(0, 103, 177, 0.18);
  border-radius: 0.8rem;
}
@media (min-width: 36em) {
  .facets {
    padding: 0.5rem 2rem;
  }
}
.facets .btn-link {
  flex-basis: 50%;
  margin: 0;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .facets .btn-link {
    flex-basis: 40%;
  }
}
@media (min-width: 48em) {
  .facets .btn-link {
    flex-basis: auto;
    margin: 0 1rem;
  }
}
.facets .facet-row-break {
  height: 0;
}

@media (min-width: 48em) and (max-width: 74.98em) {
  .facet-row-break {
    flex-basis: 100%;
  }
}
.search-results {
  margin-bottom: 1rem;
}
.search-results .question-form {
  margin-bottom: 2rem;
}
.search-results .facets {
  margin-bottom: 1rem;
}
.search-results select.form-control {
  margin-left: 0.5rem;
  width: auto;
  height: 2.2em;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: none;
  cursor: pointer;
  text-decoration: underline;
}

.results-tools {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #072C8A;
}

.results-per-page,
.results-filter,
.results-sort-by {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.results-per-page > label,
.results-filter > label,
.results-sort-by > label {
  margin: 0;
  font-size: 0.875rem;
}
.results-per-page > label:after,
.results-filter > label:after,
.results-sort-by > label:after {
  content: ":";
}

#update-results-mobile {
  display: none;
}

.update-results {
  font-size: 0.875rem;
  line-height: 1;
}

@media (max-width: 47.98em) {
  .results-per-page,
.results-filter,
.results-sort-by {
    margin-bottom: 0.5rem;
    flex-basis: 100%;
    justify-content: center;
  }

  .results-per-page,
.results-sort-by {
    margin-bottom: 0.5rem;
  }

  .results-filter {
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }

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

  #update-results-mobile {
    display: block;
    margin-top: 0.5rem;
  }

  #update-results {
    display: none;
  }
}
@media (min-width: 48em) {
  .results-tools {
    margin-bottom: 2rem;
  }

  .results-filter {
    padding: 0;
  }

  .results-per-page,
.results-sort-by {
    padding: 0 1rem 0 0;
  }

  #update-results {
    margin-left: 1rem;
  }

  .title-and-sort {
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
  }
  .title-and-sort .results-title {
    flex-shrink: 1;
    margin-bottom: 0;
  }
}
/*.EPiServerForms {
    &.ValidationSuccess, &.ValidationFail {
        @extend .was-validated;
    }
}*/
.Form__Element {
  position: relative;
  max-width: 100%;
}
.Form__Element.ValidationFail .Form__Element__ValidationError {
  display: block;
}

.Form__Element,
.FormCaptcha__Refresh,
.FormCaptcha__Image,
.Form__Element__Caption,
.FormFileUpload .FormFileUpload__Input,
.FormSelection > select,
.FormTextbox__Input {
  margin-bottom: 0.5rem;
}

.ValidationRequired label:after {
  content: " (required)";
}

.FormRange {
  color: #0067b1;
}
.FormRange > span {
  display: flex;
}
.FormRange > span input {
  margin: 0 0.5rem;
  box-shadow: none;
  border: none;
}

.FormChoice legend {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  color: #0067b1;
}
.FormChoice label {
  display: block;
}
.FormChoice img {
  max-height: 2rem;
  margin-left: 0.5rem;
}

.FormSelection select {
  display: block;
}
.FormSelection select:focus {
  box-shadow: none;
}
.FormSelection select[multiple] > option {
  padding: 0.25rem;
}

.EPiServerForms button[type=submit] img {
  max-height: 1rem;
}

.FormResetButton {
  /*display: block;*/
  display: inline;
}

.FormFileUpload:hover .Form__Element__Caption, .FormFileUpload:focus .Form__Element__Caption, .FormFileUpload:active .Form__Element__Caption {
  border-color: #0067b1;
}
.FormCaptcha .FormCaptcha__Refresh, .FormCaptcha .FormCaptcha__Input {
  display: block;
}
.FormCaptcha .FormCaptcha__Image {
  max-height: 5rem;
}

/*apply the styles from Bootstrap to this control*/
/*Datepicker puts the words prev and next in the datepicker.  This hides it.*/
.ui-datepicker .ui-icon {
  color: transparent;
}

.news-detail-page article {
  padding-top: 2rem;
}
.news-detail-page article footer {
  border-top: 0.125rem solid #d9e8f3;
  margin-top: 2rem;
  padding-top: 2rem;
}
@media (min-width: 75em) {
  .news-detail-page article footer {
    margin-top: 4rem;
    padding-top: 4rem;
  }
}
.news-detail-page h1 {
  margin-bottom: 2rem;
}
@media (min-width: 75em) {
  .news-detail-page h1 {
    margin-bottom: 3rem;
  }
}

.article-meta {
  margin-bottom: 2rem;
}
@media (min-width: 75em) {
  .article-meta {
    margin-bottom: 3rem;
  }
}
.article-meta p {
  margin-bottom: 0;
}

.article-summary {
  margin-bottom: 2rem;
}
.article-summary p {
  margin-bottom: 0;
  padding-left: 1rem;
}
@media (min-width: 48em) {
  .article-summary p {
    padding-left: 2rem;
  }
}
@media (min-width: 75em) {
  .article-summary p {
    padding-left: 3rem;
  }
}
.article-summary .summary-text {
  margin-left: -0.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  border-left: 0.25rem solid #d9e8f3;
  color: #072C8A;
  background-color: transparent;
}
@media (min-width: 48em) {
  .article-summary .summary-text {
    padding-bottom: 2rem;
  }
}
@media (min-width: 75em) {
  .article-summary .summary-text {
    padding-bottom: 3rem;
  }
}

#article-toolbar {
  top: 0;
  left: 0;
  z-index: 1020;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  background-color: white;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 103, 177, 0.1);
  border-top: 0.0625rem solid #b3d1e8;
}
#article-toolbar .progress {
  flex-basis: 100%;
  margin-top: 0.5rem;
}

.article-tools {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.article-tools .article-title {
  display: none;
  color: #0067b1;
  font-size: 0.875rem;
  line-height: 1.5;
}
.article-tools .time-to-read {
  display: none;
  color: #0067b1;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
}
.article-tools .share-links {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
}
.article-tools .share-links > .btn-toolbar {
  flex-wrap: nowrap;
}
.article-tools .share-links > .btn-toolbar > :last-child {
  margin-right: 0;
}
.article-tools .share-links > .share-title {
  color: #0067b1;
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

#resize-article-text {
  margin: 0 0 0 2rem;
  background-color: #d9f5fb;
  transition: 0s;
}
#resize-article-text .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
#resize-article-text .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
#resize-article-text:hover, #resize-article-text:focus {
  background-color: #d9f5fb;
}
#resize-article-text:hover .svg-fg, #resize-article-text:focus .svg-fg {
  fill: #0067b1;
  background-color: transparent;
}
#resize-article-text:hover .svg-bg, #resize-article-text:focus .svg-bg {
  fill: #d9f5fb;
  background-color: transparent;
}
#resize-article-text:active, #resize-article-text:hover:active {
  background-color: #0067b1;
}
#resize-article-text:active .svg-fg, #resize-article-text:hover:active .svg-fg {
  fill: white;
  background-color: transparent;
}
#resize-article-text:active .svg-bg, #resize-article-text:hover:active .svg-bg {
  fill: #0067b1;
  background-color: transparent;
}
#resize-article-text > svg {
  width: 1.875em;
  height: 1.875em;
}
#resize-article-text:focus {
  border-color: #0067b1;
}

@media (min-width: 36em) {
  .article-tools .share-links {
    margin-left: auto;
  }
  .article-tools .time-to-read {
    display: block;
  }
}
@media (min-width: 62em) {
  .article-tools .article-title {
    display: block;
    flex-basis: 50%;
  }
  .article-tools .time-to-read {
    margin-left: auto;
  }
}
@media (min-width: 75em) {
  .article-tools .article-title {
    flex-basis: auto;
    padding-right: 1rem;
  }
}
@media screen and (min-width: 75em) and (-ms-high-contrast: active), (min-width: 75em) and (-ms-high-contrast: none) {
  .article-tools .article-title {
    flex-basis: 50%;
  }
}
@media (min-width: 75em) {
  .article-tools .time-to-read {
    margin: 0 1rem 0 auto;
  }
}
/* Extra styles for non-JavaScript fall-back */
.no-js #resize-article-text {
  display: none;
}

.sitemap-page h1 {
  text-align: center;
}
.sitemap-page .sitemap .first-level, .sitemap-page .sitemap .col {
  margin-bottom: 2rem;
}
.sitemap-page .sitemap .link-list {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  line-height: 1.5;
}
.sitemap-page .sitemap .link-list li {
  margin-bottom: 1rem;
}
.sitemap-page .sitemap .link-list a {
  color: #595959;
}
.sitemap-page .sitemap h2, .sitemap-page .sitemap h3 {
  margin-bottom: 0;
}

@media (min-width: 62em) {
  .sitemap-page .sitemap .link-list {
    line-height: 1.2;
  }
}
/*
    SickKids - Main Styles
*/
/* 
    Abstracts
    - Variables, functions, mixins, etc.
    - These shouldn't be outputting anything
*/
/* 
    Bootstrap
*/
/*
    Base styles
    - Basic element styles that are not vendor variables,
    - Basic element styles that override vendor properties that don't have variables
    - Other miscellaneous non-vendor basic element styles, like this project's basic SVG settings.
*/
/*
    Features
    - We do not add dozens of _index files just to clean this up, it adds lots of files
      and is hard to keep track when editing multiple _index at once.
    - We do not "hide" managing every @use inside _index files in each parent
      component folder either, like having all the cards in a card/_index.scss.
    - Only complex components should use an index, like the header that uses multiple child sheets.
*/
/* 
    Pages
*/