/*-----------------------------------------------------------------------------------------
	/Less imports
-----------------------------------------------------------------------------------------*/
@font-face {
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHrv4kjgoGqM7E_Ccs8.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHpv4kjgoGqM7EPCw.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3_-gc4A.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3t-4c4A.ttf) format('truetype');
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/barlow/v5/7cHqv4kjgoGqM7E3q-0c4A.ttf) format('truetype');
}
/* https://github.com/hankchizljaw/modern-css-reset */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
header,
footer,
article,
main,
nav {
  display: block;
}
/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}
/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
button,
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
/*-----------------------------------------------------------------------------------------
	/Less variables / mixins
-----------------------------------------------------------------------------------------*/
.shadow {
  -webkit-box-shadow: 0 40px 30px -30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 40px 30px -30px rgba(0, 0, 0, 0.2);
}
.shadow-hover {
  -webkit-box-shadow: 0 23px 20px -20px rgba(0, 0, 0, 0.55);
          box-shadow: 0 23px 20px -20px rgba(0, 0, 0, 0.55);
}
.bg--primary {
  background-color: #D1213E;
  color: white;
}
.bg--secondary {
  background-color: #FDB813;
}
.bg--tertiary {
  background-color: #F5821F;
}
.bg--grey {
  background-color: #ECEDEF;
}
.bg--black {
  background: #000;
  color: white;
}
/*-----------------------------------------------------------------------------------------
	/Aspect ratios
-----------------------------------------------------------------------------------------*/
.aspect-ratio {
  position: relative;
}
.aspect-ratio:after {
  content: "";
  width: 100%;
  display: block;
}
.aspect-ratio--16x9:after {
  padding-bottom: 56.25%;
}
.aspect-ratio--4x3:after {
  padding-bottom: 75%;
}
.aspect-ratio--6x4:after {
  padding-bottom: 66.6%;
}
.aspect-ratio--4x6:after {
  padding-bottom: 147%;
}
.aspect-ratio--1x1:after {
  padding-bottom: 100%;
}
.image--cover {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}
/*-----------------------------------------------------------------------------------------
	/Mixins + utilities
-----------------------------------------------------------------------------------------*/
.scrollbars ::-webkit-scrollbar {
  width: 8px;
}
.scrollbars ::-webkit-scrollbar-track {
  border-radius: 10em;
}
.scrollbars ::-webkit-scrollbar-thumb {
  border-radius: 10em;
  background: #D1213E;
}
.webkit-scrolling {
  -webkit-overflow-scrolling: touch;
}
.webkit-tap {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.pseudo {
  content: "";
  display: block;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.invisible {
  visibility: hidden;
}
.inline-block {
  display: inline-block;
}
.relative {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
@media (min-width: 43.75em) {
  .m\:text-center {
    text-align: center;
  }
}
@media (min-width: 62.5em) {
  .l\:text-center {
    text-align: center;
  }
  .l\:text-left {
    text-align: left;
  }
  .l\:pr-1 {
    padding-right: 1em;
  }
  .l\:pr-4 {
    padding-right: 4em;
  }
  .l\:pr-6 {
    padding-right: 6em;
  }
  .l\:pl-1 {
    padding-left: 1em;
  }
  .l\:pl-4 {
    padding-left: 4em;
  }
  .l\:pl-6 {
    padding-left: 6em;
  }
}
@media (min-width: 62.5em) {
  .l\:hidden {
    display: none;
  }
}
.nowrap {
  white-space: nowrap;
}
.b-radius {
  border-radius: 12px;
}
.ml-1 {
  margin-left: 1em;
}
.mb-1 {
  margin-bottom: 1em;
}
.pr-1 {
  padding-right: 1em;
}
.pt-2 {
  padding-top: 2em;
}
/*------------------------------------------------------------------------------
    /Flex
------------------------------------------------------------------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex-none {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.flex-no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 43.75em) {
  .m\:justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .m\:justify-around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .m\:justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .m\:flex-none {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  .m\:flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
/*------------------------------------------------------------------------------
    /Grid - rows
------------------------------------------------------------------------------*/
.grid-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/*------------------------------------------------------------------------------
    /Grid - columns
------------------------------------------------------------------------------*/
.grid-col {
  width: 100%;
}
.grid-col--grow {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.has-gutters {
  margin-left: -1.25em;
}
.has-gutter {
  padding-left: 1.25em;
}
.has-gutters-l {
  margin-left: -4em;
}
.has-gutter-l {
  padding-left: 4em;
}
.xs-1 {
  width: 8.3333333%;
}
.xs-2 {
  width: 16.66666667%;
}
.xs-3 {
  width: 25%;
}
.xs-4 {
  width: 33.33333333%;
}
.xs-5 {
  width: 41.66666667%;
}
.xs-6 {
  width: 50%;
}
.xs-7 {
  width: 58.33333333%;
}
.xs-8 {
  width: 66.66666%;
}
.xs-9 {
  width: 75%;
}
.xs-10 {
  width: 83.33333333%;
}
.xs-11 {
  width: 91.66666667;
}
.xs-12 {
  width: 100%;
}
@media (min-width: 31.25em) {
  .s-1 {
    width: 8.3333333%;
  }
  .s-2 {
    width: 16.66666667%;
  }
  .s-2b {
    width: 20%;
  }
  .s-3 {
    width: 25%;
  }
  .s-4 {
    width: 33.33333333%;
  }
  .s-5 {
    width: 41.66666667%;
  }
  .s-6 {
    width: 50%;
  }
  .s-7 {
    width: 58.33333333%;
  }
  .s-8 {
    width: 66.66666%;
  }
  .s-9 {
    width: 75%;
  }
  .s-10 {
    width: 83.33333333%;
  }
  .s-11 {
    width: 91.66666667;
  }
  .s-12 {
    width: 100%;
  }
  .s-auto {
    width: auto;
  }
}
@media (min-width: 43.75em) {
  .m-1 {
    width: 8.3333333%;
  }
  .m-2 {
    width: 16.66666667%;
  }
  .m-2b {
    width: 20%;
  }
  .m-3 {
    width: 25%;
  }
  .m-4 {
    width: 33.33333333%;
  }
  .m-5 {
    width: 41.66666667%;
  }
  .m-6 {
    width: 50%;
  }
  .m-7 {
    width: 58.33333333%;
  }
  .m-8 {
    width: 66.66666%;
  }
  .m-9 {
    width: 75%;
  }
  .m-10 {
    width: 83.33333333%;
  }
  .m-11 {
    width: 91.66666667;
  }
  .m-12 {
    width: 100%;
  }
  .m-auto {
    width: auto;
  }
}
@media (min-width: 62.5em) {
  .l-1 {
    width: 8.3333333%;
  }
  .l-2 {
    width: 16.66666667%;
  }
  .l-2b {
    width: 20%;
  }
  .l-3 {
    width: 25%;
  }
  .l-4 {
    width: 33.33333333%;
  }
  .l-5 {
    width: 41.66666667%;
  }
  .l-6 {
    width: 50%;
  }
  .l-7 {
    width: 58.33333333%;
  }
  .l-8 {
    width: 66.66666%;
  }
  .l-9 {
    width: 74.9999999%;
  }
  .l-10 {
    width: 83.33333333%;
  }
  .l-11 {
    width: 91.66666667;
  }
  .l-12 {
    width: 100%;
  }
  .l-auto {
    width: auto;
  }
}
@media (min-width: 80em) {
  .xl-1 {
    width: 8.3333333%;
  }
  .xl-2 {
    width: 16.66666667%;
  }
  .xl-2b {
    width: 20%;
  }
  .xl-3 {
    width: 25%;
  }
  .xl-4 {
    width: 33.33333333%;
  }
  .xl-5 {
    width: 41.66666667%;
  }
  .xl-6 {
    width: 50%;
  }
  .xl-7 {
    width: 58.33333333%;
  }
  .xl-8 {
    width: 66.66666%;
  }
  .xl-9 {
    width: 74.9999999%;
  }
  .xl-10 {
    width: 83.33333333%;
  }
  .xl-11 {
    width: 91.66666667;
  }
  .xl-12 {
    width: 100%;
  }
  .xl-auto {
    width: auto;
  }
}
@media (min-width: 93.75em) {
  .xxl-1 {
    width: 8.3333333%;
  }
  .xxl-2 {
    width: 16.66666667%;
  }
  .xxl-2b {
    width: 20%;
  }
  .xxl-3 {
    width: 25%;
  }
  .xxl-4 {
    width: 33.33333333%;
  }
  .xxl-5 {
    width: 41.66666667%;
  }
  .xxl-6 {
    width: 50%;
  }
  .xxl-7 {
    width: 58.33333333%;
  }
  .xxl-8 {
    width: 66.66666%;
  }
  .xxl-9 {
    width: 74.9999999%;
  }
  .xxl-10 {
    width: 83.33333333%;
  }
  .xxl-11 {
    width: 91.66666667;
  }
  .xxl-12 {
    width: 100%;
  }
  .xxl-auto {
    width: auto;
  }
}
/*-----------------------------------------------------------------------------------------
	/Whitespace
-----------------------------------------------------------------------------------------*/
.section-inner {
  padding-left: 2em;
  padding-right: 2em;
}
@media (min-width: 43.75em) {
  .section-inner {
    padding-left: 5em;
    padding-right: 5em;
  }
}
@media (min-width: 62.5em) {
  .section-inner {
    padding-left: 5em;
    padding-right: 5em;
  }
}
@media (min-width: 80em) {
  .section-inner {
    padding-left: 7em;
    padding-right: 7em;
  }
}
.section-inner--pb {
  padding-bottom: 4em;
}
@media (min-width: 43.75em) {
  .section-inner--pb {
    padding-bottom: 5em;
  }
}
@media (min-width: 80em) {
  .section-inner--pb {
    padding-bottom: 7.5em;
  }
}
.section-inner--pt {
  padding-top: 4em;
}
@media (min-width: 43.75em) {
  .section-inner--pt {
    padding-top: 5em;
  }
}
@media (min-width: 80em) {
  .section-inner--pt {
    padding-top: 7.5em;
  }
}
.section-inner--py {
  padding-top: 4em;
  padding-bottom: 4em;
}
@media (min-width: 43.75em) {
  .section-inner--py {
    padding-top: 5em;
    padding-bottom: 5em;
  }
}
@media (min-width: 80em) {
  .section-inner--py {
    padding-top: 7.5em;
    padding-bottom: 7.5em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Whitespace - small
-----------------------------------------------------------------------------------------*/
.section-inner--s {
  padding-left: 2em;
  padding-right: 2em;
}
@media (min-width: 43.75em) {
  .section-inner--s {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (min-width: 62.5em) {
  .section-inner--s {
    padding-left: 4em;
    padding-right: 4em;
  }
}
@media (min-width: 80em) {
  .section-inner--s {
    padding-left: 5em;
    padding-right: 5em;
  }
}
.section-inner--pb-s {
  padding-bottom: 2em;
}
@media (min-width: 43.75em) {
  .section-inner--pb-s {
    padding-bottom: 4em;
  }
}
.section-inner--pt-s {
  padding-top: 2em;
}
@media (min-width: 43.75em) {
  .section-inner--pt-s {
    padding-top: 4em;
  }
}
.section-inner--py-s {
  padding-top: 3em;
  padding-bottom: 3em;
}
@media (min-width: 43.75em) {
  .section-inner--py-s {
    padding-top: 4em;
    padding-bottom: 4em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Whitespace - inset
-----------------------------------------------------------------------------------------*/
@media (min-width: 43.75em) {
  .section--inset {
    margin-left: 1em;
    margin-right: 1em ;
  }
}
@media (min-width: 62.5em) {
  .section--inset {
    margin-left: 3.5em;
    margin-right: 3.5em;
  }
}
@media (min-width: 43.75em) {
  .section--inset--t {
    margin-top: 2.5em;
  }
}
@media (min-width: 62.5em) {
  .section--inset--t {
    margin-top: 3.5em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Section overflow hor scroll
-----------------------------------------------------------------------------------------*/
.section-overflow--md {
  margin-left: -2em;
  margin-right: -2em;
}
@media (min-width: 43.75em) {
  .section-overflow--md {
    margin-left: -3em;
    margin-right: -3em;
  }
}
@media (min-width: 62.5em) {
  .section-overflow--md {
    margin-left: auto;
    margin: auto;
  }
}
.section-overflow-inner--md {
  padding-right: 2em;
  padding-left: 2em;
}
@media (min-width: 43.75em) {
  .section-overflow-inner--md {
    padding-right: 3em;
    padding-left: 3em;
  }
}
@media (min-width: 62.5em) {
  .section-overflow-inner--md {
    padding-right: 0;
    padding-left: 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/Containment - max widths
-----------------------------------------------------------------------------------------*/
@media (min-width: 43.75em) {
  .mw-100 {
    max-width: 1600px;
  }
  .mw-90 {
    max-width: 1440px;
  }
  .mw-80 {
    max-width: 1280px;
  }
  .mw-70 {
    max-width: 1120px;
  }
  .mw-60 {
    max-width: 960px;
  }
  .mw-50 {
    max-width: 800px;
  }
  .mw-40 {
    max-width: 640px;
  }
  .mw-32 {
    max-width: 512px;
  }
}
/*------------------------------------------------------------------------------
    /Bespoke padding + margins
------------------------------------------------------------------------------*/
.mx-auto {
  margin-right: auto;
  margin-left: auto;
}
.mt-1 {
  margin-top: 1em;
}
.mt-2 {
  margin-top: 2em;
}
@media (min-width: 62.5em) {
  .l\:pl-3 {
    padding-left: 3em;
  }
  .l\:pl-4 {
    padding-left: 4em;
  }
  .l\:pl-5 {
    padding-left: 5em;
  }
}
.sf-toolbar {
  display: none !important;
}
/*-----------------------------------------------------------------------------------------
	/Base
-----------------------------------------------------------------------------------------*/
html,
body {
  padding: 0;
  margin: 0;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.7;
  color: #000;
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  background-color: white;
}
@media (min-width: 80em) {
  body {
    font-size: 1.1em;
  }
}
a {
  color: #D1213E;
  -webkit-transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out;
  text-decoration: none;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
p a,
.link,
.wysiwyg a,
.link-inside__text {
  border-bottom: 2px solid rgba(209, 33, 62, 0.2);
  -webkit-transition: 0.2s border-color, 0.2s background-color, 0.2s color;
  transition: 0.2s border-color, 0.2s background-color, 0.2s color;
  color: #D1213E;
  padding: 0 0 0.3em;
}
p a:hover,
.link:hover,
.wysiwyg a:hover,
.link-inside__text:hover,
p a:focus,
.link:focus,
.wysiwyg a:focus,
.link-inside__text:focus {
  border-bottom: 2px solid #D1213E;
}
a[href^="tel:"] {
  color: #000;
}
.link-inside:hover .link-inside__text,
.link-inside:focus .link-inside__text {
  border-color: #D1213E;
}
.link--white {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.link--white:hover,
.link--white:focus {
  border-color: white;
}
.no-outline:focus {
  outline: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #000;
  margin: 3.5em 0;
  padding: 0;
  clear: both;
}
html ::-moz-selection {
  background: #FDB813;
}
html ::selection {
  background: #FDB813;
}
html ::-moz-selection {
  background: #FDB813;
}
iframe {
  border: none;
}
figure {
  margin: 0;
}
figcaption {
  margin: 1em 0 0;
  font-size: 0.9375em;
  max-width: 54em;
  color: #707377;
  line-height: 1.5;
}
b,
strong {
  font-weight: 500;
}
.inline-icon-wrap {
  display: inline;
  white-space: nowrap;
}
.icon {
  display: inline-block;
  text-indent: -5000px;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  background-image: url('/images/sprites.svg?v=1621833036994');
  background-repeat: no-repeat;
}
.footnote {
  max-width: 30em;
  font-size: 0.88em;
}
@media (min-width: 62.5em) {
  .footnote {
    max-width: 34em;
    margin-left: auto;
    margin-right: auto;
  }
}
.footnote--left {
  margin-left: 0;
}
.footnote--margin-top {
  margin-top: 2em;
}
.footnote--disclaimer {
  color: #D1213E;
}
mark {
  background-color: #FDB813;
}
video,
audio {
  width: 100%;
}
.list-reset {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
blockquote {
  border-left: 5px solid #F5821F;
  margin: 2em 0;
  padding: 0 0 0 2.5em;
  font-style: italic;
  max-width: 36em;
}
/*-----------------------------------------------------------------------------------------
	/Tables
-----------------------------------------------------------------------------------------*/
table {
  width: 100%;
  font-size: 0.9em;
  table-layout: fixed;
  border-collapse: collapse;
}
td,
th {
  border-bottom: 1px solid #DADCE0;
  padding: 0.8rem;
  text-align: left;
  vertical-align: top;
}
tr:last-child td,
tr:last-child th {
  border-bottom: none;
}
th {
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
/*-----------------------------------------------------------------------------------------
	/Headings
-----------------------------------------------------------------------------------------*/
.page-heading {
  font-weight: 700;
  line-height: 1.1;
  font-size: 3em;
}
@media (min-width: 43.75em) {
  .page-heading {
    font-size: 3.3em;
  }
}
.page-heading + .prefix-heading {
  margin-top: 1em;
}
.page-heading--dec:after {
  content: "";
  width: 6.125rem;
  border-top: 2px solid;
  display: block;
  margin: 4.125rem 0 2.3rem;
}
@media (min-width: 43.75em) {
  .page-heading--dec:after {
    width: 6.125rem;
  }
}
.prefix-heading--module-header {
  margin-bottom: 0.4em;
}
.page-heading--article {
  font-weight: 800;
}
@media (min-width: 43.75em) {
  .page-heading--article {
    font-size: 4.25em;
  }
}
@media (min-width: 80em) {
  .page-heading--article {
    font-size: 4.25em;
  }
}
.page-heading--subheading {
  font-size: 2.125em;
  margin-top: 0.1em;
}
@media (min-width: 43.75em) {
  .page-heading--subheading {
    font-size: 2.32em;
  }
}
.page-headings {
  margin-bottom: 2em;
}
@media (min-width: 62.5em) {
  .page-headings {
    margin-bottom: 2.5em;
  }
}
.section-heading {
  font-weight: 700;
  line-height: 1.1;
  font-size: 2.4em;
}
@media (min-width: 43.75em) {
  .section-heading {
    font-size: 2.375em;
  }
}
.section-headings {
  margin-bottom: 1.5em;
}
@media (min-width: 43.75em) {
  .section-headings {
    margin-bottom: 1.5em;
  }
}
@media (min-width: 43.75em) {
  .section-headings--lg {
    margin-bottom: 3em;
  }
}
.block-heading {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4em;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 43.75em) {
  .block-heading {
    font-size: 1.6em;
  }
}
.block-heading small {
  font-size: 0.8em;
  font-weight: normal;
}
.block-headings {
  margin-bottom: 0.7em;
}
.block-headings--para {
  margin-bottom: 2em;
}
.copy-heading {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.22em;
}
.prefix-headings {
  margin-bottom: 0.5em;
}
.prefix-heading {
  font-weight: 500;
  font-size: 1.2em;
  line-height: 1.6;
}
.prefix-heading--small {
  font-size: 1em;
  font-weight: 500;
}
/*-----------------------------------------------------------------------------------------
	/Images
-----------------------------------------------------------------------------------------*/
.image-bg {
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.1);
  background-repeat: no-repeat;
}
.image-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
img {
  border: none;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 100%;
}
.avatar--md {
  width: 40px;
  height: 40px;
}
.avatar--l {
  width: 80px;
  height: 80px;
}
@media (min-width: 43.75em) {
  .avatar--l {
    width: 128px;
    height: 128px;
  }
}
.icon--avatar-placehold {
  background-position: -303px -102px;
}
.icon--avatar-placehold.avatar--l {
  background-position: -351px -103px;
}
.button--avatar-edit__avatar {
  -webkit-box-shadow: 0 0px 0px 0 #D1213E inset;
          box-shadow: 0 0px 0px 0 #D1213E inset;
  -webkit-transition: 0.2s -webkit-box-shadow cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s -webkit-box-shadow cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s box-shadow cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s box-shadow cubic-bezier(0.86, 0, 0.07, 1), 0.2s -webkit-box-shadow cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
}
.button--avatar-edit:hover .button--avatar-edit__avatar,
.button--avatar-edit:focus .button--avatar-edit__avatar {
  -webkit-box-shadow: 0 0px 0px 5px #D1213E inset;
          box-shadow: 0 0px 0px 5px #D1213E inset;
}
.button--avatar-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button--avatar-edit__dec {
  width: 1.5em;
  background: #000;
  height: 1px;
  content: "";
  display: block;
  margin: 0 1em;
}
/*-----------------------------------------------------------------------------------------
	/Main
-----------------------------------------------------------------------------------------*/
.app-main,
.public-main {
  margin-top: 4.1875em;
}
@media (min-width: 43.75em) {
  .app-main,
  .public-main {
    margin-top: 5em;
  }
}
.app-main ::-webkit-scrollbar {
  width: 14px;
}
.app-main ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 14px 14px transparent;
          box-shadow: inset 0 0 14px 14px transparent;
  border: solid 4px transparent;
}
.app-main ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 14px 14px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 0 14px 14px rgba(0, 0, 0, 0.2);
  border: solid 4px transparent;
  border-radius: 14px;
}
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.button {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  display: block;
  width: 100%;
  padding: 1.3em 2.7em;
  letter-spacing: 0.05em;
  font-size: 0.925em;
  font-weight: 500;
  border: none;
  border-radius: 20em;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0px solid #333;
  text-align: center;
  cursor: pointer;
  border: 1px solid;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background-color, border, color, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border, color, -webkit-box-shadow, -webkit-transform;
  transition-property: background-color, border, box-shadow, color, transform;
  transition-property: background-color, border, box-shadow, color, transform, -webkit-box-shadow, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.button:hover,
.button:focus {
  -webkit-box-shadow: 0 23px 20px -20px rgba(0, 0, 0, 0.55);
          box-shadow: 0 23px 20px -20px rgba(0, 0, 0, 0.55);
}
.button:disabled {
  pointer-events: none;
  opacity: 0.3;
  background: #000 !important;
  border-color: #000 !important;
  color: #aaa !important;
}
@media (min-width: 31.25em) {
  .button {
    display: inline-block;
    width: auto;
    padding: 1.4em 3.3em;
  }
}
.button-label {
  display: inline-block;
  vertical-align: middle;
}
/*-----------------------------------------------------------------------------------------
	/Button variants
-----------------------------------------------------------------------------------------*/
.button--sm {
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 0.85em;
}
.button--primary {
  color: white;
  background: #D1213E;
  border-color: #D1213E;
}
.button--secondary {
  color: white;
  border-color: #D1213E;
  background: #D1213E;
}
.button--secondary:hover,
.button--secondary:focus {
  border-color: #D1213E;
  background: #D1213E;
}
.button--outline-white {
  color: white;
  border-color: white;
}
.button--outline-white:hover,
.button--outline-white:focus {
  border-color: #D1213E;
  background: #D1213E;
}
.button--text {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: normal;
  background: none;
  border: none;
  padding: 0;
  color: #D1213E;
  border-bottom: 1px solid rgba(209, 33, 62, 0.2);
  border-radius: 0;
  padding: 0 0 0.1em;
  text-transform: none;
}
.button--text:hover,
.button--text:focus {
  border-bottom-color: #D1213E;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.button--dropdown-white {
  color: white;
}
.link--view-all {
  color: #000;
}
.link--view-all:hover,
.link--view-all:focus {
  color: #D1213E;
}
.link--view-all:hover .icon--arrow-r-s--black,
.link--view-all:focus .icon--arrow-r-s--black {
  background-position: -50px -75px;
}
.button--form-cancel {
  margin-top: 1em;
}
@media (min-width: 31.25em) {
  .button--form-cancel {
    margin-top: 0;
    margin-left: 1em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Button icons
-----------------------------------------------------------------------------------------*/
.icon--r {
  margin-left: 0.4em;
}
.icon--l {
  margin-right: 0.4em;
}
.icon--arrow-down,
.icon--arrow-down--white {
  width: 10px;
  height: 7px;
  background-position: -350px -25px;
}
.icon--arrow-down--white {
  background-position: -375px 0;
}
.icon--arrow-l,
.icon--arrow-l--white {
  background-position: -200px 0;
  width: 21px;
  height: 18px;
}
.icon--arrow-l--white {
  background-position: -200px -26px;
}
.icon--arrow-r-s--red,
.icon--arrow-l-s--red,
.icon--arrow-r-s--black,
.icon--arrow-l-s--black {
  width: 15px;
  height: 14px;
  background-position: -50px -50px;
}
.icon--arrow-r-s--red {
  background-position: -50px -75px;
}
.icon--arrow-l-s--red {
  background-position: -75px -75px;
}
.icon--arrow-l-s--black {
  background-position: -75px -50px;
}
.icon--starred {
  background-position: -150px 0;
  width: 23px;
  height: 22px;
}
.icon--comment-indicator {
  width: 24px;
  height: 22px;
  background-position: -100px -50px;
}
/*-----------------------------------------------------------------------------------------
	/Feature icons
-----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------
	/Forms
-----------------------------------------------------------------------------------------*/
fieldset {
  border: none;
}
.input--txt,
select,
textarea {
  border: 1px solid black;
  background: white;
  color: #000;
  padding: 1.1em 1.5em;
  border-radius: 0;
  width: 100%;
  -webkit-transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, 0.2s -webkit-box-shadow ease-in-out;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, 0.2s -webkit-box-shadow ease-in-out;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, 0.2s box-shadow ease-in-out;
  transition: background-color 0.2s ease-in-out, border 0.2s ease-in-out, 0.2s box-shadow ease-in-out, 0.2s -webkit-box-shadow ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1em;
  outline: none;
  -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0);
          box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0);
}
select {
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.select {
  position: relative;
}
.select:before {
  content: "";
  background: url('/images/icon--select.svg') no-repeat;
  position: absolute;
  width: 13px;
  height: 9px;
  right: 1.2em;
  top: 50%;
  margin-top: -3.5px;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
select:hover,
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
option {
  color: #000;
}
textarea {
  height: 10em;
}
.input--txt:hover,
textarea:hover,
select:hover {
  -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.2);
  border-color: #000;
  outline: none;
}
.input--txt:focus,
textarea:focus,
select:focus {
  -webkit-box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.2);
  border-color: #000;
  background: white;
}
.label {
  margin-bottom: 0.4em;
  display: block;
}
legend {
  margin-bottom: 0.4em;
}
.label--margin-bot {
  display: block;
  margin: 0 0 0.5em;
}
.checkbox-item {
  position: relative;
}
.checkbox-item input {
  position: absolute;
  top: 0.3em;
}
.checkbox-item label {
  cursor: pointer;
  display: block;
  padding-left: 1.7em;
  font-weight: normal;
}
.form-field-group {
  margin-bottom: 2em;
}
.form-fields {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.form-fields--mw {
  max-width: 26em;
}
.form-field {
  margin: 0 0 1em;
  list-style-type: none;
  text-align: left;
  padding: 0;
}
.form-field:last-child {
  margin-bottom: 0;
}
.form-field span.required {
  display: none;
  margin: 0 0 0 0.3em;
}
.field--intro {
  margin-bottom: 3em;
}
.field--submit {
  margin-top: 2em;
}
@media (min-width: 31.25em) {
  .field--submit {
    text-align: inherit;
  }
}
.form-field--footnote {
  margin-top: 2em;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
input[type=date] {
  min-height: 4.1em;
}
.field--file.visuallyhidden input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.field--text--toggle {
  margin-top: -1.5em;
}
.sign-in-cta {
  margin-top: 3em;
  font-size: 0.9375em;
}
/*-----------------------------------------------------------------------------------------
	/Date picker
-----------------------------------------------------------------------------------------*/
.icon--date-pick {
  display: none;
}
@media (min-width: 37.5em) {
  .icon--date-pick {
    display: block;
    background-position: -350px 0;
    width: 31px;
    height: 25px;
    top: 1.6em;
    left: 1.9em;
    position: absolute;
    pointer-events: none;
  }
}
@media (min-width: 37.5em) {
  .field--date label {
    padding-left: 2.5em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Inline labels
-----------------------------------------------------------------------------------------*/
.form--inline-labels .form-field {
  position: relative;
}
@media (min-width: 37.5em) {
  .form--inline-labels .field--text .label,
  .form--inline-labels .field--date .label,
  .form--inline-labels .field--email .label {
    position: absolute;
    top: 0.2em;
    left: 0;
    pointer-events: none;
    z-index: 1;
  }
  .form--inline-labels .field--choice .label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .form--inline-labels .field--choice select {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-top: 0.2em;
  }
  .form--inline-labels .field--choice .select:before {
    margin-top: -12px;
  }
  .form--inline-labels .field--textarea textarea {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    padding-left: 0;
    padding-top: 0.2em;
  }
  .form--inline-labels .input--txt {
    padding-left: 13em;
    padding-top: 0.2em;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background: none;
  }
}
@media (min-width: 37.5em) {
  .form--inline-labels--sm .input--txt {
    padding-left: 9em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Inline choice options
-----------------------------------------------------------------------------------------*/
.form--inline-choice .checkbox-item {
  display: inline-block;
  margin-right: 1em;
}
/*-----------------------------------------------------------------------------------------
	/Validation
-----------------------------------------------------------------------------------------*/
.validation-error-global {
  background: #D1213E;
  color: white;
  text-align: center;
  padding: 1em 2em;
  border-radius: 5px;
  margin-bottom: 3em;
  font-size: 0.9em;
  font-weight: 500;
}
.validation-error-global--success {
  background: #FDB813;
  color: #000;
}
.validationErrors {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.field--choice .validationErrors,
.field--checkbox .validationErrors {
  margin-top: -1.1em;
}
.field--choice.field--dropdown .validationErrors {
  margin-top: 0;
}
.formValidationError {
  background: #D1213E;
  color: white;
  line-height: normal;
  font-size: 0.8em;
  overflow: hidden;
  width: auto;
  position: relative;
  padding: 0.8em 1.1em;
  display: inline-block;
  border-radius: 0 0 5px 5px;
  font-weight: 500;
}
.field--checkbox .formValidationError,
.field--choice .formValidationError {
  margin: 2.4em 0 0;
  border-radius: 5px;
}
.formValidationError__choice {
  border: none;
}
.formValidationError--image-size {
  margin-top: 1.3em;
  max-width: 16em;
  padding: 0;
}
.formValidationError--image-size:before {
  display: none;
}
/*-----------------------------------------------------------------------------------------
	/Checkboxes,radios
-----------------------------------------------------------------------------------------*/
input[type=radio],
input[type=checkbox] {
  margin-left: 0;
}
.field-choice-item {
  position: relative;
}
.field-choice-item__label {
  cursor: pointer;
}
.field-choice-item--inline {
  display: inline-block;
  margin: 0 0.9em 0 0;
}
.checkbox-item--styled input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.checkbox-item--styled label {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 0.2em;
}
.checkbox-item--styled input:focus + label:before,
.checkbox-item--styled input:hover + label:before {
  border-color: #D1213E;
}
.checkbox-item--styled label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: white;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0.2em;
  -webkit-transition: 0.2s border, 0.2s background-color;
  transition: 0.2s border, 0.2s background-color;
}
.checkbox-item--styled input:checked + label:before {
  background-color: #D1213E;
  border-color: #D1213E;
  display: inline-block;
  text-indent: -5000px;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  background-image: url('/images/sprites.svg?v=1621833036994');
  background-repeat: no-repeat;
  background-position: -445px 5px;
}
/*-----------------------------------------------------------------------------------------
	/App header
-----------------------------------------------------------------------------------------*/
.app-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1.5em;
  height: 4.1875em;
  border-bottom: 1px solid #DADCE0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 4;
  -webkit-transition: 0.3s -webkit-transform ease;
  transition: 0.3s -webkit-transform ease;
  transition: 0.3s transform ease;
  transition: 0.3s transform ease, 0.3s -webkit-transform ease;
}
@media (min-width: 43.75em) {
  .app-header {
    height: 5em;
    padding: 0 2.5em;
  }
}
.nav-up .app-header {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.app-logo-link {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  margin-right: 1em;
}
@media (min-width: 43.75em) {
  .app-logo-link {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.app-logo--desktop {
  display: none;
}
@media (min-width: 80em) {
  .app-logo--desktop {
    display: block;
  }
}
.app-logo--mobile {
  margin-top: -0.125em;
  margin-left: -0.0625em;
}
@media (min-width: 80em) {
  .app-logo--mobile {
    display: none;
  }
}
.button--module-nav-header {
  display: none;
}
.template--has-module-nav .button--module-nav-header {
  display: block;
  width: 44px;
  height: 44px;
  margin-right: 0.6em;
  margin-left: -0.6em;
}
@media (min-width: 43.75em) {
  .template--has-module-nav .button--module-nav-header {
    display: none;
  }
}
.icon--module-nav-header-toggle {
  width: 23px;
  height: 16px;
  background-position: -450px -50px;
  margin-top: -6px;
}
.avatar--header {
  margin-top: 0px;
  margin-right: -7px;
}
@media (min-width: 43.75em) {
  .avatar--header {
    margin-top: 0;
    margin-right: 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/User nav
-----------------------------------------------------------------------------------------*/
.button--user-nav {
  cursor: default;
  padding: 1.4em 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@media (min-width: 43.75em) {
  .button--user-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}
.user-nav__items {
  position: relative;
}
.user-nav__user {
  margin-left: 0.7em;
  line-height: 1.4;
}
.user-nav__item--level1 {
  cursor: default;
}
.user-nav__workspace {
  display: none;
}
@media (min-width: 43.75em) {
  .user-nav__workspace {
    display: block;
    color: #707377;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75em;
    overflow: hidden;
    max-width: 23em;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.user-nav__name {
  display: none;
}
@media (min-width: 43.75em) {
  .user-nav__name {
    display: block;
    font-weight: 500;
    font-size: 0.9375em;
  }
}
.dropdown-items--level2.dropdown-items--level2--user {
  margin-top: 4.65em;
  width: 15.5em;
  top: 0;
  right: 0;
  left: auto;
  margin-right: -1.55em;
}
@media (min-width: 43.75em) {
  .dropdown-items--level2.dropdown-items--level2--user {
    margin-top: -5px;
    width: 16em;
    left: -0.9375rem;
    right: auto;
    top: auto;
  }
}
@media (min-width: 80em) {
  .dropdown-items--level2.dropdown-items--level2--user {
    margin-top: -3px;
  }
}
.dropdown-items--level2.dropdown-items--level2--user .dropdown-link__subtext {
  font-size: 0.8em;
}
/*-----------------------------------------------------------------------------------------
	/Module indicator
-----------------------------------------------------------------------------------------*/
.module-indicator {
  display: none;
}
@media (min-width: 43.75em) {
  .module-indicator {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 5em;
    padding: 0.45em 2.5em 0.75em;
    height: 2.55em;
    background: white;
    border-bottom: 1px solid #DADCE0;
    color: #707377;
    z-index: 3;
    -webkit-transition: 0.3s -webkit-transform ease;
    transition: 0.3s -webkit-transform ease;
    transition: 0.3s transform ease;
    transition: 0.3s transform ease, 0.3s -webkit-transform ease;
  }
}
.nav-up .module-indicator {
  -webkit-transform: translateY(-5em);
      -ms-transform: translateY(-5em);
          transform: translateY(-5em);
}
.module-indicator__txt {
  font-size: 0.9375em;
}
.module-indicator__saved-status:before {
  content: "";
  width: 4px;
  background: #707377;
  height: 4px;
  display: inline-block;
  margin: -0.2em 1em 0 0.7em;
  vertical-align: middle;
  border-radius: 100%;
}
/*-----------------------------------------------------------------------------------------
	/Footer
-----------------------------------------------------------------------------------------*/
.site-footer {
  padding-top: 2.5rem;
  font-size: 0.875em;
}
@media (min-width: 43.75em) {
  .site-footer {
    padding-top: 3rem;
  }
}
@media (min-width: 43.75em) {
  .site-footer__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.footer-row__1 {
  border-bottom: 1px solid #000;
  padding-bottom: 2.5rem;
  padding-top: 0.5rem;
}
@media (min-width: 43.75em) {
  .footer-row__1 {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: 0;
  }
}
.footer-row__2 {
  padding-top: 2rem;
}
@media (min-width: 43.75em) {
  .footer-row__2 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 0;
    margin-top: 1rem;
  }
}
@media (min-width: 43.75em) {
  .template--has-module-nav .site-footer {
    margin-left: 4.55em;
    padding-top: 2.5rem;
  }
}
@media (min-width: 80em) {
  .template--has-module-nav .site-footer {
    margin-left: 5.45em;
  }
}
@media (min-width: 87.5em) {
  .template--has-module-nav .site-footer {
    padding-right: 7.5em;
  }
}
.site-footer__social {
  margin-right: 1.5rem;
}
@media (min-width: 43.75em) {
  .site-footer__social {
    margin-right: 0;
  }
}
.site-footer__copyright {
  font-size: 0.9375em;
  padding-top: 1.5rem;
}
.site-footer__copyright-text {
  margin-top: 1.5rem;
}
@media (min-width: 43.75em) {
  .site-footer__copyright-text {
    margin-left: 1em;
    text-align: right;
  }
}
@media (min-width: 43.75em) {
  .site-footer__developed p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media (min-width: 43.75em) {
  .site-footer__developed p img {
    margin-left: 0.5rem;
  }
}
.template--footer-dec .site-footer__inner {
  position: relative;
}
.template--footer-dec .site-footer__inner:before {
  content: "";
  position: absolute;
  border-top: 1px solid #000;
  top: -2.5em;
  left: -2em;
  right: -2em;
}
@media (min-width: 43.75em) {
  .template--footer-dec .site-footer__inner:before {
    top: -2.25em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Dropdown nav
-----------------------------------------------------------------------------------------*/
.button--dropdown {
  cursor: default;
}
.dropdown-items {
  position: relative;
}
.dropdown-item--level1 {
  display: inline-block;
}
.dropdown-items--level2 {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border: 1px solid #DADCE0;
  background: white;
  -webkit-box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 25em;
  left: 0;
  padding: 0.6em 0;
  -webkit-transition: 0.3s opacity cubic-bezier(0.86, 0, 0.07, 1), 0.3s visibility cubic-bezier(0.86, 0, 0.07, 1), 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.3s opacity cubic-bezier(0.86, 0, 0.07, 1), 0.3s visibility cubic-bezier(0.86, 0, 0.07, 1), 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.3s opacity cubic-bezier(0.86, 0, 0.07, 1), 0.3s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s visibility cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.3s opacity cubic-bezier(0.86, 0, 0.07, 1), 0.3s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s visibility cubic-bezier(0.86, 0, 0.07, 1), 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  z-index: 2;
  overflow: auto;
  max-height: 21em;
}
.dropdown-item--level1:hover .dropdown-items--level2 {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.dropdown-item--level1:focus-within .dropdown-items--level2 {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.dropdown-link {
  padding: 1em 2em 0;
  display: block;
  font-size: 0.9375em;
  color: #000;
  -webkit-transition: 0.1s color;
  transition: 0.1s color;
}
.dropdown-link:hover,
.dropdown-link:focus,
.dropdown-link.active {
  color: #D1213E;
}
.dropdown-item--level2:last-child .dropdown-link {
  padding-bottom: 1.2em;
}
.dropdown-link__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.dropdown-link--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.dropdown-heading {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 5.7em;
}
/*-----------------------------------------------------------------------------------------
	/Cards
-----------------------------------------------------------------------------------------*/
.card-items {
  padding: 0;
  margin-bottom: -5em;
  margin-top: 0;
}
.card-item {
  padding-bottom: 5em;
}
.card-link {
  display: block;
  background: white;
  padding: 2em;
  border-radius: 5px;
  -webkit-box-shadow: 0 26px 22px -25px rgba(0, 0, 0, 0.15);
          box-shadow: 0 26px 22px -25px rgba(0, 0, 0, 0.15);
  color: #000;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.2s -webkit-box-shadow;
  transition: 0.2s -webkit-box-shadow;
  transition: 0.2s box-shadow;
  transition: 0.2s box-shadow, 0.2s -webkit-box-shadow;
}
.card-link:hover,
.card-link:focus {
  -webkit-box-shadow: 0 36px 22px -25px rgba(0, 0, 0, 0.15), 0 0px 0px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 36px 22px -25px rgba(0, 0, 0, 0.15), 0 0px 0px 2px rgba(0, 0, 0, 0.15);
}
.card-skeleton {
  border-radius: 5px;
  height: 100%;
  background: rgba(0, 0, 0, 0.07);
  min-height: 6em;
}
.card-link__icon {
  margin: 0.1em 0.7em 0 0;
}
.card-heading {
  font-size: 1.0625em;
  font-weight: 500;
  line-height: 1.5;
}
.prefix-heading--card {
  color: #707377;
  margin-top: 0.3em;
}
.card-link--module {
  background-color: #D1213E;
  color: white;
  text-align: center;
  padding-bottom: 120%;
  position: relative;
}
.card-link--module--howto {
  background-color: #FDB813;
  color: #000;
}
.card-link--module__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.5em 2em;
}
.card-comment-author {
  margin-bottom: 0.4em;
  font-size: 0.875em;
}
.card-item--module,
.card-item--preview {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 95%;
          flex: 0 0 95%;
}
@media (min-width: 25em) {
  .card-item--module,
  .card-item--preview {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
  }
}
@media (min-width: 37.5em) {
  .card-item--module,
  .card-item--preview {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
@media (min-width: 62.5em) {
  .card-item--module,
  .card-item--preview {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
  }
}
@media (min-width: 80em) {
  .card-item--module,
  .card-item--preview {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
@media (min-width: 80em) {
  .card-item--preview {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}
.card-items--overflow-scroll {
  margin: 0 -2em;
}
@media (min-width: 43.75em) {
  .card-items--overflow-scroll {
    margin: 0 -5em;
  }
}
@media (min-width: 80em) {
  .card-items--overflow-scroll {
    margin: 0;
  }
}
.card-items--overflow-scroll .card-items {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
  padding: 0 2em;
}
@media (min-width: 43.75em) {
  .card-items--overflow-scroll .card-items {
    padding: 0 4em;
  }
}
@media (min-width: 62.5em) {
  .card-items--overflow-scroll .card-items {
    padding: 0 5em;
  }
}
@media (min-width: 80em) {
  .card-items--overflow-scroll .card-items {
    overflow-x: visible;
    padding: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.card-items--overflow-scroll .card-item {
  scroll-snap-align: center;
}
/*-----------------------------------------------------------------------------------------
	/Pagination
-----------------------------------------------------------------------------------------*/
.pagination {
  position: relative;
  text-align: center;
}
.pagination--tight {
  margin-top: -2em;
}
.pagination-item {
  display: inline-block;
  font-size: 0.9em;
  margin: 0 0.2em;
}
.pagination-item.prev,
.pagination-item.next {
  display: none;
}
@media (min-width: 31.25em) {
  .pagination-item.prev,
  .pagination-item.next {
    display: inline-block;
  }
}
.pagination-page {
  display: block;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  line-height: 43px;
  -webkit-transition: 0.2s border, 0.2s color;
  transition: 0.2s border, 0.2s color;
  font-weight: 500;
  text-align: center;
  border: 1px solid #000;
  color: #000;
}
@media (min-width: 31.25em) {
  .pagination-page {
    width: 52px;
    height: 52px;
    line-height: 51px;
  }
}
.pagination-page:hover,
.pagination-page:focus {
  border-color: #D1213E;
  color: #D1213E;
}
.active .pagination-page {
  background: #D1213E;
  border-color: #D1213E;
  color: white;
}
.pagination-next-prev {
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 1em;
}
.disabled .pagination-next-prev {
  color: rgba(0, 0, 0, 0.3);
  border-color: transparent;
  pointer-events: none;
  cursor: default;
}
.pagination-height-placeholder {
  height: 2em;
}
/*-----------------------------------------------------------------------------------------
	/CMS Blocks
-----------------------------------------------------------------------------------------*/
.cms-section {
  margin-bottom: 4.5em;
  position: relative;
}
@media (min-width: 80em) {
  .cms-section {
    margin-bottom: 7.5em;
  }
}
.cms-section:last-child {
  margin-bottom: 0;
}
@media (min-width: 43.75em) {
  .cms-section:after {
    width: 1px;
    position: absolute;
    right: -2em;
    background: #DADCE0;
    content: "";
    top: 0;
    bottom: -7.5em;
    margin-right: 33px;
    z-index: -1;
  }
}
@media (min-width: 80em) {
  .cms-section:after {
    right: 0;
  }
}
@media (min-width: 87.5em) {
  .cms-section:after {
    right: 13em;
  }
}
.modal-content .cms-section {
  z-index: 0;
}
.cms-block {
  margin-top: 3.75em;
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.22em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.4em;
  margin-top: 1.3em;
}
.wysiwyg h1 a,
.wysiwyg h2 a,
.wysiwyg h3 a,
.wysiwyg h4 a,
.wysiwyg h5 a,
.wysiwyg h6 a {
  font-size: inherit !important;
}
.wysiwyg a[href^="http"] {
  position: relative;
  margin-right: 0.3em;
}
.wysiwyg a[href^="http"]:after {
  display: inline-block;
  text-indent: -5000px;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  background-image: url('/images/sprites.svg?v=1621833036994');
  background-repeat: no-repeat;
  width: 13px;
  height: 13px;
  content: "";
  background-position: -350px -50px;
  margin: -0.2em 0 0 0.4em;
}
.wysiwyg .tick {
  display: block;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  color: #D1213E;
  line-height: 1;
}
.wysiwyg li {
  margin-bottom: 0.5em;
}
.copy-heading--wysiwyg-block {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.4em;
}
.copy-heading--wysiwyg-block a {
  font-size: inherit !important;
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - containment and heading
-----------------------------------------------------------------------------------------*/
.cms-block--mw {
  max-width: 47em;
}
@media (min-width: 43.75em) {
  .cms-block--mw {
    padding-right: 4em;
  }
}
@media (min-width: 62.5em) {
  .cms-block--mw {
    padding-right: 7em;
  }
}
.cms-block--headings {
  margin-bottom: -2.5em;
  padding-left: 2em;
}
@media not all and (min-width: 43.75em) {
  .cms-block--headings {
    padding-right: 3em;
  }
}
@media (min-width: 62.5em) {
  .cms-block--headings {
    padding-left: 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - Heading and copy
-----------------------------------------------------------------------------------------*/
.cms-block--field-group + .cms-block--heading-copy__call-out {
  margin-top: -3.75em;
}
.cms-block--heading-copy__call-out__inner {
  padding: 3em;
  position: relative;
}
.cms-block--heading-copy__call-out__inner .wysiwyg {
  margin-bottom: 0;
}
.cms-block--heading-copy__call-out__inner .icon--info {
  position: absolute;
  top: 2.8em;
  left: 0;
  margin-left: -17px;
}
.icon--info {
  background-position: 0 -100px;
  width: 34px;
  height: 34px;
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - Image
-----------------------------------------------------------------------------------------*/
.cms-block--image__img {
  z-index: 1;
  padding: 1em 0;
}
.cms-block--image__img .image--cover {
  z-index: 1;
}
.cms-block--image__dec {
  content: "";
  background: #F5821F;
  position: absolute;
  z-index: 0;
  right: -0.5em;
  bottom: -0.5em;
  width: 66.666%;
  top: -0.5em;
}
@media (min-width: 43.75em) {
  .cms-block--image__dec {
    right: -1em;
    bottom: -1em;
    width: 16.1em;
    top: -1em;
  }
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - Image
-----------------------------------------------------------------------------------------*/
.cms-block--table {
  background: white;
}
.cms-block--table table {
  min-width: 60em;
}
@media (min-width: 62.5em) {
  .cms-block--table table {
    min-width: 0;
  }
}
.cms-block--table__wysiwyg {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 3.75em 0;
}
.cms-block--table__wrap {
  overflow-x: auto;
  margin: 0 -2em;
  padding-left: 2em;
}
@media (min-width: 43.75em) {
  .cms-block--table__wrap {
    padding-left: 4em;
    margin: 0 -4em;
  }
}
@media (min-width: 62.5em) {
  .cms-block--table__wrap {
    padding-left: 0;
    margin: 0;
    overflow: visible;
  }
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - inline modal link
-----------------------------------------------------------------------------------------*/
.inline-modal-link {
  background: #D1213E;
  display: inline-block;
  padding: 1em 1.9em 1em 3.5em;
  color: white;
  border-radius: 30em;
  -webkit-transition: 0.2s -webkit-box-shadow;
  transition: 0.2s -webkit-box-shadow;
  transition: 0.2s box-shadow;
  transition: 0.2s box-shadow, 0.2s -webkit-box-shadow;
  position: relative;
}
.inline-modal-link:hover,
.inline-modal-link:focus {
  -webkit-box-shadow: 0 26px 20px -20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 26px 20px -20px rgba(0, 0, 0, 0.3);
}
.inline-modal-link--text {
  position: relative;
}
.inline-modal-link--text__heading {
  display: inline-block;
  margin-top: -0.15em;
}
.cms-block--modal-link {
  margin-top: 2em;
}
.cms-block--modal-link__wrap {
  position: relative;
  padding-left: 2em;
}
.cms-block--modal-link + .cms-block--modal-link {
  margin-top: 0.5em;
}
.cms-block--modal-link--text + .cms-block--modal-link--text {
  margin-top: 1em;
}
.cms-block--headings + .cms-block--modal-link {
  margin-top: 4em;
}
.icon--info-white {
  background-position: -50px -100px;
  width: 21px;
  height: 21px;
}
.icon--info-red {
  background-position: -50px -125px;
  width: 21px;
  height: 21px;
}
.icon--modal-link {
  position: absolute;
  left: 1.6em;
  top: 1.3em;
}
.icon--modal-link__text {
  position: absolute;
  left: 0;
  top: 0.2em;
}
.inline-modal-link__heading {
  margin-bottom: -0.2em;
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - infographic
-----------------------------------------------------------------------------------------*/
.cms-block--footnote {
  color: #888;
  position: relative;
}
.cms-block--footnote a {
  color: #888;
  border-color: #d5d5d5;
  margin-left: 0 !important;
  display: inline !important;
}
.cms-block--footnote a:after {
  display: none !important;
}
.cms-block--footnote a:hover,
.cms-block--footnote a:focus {
  color: #D1213E;
}
.cms-block--footnote:before {
  content: "";
  width: 5em;
  border-top: 2px solid #e5e5e5;
  display: block;
  margin-bottom: 1.7em;
}
.cms-block--footnote__copy {
  font-size: 0.9em;
}
/*-----------------------------------------------------------------------------------------
	/CMS Block - infographic
-----------------------------------------------------------------------------------------*/
.cms-block--infographic {
  position: relative;
  margin-right: -2em;
  margin-left: -2em;
}
@media (min-width: 43.75em) {
  .cms-block--infographic {
    margin-left: -4em;
    margin-right: -4em;
  }
}
@media (min-width: 62.5em) {
  .cms-block--infographic {
    margin-left: -5em;
    margin-right: -5em;
  }
}
@media (min-width: 80em) {
  .cms-block--infographic {
    margin-left: auto;
    margin-right: auto;
  }
}
.cms-block--infographic svg {
  width: 100%;
  min-width: 150%;
}
@media (min-width: 43.75em) {
  .cms-block--infographic svg {
    min-width: 60em;
    width: 100%;
    min-width: 0;
  }
}
@media (min-width: 62.5em) {
  .cms-block--infographic svg {
    width: 100%;
    min-width: 0;
  }
}
.cms-block--infographic svg tspan {
  -webkit-transition: 0.2s fill;
  transition: 0.2s fill;
}
.cms-block--infographic__helper {
  color: #707377;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
}
@media (min-width: 43.75em) {
  .cms-block--infographic__helper {
    display: none;
  }
}
.icon--infographic__helper-l,
.icon--infographic__helper-r {
  width: 15px;
  height: 14px;
  background-position: -200px -50px;
  margin: 0 1em 0 0;
}
.icon--infographic__helper-r {
  background-position: -225px -50px;
  margin: 0 0 0 1em;
}
.cms-block--headings + .cms-block--infographic {
  margin-top: 5em;
}
.cms-block--infographic__header {
  background: #eaecef;
  padding: 1.5em 2em;
}
@media (min-width: 43.75em) {
  .cms-block--infographic__header {
    padding-left: 4em;
    padding-right: 4em;
  }
}
@media (min-width: 62.5em) {
  .cms-block--infographic__header {
    padding-left: 5em;
    padding-right: 5em;
  }
}
@media (min-width: 80em) {
  .cms-block--infographic__header {
    padding-left: 3.5em;
    padding-right: 3.5em;
  }
}
.cms-block--infographic__header--with-title {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}
.icon--infographic-info {
  width: 16px;
  height: 16px;
  background-position: -100px -100px;
}
.cms-block--infographic__overflow {
  overflow-x: auto;
  background: #eaecef;
}
.heading--infographic-figure {
  font-weight: normal;
  color: #666;
  font-size: 0.9em;
  margin-top: -0.4em;
}
.cms-block--infographic__header__info {
  font-size: 0.9em;
  color: #666;
  margin-top: 0.7em;
}
@media (min-width: 43.75em) {
  .cms-block--infographic__header__info {
    position: absolute;
    margin-top: 0;
    right: 3.9em;
    top: 3.2em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Tooltip
-----------------------------------------------------------------------------------------*/
.tooltip {
  display: inline-block;
  z-index: 1;
}
@media (min-width: 62.5em) {
  .tooltip {
    position: relative;
  }
}
.button--tooltip {
  width: 18px;
  height: 18px;
  background-color: #000;
  background-position: 7px -45px;
  border-radius: 100%;
  margin: -0.2em 0 0 0.2em;
}
.tooltip__content {
  position: absolute;
  background: #000;
  padding: 1.5em 2.1em;
  color: #fff;
  font-size: 0.85em;
  line-height: 1.4;
  border-radius: 3px;
  margin-top: 0.7em;
  left: 0;
  width: 100%;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(8px);
      -ms-transform: translateX(8px);
          transform: translateX(8px);
  -webkit-transition: 0.2s opacity, 0.2s visibility, 0.2s -webkit-transform;
  transition: 0.2s opacity, 0.2s visibility, 0.2s -webkit-transform;
  transition: 0.2s opacity, 0.2s visibility, 0.2s transform;
  transition: 0.2s opacity, 0.2s visibility, 0.2s transform, 0.2s -webkit-transform;
  z-index: 2;
}
@media (min-width: 62.5em) {
  .tooltip__content {
    top: -0.5em;
    left: 2.4em;
    width: 21em;
    margin-top: 0;
  }
}
.tooltip:hover .tooltip__content {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.tooltip:focus-within .tooltip__content {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
@media (min-width: 62.5em) {
  .tooltip__content:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #000;
    position: absolute;
    left: -6px;
    top: 1.06em;
  }
}
/*-----------------------------------------------------------------------------------------
	/CMS block - slider
-----------------------------------------------------------------------------------------*/
.cms-block--image-slider__images .flickity-page-dots {
  text-align: left;
  padding-top: 2em;
  position: static;
}
.cms-block--image-slider__images .flickity-page-dots .dot {
  margin: 0 1em 0 0;
}
.cms-block--image-slider__heading {
  margin-bottom: 1.5em;
}
.cms-block--image-slider__cell {
  width: 80%;
  margin: 0 1em 0 0;
}
.flickity-viewport {
  -webkit-transition: 0.2s height;
  transition: 0.2s height;
}
/*-----------------------------------------------------------------------------------------
	/Empty states
-----------------------------------------------------------------------------------------*/
.empty-state-note {
  padding: 2em;
  background: #eee;
}
@media (min-width: 43.75em) {
  .empty-state-note {
    padding: 4em 5em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Redactor
-----------------------------------------------------------------------------------------*/
.redactor-styles {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  color: #000;
}
.redactor-dropdown {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}
.redactor-toolbar {
  z-index: 1;
}
.redactor-toolbar a:hover,
.redactor-air a:hover,
.redactor-dropdown a:hover {
  background-color: #D1213E !important;
}
.redactor-toolbar-fixed {
  position: relative !important;
}
.redactor-focus.redactor-styles-on,
.redactor-focus:focus.redactor-styles-on {
  border-color: #000 !important;
}
/*-----------------------------------------------------------------------------------------
	/Home - public landing
-----------------------------------------------------------------------------------------*/
.delete {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: 2;
}
.header--home {
  position: relative;
  z-index: 2;
  padding-top: 2em;
  padding-bottom: 2em;
}
@media (min-width: 43.75em) {
  .header--home {
    padding-top: 0;
    padding-bottom: 0;
    height: 8.5em;
  }
}
@media (min-width: 62.5em) {
  .header--home {
    height: 12.5em;
  }
}
.header--home__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
@media (min-width: 62.5em) {
  .header--home__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.section--home-hero {
  height: 100vh;
  color: white;
  position: relative;
  max-height: 40em;
  overflow: hidden;
}
@media (min-width: 43.75em) {
  .section--home-hero {
    max-height: 65em;
    min-height: 57em;
  }
}
@media (min-width: 80em) {
}
.home-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
}
.home-hero-img:after {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
  background: linear-gradient(transparent, black);
  height: 24em;
  opacity: 0.8;
}
@media (min-width: 43.75em) {
  .home-hero-img:after {
    height: 42em;
  }
}
@media (min-width: 80em) {
  .home-hero-img:after {
    display: none;
  }
}
.home-hero-headings {
  position: absolute;
  right: 0;
  bottom: 5em;
  left: 0;
  z-index: 2;
}
@media (min-width: 43.75em) {
  .home-hero-headings {
    bottom: 8em;
  }
}
@media (min-width: 62.5em) {
  .home-hero-headings {
    bottom: 0;
    top: 12.5em;
  }
}
.page-heading--home-hero {
  font-size: 4.1em;
  line-height: 0.9;
  font-weight: 900;
}
@media (min-width: 43.75em) {
  .page-heading--home-hero {
    font-size: 5.7125em;
  }
}
.home-hero-headings__inner {
  width: 100%;
  padding-top: 2.875em;
  max-width: 18em;
}
@media (min-width: 43.75em) {
  .home-hero-headings__inner {
    max-width: 14em;
    max-width: 31em;
  }
}
@media (min-width: 62.5em) {
  .home-hero-headings__inner {
    max-width: 34em;
  }
}
.home-hero__subheading {
  font-size: 1.5em;
  line-height: 1.2;
  max-width: 9em;
}
@media (min-width: 43.75em) {
  .home-hero__subheading {
    font-size: 2.33em;
  }
  .page-heading + .home-hero__subheading {
    margin-top: -0.0625rem;
  }
}
.header--home__link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  -webkit-transition: 0.2s border;
  transition: 0.2s border;
  position: relative;
  z-index: 1;
}
@media not all and (min-width: 43.75em) {
  .header--home__link {
    font-size: 1.16em;
  }
}
.header--home__link:hover,
.header--home__link:focus {
  border-color: white;
}
.logo--home {
  display: none;
}
@media (min-width: 62.5em) {
  .logo--home {
    display: block;
    margin-top: -2.2em;
  }
}
@media (min-width: 43.75em) {
  .logo--home-mobile {
    width: 20em;
  }
}
@media (min-width: 62.5em) {
  .logo--home-mobile {
    margin-top: -1em;
    display: none;
  }
}
.nav--home {
  margin-top: -1.2rem;
}
.home-feature {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4em;
  position: relative;
}
.home-feature .home-feature__copy {
  padding-top: 2em;
}
@media (min-width: 62.5em) {
  .home-feature .home-feature__copy {
    padding-top: 0;
    padding-left: 4em;
  }
}
@media (min-width: 62.5em) {
  .home-feature:after {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    bottom: -4em;
  }
}
.home-feature:last-child {
  margin-bottom: 0;
}
.home-feature:last-child:after {
  display: none;
}
@media (min-width: 62.5em) {
  .home-feature:nth-child(odd) .home-feature__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home-feature:nth-child(odd) .home-feature__copy {
    padding-right: 4em;
    padding-left: 0;
  }
}
.home-feature__img {
  max-width: 41em;
}
.home-feature__img__img {
  -webkit-box-shadow: 0 33px 30px -30px rgba(0, 0, 0, 0.3);
          box-shadow: 0 33px 30px -30px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  background-color: #bb1e37;
  z-index: 1;
  padding-bottom: 57.5%;
}
.section--home-intro {
  position: relative;
}
.section--home-intro:before {
  content: "";
  background: white;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 32%;
}
@media (min-width: 43.75em) {
  .section--home-intro:before {
    padding-bottom: 28%;
  }
}
@media (min-width: 93.75em) {
  .section--home-intro:before {
    padding-bottom: 24em;
  }
}
.home-devices-img {
  margin-bottom: 2em;
  position: relative;
  z-index: 1;
}
@media (min-width: 62.5em) {
  .home-intro-copy {
    position: relative;
  }
  .home-intro-copy:after {
    content: "";
    height: 100%;
    width: 2px;
    background: #000;
    position: absolute;
    left: 50%;
  }
}
.home-intro-copy .grid-col:first-child {
  margin-bottom: 1.5em;
}
.movement--home-hero {
  position: absolute;
  z-index: 1;
  top: auto;
  max-width: none;
  pointer-events: none;
  opacity: 0.7;
}
@media (min-width: 80em) {
  .movement--home-hero {
    opacity: 1;
  }
}
.movement--home-hero--desktop {
  display: none;
}
@media (min-width: 43.75em) {
  .movement--home-hero--desktop {
    display: block;
    width: 111vw;
    right: -38vw;
    bottom: -0.5em;
  }
}
@media (min-width: 62.5em) {
  .movement--home-hero--desktop {
    width: 109vw;
    top: auto;
    right: -38vw;
    bottom: -1em;
  }
}
@media (min-width: 80em) {
  .movement--home-hero--desktop {
    width: 82.25em;
    top: auto;
    right: -28em;
    bottom: -1em;
  }
}
.movement--home-hero--mobile {
  display: block;
  width: 117vw;
  right: -42.5vw;
  bottom: -0.25em;
}
@media (min-width: 43.75em) {
  .movement--home-hero--mobile {
    display: none;
  }
}
.form--home-contact {
  margin-top: 2em;
  max-width: 36em;
}
@media (min-width: 62.5em) {
  .form--home-contact {
    margin-top: 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/Dashboard
-----------------------------------------------------------------------------------------*/
.section-heading--module-card {
  font-size: 1.45em;
}
.section-heading--module-card:before {
  content: "";
  display: block;
  margin: 0.6em auto 0.7em;
  height: 2px;
  background: #fff;
  width: 2em;
}
.card-link--module--howto .section-heading--module-card:before {
  background: #000;
}
.page-heading--dash {
  color: #D1213E;
}
.page-heading--dash:after {
  border-color: #000;
}
@media not all and (min-width: 62.5em) {
  .section--dash-recent-inner {
    padding-top: 0;
  }
}
.card-link--module__icon {
  position: absolute;
  bottom: 2.5em;
  left: 50%;
  margin: 0 0 0 -19px;
  opacity: 0.5;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.card-link:hover .card-link--module__icon,
.card-link:focus .card-link--module__icon {
  opacity: 1;
}
.card-link--module__icon.icon--howto--l-black {
  opacity: 1;
}
.module-chapter-items {
  margin: 1.8em 0 0 1em;
}
.module-chapter-link {
  color: #000;
  position: relative;
  padding: 0 0 0.8em;
  margin: 0 0 0 1.5em;
  display: block;
  -webkit-transition: 0.2s color, 0.2s border;
  transition: 0.2s color, 0.2s border;
  text-decoration: underline;
}
.module-chapter-link:before {
  content: "";
  position: absolute;
  height: 1px;
  background: #000;
  width: 1em;
  width: 0.7em;
  left: -1.4em;
  top: 0.8em;
}
.module-chapter-link:focus,
.module-chapter-link:hover {
  color: #D1213E;
}
.module-tab {
  margin-bottom: 0.8em;
  color: #000;
  display: block;
}
@media (min-width: 23em) {
  .module-tab {
    display: inline;
    margin-bottom: 0;
    margin-right: 1.5em;
  }
}
@media (min-width: 43.75em) {
  .module-tab {
    margin-right: 2em;
  }
}
.dashboard-hero {
  position: relative;
  overflow: hidden;
  margin: 0 -2em;
}
@media (min-width: 43.75em) {
  .dashboard-hero {
    margin: 0 -5em;
  }
}
@media (min-width: 62.5em) {
  .dashboard-hero {
    position: static;
    margin: 0;
  }
}
.dashboard-hero-img {
  position: relative;
  padding-bottom: 100%;
}
@media (min-width: 31.25em) {
  .dashboard-hero-img {
    padding-bottom: 75%;
  }
}
@media (min-width: 62.5em) {
  .dashboard-hero-img {
    padding-bottom: 0;
    position: absolute;
    top: 0;
    bottom: -5em;
    left: 0;
    right: 0;
    margin: 0 auto 0 calc(-100vw / 2 + 86%);
  }
}
@media (min-width: 80em) {
  .dashboard-hero-img {
    bottom: -7.5em;
  }
}
.dashboard-hero-img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(16.27%, rgba(0, 0, 0, 0.7)), color-stop(62.4%, rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 16.27%, rgba(0, 0, 0, 0) 62.4%);
  z-index: 0;
}
@media (min-width: 43.75em) {
  .dashboard-hero-img:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(18.67%, rgba(0, 0, 0, 0.7)), color-stop(55.4%, rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 18.67%, rgba(0, 0, 0, 0) 55.4%);
  }
}
.dashboard-hero-heading {
  display: none;
}
@media (min-width: 62.5em) {
  .dashboard-hero-heading {
    display: block;
    position: absolute;
    top: 4.48863636em;
    left: 6.81818182em;
    margin: 0;
    padding: 1.38636364em 2.15757576em 1.75em;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.dashboard-hero-heading .page-heading {
  color: #D1213E;
  font-size: 2.73em;
  line-height: 1.09;
}
@media (min-width: 71.875em) {
  .dashboard-hero-heading .page-heading {
    font-size: 3.51515152em;
  }
}
.dashboard-heading {
  margin-bottom: 0.57142857em;
  font-size: 2.1875em;
  line-height: 1.2;
}
@media (min-width: 31.25em) {
  .dashboard-heading {
    font-size: 3em;
    line-height: 1.1;
  }
}
@media (min-width: 62.5em) {
  .dashboard-heading {
    display: none;
  }
}
.dashboard-intro {
  padding-top: 4em;
}
@media (min-width: 43.75em) {
  .dashboard-intro {
    padding-top: 4.5em;
  }
}
@media (min-width: 62.5em) {
  .dashboard-intro {
    padding-left: 4.29545455em;
  }
}
@media (min-width: 80em) {
  .dashboard-intro {
    padding-top: 4.5em;
  }
}
@media (min-width: 62.5em) {
  .dashboard-intro .block-heading {
    line-height: 1.196;
  }
}
.dashboard-hero-motif {
  position: absolute;
  z-index: 1;
  bottom: -37%;
  right: 0;
  width: 140%;
  max-width: none;
}
@media (min-width: 31.25em) {
  .dashboard-hero-motif {
    bottom: 0;
    width: auto;
  }
}
@media (min-width: 62.5em) {
  .dashboard-hero-motif {
    bottom: -5em;
  }
}
.module-tabs {
  margin-bottom: 2em;
  margin-top: 0.8em;
}
@media (min-width: 23em) {
  .module-tabs {
    margin-top: 0.4em;
  }
}
@media (min-width: 43.75em) {
  .module-tabs {
    margin-top: 0em;
    margin-left: 3em;
    margin-bottom: 0.6em;
  }
}
.module-tab__label {
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2em;
  -webkit-transition: 0.2s border;
  transition: 0.2s border;
}
.module-tab:hover .module-tab__label,
.module-tab:focus .module-tab__label {
  border-color: #000;
}
.module-tab.active .module-tab__label {
  border-bottom-color: #D1213E;
  color: #D1213E;
}
.section--workspace-notes-all {
  position: relative;
  z-index: 1;
}
/*-----------------------------------------------------------------------------------------
	/Sign in
-----------------------------------------------------------------------------------------*/
.template--sign-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sign-in-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 43.75em) {
  .sign-in-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.form--sign-in {
  position: relative;
  width: 100%;
}
.link--forgot-pw {
  display: inline-block;
  margin-top: 1em;
}
@media (min-width: 31.25em) {
  .link--forgot-pw {
    display: inline;
    position: absolute;
    right: 0;
    bottom: 1.3em;
  }
}
.page-heading--sign-in-logo {
  color: #D1213E;
  font-size: 2.1em;
  margin-top: 0.3em;
}
@media (min-width: 37.5em) {
  .form-fields--reset-pw .input--txt {
    padding-left: 13em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Module article
-----------------------------------------------------------------------------------------*/
.app-main--module {
  margin-top: 4.1875em;
  overflow-x: hidden;
}
@media (min-width: 43.75em) {
  .app-main--module {
    margin-top: 7.55em;
  }
}
.header--module,
.header--module--howto {
  padding-bottom: 6.5em;
}
@media (min-width: 31.25em) {
  .header--module,
  .header--module--howto {
    padding-bottom: 8rem;
  }
}
@media (min-width: 87.5em) {
  .header--module,
  .header--module--howto {
    padding-top: 12em;
    padding-bottom: 5em;
  }
}
.header--module {
  color: white;
  position: relative;
  min-height: 20.25em;
}
@media (min-width: 43.75em) {
  .header--module {
    min-height: 22.75em;
  }
}
@media (min-width: 80em) {
  .header--module {
    min-height: 27em;
  }
}
@media (min-width: 87.5em) {
  .header--module {
    min-height: 29.5em;
  }
}
.header--module:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #D1213E;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #D1213E), to(#B4142F));
  background: linear-gradient(90deg, #D1213E 35%, #B4142F);
  z-index: -1;
}
@media (min-width: 87.5em) {
  .header--module:after {
    right: 7.5em;
  }
}
.header--module--howto {
  color: #000;
}
.header--module--howto:after {
  background-color: #FDB813;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #FDB813), to(#F39810));
  background: linear-gradient(90deg, #FDB813 35%, #F39810);
}
.header--module__headings {
  position: relative;
  z-index: 1;
  margin-right: 4em;
}
@media (min-width: 62.5em) {
  .header--module__headings {
    margin-right: 18em;
  }
}
@media (min-width: 87.5em) {
  .header--module__headings {
    margin-right: 24em;
  }
}
@media (min-width: 112em) {
  .header--module__headings {
    margin-right: 15em;
  }
}
.module-article {
  position: relative;
}
@media (min-width: 43.75em) {
  .module-article {
    margin-left: 4.55em;
    -webkit-transition: 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.6s transform cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.6s transform cubic-bezier(0.86, 0, 0.07, 1), 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  }
  .module-nav-active .module-article {
    -webkit-transform: translateX(424px);
        -ms-transform: translateX(424px);
            transform: translateX(424px);
  }
  .modal-active .module-article {
    -webkit-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
            transform: translateX(-100px);
  }
}
@media (min-width: 80em) {
  .module-article {
    margin-left: 5.45em;
  }
}
.module-footer {
  padding-top: 78px;
  padding-bottom: 198px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 87.5em) {
  .module-footer {
    padding-right: 7.5em;
  }
}
.module-footer:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 87.5em) {
  .module-footer:before {
    right: 7.5em;
  }
}
.module-footer__inner {
  position: relative;
}
.page-heading--module-footer {
  margin-top: 0.2em;
  font-size: 2em;
}
@media (min-width: 43.75em) {
  .page-heading--module-footer {
    font-size: 3.1em;
  }
}
.module-footer--module:before {
  background-color: #D1213E;
  background: -webkit-gradient(linear, left top, left bottom, from(#D1213E), to(#AA182F));
  background: linear-gradient(#D1213E, #AA182F);
}
.module-footer--module .module-footer__link {
  color: white;
}
.module-footer--how-to:before {
  background-color: #FDB813;
  background: -webkit-gradient(linear, left top, left bottom, from(#FDB813), to(#F19210));
  background: linear-gradient(#FDB813, #F19210);
  color: #000;
}
.module-footer--how-to .module-footer__link {
  color: #000;
}
.module-footer__link {
  display: block;
  cursor: white;
  padding-top: 2em;
  padding-bottom: 2em;
  max-width: 40em;
}
.module-footer__link--how-to {
  color: #000;
}
.icon--module {
  background-position: -250px 0;
  width: 25px;
  height: 28px;
}
.icon--module-black {
  background-position: -250px -150px;
}
.icon--module--l {
  background-position: -400px -50px;
  width: 38px;
  height: 43px;
}
.icon--howto {
  background-position: -300px 0;
  width: 25px;
  height: 26px;
}
.icon--howto--black {
  background-position: -300px -150px;
}
.icon--howto--l-black {
  background-position: -400px -100px;
  width: 35px;
  height: 35px;
}
.header--module__reqd {
  margin-top: 1em;
}
@media (min-width: 80em) {
  .header--module__reqd {
    margin-top: 3em;
  }
}
.header--module__reqd .dropdown-items--level2 {
  width: 21em;
}
.motif--module {
  position: absolute;
  pointer-events: none;
}
@media (min-width: 80em) {
  .motif--module {
    right: -4.9em;
  }
}
@media (min-width: 87.5em) {
  .motif--module {
    top: -4em;
    right: 0;
  }
}
.motif--module--large {
  display: none;
}
.motif--module--small {
  right: 0;
  top: auto;
  bottom: -6.5em;
  opacity: 0.5;
  width: 50em;
  max-width: none;
}
@media (min-width: 37.5em) {
  .motif--module--small {
    bottom: -9em;
    width: 62em;
  }
}
@media (min-width: 62.5em) {
}
@media (min-width: 87.5em) {
  .motif--module--small {
    right: 7.5em;
  }
}
@media (min-width: 112em) {
  .motif--module--small {
    bottom: -10em;
    width: 70em;
  }
}
.motif--module--footer--large {
  display: none;
}
@media (min-width: 62.5em) {
  .motif--module--footer--large {
    display: block;
  }
}
.motif--module--footer--small {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -3em;
  right: 0;
  width: 120%;
  max-width: 44em;
  padding-left: 6em;
}
@media (min-width: 62.5em) {
  .motif--module--footer--small {
    display: none;
  }
}
.motif--module--sm {
  right: 0;
  top: 0;
}
@media (min-width: 62.5em) {
  .motif--module--sm {
    display: none;
  }
}
.module-footer__dec2 {
  margin: auto;
  display: block;
}
.module-footer__dec1 {
  margin-top: -15px;
  position: absolute;
  left: 50%;
  margin-left: -69px;
  top: 0;
}
@media not all and (min-width: 43.75em) {
  .button--req-reading {
    font-size: 1.06em;
  }
}
/*-----------------------------------------------------------------------------------------
	/Star button
-----------------------------------------------------------------------------------------*/
.button--star-content {
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 26px;
  height: 26px;
  background-position: -100px 0;
  opacity: 0.2;
  -webkit-transition: 0.1s opacity;
  transition: 0.1s opacity;
}
@media (min-width: 43.75em) {
  .button--star-content {
    top: 0.4em;
  }
}
@media (min-width: 62.5em) {
  .button--star-content {
    left: -2.4em;
  }
}
.button--star-content:hover,
.button--star-content:focus {
  opacity: 1;
}
.button--star-content.active {
  background-position: -150px 0;
  opacity: 1;
}
/*-----------------------------------------------------------------------------------------
	/Comments
-----------------------------------------------------------------------------------------*/
.button--toggle-comments {
  position: absolute;
  right: -20px;
  top: -1.2em;
  width: 66px;
  height: 66px;
  border-radius: 100%;
  -webkit-transition: 0.2s border-color;
  transition: 0.2s border-color;
  background: white;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 43.75em) {
  .button--toggle-comments {
    border: 2px solid #DADCE0;
    right: -2em;
    top: -1.1em;
  }
}
@media (min-width: 80em) {
  .button--toggle-comments {
    right: 0;
  }
}
@media (min-width: 87.5em) {
  .button--toggle-comments {
    right: 13em;
  }
}
.button--toggle-comments:hover,
.button--toggle-comments:focus {
  border-color: #000;
}
.button--toggle-comments__count {
  position: absolute;
  color: #fff;
  top: 50%;
  bottom: 0;
  height: 1em;
  line-height: 1;
  margin: -0.5em 0 0;
  width: 100%;
  font-size: 11px;
  font-weight: 500;
}
.icon--comment {
  width: 26px;
  height: 24px;
  background-position: 0 0;
  opacity: 0.15;
  -webkit-transition: 0.1s opacity;
  transition: 0.1s opacity;
  margin-top: 3px;
}
.button--toggle-comments:hover .icon--comment,
.button--toggle-comments:focus .icon--comment {
  opacity: 1;
}
.icon--comment--full {
  background-position: -50px 0;
  opacity: 1;
}
.button--comment-cancel {
  font-size: 0.9375em;
  width: auto;
  display: inline-block;
}
/*-----------------------------------------------------------------------------------------
	/Comment dialogue
-----------------------------------------------------------------------------------------*/
.commenting {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s visibility, 0.2s opacity, 0.2s -webkit-transform;
  transition: 0.2s visibility, 0.2s opacity, 0.2s -webkit-transform;
  transition: 0.2s visibility, 0.2s opacity, 0.2s transform;
  transition: 0.2s visibility, 0.2s opacity, 0.2s transform, 0.2s -webkit-transform;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  overflow: auto;
}
@media (min-width: 43.75em) {
  .commenting {
    position: absolute;
    width: 23em;
    border: 1px solid #DADCE0;
    -webkit-transform: translateX(-5px);
        -ms-transform: translateX(-5px);
            transform: translateX(-5px);
    -webkit-box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    top: -1.75em;
    bottom: auto;
    max-height: 70vh;
    left: auto;
    margin-right: -3em;
    z-index: 2;
  }
}
@media (min-width: 80em) {
  .commenting {
    margin-right: -4.9em;
    -webkit-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
}
.commenting.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.commenting__inner {
  padding: 1em 1.7em;
}
.commenting__inner--l {
  padding: 1.5em 1.7em;
}
.commenting__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
.comment__text {
  font-size: 0.9375em;
  margin-top: -0.6em;
  overflow-wrap: anywhere;
}
.commenting__username {
  margin-left: 0.6em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9375em;
}
.commenting__date {
  margin: -0.3em 0 0 0.7em;
  color: #707377;
  font-size: 0.8125em;
}
.commenting__textarea {
  border-color: #DADCE0;
  margin-bottom: 0.5em;
  height: 3.6em;
  padding: 0.9em 1.4em;
  resize: none;
}
.comment {
  border-bottom: 1px solid #DADCE0;
}
.button--add-comment {
  width: auto;
  display: inline-block;
}
/*-----------------------------------------------------------------------------------------
	/Module form fields
-----------------------------------------------------------------------------------------*/
.module-form-fields {
  background: #eee;
  padding: 1.875em 2.5em;
}
.module-form-field {
  padding: 0 0 2em;
  margin: 0 0 2em;
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.module-form-field:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.module-form-field__label {
  margin-bottom: 1em;
}
.module-form-field__number {
  position: absolute;
  left: -2.5em;
  top: -0.2em;
  margin-left: -18px;
  background: #D1213E;
  color: white;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 100%;
  font-size: 0.9375em;
}
.module-form-field__edited {
  color: #888;
  font-size: 0.85em;
  margin-top: 0.6em;
}
.button--module-answer {
  padding: 0.9em 1.25em;
  background: white;
  border: 1px solid #DADCE0;
  width: 100%;
  display: block;
  text-align: left;
  color: #888;
  -webkit-transition: 0.2s border-color, 0.2s -webkit-box-shadow;
  transition: 0.2s border-color, 0.2s -webkit-box-shadow;
  transition: 0.2s border-color, 0.2s box-shadow;
  transition: 0.2s border-color, 0.2s box-shadow, 0.2s -webkit-box-shadow;
}
.button--module-answer:hover,
.button--module-answer:focus {
  -webkit-box-shadow: 0 19px 30px -20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 19px 30px -20px rgba(0, 0, 0, 0.2);
  border-color: #000;
}
/*-----------------------------------------------------------------------------------------
	/Module nav
-----------------------------------------------------------------------------------------*/
.module-nav-wrap ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 14px 14px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 0 14px 14px rgba(255, 255, 255, 0.2);
}
.module-nav {
  position: fixed;
  background: #000;
  max-width: 520px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s top ease;
  transition: 0.6s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 4;
  padding: 8em 3.6em 4em 3.6em;
  color: white;
  overflow: auto;
}
@media (min-width: 43.75em) {
  .module-nav {
    z-index: 2;
    top: 7.55em;
    padding-right: 4em;
  }
  .nav-up .module-nav {
    top: 2.55em;
  }
}
.module-nav-active .module-nav {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.icon--module-nav {
  background-position: -400px 0;
  width: 30px;
  height: 23px;
  position: absolute;
  top: 2.3em;
  left: 50%;
  margin-left: -15px;
}
.button--module-nav__text {
  position: absolute;
  top: 4.3em;
  left: 50%;
  white-space: nowrap;
  line-height: 1;
  opacity: 0.3;
  font-weight: 500;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg) translateX(50%);
      -ms-transform: rotate(180deg) translateX(50%);
          transform: rotate(180deg) translateX(50%);
  text-align: right;
  -webkit-text-orientation: sideways;
          text-orientation: sideways;
  margin: 0;
  font-size: 1.15rem;
}
.button--module-nav__dec {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 14.8em;
  left: 0;
  right: 0;
}
.button--module-nav {
  display: none;
}
@media (min-width: 43.75em) {
  .button--module-nav {
    display: block;
    position: fixed;
    width: 4.55em;
    top: 7.55em;
    background: #000;
    color: white;
    left: 0;
    bottom: 0;
    z-index: 2;
    margin: 0;
    -webkit-transition: 0.3s top ease, 0.4s width cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.3s top ease, 0.4s width cubic-bezier(0.86, 0, 0.07, 1);
  }
  .button--module-nav:focus,
  .button--module-nav:hover {
    width: 7em;
  }
  .nav-up .button--module-nav {
    top: 2.55em;
  }
}
@media (min-width: 80em) {
  .button--module-nav {
    width: 5.45em;
  }
}
.button--module-nav-close {
  color: #fff;
  padding: 1.15em 2.1em;
  width: auto;
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 43.75em) {
  .button--module-nav-close {
    padding: 2em 3.6em;
  }
}
.overlay {
  display: none;
}
@media (min-width: 43.75em) {
  .overlay {
    display: block;
    position: fixed;
    top: 7.55em;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s visibility, 0.3s opacity, 0.3s top ease;
    transition: 0.3s visibility, 0.3s opacity, 0.3s top ease;
    cursor: pointer;
  }
}
.nav-up .overlay {
  top: 2.55em;
}
.modal-active .overlay--modal,
.module-nav-active .overlay--module-nav {
  visibility: visible;
  opacity: 0.3;
}
.module-nav-item--level1 {
  position: relative;
}
.module-nav-link--level1 {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  color: white;
  font-size: 1em;
  font-weight: 500;
  display: block;
  padding: 0.6em 2.1em 0.6em 0;
  -webkit-transition: 0.1s color;
  transition: 0.1s color;
  line-height: 1.3;
}
.module-nav-link--level1:before {
  content: "";
  width: 3px;
  bottom: 0.9em;
  background: #F5821F;
  position: absolute;
  left: -4em;
  top: 0.7em;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1), 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
}
.module-nav-link--level1.active:before {
  bottom: 0.9em;
}
.module-nav-link--level1:hover,
.module-nav-link--level1:focus {
  color: #F5821F;
}
.module-nav-link--level1:hover:before,
.module-nav-link--level1:focus:before {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.module-nav-link--level1.active {
  color: #F5821F;
}
.module-nav-link--level1.active:before {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.icon--module-nav-type {
  left: -1.9em;
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  margin-top: 0.3em;
}
.module-nav-link--level1.active .icon--module-nav-type {
  opacity: 0.3;
}
@media (min-width: 80em) {
  .module-nav-link--level1:hover .icon--module-nav-type,
  .module-nav-link--level1:focus .icon--module-nav-type {
    opacity: 0.3;
  }
}
.button--module-nav-section-toggle {
  width: 4.6em;
  height: 3em;
  position: absolute;
  top: 0.4em;
  right: -3em;
}
.icon--module-nav-section-toggle {
  width: 12px;
  height: 12px;
  background-position: -350px 0;
  -webkit-transition: 0.2s opacity, 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s opacity, 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s opacity, 0.3s transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s opacity, 0.3s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  opacity: 0.3;
}
.button--module-nav-section-toggle:hover .icon--module-nav-section-toggle,
.button--module-nav-section-toggle:focus .icon--module-nav-section-toggle {
  opacity: 1;
}
.button--module-nav-section-toggle.active .icon--module-nav-section-toggle {
  background-position: -375px -20px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 1;
}
.module-nav-items--level2 {
  display: none;
  margin-bottom: 2em;
}
.level2-active .module-nav-items--level2 {
  display: block;
}
.module-nav-item--level2 {
  position: relative;
  display: block;
}
.module-nav-link--level2 {
  color: #999;
  font-size: 0.9375em;
  line-height: 1.5;
  display: block;
  padding: 0.3em 4.6em 0.3em 2em;
  -webkit-transition: 0.1s color;
  transition: 0.1s color;
}
.module-nav-link--level2:hover,
.module-nav-link--level2:focus {
  color: #F5821F;
}
.button--star-content--module-nav {
  width: 33px;
  height: 30px;
  position: absolute;
  left: -0.5em;
  top: 0.2em;
  cursor: pointer;
  opacity: 0.3;
  -webkit-transition: 0.1s opacity;
  transition: 0.1s opacity;
}
.button--star-content--module-nav:hover,
.button--star-content--module-nav:focus {
  opacity: 1;
}
.button--star-content--module-nav.active {
  opacity: 1;
}
.icon--star-content--module-nav {
  position: relative;
  top: -3px;
  background-position: -100px -35px;
  height: 15px;
  width: 16px;
}
.button--star-content--module-nav.active .icon--star-content--module-nav {
  background-position: -150px -35px;
}
.module-nav-note {
  position: absolute;
  right: 0;
  font-size: 0.75em;
  top: 0.8em;
  pointer-events: none;
  color: #999;
}
.module-nav-prefix {
  font-size: 0.8em;
  font-weight: 500;
  opacity: 0.4;
  text-transform: uppercase;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
.module-nav-link:hover .module-nav-prefix,
.module-nav-link:focus .module-nav-prefix {
  opacity: 1;
}
/*-----------------------------------------------------------------------------------------
	/Modal
-----------------------------------------------------------------------------------------*/
.modal-content {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(20em);
      -ms-transform: translateX(20em);
          transform: translateX(20em);
  -webkit-transition: 0.6s opacity, 0.6s visibility, 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s opacity, 0.6s visibility, 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.6s opacity, 0.6s visibility, 0.6s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s top ease;
  transition: 0.6s opacity, 0.6s visibility, 0.6s transform cubic-bezier(0.86, 0, 0.07, 1), 0.3s top ease, 0.6s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  text-align: center;
}
@media (min-width: 43.75em) {
  .modal-content {
    z-index: 2;
    top: 7.55em;
  }
}
@media (min-width: 80em) {
  .modal-content {
    left: 5.45em;
  }
}
.modal-content ::-webkit-scrollbar-thumb {
  -webkit-box-shadow: inset 0 0 14px 14px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0 0 14px 14px rgba(0, 0, 0, 0.4);
}
.modal-active .modal-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.nav-up .modal-content {
  top: 0;
}
@media (min-width: 43.75em) {
  .nav-up .modal-content {
    top: 2.55em;
  }
}
.page-headings--modal-content {
  padding-right: 3em;
  padding-left: 2.4em;
}
@media (min-width: 43.75em) {
  .page-headings--modal-content {
    padding-right: 5em;
    margin-bottom: 4.5em;
  }
}
@media (min-width: 62.5em) {
  .page-headings--modal-content {
    padding-left: 0;
  }
}
@media not all and (min-width: 43.75em) {
  .page-heading--modal-content {
    font-size: 1.9em;
  }
}
.modal-content__inner {
  -webkit-box-shadow: 0 0 200px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 200px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: inline-block;
  text-align: left;
  background: white;
}
.modal-content__scroll {
  overflow: auto;
  top: 4.6em;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.modal-active {
  overflow: hidden;
}
.modal-content-close {
  display: block;
  padding: 1.1em 2em 1.3em;
  text-align: left;
  width: 100%;
  height: 4.6em;
  -webkit-transition: 0.2s background-color, 0.2s color;
  transition: 0.2s background-color, 0.2s color;
  background: #D1213E;
  color: white;
}
.modal-content-close .icon--arrow-l {
  -webkit-transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1), 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
}
.modal-content-close:hover,
.modal-content-close:focus {
  background: #D1213E;
  color: white;
  outline: none;
}
.modal-content-close:hover .icon--arrow-l,
.modal-content-close:focus .icon--arrow-l {
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
  background-position: -200px -25px;
}
.modal-content-close .button-label {
  white-space: nowrap;
  overflow: hidden;
  width: 90%;
  font-size: 1.1em;
  text-overflow: ellipsis;
}
.overlay--modal {
  display: none;
}
/*-----------------------------------------------------------------------------------------
	/User listings (starred, comments)
-----------------------------------------------------------------------------------------*/
.user-content-items {
  margin-top: -2.5em;
}
.user-content-item {
  border-bottom: 1px solid #000;
}
.user-content-item:last-child {
  border-bottom: none;
}
.user-content-link {
  color: #000;
  padding: 2.5em 0;
}
.user-content-link:hover,
.user-content-link:focus {
  color: #D1213E;
}
.user-content-title {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 0.3em;
  line-height: 1.5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.user-content-subtitle {
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
  color: #707377;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.user-content-link:hover .user-content-subtitle,
.user-content-link:focus .user-content-subtitle {
  color: #D1213E;
}
.user-content-link__cta {
  text-align: right;
}
@media not all and (min-width: 62.5em) {
  .user-content-link__cta {
    display: none;
  }
}
.user-content-link__title {
  padding-left: 2.5em;
  position: relative;
}
@media (min-width: 62.5em) {
  .user-content-link__title {
    padding-right: 3em;
  }
}
.icon--starred--user-content {
  position: absolute;
  left: 0;
  top: 0.3em;
}
.user-content-link__desc__comment {
  font-size: 0.875em;
  margin-top: 0.4em;
}
.user-content-link__desc {
  margin-top: 1.5em;
}
@media (min-width: 62.5em) {
  .user-content-link__desc {
    margin-top: 0;
  }
}
.user-content-link__title--mobile {
  margin-bottom: 1.5em;
}
@media (min-width: 62.5em) {
  .user-content-link__title--mobile {
    display: none;
  }
}
@media not all and (min-width: 62.5em) {
  .user-content-link__title--desktop {
    padding-left: 0;
  }
  .user-content-link__title--desktop .icon--starred--user-content {
    display: none;
  }
}
@media not all and (min-width: 62.5em) {
  .user-content-link__desc--desktop {
    display: none;
  }
}
/*-----------------------------------------------------------------------------------------
	/Account
-----------------------------------------------------------------------------------------*/
.account-security {
  background: #eee;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 3em;
}
@media (min-width: 62.5em) {
  .account-security {
    padding: 5em;
  }
}
.account-security,
.account-personal,
.account--submit {
  margin-top: 2em;
}
@media (min-width: 62.5em) {
  .account-security,
  .account-personal,
  .account--submit {
    margin-top: 0;
  }
}
.button--avatar-remove {
  width: 31px;
  height: 31px;
  border-radius: 100%;
  background-color: #D1213E;
  position: absolute;
  margin: -0.1em 0 0 -0.4em;
  background-position: -339px -89px;
}
@media (min-width: 43.75em) {
  .button--avatar-remove {
    margin: 0.4em 0 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/Contact
-----------------------------------------------------------------------------------------*/
.contact-form-fields {
  margin-top: 2em;
}
@media (min-width: 62.5em) {
  .contact-form-fields {
    margin-top: 0;
  }
}
/*-----------------------------------------------------------------------------------------
	/Contact
-----------------------------------------------------------------------------------------*/
.slider--onboarding {
  background: rgba(218, 220, 224, 0.5);
  margin-left: -2em;
  margin-right: -2em;
}
@media (min-width: 43.75em) {
  .slider--onboarding {
    margin-right: -4em;
    margin-left: -4em;
  }
}
@media (min-width: 62.5em) {
  .slider--onboarding {
    margin-right: auto;
    margin-left: auto;
  }
}
.slider--onboarding .flickity-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider--onboarding .flickity-page-dots {
  bottom: -3.2em;
}
@media not all and (min-width: 43.75em) {
  .slider--onboarding .flickity-page-dots {
    bottom: auto;
    top: -3.3em;
    text-align: left;
    padding-left: 2em;
    left: -0.4em;
  }
}
@media not all and (min-width: 62.5em) {
  .slider--onboarding .flickity-prev-next-button {
    position: relative;
    bottom: -3.7em;
  }
}
.slider--onboarding .flickity-prev-next-button.previous {
  left: -4em;
}
@media not all and (min-width: 62.5em) {
  .slider--onboarding .flickity-prev-next-button.previous {
    left: 2em;
  }
}
.slider--onboarding .flickity-prev-next-button.next {
  right: -4em;
}
@media not all and (min-width: 62.5em) {
  .slider--onboarding .flickity-prev-next-button.next {
    right: -3em;
  }
}
.slide--onboarding {
  width: 100%;
}
@media (min-width: 43.75em) {
  .slide--onboarding {
    padding: 1em;
  }
}
.slide--onboarding__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slide--onboarding__inner--final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slide--onboarding__inner--final:after {
  padding-bottom: 60%;
  content: "";
}
.slider--onboarding__desc {
  padding: 2em;
}
@media (min-width: 43.75em) {
  .slider--onboarding__desc {
    padding: 5em 3em 5em 3em;
  }
}
@media (min-width: 80em) {
  .slider--onboarding__desc {
    padding-right: 5em;
  }
}
@media not all and (min-width: 43.75em) {
  .slider--onboarding__img {
    padding: 0 2em;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 35em;
  }
}
.onboarding-skip-link {
  position: relative;
  z-index: 1;
}
.onboarding-skip-link-area {
  margin-top: 1.6em;
  text-align: right;
}
.onboarding-slider-area {
  position: relative;
}
.block-headings--onboarding {
  max-width: 40em;
  margin-bottom: 4em;
}
@media (min-width: 62.5em) {
  #slide--onboarding--notes .slider--onboarding__img img {
    max-width: 24em;
    margin: 2em 0 2em 3.7em;
  }
}
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}
.flickity-enabled:focus {
  outline: none;
}
.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
  cursor: pointer;
}
.flickity-button:focus {
  outline: none;
}
.flickity-button:active {
  opacity: 0.6;
}
.flickity-button:disabled {
  opacity: 0.2;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.flickity-button-icon {
  fill: currentColor;
}
/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 34px;
  height: 31px;
  background-color: transparent;
  display: inline-block;
  text-indent: -5000px;
  overflow: hidden;
  text-align: left;
  vertical-align: middle;
  background-image: url('/images/sprites.svg?v=1621833036994');
  background-repeat: no-repeat;
  background-position: 0 -150px;
  text-indent: -500px;
  margin-top: -16px;
  -webkit-transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1);
  transition: 0.2s transform cubic-bezier(0.86, 0, 0.07, 1), 0.2s -webkit-transform cubic-bezier(0.86, 0, 0.07, 1);
}
.flickity-prev-next-button.previous {
  left: 10px;
  background-position: -50px -150px;
}
.flickity-prev-next-button.previous:hover,
.flickity-prev-next-button.previous:focus {
  -webkit-transform: translateX(-5px);
      -ms-transform: translateX(-5px);
          transform: translateX(-5px);
}
.flickity-prev-next-button.next {
  right: 10px;
}
.flickity-prev-next-button.next:hover,
.flickity-prev-next-button.next:focus {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}
.flickity-prev-next-button .flickity-button-icon {
  display: none;
}
/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
.flickity-rtl .flickity-page-dots {
  direction: rtl;
}
.flickity-page-dots .dot {
  display: inline-block;
  border-radius: 20em;
  margin: 0 0.4em;
  border: 1px solid #000;
  opacity: 0.4;
  background: none;
  width: 14px;
  height: 14px;
  -webkit-transition: 0.2s opacity, 0.2s border;
  transition: 0.2s opacity, 0.2s border;
  cursor: pointer;
}
.flickity-page-dots .dot:hover,
.flickity-page-dots .dot:focus {
  opacity: 1;
}
.flickity-page-dots .dot.is-selected {
  background: #D1213E;
  border-color: #D1213E;
  opacity: 1;
}
