/**
 * Sizes
 */
@custom-media --mobile (max-width: $size-mobile);
@custom-media --tablet (min-width: $size-tablet);
@custom-media --desktop (min-width: $size-desktop);
/**
 * Hides wording while keeping it accessible
 */
/* Gives a block a width of 100% of the viewport, bringing it out of its container */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/**
 * Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
 */
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

@-ms-viewport {
  width: device-width; }

body {
  position: relative;
  margin: 0;
  font-size: 1.2rem;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  text-align: left; }

/*
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
*/
[tabindex='-1']:focus {
  outline: 0 !important; }

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

p {
  margin: 0; }

/**
* Don't decorate links by default
*/
a {
  background-color: transparent; }

:focus {
  outline: 2px dotted darkcyan; }

ul,
ol,
li,
dl {
  margin: 0; }

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

li {
  list-style: none; }

address {
  font-style: normal;
  line-height: inherit; }

blockquote {
  margin: 0 0; }

dfn {
  font-style: italic; }

b,
strong {
  font-weight: bolder; }

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0; }

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

img,
embed,
object,
video {
  max-width: 100%; }

img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  border-style: none; }

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

path {
  vector-effect: non-scaling-stroke; }

figure {
  margin: 0; }

table {
  border-collapse: collapse; }

caption {
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block; }

button {
  padding: 0;
  border: 0;
  background: none;
  text-decoration: none;
  cursor: pointer; }

button:focus {
  outline: 2px dotted darkcyan; }

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

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  /* reset fieldset's legend awful default style (https://codepen.io/absolutholz/pen/jWgBMo) */
  padding: 0.01em 0 0 0; }

legend {
  width: 100%;
  max-width: 100%;
  padding: 0;
  line-height: inherit;
  color: inherit;
  white-space: normal;
  /* reset fieldset's legend awful default style (https://codepen.io/absolutholz/pen/jWgBMo) */
  display: table;
  float: left;
  margin: 0; }
  legend + * {
    clear: both; }

progress {
  vertical-align: baseline; }

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

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

[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * Removes cross icon for input fields, in ie11+ browsers
 */
[type='input']::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

output {
  display: inline-block; }

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

template {
  display: none; }

[hidden] {
  display: none !important; }

input,
select,
textarea,
button {
  font-family: inherit;
  -webkit-transform: translate3d(0, 0, 0);
  border-radius: 0; }

input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='time'],
input[type='url'],
input[type='week'],
select:focus,
textarea {
  font-size: 1.6rem; }

input[type='number'] {
  -moz-appearance: textfield; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

body:not(:-moz-handler-blocked) fieldset {
  display: table-cell; }

.a11y-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding-top: 90px; }
  @media (min-width: 990px) {
    .app {
      padding-top: 0; } }

.mainHeader,
.content,
.mainFooter,
.mainFooter__footer {
  padding: 0 2rem;
  width: 100%; }
  @media (min-width: 990px) {
    .mainHeader,
    .content,
    .mainFooter,
    .mainFooter__footer {
      padding: 0 6.4rem;
      max-width: 1280px;
      margin: 0 auto; } }

.content {
  flex: 1 0 auto; }

.skiplink {
  padding: 1.2rem 2rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  transform: translateY(-100%) translateX(-100%);
  z-index: 30; }
  .skiplink:focus {
    transform: translateY(0) translateX(0); }

.scrollTop {
  position: fixed;
  bottom: 6.4rem;
  right: 2rem;
  box-shadow: 0 0 25px #222222;
  border-radius: 50%;
  padding: 1.2rem;
  z-index: 10;
  background: #fff; }

.scrollTop__icon {
  display: block;
  width: 30px;
  height: 30px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  transform: rotate(90deg); }

body {
  overflow: visible !important;
  overflow: initial !important; }

.app label,
.dialogCustom label {
  font-size: 1.4rem;
  color: #222222;
  margin-bottom: 0.8rem; }

.app input,
.dialogCustom input {
  border: 1px solid #000;
  margin-bottom: 0.4rem; }
  .app input:not([type='checkbox']),
  .dialogCustom input:not([type='checkbox']) {
    padding: 1.2rem; }
  .app input[type='password'], .app input[type='email'], .app input[type='tel'], .app input[type='text'],
  .dialogCustom input[type='password'],
  .dialogCustom input[type='email'],
  .dialogCustom input[type='tel'],
  .dialogCustom input[type='text'] {
    width: 100%; }
  .app input:-ms-input-placeholder, .dialogCustom input:-ms-input-placeholder {
    color: #808080;
    font-style: italic;
    font-weight: lighter;
    font-size: 1.2rem; }
  .app input::placeholder,
  .dialogCustom input::placeholder {
    color: #808080;
    font-style: italic;
    font-weight: lighter;
    font-size: 1.2rem; }
    @media (min-width: 990px) {
      .app input:-ms-input-placeholder, .dialogCustom input:-ms-input-placeholder {
        font-size: 1.4rem; }
      .app input::placeholder,
      .dialogCustom input::placeholder {
        font-size: 1.4rem; } }

.app input:disabled,
.dialogCustom input:disabled {
  color: #808080;
  border: solid 1px #808080; }

.app textarea,
.dialogCustom textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid #000;
  padding: 1.2rem;
  margin-bottom: 0.4rem;
  font-size: 1.6rem; }
  .app textarea:-ms-input-placeholder, .dialogCustom textarea:-ms-input-placeholder {
    color: #808080;
    font-style: italic;
    font-weight: lighter;
    font-size: 1.2rem; }
  .app textarea::placeholder,
  .dialogCustom textarea::placeholder {
    color: #808080;
    font-style: italic;
    font-weight: lighter;
    font-size: 1.2rem; }
    @media (min-width: 990px) {
      .app textarea:-ms-input-placeholder, .dialogCustom textarea:-ms-input-placeholder {
        font-size: 1.4rem; }
      .app textarea::placeholder,
      .dialogCustom textarea::placeholder {
        font-size: 1.4rem; } }

.app .checkbox__label,
.dialogCustom .checkbox__label {
  font-size: 1.4rem; }
  @media (min-width: 990px) {
    .app .checkbox__label,
    .dialogCustom .checkbox__label {
      font-size: 1.8rem; } }

.app input[type='checkbox'],
.dialogCustom input[type='checkbox'] {
  margin-right: 1.2rem;
  margin-left: 1.2rem;
  position: relative;
  border: none;
  width: auto;
  display: inline-block;
  background-color: transparent;
  -webkit-appearance: none;
  min-height: 20px; }

.app input[type='checkbox']::before,
.dialogCustom input[type='checkbox']::before {
  border: solid 1px #000;
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  background-color: #fff; }

.app input[type='checkbox']:checked::before,
.dialogCustom input[type='checkbox']:checked::before {
  background-image: url(/fonts/checkmark.svg);
  background-repeat: no-repeat; }

.app .help-text,
.dialogCustom .help-text {
  font-size: 1.5rem; }

.ui-selectmenu-menu {
  background-color: #fff;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  display: none;
  left: 50%;
  transform: translateX(-50%); }
  @media (min-width: 990px) {
    .ui-selectmenu-menu {
      left: 0;
      transform: none; } }

.ui-selectmenu-open {
  z-index: 2;
  display: block;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07);
  max-height: 200px;
  overflow-y: auto; }
  .ui-selectmenu-open > ul {
    padding: 1.2rem; }

.ui-button.ui-selectmenu-button {
  width: 100%;
  min-width: 49%;
  background: #fff;
  border-radius: 0;
  padding: 1.2rem;
  border: solid 1px #000;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
  font-size: inherit;
  margin-bottom: 0.4rem; }
  .ui-button.ui-selectmenu-button .ui-custom-button {
    background-image: url(/fonts/dropdown.svg); }

.ui-icon.ui-custom-button {
  background-image: url(/fonts/dropdown.svg);
  height: 12px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  width: 12px; }

.ui-custom-button--white {
  background-image: url(/fonts/dropdown--white.svg); }

.ui-selectmenu-text {
  font-size: 1.6rem; }
  @media (min-width: 990px) {
    .ui-selectmenu-text {
      font-size: 1.6rem; } }

.ui-menu-item-wrapper,
.ui-state-active.ui-menu-item-wrapper {
  font-weight: bold;
  margin-bottom: 1.2rem;
  font-size: 1.6rem; }
  @media (min-width: 990px) {
    .ui-menu-item-wrapper,
    .ui-state-active.ui-menu-item-wrapper {
      font-size: 1.6rem; } }
  .ui-menu-item-wrapper:hover, .ui-menu-item-wrapper:focus,
  .ui-state-active.ui-menu-item-wrapper:hover,
  .ui-state-active.ui-menu-item-wrapper:focus {
    font-weight: normal;
    font-weight: initial; }

.ui-menu-item:first-child {
  color: #808080;
  font-style: italic;
  font-weight: lighter; }

.form input[type='checkbox'].error::before,
.form .error {
  border: solid 1px #dc3545; }

.form .error + .ui-selectmenu-button {
  border: solid 1px #dc3545; }

.form label.error,
.form span.error {
  color: #dc3545;
  border: 0;
  flex-basis: 100%;
  font-size: 1.4rem;
  font-weight: normal;
  font-weight: initial;
  margin-bottom: 0; }

.form .success {
  color: #11b683;
  border: 0;
  font-size: 1.4rem;
  font-weight: normal;
  font-weight: initial;
  margin-bottom: 0; }

.app .button,
.dialogCustom .button {
  border-radius: 999em;
  padding: 1.2rem 3.2rem;
  display: block;
  border: 1px solid;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500; }
  @media (prefers-reduced-motion: no-preference) {
    .app .button,
    .dialogCustom .button {
      transition: background 0.5s; } }

.app .button--small,
.dialogCustom .button--small {
  padding: 0.8rem 2rem;
  font-size: 1.1rem; }

.flash-error {
  border: 1px solid #dc3545;
  color: #dc3545;
  font-size: 1.6rem;
  padding: 0.8rem;
  margin: 0 auto;
  margin-bottom: 1.2rem; }

.flash-success {
  border: 1px solid #11b683;
  color: #11b683;
  font-size: 1.6rem;
  padding: 0.8rem;
  margin: 0 auto;
  margin-bottom: 1.2rem; }

.form__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between; }
  @media (min-width: 990px) {
    .form__wrapper {
      flex-direction: row; } }

.required::after {
  content: '*'; }

.form__field {
  width: 100%;
  min-width: 150px;
  margin-bottom: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }
  @media (min-width: 990px) {
    .form__field:not(:last-child) {
      margin-right: 1.2rem; } }

.form__fieldTitle {
  font-size: 1.8rem;
  margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .form__fieldTitle {
      font-size: 2.8rem; } }

.form__legend {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  font-weight: lighter;
  color: #222222; }

.form__error {
  color: #dc3545;
  font-size: 1.6rem;
  border: 1px solid #dc3545;
  padding: 0.8rem;
  margin: 0 auto;
  margin-bottom: 1.2rem;
  max-width: 300px;
  flex-basis: 100%; }
  @media (min-width: 990px) {
    .form__error {
      max-width: 380px; } }

.form__validationWrapper {
  margin: 0 auto;
  max-width: 300px; }
  @media (min-width: 990px) {
    .form__validationWrapper {
      max-width: 380px; } }

.form__validation {
  text-align: center;
  color: #11b683;
  font-size: 1.6rem;
  border: 1px solid #11b683;
  padding: 0.8rem;
  margin-bottom: 1.2rem; }

.custom-combobox {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-right: 25px;
  max-height: 50px; }

.custom-combobox-toggle {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-left: -1px;
  padding: 0;
  border-radius: 0;
  border-color: #000; }

.ui-widget.ui-widget-content.ui-autocomplete {
  max-height: 150px;
  overflow-y: auto; }

.ui-widget.ui-widget-content.custom-combobox-input {
  width: 100%;
  max-height: 50px;
  background: #fff;
  border-color: #000;
  border-radius: 0;
  margin-bottom: 0;
  font-size: 1.6rem; }

.error404 {
  background: #dc3545;
  max-width: none;
  color: #fff; }

.error404__inner {
  min-height: 300px;
  display: flex;
  text-align: center;
  justify-content: center;
  flex-direction: column; }

.error404__link {
  border: 1px solid #fff;
  border-radius: 5px;
  background: transparent;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  margin: 2rem auto 0;
  padding: 1.2rem 2rem; }
  .error404__link:hover, .error404__link:focus {
    background: #fff;
    color: #dc3545;
    border-color: #dc3545; }

.breadcrumb {
  padding: 0 3.2rem;
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
  color: #808080;
  display: flex;
  flex-direction: column;
  align-items: baseline; }
  @media (min-width: 990px) {
    .breadcrumb {
      padding: 0;
      width: 1200px;
      margin: 0 auto;
      margin-bottom: 3.2rem; } }

.breadcrumb--white {
  color: #fff !important; }
  .breadcrumb--white .breadcrumb__container__link {
    color: #fff !important; }
  .breadcrumb--white .breadcrumb__btn {
    color: #fff !important; }

.breadcrumb__btn {
  display: none; }

.breadcrumb__container {
  display: block; }

.breadcrumb__container__link {
  color: #808080;
  text-decoration: none; }
  .breadcrumb__container__link:hover, .breadcrumb__container__link:focus {
    text-decoration: underline; }

.jquery-modal.blocker {
  z-index: 101; }

.dialogCustom {
  background: #fff;
  padding: 2rem; }

.dialogCustom .ui-dialog-content {
  margin: 1.2rem;
  min-width: 250px; }
  @media (min-width: 990px) {
    .dialogCustom .ui-dialog-content {
      min-width: 600px; } }

.dialogCustom__header {
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 1.8rem; }

.dialogCustom__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem; }

.dialogCustom .ui-widget-header {
  background-color: #fff;
  border: 0; }

.dialogCustom.ui-corner-all {
  border-radius: 1.2rem; }

.dialogCustom .ui-dialog-titlebar .ui-dialog-titlebar-close {
  height: 24px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  width: 24px;
  background-image: url(/fonts/close.svg);
  border: 0;
  background-color: #fff; }

.dialogCustom .ui-dialog-titlebar {
  margin: 1.2rem; }

.dialogCustom .ui-icon,
.ui-widget-content .ui-icon {
  display: none; }

.alphabetical::after {
  content: '';
  border-bottom: solid 1px #000;
  display: block;
  margin-bottom: 3.2rem; }

.alphabetical .alphabetical__filter {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: center;
  margin-bottom: 3.2rem; }
  .alphabetical .alphabetical__filter li {
    list-style: none; }

.alphabetical .alphabetical__link {
  text-decoration: none;
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #000;
  border-right: solid 1px #000;
  padding: 0 1.2rem; }
  @media (min-width: 990px) {
    .alphabetical .alphabetical__link {
      margin-bottom: 0.8rem; } }
  .alphabetical .alphabetical__link:hover, .alphabetical .alphabetical__link:focus {
    text-decoration: underline; }

.rll-youtube-player iframe {
  z-index: 0; }

.content--single .contentSingle {
  margin-top: 0; }

.contentSingle__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .contentSingle__header {
      align-items: center;
      margin-bottom: 1.2rem; } }

@media (min-width: 990px) {
  .contentSingle__infos {
    display: flex; } }

.contentSingle__time {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bolder; }
  @media (min-width: 990px) {
    .contentSingle__time {
      font-size: 1.4rem;
      margin-right: 3.2rem; } }

.contentSingle__category {
  font-size: 1rem;
  text-transform: uppercase; }
  @media (min-width: 990px) {
    .contentSingle__category {
      font-size: 1.4rem; } }

.contentSingle__label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.contentSingle__heading {
  display: flex;
  align-items: center;
  padding-top: 50px; }

.contentSingle__lock {
  margin-right: 1.2rem; }

.contentSingle__title {
  font-size: 2rem;
  font-weight: bolder;
  margin-bottom: 0; }
  @media (min-width: 990px) {
    .contentSingle__title {
      font-size: 2.5rem; } }

.contentSingle__thePostThumbnail {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .contentSingle__thePostThumbnail figure {
    display: table; }
  .contentSingle__thePostThumbnail figcaption {
    display: table-caption;
    caption-side: bottom;
    text-align: center;
    font-size: 1.4rem; }
  .contentSingle__thePostThumbnail picture {
    display: block; }
    .contentSingle__thePostThumbnail picture img {
      padding: 0;
      margin: 0;
      margin-bottom: 0.6rem; }

.contentSingle__metas {
  font-style: italic;
  font-size: 1rem;
  color: #808080;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .contentSingle__metas {
      font-size: 1.4rem; } }

.contentSingle__subtitle {
  font-size: 1.6rem; }
  @media (min-width: 990px) {
    .contentSingle__subtitle {
      font-size: 2.8rem; } }

.contentSingle__thumbnail {
  display: block;
  margin: 0 auto 3.2rem; }

.contentSingle__header .postActions {
  z-index: 0; }
  .contentSingle__header .postActions .postActions__like {
    display: inline-block; }
  .contentSingle__header .postActions .postActions__button {
    display: none; }
  .contentSingle__header .postActions .postActions__actionsMenu {
    position: static; }
  .contentSingle__header .postActions .postActions__actionsMenu .postActions__list {
    padding: 0; }
  .contentSingle__header .postActions .postActions__action {
    margin-right: 0.8rem;
    background-color: #f6f7fa;
    border-radius: 999em;
    padding: 0.8rem; }
    @media (min-width: 990px) {
      .contentSingle__header .postActions .postActions__action {
        padding: 1.2rem; } }
  .contentSingle__header .postActions .postActions__icon {
    margin: 0;
    width: 18px;
    height: 18px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ }
    @media (min-width: 990px) {
      .contentSingle__header .postActions .postActions__icon {
        width: 25px;
        height: 25px;
        /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.contentSingle__indexNav {
  border-bottom: 1px solid #eeeff2;
  z-index: 20;
  background: #fff;
  left: 0;
  right: 0; }

.contentSingle__indexNav--fixed {
  position: fixed;
  top: 0; }

.contentSingle__indexList {
  list-style: none;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  padding: 2rem 0 0;
  background: #fff;
  max-width: 1172px;
  width: 100%;
  margin: 0 auto; }

.contentSingle__navItem {
  margin-right: 2rem;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .contentSingle__navItem {
      margin-bottom: 0; } }

.contentSingle__navLink {
  display: block;
  font-size: 1.7rem;
  text-decoration: none;
  padding-bottom: 2rem;
  color: #222222; }
  .contentSingle__navLink:hover {
    color: #0064f0; }
  .contentSingle__navLink[aria-current='true'] {
    font-weight: bold;
    border-bottom: 3px solid; }

.contentSingle .contribution {
  padding-top: 3.2rem; }

.contribution h1,
.contribution h2,
.contribution h3,
.contribution h4,
.contribution h5,
.contribution h6 {
  scroll-margin-top: 80px; }

.contribution h2 {
  margin-bottom: 0;
  font-weight: 600; }
  .contribution h2:not([class*='font-size']) {
    font-size: 2.2rem; }
    @media (min-width: 990px) {
      .contribution h2:not([class*='font-size']) {
        font-size: 2rem; } }

.contribution h3:not([class*='font-size']) {
  font-size: 2.2rem; }
  @media (min-width: 990px) {
    .contribution h3:not([class*='font-size']) {
      font-size: 2rem; } }

.contribution h4 {
  font-weight: 600; }
  .contribution h4:not([class*='font-size']) {
    font-size: 1.8rem; }
    @media (min-width: 990px) {
      .contribution h4:not([class*='font-size']) {
        font-size: 1.8rem; } }

.contribution h5:not([class*='font-size']),
.contribution h6:not([class*='font-size']) {
  font-size: 1.8rem; }
  @media (min-width: 990px) {
    .contribution h5:not([class*='font-size']),
    .contribution h6:not([class*='font-size']) {
      font-size: 1.8rem; } }

.contribution p {
  margin-bottom: 2rem;
  font-weight: 400; }
  .contribution p:not([class*='font-size']) {
    font-size: 1.8rem; }
    @media (min-width: 990px) {
      .contribution p:not([class*='font-size']) {
        font-size: 1.6rem; } }

.contribution ul {
  list-style-type: disc;
  list-style-type: initial;
  margin: 0;
  margin: initial;
  margin-bottom: 0.4rem; }
  .contribution ul ul {
    margin-left: 2rem;
    margin-bottom: 0.4rem; }
  .contribution ul li {
    list-style: disc; }

.contribution ol {
  list-style-type: disc;
  list-style-type: initial;
  margin: 0;
  margin: initial; }
  .contribution ol ol {
    margin-left: 2rem;
    margin-bottom: 0.4rem; }
  .contribution ol li {
    list-style: decimal; }

.contribution li {
  font-weight: 300; }
  .contribution li:not([class*='font-size']) {
    font-size: 1.8rem; }
    @media (min-width: 990px) {
      .contribution li:not([class*='font-size']) {
        font-size: 1.6rem; } }

.contribution .wp-block-table table {
  empty-cells: hide;
  width: calc(100% - (0.8rem * 2));
  box-shadow: 0 7px 16px 0 rgba(50, 50, 50, 0.07);
  border-radius: 2rem;
  margin: 0 0.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.7rem; }
  @media (min-width: 990px) {
    .contribution .wp-block-table table {
      font-size: 1.5rem; } }

.contribution tbody tr td {
  padding: 2rem; }

.editor-styles-wrapper ol li {
  list-style: decimal; }

.editor-styles-wrapper ul li {
  list-style: disc; }

.contentSingle__eventIframe {
  border: none;
  min-height: 500px;
  margin-bottom: 2rem; }

.category {
  position: relative; }

.category .titleWithShadowText {
  margin-bottom: 3.2rem; }

.category__description {
  margin-bottom: 3.2rem; }

@media (min-width: 990px) {
  .category__wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: row-reverse; }
    .category__wrapper.faq {
      width: calc(100% - 265px); } }

.category__form {
  width: 100vw;
  margin-left: -2rem;
  margin-right: -2rem;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem;
  padding: 0 1rem; }
  @media (min-width: 990px) {
    .category__form {
      width: auto;
      width: initial;
      display: block;
      margin: 0 0 0 1.2rem;
      padding: 0; } }

.category__orderBy {
  position: relative;
  top: auto;
  top: initial;
  right: auto;
  right: initial;
  min-width: 50%;
  transform: none;
  transform: initial; }
  .category__orderBy .ui-selectmenu-text {
    font-size: 1.6rem; }
  .category__orderBy .ui-selectmenu-button {
    height: 50px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */
    border: 0;
    justify-content: center;
    align-items: baseline;
    text-align: center;
    width: 100%;
    background-color: #f6f7fa;
    padding: 1.2rem 0;
    line-height: 1.5; }
  @media (min-width: 990px) {
    .category__orderBy {
      min-width: 150px;
      position: absolute;
      top: 0;
      right: calc(265px + 2.4rem);
      transform: translateY(-100%); }
      .category__orderBy .ui-selectmenu-text {
        font-size: 1.6rem; }
      .category__orderBy .ui-selectmenu-button {
        border-right: 0;
        width: auto;
        width: initial;
        background-color: transparent;
        background-color: initial; } }

.category__filterWrapper {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100vw;
  height: 100%;
  background-color: #f6f7fa;
  overflow-y: auto; }
  @media (min-width: 990px) {
    .category__filterWrapper {
      display: block;
      position: relative;
      width: 265px;
      min-width: 265px;
      z-index: auto;
      z-index: initial;
      background-color: transparent;
      background-color: initial; } }

.category__filterWrapper--hidden {
  display: none; }

.category__filterHead {
  display: none; }
  @media (min-width: 990px) {
    .category__filterHead {
      display: inline-block;
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
      font-weight: 300; } }

.category__filterWrapper hr {
  display: block;
  max-width: 90%;
  margin: 0 auto; }
  @media (min-width: 990px) {
    .category__filterWrapper hr {
      display: none; } }

.category__modalHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem; }
  @media (min-width: 990px) {
    .category__modalHeader {
      display: none; } }

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

.category__filter {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0.4rem 3.2rem;
  margin-bottom: 3.2rem; }
  @media (min-width: 990px) {
    .category__filter {
      max-width: 270px;
      background-color: #f6f7fa;
      flex-direction: column;
      padding: 6.4rem 5.2rem;
      margin-bottom: 6.4rem; } }

.category__filterHeader {
  display: flex;
  align-items: baseline;
  justify-content: space-between; }

.category__modalHeading {
  font-size: 1.4rem; }

.category__filterLegend {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center; }

.category__filterToggle {
  -webkit-appearance: none;
  display: block;
  font-size: 2.5rem;
  padding: 1.2rem;
  min-width: 30px; }
  .category__filterToggle .category__filterToggleIndicator--closed {
    display: block; }
  .category__filterToggle .category__filterToggleIndicator--opened {
    display: none; }
  .category__filterToggle[aria-expanded='true'] .category__filterToggleIndicator--closed {
    display: none; }
  .category__filterToggle[aria-expanded='true'] .category__filterToggleIndicator--opened {
    display: block; }

.category__filterColumns {
  columns: 2;
  width: 100%; }
  @media (min-width: 990px) {
    .category__filterColumns {
      columns: 1; } }

.category__filterItem {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.4rem; }
  .category__filterItem label {
    text-transform: uppercase;
    margin-bottom: 1.2rem; }

.category__filterItem--sub {
  margin-left: 2rem; }

.category__content {
  width: 100%; }

.category__result {
  width: 100%; }
  @media (min-width: 990px) {
    .category__result {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2rem; } }

.category .category__result > .card {
  margin-bottom: 5.2rem; }
  @media (min-width: 990px) {
    .category .category__result > .card {
      min-width: 275px;
      flex: 0; } }

.category__count {
  font-size: 1.2rem;
  margin-bottom: 0.8rem; }
  @media (min-width: 990px) {
    .category__count {
      font-size: 1.8rem; } }

.category__countLabel {
  margin-right: 2rem;
  font-size: 1.6rem;
  font-weight: 400; }
  @media (min-width: 990px) {
    .category__countLabel {
      font-weight: 300; } }

.category__header {
  display: flex;
  align-items: center;
  flex-direction: column; }
  @media (min-width: 990px) {
    .category__header {
      flex-direction: row; } }
  .category__header .ui-button.ui-selectmenu-button {
    min-width: 0;
    width: 100%;
    font-size: 1.4rem; }
    @media (min-width: 990px) {
      .category__header .ui-button.ui-selectmenu-button {
        width: auto; } }

.category__count--desktop {
  display: inline-block; }
  @media (min-width: 990px) {
    .category__count--desktop {
      display: inline-block;
      margin-bottom: 1.2rem; } }

.category__count--mobile {
  display: none; }
  @media (min-width: 990px) {
    .category__count--mobile {
      display: none; } }

.category__mobileDropdown {
  height: 50px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  border: 0;
  text-align: left;
  width: 100%;
  background-color: #f6f7fa;
  padding: 1.2rem;
  font-size: 1.6rem; }

@media (min-width: 990px) {
  .category__mobileDropdown--filters {
    display: none; } }

.category__DropdownIcon {
  width: 12px;
  height: 12px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  fill: #222222;
  position: absolute;
  right: 13px;
  top: 18px;
  margin-left: 0;
  text-align: left; }
  @media (min-width: 990px) {
    .category__DropdownIcon {
      margin-left: 0.4rem;
      position: inherit; } }

.category .category__submit {
  display: block;
  margin: 0 auto; }
  @media (min-width: 990px) {
    .category .category__submit {
      display: none; } }

.category__reset {
  margin-left: 2rem;
  display: inline-block; }

#category_posts_submit {
  display: none; }

.category__seeMore {
  margin: 0 auto 3.2rem; }

.category__loader {
  display: none;
  text-align: center; }

.contentCategory__description {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 3.2rem; }

.capsule {
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin-top: -0.8rem;
  padding-bottom: 6.4rem; }

.capsule--alignLeft {
  justify-content: flex-start; }

.capsule__lock {
  fill: #fff; }

.capsule--desktop {
  display: none; }
  @media (min-width: 990px) {
    .capsule--desktop {
      display: flex; } }

.capsule--mobile {
  display: block; }
  @media (min-width: 990px) {
    .capsule--mobile {
      display: none; } }

.capsule__link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.2rem 3.2rem; }

.contribution .capsule__option,
.capsule__option {
  list-style: none;
  border: 1px solid #fff;
  border-radius: 999em;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem; }
  .contribution .capsule__option:hover, .contribution .capsule__option:focus,
  .capsule__option:hover,
  .capsule__option:focus {
    box-shadow: 0 5px 10px -3px rgba(243, 243, 243, 0.5); }

.capsule--dark .contribution .capsule__option,
.capsule--dark .capsule__option {
  background: #eeeff2; }

.capsule--dark .capsule__link {
  color: #222222; }

.app .card__content .card__article,
.wp-block .card__content .card__article {
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 2rem; }
  @media (min-width: 990px) {
    .app .card__content .card__article,
    .wp-block .card__content .card__article {
      font-size: 1.4rem; } }

.app .essentials .smallCard .smallCard__article,
.wp-block .essentials .smallCard .smallCard__article {
  font-size: 1.6rem; }
  @media (min-width: 990px) {
    .app .essentials .smallCard .smallCard__article,
    .wp-block .essentials .smallCard .smallCard__article {
      font-size: 1.4rem; } }

.app .smallCard,
.wp-block .smallCard {
  margin: 1.2rem auto;
  width: 96% !important;
  display: block !important;
  padding: 0; }
  @media (min-width: 990px) {
    .app .smallCard,
    .wp-block .smallCard {
      margin-right: 1.2rem;
      width: 100% !important;
      display: inline-block !important;
      padding: 0; } }

.app .smallCard .smallCard__title,
.wp-block .smallCard .smallCard__title {
  font-size: 2rem; }
  @media (min-width: 990px) {
    .app .smallCard .smallCard__title,
    .wp-block .smallCard .smallCard__title {
      font-size: 1.8rem; } }

.app .card__time,
.wp-block .card__time {
  margin-right: 0.6rem; }

.app .cards:not(.cards--masonry) .card,
.wp-block .cards:not(.cards--masonry) .card {
  margin-top: 2rem; }

@media (prefers-reduced-motion: no-preference) {
  .app .cards:not(.cards--masonry) .card--noBg,
  .wp-block .cards:not(.cards--masonry) .card--noBg {
    transition: transform 0.3s ease-out; } }

.app .cards:not(.cards--masonry) .card--noBg:hover,
.app .cards:not(.cards--masonry) .card--noBg:focus,
.wp-block .cards:not(.cards--masonry) .card--noBg:hover,
.wp-block .cards:not(.cards--masonry) .card--noBg:focus {
  /* stylelint-disable-line a11y/selector-pseudo-class-focus */
  transform: translateY(-2rem); }

@media (prefers-reduced-motion: no-preference) {
  .app .cards.cards--masonry .card__content,
  .wp-block .cards.cards--masonry .card__content {
    transition: transform 0.3s ease-out; } }

.app .cards.cards--masonry .card__link:hover .card__title,
.app .cards.cards--masonry .card__link:focus .card__title,
.wp-block .cards.cards--masonry .card__link:hover .card__title,
.wp-block .cards.cards--masonry .card__link:focus .card__title {
  text-decoration: underline; }

.app .cards--masonry,
.wp-block .cards--masonry {
  margin-bottom: 3.2rem; }
  @media (min-width: 990px) {
    .app .cards--masonry,
    .wp-block .cards--masonry {
      flex-wrap: wrap;
      margin-bottom: 6.4rem; } }

.app .card,
.wp-block .card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.4rem 1.2rem 1.2rem;
  border-radius: 1.2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 1.2rem;
  background-color: #fff;
  min-width: 180px;
  height: 270px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  @media (min-width: 990px) {
    .app .card,
    .wp-block .card {
      padding: 0.8rem 2rem 2rem;
      height: 400px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */
      margin-right: 1.2rem;
      margin: 0 auto;
      width: 96%; } }
  .app .card .postActions__iconMenu,
  .wp-block .card .postActions__iconMenu {
    fill: #000; }

.app .card__backgroundImg,
.wp-block .card__backgroundImg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  background-color: #808080; }
  @media (prefers-reduced-motion: no-preference) {
    .app .card__backgroundImg,
    .wp-block .card__backgroundImg {
      transition: transform 0.3s; } }

.app .card__content,
.wp-block .card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; }

.app .card--white,
.wp-block .card--white {
  color: #fff; }
  .app .card--white .card__button,
  .wp-block .card--white .card__button {
    color: inherit; }
  .app .card--white .postActions__iconMenu,
  .wp-block .card--white .postActions__iconMenu {
    fill: #fff; }
  .app .card--white:not(.card--background)::before,
  .wp-block .card--white:not(.card--background)::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: 80%;
    left: -1px;
    z-index: 1;
    border-radius: 0 0 1.2rem 1.2rem;
    transform: rotate(180deg);
    background: linear-gradient(180deg, rgba(79, 79, 79, 0) 0%, rgba(0, 0, 0, 0.6) 100%); }
  .app .card--white:not(.card--background)::after,
  .wp-block .card--white:not(.card--background)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1px;
    bottom: -1px;
    left: -1px;
    border-radius: 1.2rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%); }
  .app .card--white .card__content .card__source,
  .wp-block .card--white .card__content .card__source {
    color: #000;
    border-color: #fff;
    background: #fff;
    box-shadow: 0 5px 10px -3px rgba(34, 34, 34, 0.5); }

.app .card--squareBig,
.wp-block .card--squareBig {
  background-color: #808080;
  border-radius: 1.2rem;
  padding: 0 1.2rem 1.2rem;
  min-width: 240px;
  min-height: 240px; }
  @media (min-width: 990px) {
    .app .card--squareBig,
    .wp-block .card--squareBig {
      padding: 2rem;
      min-height: 570px; } }
  .app .card--squareBig .card__title,
  .wp-block .card--squareBig .card__title {
    font-size: 1.6rem; }
    @media (min-width: 990px) {
      .app .card--squareBig .card__title,
      .wp-block .card--squareBig .card__title {
        font-size: 3rem;
        max-width: 80%; } }
  .app .card--squareBig .card__category,
  .wp-block .card--squareBig .card__category {
    font-size: 1rem; }
    @media (min-width: 990px) {
      .app .card--squareBig .card__category,
      .wp-block .card--squareBig .card__category {
        font-size: 1.4rem; } }
  @media (min-width: 990px) {
    .app .card--squareBig .card__time,
    .wp-block .card--squareBig .card__time {
      font-size: 1.4rem; } }

.app .card--square,
.wp-block .card--square {
  border-radius: 1.2rem;
  padding: 0.8rem 1.2rem 1.2rem;
  min-width: 240px; }
  .app .card--square .card__title,
  .wp-block .card--square .card__title {
    font-size: 1.6rem; }
  @media (min-width: 990px) {
    .app .card--square,
    .wp-block .card--square {
      width: calc(25% - 1.2rem);
      min-height: 281px;
      height: 281px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.app .card--squareSmall,
.wp-block .card--squareSmall {
  min-width: 180px;
  height: 180px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  margin-bottom: 0.8rem; }
  @media (min-width: 990px) {
    .app .card--squareSmall,
    .wp-block .card--squareSmall {
      margin-bottom: 0.8rem;
      width: calc(50% - 0.8rem);
      min-height: 260px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.app .card__link,
.wp-block .card__link {
  color: inherit;
  text-decoration: inherit;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between; }
  .app .card__link:hover, .app .card__link:focus,
  .wp-block .card__link:hover,
  .wp-block .card__link:focus {
    /* stylelint-disable-line a11y/selector-pseudo-class-focus */ }
    .app .card__link:hover .card__backgroundImg, .app .card__link:focus .card__backgroundImg,
    .wp-block .card__link:hover .card__backgroundImg,
    .wp-block .card__link:focus .card__backgroundImg {
      transform: translate(-50%, -50%) scale(1.1); }

.app .topStories .card__head,
.wp-block .topStories .card__head {
  justify-content: flex-end; }

.app .card__head,
.wp-block .card__head {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  z-index: 2; }

.app .card__head .card__time,
.wp-block .card__head .card__time {
  font-size: 1rem;
  margin-bottom: 0;
  width: 100%; }
  @media (min-width: 990px) {
    .app .card__head .card__time,
    .wp-block .card__head .card__time {
      font-size: 1.1rem; } }

.app .card__button,
.wp-block .card__button {
  z-index: 1; }

.app .card__metas,
.wp-block .card__metas {
  display: flex;
  flex-direction: column; }

.app .card__metas .card__source,
.wp-block .card__metas .card__source {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: 1px solid #000;
  border-radius: 999em;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1.2rem;
  align-self: center; }
  @media (min-width: 990px) {
    .app .card__metas .card__source,
    .wp-block .card__metas .card__source {
      font-size: 0.9rem; } }

.app .card__content .card__category,
.wp-block .card__content .card__category {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.2rem; }
  @media (min-width: 990px) {
    .app .card__content .card__category,
    .wp-block .card__content .card__category {
      font-size: 1rem; } }

.app .card__content .card__title,
.wp-block .card__content .card__title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  margin-top: 0;
  padding: 0 1.2rem; }
  @media (min-width: 990px) {
    .app .card__content .card__title,
    .wp-block .card__content .card__title {
      margin-bottom: 1.2rem;
      font-size: 1.8rem;
      padding: 0; } }

.app .card__title--center,
.wp-block .card__title--center {
  text-align: center; }

.app .card__article--hidden,
.wp-block .card__article--hidden {
  display: none; }

.app .card__playerIcon,
.wp-block .card__playerIcon {
  display: block;
  max-width: 30px;
  max-height: 30px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  margin: 0 auto;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .app .card__playerIcon,
    .wp-block .card__playerIcon {
      max-width: 50px;
      max-height: 50px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.app .card__denied,
.wp-block .card__denied {
  flex: 1;
  border: 5px solid #ccc;
  padding: 3.2rem;
  color: #808080;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  text-align: center;
  min-height: 240px; }

.registration {
  margin: 0 auto; }
  @media (min-width: 990px) {
    .registration {
      width: 80%; } }

.registration--light {
  margin: 0 auto; }
  @media (min-width: 990px) {
    .registration--light {
      width: 100%; } }

.registration__button {
  display: flex;
  justify-content: center;
  margin-bottom: 3.2rem; }

.login {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative; }
  @media (min-width: 990px) {
    .login {
      flex-direction: row; } }

.login__presentation {
  margin-bottom: 6.4rem;
  font-size: 1.8rem; }
  @media (min-width: 990px) {
    .login__presentation {
      padding: 7.6rem;
      display: flex;
      flex-direction: column;
      flex: 1; } }

@media (min-width: 990px) {
  .login__presentation::after {
    pointer-events: none;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 8px;
    display: block;
    background: linear-gradient(90deg, white 0%, rgba(50, 50, 50, 0.07) 100%); } }

.login__form {
  margin-bottom: 6.4rem; }
  .login__form .form__field {
    margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .login__form {
      padding: 7.6rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      flex: 1; }
      .login__form .form__field {
        width: 380px; } }

.login__fieldset {
  margin-bottom: 1.2rem; }

.login__button {
  margin-bottom: 3.2rem; }
  @media (min-width: 990px) {
    .login__button {
      margin-bottom: 3.2rem; } }

.login__links {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .login__links {
      margin-bottom: 3.2rem; } }

.login__link {
  color: #222222;
  font-size: 1.6rem;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .login__link {
      font-size: 1.4rem;
      margin-bottom: 0.8rem; } }

.resetPassword {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.resetPassword__form {
  margin: 0 auto;
  margin-bottom: 3.2rem; }

.resetPassword__input {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .resetPassword__input {
      width: 380px; } }

.resetPassword__submit {
  margin-bottom: 3.2rem;
  max-width: 300px; }
  @media (min-width: 990px) {
    .resetPassword__submit {
      max-width: auto; } }

.contact__form {
  margin: 0 auto;
  margin-bottom: 6.4rem; }
  @media (min-width: 990px) {
    .contact__form {
      width: 80%; } }

.contact__form .form__field {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; }
  .contact__form .form__field div {
    width: 100%; }
    @media (min-width: 990px) {
      .contact__form .form__field div {
        width: auto; } }

.contact__button {
  margin: 0 auto 1.2rem; }

.contact__termsOfUse {
  margin-bottom: 3.2rem;
  color: #808080;
  font-size: 1.4rem;
  font-weight: 300; }

.profile {
  margin-bottom: 3.2rem; }

.profile__title {
  margin-right: 1.2rem; }

.profile__header {
  display: flex;
  align-items: baseline; }

.profile__button {
  margin: 0 auto; }

.mainHeader {
  background-color: #fff;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07);
  position: fixed;
  padding: 0 1.2rem;
  top: 0;
  width: 100%;
  z-index: 101; }
  @media (min-width: 990px) {
    .mainHeader {
      position: relative;
      margin-bottom: 3.2rem; } }

.mainHeader__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.mainNavigation,
.globalNavigation {
  display: flex;
  align-items: center; }

.mainNavigation__logo {
  display: flex;
  flex-shrink: 0;
  align-items: center; }
  .mainNavigation__logo img {
    height: 80px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */
    width: auto; }

.mainNavigation__extranetNotice {
  text-transform: uppercase;
  font-size: 1rem;
  margin-left: 0.8rem; }
  @media (min-width: 990px) {
    .mainNavigation__extranetNotice {
      font-size: 1.4rem;
      margin-left: 3.2rem; } }

.accessNavigation ul {
  display: flex; }

.mainNavigation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0.8rem;
  padding-left: 3.2rem; }

.mainNavigation__toggle {
  margin-left: 1.2rem;
  margin-right: 2rem; }

.mainNavigation__label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.mainNavigation__menu {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  width: 75%;
  max-width: 400px;
  box-shadow: 0 0 25px #222222;
  overflow-y: auto;
  z-index: 2;
  transform: translateX(-120%); }
  @media (min-width: 990px) {
    .mainNavigation__menu {
      width: 30%; } }
  @media (prefers-reduced-motion: no-preference) {
    .mainNavigation__menu {
      transition: transform 0.5s ease-out; } }
  .mainNavigation__menu.mainNavigation__menu--visible {
    transform: translateX(0); }

.mainNavigation__menuLinks.--mobile {
  display: block; }
  @media (min-width: 990px) {
    .mainNavigation__menuLinks.--mobile {
      display: none; } }

.mainNavigation__overlay {
  content: '';
  display: block;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(238, 239, 242, 0.5); }

.mainNavigation__menuLinks {
  padding: 0 3.2rem; }
  .mainNavigation__menuLinks .sub-menu {
    margin-bottom: 3.2rem; }
  .mainNavigation__menuLinks li {
    list-style: none; }
  .mainNavigation__menuLinks a {
    text-decoration: none;
    color: #222222;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8; }
    .mainNavigation__menuLinks a:hover, .mainNavigation__menuLinks a:focus {
      text-decoration: underline; }
  .mainNavigation__menuLinks .menu-item-has-children > a:first-of-type {
    display: inline-block;
    margin-bottom: 0.4rem; }

.mainNavigation__menu .menu-item .menu-item a {
  font-weight: 300;
  text-transform: none;
  font-size: 1.6rem; }

.mainNavigation__close {
  padding: 0.4rem; }

.mainNavigation__separator {
  margin: 0;
  margin-bottom: 3.2rem; }

.mainNavigation__otherSitesLink {
  padding: 0 0.8rem;
  text-decoration: none;
  height: auto;
  font-weight: lighter;
  font-size: 1.8rem;
  color: #000; }
  .mainNavigation__otherSitesLink:hover, .mainNavigation__otherSitesLink:focus {
    text-decoration: underline;
    color: #000; }
  .mainNavigation__otherSitesLink:first-of-type {
    border-right: 1px solid #000;
    padding-left: 0; }

.mainNavigation__header .current {
  font-weight: bolder; }

.profileNavigation__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }

.profileNavigation__menu {
  position: absolute;
  top: 50px;
  padding: 1.2rem;
  z-index: 10;
  background-color: #fff;
  border: solid 1px #000;
  border-radius: 1.2rem;
  min-width: 150px;
  white-space: nowrap;
  right: 0; }
  .profileNavigation__menu ul {
    padding: 0; }
  .profileNavigation__menu li {
    list-style: none; }
  .profileNavigation__menu a {
    text-decoration: none;
    color: #222222;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.8; }
    .profileNavigation__menu a:hover, .profileNavigation__menu a:focus {
      text-decoration: underline; }

.profileNavigation__toggle {
  width: 40px;
  height: 40px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  background-color: #000;
  margin: 0 0.8rem;
  color: #fff;
  border-radius: 999em;
  display: flex;
  align-items: center;
  justify-content: center; }

.globalNavigation__searchBtn {
  margin-right: 2rem; }
  @media (min-width: 990px) {
    .globalNavigation__searchBtn {
      position: static; } }

.accessNavigation__menu {
  display: none;
  font-size: 1.1rem;
  text-transform: uppercase; }
  @media (min-width: 990px) {
    .accessNavigation__menu {
      display: block; } }
  .accessNavigation__menu ul {
    padding-left: 0; }
  .accessNavigation__menu li {
    list-style: none; }
  .accessNavigation__menu a {
    text-decoration: none;
    color: #222222;
    margin-right: 2rem; }

.mainNavigation__closeButton {
  width: 24px;
  height: 24px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }

.search {
  display: flex;
  justify-content: flex-end;
  margin-right: 1.2rem;
  position: relative; }

.search__form {
  width: 100%;
  max-width: 0;
  position: relative; }
  @media (prefers-reduced-motion: no-preference) {
    .search__form {
      transition: max-width 0.5s; } }
  @media (min-width: 990px) {
    .search__form {
      max-width: none;
      display: none; } }
  .search__form.search__form--open {
    border-color: #000;
    padding: inherit 2rem;
    max-width: 500px; }
    @media (min-width: 990px) {
      .search__form.search__form--open {
        max-width: none; } }
    .search__form.search__form--open .search__input {
      width: 100%;
      border-color: #000;
      padding: inherit 2rem; }
      @media (min-width: 990px) {
        .search__form.search__form--open .search__input {
          width: 300px; } }
      @media (min-width: 1280px) {
        .search__form.search__form--open .search__input {
          width: 400px; } }

.search__form--desktop {
  display: none; }
  @media (min-width: 990px) {
    .search__form--desktop {
      display: block; } }

.app .search__input {
  display: block;
  width: 0;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding-left: 0;
  padding-right: 0;
  border-color: transparent;
  margin-right: 1.2rem; }
  @media (prefers-reduced-motion: no-preference) {
    .app .search__input {
      transition: width 0.5s; } }
  @media (min-width: 990px) {
    .app .search__input {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 0; } }

.app .search__submit {
  position: absolute !important;
  width: 1px;
  height: 1px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.search__result {
  display: none;
  position: fixed;
  top: 80px;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07);
  padding: 2rem 3.2rem;
  font-size: 1.4rem; }
  @media (min-width: 990px) {
    .search__result {
      position: absolute;
      top: 40px;
      left: auto;
      bottom: auto;
      width: 360px; } }
  @media (min-width: 1280px) {
    .search__result {
      width: 460px; } }
  .search__result hr {
    visibility: hidden; }

.search__noResult {
  margin-bottom: 2rem; }

.search__resultTitle {
  font-size: 1.2rem;
  color: #808080;
  font-style: italic; }
  .search__resultTitle:not(.search__resultTitle--history) {
    display: none; }

.search__link {
  color: #222222;
  font-size: 1.4rem;
  display: block;
  margin-bottom: 1.2rem;
  text-decoration: none;
  /* stylelint-disable a11y/no-outline-none */
  /* stylelint-enable */ }
  .search__link:hover, .search__link:focus {
    outline: none;
    font-weight: bold; }

.contactMenu {
  display: none;
  margin-right: 2rem; }
  @media (min-width: 990px) {
    .contactMenu {
      display: block; } }

.contactMenu__hidden {
  padding: 0;
  line-height: 0;
  font-size: 0; }

.contactMenu__icon {
  width: 24px;
  height: 24px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }

.ecosystemNav {
  position: relative;
  margin-right: 1.2rem; }
  @media (min-width: 990px) {
    .ecosystemNav {
      margin-right: 0; } }
  .ecosystemNav .safari-display {
    display: none; }

.ecosystemNav__menu {
  display: none;
  font-size: 1.1rem;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  top: 35px;
  background: #fff;
  width: 200px;
  text-align: center;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07);
  padding: 1.2rem 2rem;
  border: 1px solid #ccc; }
  .ecosystemNav__menu::before {
    transform: rotate(-45deg);
    top: -8px;
    right: 7px;
    border: solid 1px #ccc;
    border-bottom: #fff;
    border-left: #fff;
    background: #fff;
    content: '';
    height: 15px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */
    width: 15px;
    position: absolute; }

.ecosystemNav__list {
  padding: 0; }

.ecosystemNav__item {
  list-style: none;
  margin: 0 auto;
  margin: 1.4rem 0; }
  @media (min-width: 990px) {
    .ecosystemNav__item {
      margin-bottom: 2rem; } }

.ecosystemNav__link {
  text-decoration: none;
  color: #222222; }
  .ecosystemNav__link img {
    max-height: 45px;
    width: auto;
    display: inline-block; }

.ecosystemNav__link__title {
  font-size: 1.4rem; }

.themeMenu {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; }

.themeMenu .themeMenu__list {
  display: none; }
  @media (min-width: 1280px) {
    .themeMenu .themeMenu__list {
      list-style-type: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-transform: uppercase;
      font-size: 1.3rem;
      font-weight: 500;
      margin-top: 2rem;
      margin-bottom: 3.2rem; } }

.themeMenu__item {
  list-style: none;
  margin-right: 2rem;
  flex-shrink: 0; }

.themeMenu .themeMenu__link {
  color: #222222;
  text-decoration: none; }
  .themeMenu .themeMenu__link:hover, .themeMenu .themeMenu__link:focus {
    text-decoration: underline; }

.themeMenu__button {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  outline: none; }
  .themeMenu__button:hover, .themeMenu__button:focus {
    text-decoration: underline; }
  .themeMenu__button[aria-expanded='false'] ~ .themeMenu__moreMenu {
    display: none; }

.themeMenu__moreMenu {
  position: absolute;
  background: #fff;
  z-index: 1;
  bottom: 0;
  right: 0;
  transform: translateY(100%);
  text-align: left;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07); }
  .themeMenu__moreMenu .themeMenu__item {
    margin: 2rem 3.2rem; }
  .themeMenu__moreMenu .themeMenu__link {
    white-space: nowrap;
    font-size: 1.4rem;
    text-decoration: none; }
    .themeMenu__moreMenu .themeMenu__link:hover, .themeMenu__moreMenu .themeMenu__link:focus {
      text-decoration: underline; }

.themeMenu__arrowDropdown {
  margin-left: 0.4rem;
  fill: #222222; }

.mainFooter {
  margin-top: auto;
  padding: 3.2rem 0;
  background: #f6f7fa; }
  .mainFooter .mainFooter__logo,
  .mainFooter .socialShare {
    flex-shrink: 0; }

.mainFooter__inner {
  padding: 0 1.2rem; }

.mainFooter .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.mainFooter__body,
.mainFooter__body .sub-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-weight: 300; }

.mainFooter__body a {
  display: inline-block;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  color: #222222;
  margin-bottom: 1.2rem; }
  .mainFooter__body a:hover, .mainFooter__body a:focus {
    text-decoration: underline; }
  @media (min-width: 990px) {
    .mainFooter__body a {
      font-size: 1.6rem;
      margin-bottom: 0; } }

.mainFooter__body .menu-item.menu-item-has-children {
  width: 100%;
  margin-bottom: 2rem;
  margin-right: 1.2rem; }
  .mainFooter__body .menu-item.menu-item-has-children > a {
    font-size: 1.4rem;
    font-weight: bold; }
    @media (min-width: 990px) {
      .mainFooter__body .menu-item.menu-item-has-children > a {
        font-size: 2rem; } }
    .mainFooter__body .menu-item.menu-item-has-children > a:hover, .mainFooter__body .menu-item.menu-item-has-children > a:focus {
      text-decoration: underline; }
  @media (min-width: 990px) {
    .mainFooter__body .menu-item.menu-item-has-children {
      margin-right: 2rem; }
      .mainFooter__body .menu-item.menu-item-has-children:nth-child(odd) {
        margin-right: 2rem; } }

.mainFooter__body .menu-item {
  display: inline-block;
  width: calc(50% - 1.2rem); }
  .mainFooter__body .menu-item:nth-child(odd) {
    margin-right: 1.2rem; }
  @media (min-width: 990px) {
    .mainFooter__body .menu-item {
      width: calc(25% - 2rem);
      margin-right: 2rem; }
      .mainFooter__body .menu-item:nth-child(odd) {
        margin-right: 2rem; } }

.mainFooter__body .menu-item-has-children {
  display: inline-block;
  max-width: calc(50% - 1.2rem); }
  .mainFooter__body .menu-item-has-children:nth-child(odd) {
    margin-right: 0; }
  @media (min-width: 990px) {
    .mainFooter__body .menu-item-has-children {
      max-width: calc(25% - 2rem);
      margin-right: 2rem; }
      .mainFooter__body .menu-item-has-children:nth-child(odd) {
        margin-right: 0; } }
  .mainFooter__body .menu-item-has-children .menu-item {
    width: 100%; }

.mainFooter__header {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid #808080; }
  .mainFooter__header .socialShare li {
    list-style: none; }
  @media (min-width: 990px) {
    .mainFooter__header {
      display: flex;
      padding-bottom: 3.2rem;
      margin-bottom: 3.2rem;
      flex-direction: row;
      align-items: center;
      justify-content: space-between; } }

.mainFooter__logo {
  margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .mainFooter__logo {
      margin-bottom: 0; } }

.mainFooter__baseline {
  font-size: 1.4rem;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .mainFooter__baseline {
      font-size: 1.9rem;
      margin: 0 6.4rem; } }

.mainFooter__footer {
  background: #222222;
  color: #fff;
  padding: 2rem 0;
  position: relative; }
  .mainFooter__footer .menu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 1.2rem; }
    .mainFooter__footer .menu .menu-item {
      width: 50%; }
    @media (min-width: 990px) {
      .mainFooter__footer .menu {
        font-size: 1.4rem; }
        .mainFooter__footer .menu .menu-item {
          width: auto; } }
  .mainFooter__footer li {
    list-style: none; }
  .mainFooter__footer a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.2rem; }
    .mainFooter__footer a:hover, .mainFooter__footer a:focus {
      text-decoration: underline; }
    @media (min-width: 990px) {
      .mainFooter__footer a {
        margin-bottom: 0; } }

.menu-footer-bottom-container {
  font-weight: 200; }

.socialShare {
  display: flex;
  align-content: center;
  align-items: center; }

.socialShare__title {
  margin-right: 3.2rem;
  font-size: 1.2rem;
  font-weight: 600; }
  @media (min-width: 990px) {
    .socialShare__title {
      font-size: 2rem; } }

.socialShare__icon {
  fill: white;
  width: 26px;
  height: 26px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }

.socialShare__menu {
  display: flex; }

.socialShare__item a {
  background-color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50px;
  transition: all 0.2s ease-out; }
  .socialShare__item a:hover {
    transform: scale(1.1); }

.socialShare__item:not(:last-of-type) {
  margin-right: 3.2rem; }

.shareForm {
  max-width: 650px;
  margin-bottom: 1.2rem; }
  .shareForm .form__field {
    flex-direction: column;
    align-items: inherit; }
  .shareForm .error {
    color: #dc3545;
    font-size: 1.4rem; }

.shareForm__button {
  margin: 0 auto; }

.shareForm__response {
  display: inline-block; }

.shareForm__socials {
  display: flex;
  justify-content: center;
  grid-gap: 1rem;
  gap: 1rem; }
  .shareForm__socials button {
    background-color: #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50px;
    transition: all 0.2s ease-out; }
    .shareForm__socials button:hover {
      transform: scale(1.1); }

.contextualSearch__inner {
  margin: 0 auto; }
  @media (min-width: 1280px) {
    .contextualSearch__inner {
      width: 80%; } }
  .contextualSearch__inner .search_submit {
    text-align: center; }
    .contextualSearch__inner .search_submit .button {
      display: inline-block; }
  .contextualSearch__inner .form__wrapper {
    position: relative; }
  .contextualSearch__inner .form__field--floating {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20%; }
    .contextualSearch__inner .form__field--floating .ui-button.ui-selectmenu-button {
      border: none;
      padding: 0; }
  .contextualSearch__inner .form__field--sort {
    right: 3.2rem; }

.app .contextualSearch__field--search {
  border-top: none;
  border-left: none;
  border-right: none;
  border-color: #808080; }

.form__field.contextualSearch--searchInput {
  margin-right: 0; }

.contextualSearch__searchPicto {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  fill: #000;
  right: 0; }

.form__wrapper--filters {
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-start; }
  @media (min-width: 1280px) {
    .form__wrapper--filters {
      width: 80%; }
      .form__wrapper--filters .form__field--full {
        display: flex;
        justify-content: space-between;
        width: 100%; }
        .form__wrapper--filters .form__field--full .contextualSearch__date {
          margin-right: 0; } }

.contextualSearch__date {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .contextualSearch__date .search_error {
    width: 100%; }
  .contextualSearch__date input {
    flex: 1; }
    .contextualSearch__date input:nth-of-type(2) {
      margin-right: 1.2rem;
      margin-left: 1.2rem; }

.contextualSearch__legend {
  width: 100%;
  margin: 0;
  font-size: 1.4rem; }

.contextualSearch__resultsHeader {
  display: none; }

.contextualSearch__resultsTitle {
  font-size: 2.2rem;
  font-weight: 900;
  margin-top: 3.2rem;
  margin-bottom: 2rem; }
  @media (min-width: 990px) {
    .contextualSearch__resultsTitle {
      font-size: 4.5rem;
      margin-top: 6.4rem;
      margin-bottom: 3.2rem; } }

.contextualSearch__resultsCount {
  font-size: 1.8rem;
  flex-basis: 100%; }

.contextualSearch__resultsSummary {
  display: flex;
  justify-content: space-between;
  align-items: center; }
  .contextualSearch__resultsSummary .form__field--sort {
    width: auto;
    min-width: 0;
    margin: 0; }
    .contextualSearch__resultsSummary .form__field--sort .ui-button.ui-selectmenu-button {
      border: none;
      font-size: 1.2rem;
      min-width: 0;
      width: auto;
      padding: 0;
      margin: 0; }

.widget {
  background-color: #000;
  color: #fff;
  padding: 3.2rem;
  margin-bottom: 3.2rem; }
  @media (min-width: 990px) {
    .widget {
      padding: 6.4rem; } }

.widget__title {
  font-size: 1.6rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }
  @media (min-width: 990px) {
    .widget__title {
      font-size: 2.8rem; } }

.widget__label {
  opacity: 0.7; }

.widget__list {
  padding: 0; }

.widget__link {
  text-decoration: none;
  color: inherit; }

.widget__item {
  margin-bottom: 1.2rem; }

.widget__mainInfo {
  font-size: 1.4rem;
  font-weight: 500; }
  @media (min-width: 990px) {
    .widget__mainInfo {
      font-size: 1.8rem; } }

.widget__infos {
  font-size: 1rem;
  font-weight: 200; }
  @media (min-width: 990px) {
    .widget__infos {
      font-size: 1.4rem; } }

.widget .navigation .navigation__info {
  color: #fff; }

.widget .navigation .navigation__arrow {
  fill: #fff; }

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 1.2rem; }

.navigation__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background-color: white;
  width: 50px;
  height: 50px;
  box-shadow: 0 7px 16px 0 rgba(50, 50, 50, 0.07);
  border-radius: 50%;
  z-index: 1; }
  @media (min-width: 990px) {
    .navigation__btn {
      width: 64px;
      height: 64px; } }

.navigation__btn--next {
  right: -15px;
  left: auto; }
  @media (min-width: 990px) {
    .navigation__btn--next {
      right: -30px; } }

.navigation__btn--previous {
  left: -15px;
  right: auto; }
  @media (min-width: 990px) {
    .navigation__btn--previous {
      left: -30px; } }

.navigation__arrow {
  width: 30px;
  height: 30px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  @media (prefers-reduced-motion: no-preference) {
    .navigation__arrow {
      transition: transform 0.5s ease-in-out; } }
  @media (min-width: 990px) {
    .navigation__arrow {
      width: 30px;
      height: 30px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.navigation__arrow--next {
  transform: rotate(180deg); }

.navigation__info {
  text-transform: uppercase;
  font-size: 1.1rem; }
  @media (min-width: 990px) {
    .navigation__info {
      font-size: 1.4rem; } }

.navigation__more {
  text-decoration: none;
  color: #222222;
  font-size: 1.4rem;
  display: block;
  text-align: right; }
  @media (prefers-reduced-motion: no-preference) {
    .navigation__more {
      transition: transform 0.5s ease-in-out; } }
  .navigation__more:hover, .navigation__more:focus {
    transform: translateX(20%); }

.publications {
  margin-bottom: 3.2rem; }
  .publications .card {
    justify-content: start; }
  .publications .card__content {
    margin: auto;
    text-align: center; }
  .publications .card__title {
    font-size: 2.3rem; }
    @media (min-width: 990px) {
      .publications .card__title {
        font-size: 3.5rem; } }

.carousel {
  position: relative;
  margin-bottom: 3.2rem; }

.mostReads {
  margin-bottom: 6.4rem; }

.wp-block .topicFocus__button,
.app .topicFocus__button {
  width: auto;
  margin-bottom: 3.2rem;
  display: inline-block;
  font-size: 1.1rem; }
  @media (min-width: 990px) {
    .wp-block .topicFocus__button,
    .app .topicFocus__button {
      margin: 3.2rem 0;
      margin-bottom: 0;
      font-size: 1.4rem; } }

.socialMedia {
  background-color: #fff; }

.socialMedia__userId {
  color: #00a2f9; }
  @media (min-width: 990px) {
    .socialMedia__userId {
      color: #000; } }

.socialMedia__publicationDate {
  color: #808080; }

.socialMedia__link {
  color: #00a2f9; }

.socialLinks__twitter {
  color: #000; }

.wp-block .postActions,
.app .postActions {
  position: relative;
  z-index: 1;
  margin-right: 0;
  margin-left: auto; }

.wp-block .postActions .postActions__actionsMenu,
.app .postActions .postActions__actionsMenu {
  position: absolute;
  right: 0;
  top: 0; }

.wp-block .postActions .postActions__actionsMenu .postActions__list,
.app .postActions .postActions__actionsMenu .postActions__list {
  display: flex;
  background-color: #fff;
  padding: 1.2rem;
  border-radius: 999em;
  list-style-type: none; }
  .wp-block .postActions .postActions__actionsMenu .postActions__list li,
  .app .postActions .postActions__actionsMenu .postActions__list li {
    display: flex;
    font-size: inherit;
    list-style: none; }

.wp-block .postActions__icon,
.app .postActions__icon {
  margin: 0 0.8rem;
  width: 28px;
  height: 28px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  fill: #222222; }
  @media (min-width: 990px) {
    .wp-block .postActions__icon,
    .app .postActions__icon {
      width: 18px;
      height: 18px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.wp-block .card .postActions .postActions__iconMenu--grey,
.app .card .postActions .postActions__iconMenu--grey {
  fill: #808080; }

.wp-block .postActions__action,
.app .postActions__action {
  position: relative;
  top: 0;
  display: inline-block; }
  @media (prefers-reduced-motion: no-preference) {
    .wp-block .postActions__action,
    .app .postActions__action {
      transition: top 0.2s ease-in-out; } }
  .wp-block .postActions__action:hover, .wp-block .postActions__action:focus,
  .app .postActions__action:hover,
  .app .postActions__action:focus {
    top: -0.4rem; }
  .wp-block .postActions__action .postActions__icon--active,
  .app .postActions__action .postActions__icon--active {
    display: none; }
  .wp-block .postActions__action .postActions__icon--inactive,
  .app .postActions__action .postActions__icon--inactive {
    display: inline-block; }
  .wp-block .postActions__action[aria-checked='true'] .postActions__icon--active,
  .app .postActions__action[aria-checked='true'] .postActions__icon--active {
    display: inline-block; }
  .wp-block .postActions__action[aria-checked='true'] .postActions__icon--inactive,
  .app .postActions__action[aria-checked='true'] .postActions__icon--inactive {
    display: none; }

.wp-block .postActions__like,
.app .postActions__like {
  display: none;
  font-style: italic;
  font-size: 1rem;
  color: #808080;
  margin: auto 0.4rem; }
  @media (min-width: 990px) {
    .wp-block .postActions__like,
    .app .postActions__like {
      font-size: 1.4rem; } }

.wp-block .postActions__label,
.app .postActions__label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); }

.wp-block .postActions__action--big,
.app .postActions__action--big {
  height: 32px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  min-width: 32px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  line-height: 32px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
  background-color: #f6f7fa;
  border-radius: 999em; }
  @media (min-width: 990px) {
    .wp-block .postActions__action--big,
    .app .postActions__action--big {
      height: 45px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */
      min-width: 45px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */
      line-height: 45px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }
  .wp-block .postActions__action--big .postActions__icon,
  .app .postActions__action--big .postActions__icon {
    width: 18px;
    height: 18px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ }
    @media (min-width: 990px) {
      .wp-block .postActions__action--big .postActions__icon,
      .app .postActions__action--big .postActions__icon {
        width: 25px;
        height: 25px;
        /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.page__header {
  margin-bottom: 6.4rem;
  padding: 0.8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center; }
  .page__header .titleWithShadowText__shadow {
    z-index: 0; }
  .page__header .breadcrumb {
    display: block;
    padding-top: 1.2rem; }
    @media (min-width: 990px) {
      .page__header .breadcrumb {
        width: 100%;
        margin: 0 auto; } }
  .page__header .ui-selectmenu-button {
    position: relative;
    width: 70%;
    background: transparent;
    color: #fff;
    margin: 1.2rem 15% 2rem;
    /* stylelint-disable-line declaration-property-unit-allowed-list */
    display: inline-block;
    border: 1px solid #fff;
    padding: 1.2rem 3.2rem;
    border-radius: 999em;
    font-weight: 500; }
    @media (min-width: 990px) {
      .page__header .ui-selectmenu-button {
        display: none; } }
    .page__header .ui-selectmenu-button .ui-custom-button--white {
      background-image: url(/fonts/dropdown--white.svg);
      position: absolute;
      height: 15px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */
      width: 15px;
      display: block;
      fill: #fff;
      right: 1.2rem;
      top: 50%;
      transform: translateY(-50%); }

.player {
  text-align: center; }

.player__videoModal {
  display: none;
  text-align: left; }

.player__modalHeader {
  background: transparent; }

.player__playBtn {
  display: inline-block;
  fill: #fff;
  margin: auto;
  margin-bottom: 2rem;
  padding: 1.2rem;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 0 2px #222222;
  text-align: center;
  height: 52px;
  width: 52px; }

.player__playBtnIcon {
  position: relative;
  left: 2px;
  stroke: #222222; }

.basket {
  display: none;
  position: fixed;
  width: 100%;
  z-index: 15;
  bottom: 0;
  background: #000;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07); }
  @media (min-width: 990px) {
    .basket {
      right: 2rem;
      width: auto; } }

.basket__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem; }

.basket__heading {
  margin-right: 2rem; }

.basket__toggle {
  display: inline-block; }
  .basket__toggle::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0; }
  .basket__toggle[aria-expanded='true'] .basket__picto {
    transform: rotate(180deg); }

.basket__picto {
  fill: #fff; }

.basket__extended {
  overflow: hidden;
  max-height: 0;
  background: #fff; }
  @media (prefers-reduced-motion: no-preference) {
    .basket__extended {
      transition: max-height 0.5s linear; } }

.basket__extended--open {
  max-height: 350px; }

.basket__body {
  padding: 0 2rem;
  max-height: 300px;
  overflow: auto; }

.basket__item {
  display: flex;
  padding: 2rem 1.2rem;
  align-items: center; }
  .basket__item:not(:last-child) {
    border-bottom: 1px solid #000; }

.basket__thumbnail {
  margin-right: 1.2rem;
  width: 90px; }

.basket__title {
  margin-right: 1.2rem;
  max-width: 200px;
  color: #222222;
  text-decoration: none;
  flex: 1; }

.basket .basket__input[type='checkbox'] {
  margin-left: auto;
  justify-self: flex-end; }

.basket__footer {
  padding: 1.2rem 2rem;
  background: #000;
  color: #fff;
  fill: #fff;
  display: flex;
  justify-content: flex-end; }

.basket__action {
  border-radius: 100%;
  border: 1px solid #fff;
  display: inline-block;
  text-align: center;
  width: 36px;
  height: 36px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  position: relative; }
  .basket__action:not(.basket__action) {
    margin-right: 2rem; }

.basket__action--delete {
  justify-self: flex-end; }

.basket__actionPicto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.contribution .tippy-content {
  overflow-x: auto;
  box-shadow: 0 5px 10px -3px rgba(34, 34, 34, 0.5);
  border-radius: 4px; }

.contribution .glossaryTooltip__wrapper {
  display: inline-block; }

.contribution .glossaryTooltip {
  text-decoration: none;
  border-bottom: 1px dotted #222222;
  color: #222222; }

.contribution .tippy-content .glossaryTooltip__title {
  font-size: 1.8rem;
  margin: 0;
  padding: 0.8rem; }

.contribution .tippy-content p {
  font-size: 1.4rem;
  margin: 0;
  padding: 0.8rem; }

.contribution .tippy-box[data-theme~='custom'] {
  background-color: #fff;
  color: #000;
  color: initial;
  box-shadow: 0 5px 6px 0 rgba(50, 50, 50, 0.05); }

.contribution .tippy-tooltip.custom-theme[data-animatefill] {
  background-color: transparent; }

.contribution .tippy-tooltip.custom-theme .tippy-backdrop {
  background-color: #fff; }

.orderHistory__header {
  margin-bottom: 2rem; }

.orderHistory__button {
  display: flex;
  justify-content: center;
  align-items: center;
  fill: #fff;
  width: 100%;
  margin-bottom: 2rem; }

.orderHistory__content .orderHistory__subtitle {
  padding: 3.2rem;
  margin: 0;
  text-align: center;
  font-size: 2.5rem;
  color: #fff; }
  @media (min-width: 990px) {
    .orderHistory__content .orderHistory__subtitle {
      font-size: 4.5rem; } }

.orderHistory__wrapper {
  margin-bottom: 6.4rem; }

.orderHistory__content .orderLine {
  display: none; }

.orderHistory__capsule {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 3.2rem 0; }

.orderHistory__capsuleOption {
  list-style: none;
  border-radius: 999em;
  margin-right: 0.8rem;
  margin-bottom: 0.8rem; }
  .orderHistory__capsuleOption:hover, .orderHistory__capsuleOption:focus {
    box-shadow: 0 5px 10px -3px rgba(243, 243, 243, 0.5); }

.orderHistory__capsuleLink {
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.2rem 3.2rem; }

.orderHistory__url {
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #000;
  text-decoration: none; }
  .orderHistory__url:hover, .orderHistory__url:focus {
    font-weight: bold; }

.orderHistory__content .orderChapters__block {
  width: inherit;
  left: 0;
  margin: 1.2rem auto; }

.orderHistory__content .orderChapters {
  margin-bottom: 2rem; }
  .orderHistory__content .orderChapters .orderChapters__description {
    margin-bottom: 2rem; }
  .orderHistory__content .orderChapters .orderChapters__name {
    margin-bottom: 1.2rem; }
  .orderHistory__content .orderChapters .orderChapters__name,
  .orderHistory__content .orderChapters .orderChapters__text {
    margin-bottom: 1.2rem; }
  .orderHistory__content .orderChapters .orderLine__fileSize {
    display: none; }
  .orderHistory__content .orderChapters .orderLine__action {
    display: none; }
  .orderHistory__content .orderChapters .orderChapters__chapter::after {
    display: none; }

.lds-facebook {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #000; }
  @media (prefers-reduced-motion: no-preference) {
    .lds-facebook div {
      animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite; } }

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s; }

.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s; }

.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0s; }

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  50%,
  100% {
    top: 24px;
    height: 32px;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.loading {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101; }

.loader {
  width: 48px;
  height: 48px;
  border: 5px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite; }

@keyframes rotation {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.loading__overlay {
  background: #222222;
  height: 100%;
  opacity: 0.3;
  display: flex;
  justify-content: center;
  align-items: center; }

.loading__loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

.contribution .events__heading {
  margin-bottom: 1.2rem; }

.events {
  position: relative; }

.events__list {
  display: flex;
  flex-wrap: wrap; }
  @media (min-width: 990px) {
    .events__list {
      flex-direction: row;
      flex-wrap: nowrap; } }

.event {
  padding: 30px;
  box-shadow: 0 2px 13px 0 rgba(50, 50, 50, 0.07);
  border-radius: 14px;
  margin-bottom: 1.2rem;
  flex-basis: 50%; }
  @media (min-width: 990px) {
    .event {
      flex-basis: 25%; } }

.event__name {
  font-size: 1.8rem;
  margin-bottom: 2rem; }

.event__info {
  display: flex;
  align-items: flex-end;
  margin-bottom: 2rem; }

.event__icon {
  margin-right: 1.2rem;
  display: inline-block; }

.event__date {
  font-size: 1.4rem;
  font-weight: 300; }

.app .button.event__link {
  display: inline-block; }

.has-fbf-black-color {
  color: #000; }

.has-fbf-black-background-color {
  background-color: #000; }

.has-fbf-default-color {
  color: #0093A5; }

.has-fbf-default-background-color {
  background-color: #0093A5; }

.has-afb-default-color {
  color: #FF8866; }

.has-afb-default-background-color {
  background-color: #FF8866; }

.has-cdb-default-particuliers-color {
  color: #19A69B; }

.has-cdb-default-particuliers-background-color {
  background-color: #19A69B; }

.has-cdb-default-entreprises-color {
  color: #576A93; }

.has-cdb-default-entreprises-background-color {
  background-color: #576A93; }

.has-fbf-dark-blue-color {
  color: #0093A5; }

.has-fbf-dark-blue-background-color {
  background-color: #0093A5; }

.has-fbf-medium-blue-color {
  color: #20A4B2; }

.has-fbf-medium-blue-background-color {
  background-color: #20A4B2; }

.has-fbf-light-blue-color {
  color: #2CB3C2; }

.has-fbf-light-blue-background-color {
  background-color: #2CB3C2; }

.has-fbf-dark-red-color {
  color: #F87068; }

.has-fbf-dark-red-background-color {
  background-color: #F87068; }

.has-fbf-medium-red-color {
  color: #F88377; }

.has-fbf-medium-red-background-color {
  background-color: #F88377; }

.has-fbf-light-red-color {
  color: #F99583; }

.has-fbf-light-red-background-color {
  background-color: #F99583; }

.has-afb-dark-blue-color {
  color: #6598A2; }

.has-afb-dark-blue-background-color {
  background-color: #6598A2; }

.has-afb-medium-blue-color {
  color: #54979B; }

.has-afb-medium-blue-background-color {
  background-color: #54979B; }

.has-afb-light-blue-color {
  color: #63B5B5; }

.has-afb-light-blue-background-color {
  background-color: #63B5B5; }

.has-afb-dark-red-color {
  color: #FF7D5A; }

.has-afb-dark-red-background-color {
  background-color: #FF7D5A; }

.has-afb-medium-red-color {
  color: #FF8866; }

.has-afb-medium-red-background-color {
  background-color: #FF8866; }

.has-afb-light-red-color {
  color: #FF9C75; }

.has-afb-light-red-background-color {
  background-color: #FF9C75; }

.has-cdb-dark-cyan-color {
  color: #19A69B; }

.has-cdb-dark-cyan-background-color {
  background-color: #19A69B; }

.has-cdb-medium-cyan-color {
  color: #1FC3B5; }

.has-cdb-medium-cyan-background-color {
  background-color: #1FC3B5; }

.has-cdb-light-cyan-color {
  color: #2FD3BF; }

.has-cdb-light-cyan-background-color {
  background-color: #2FD3BF; }

.has-cdb-dark-yellow-color {
  color: #F9AE41; }

.has-cdb-dark-yellow-background-color {
  background-color: #F9AE41; }

.has-cdb-medium-yellow-color {
  color: #FFBB48; }

.has-cdb-medium-yellow-background-color {
  background-color: #FFBB48; }

.has-cdb-light-yellow-color {
  color: #FFC968; }

.has-cdb-light-yellow-background-color {
  background-color: #FFC968; }

.has-cdb-dark-navy-color {
  color: #4A5E82; }

.has-cdb-dark-navy-background-color {
  background-color: #4A5E82; }

.has-cdb-medium-navy-color {
  color: #576A93; }

.has-cdb-medium-navy-background-color {
  background-color: #576A93; }

.has-cdb-light-navy-color {
  color: #6278A7; }

.has-cdb-light-navy-background-color {
  background-color: #6278A7; }

.has-cdb-dark-blue-color {
  color: #0064F0; }

.has-cdb-dark-blue-background-color {
  background-color: #0064F0; }

.has-cdb-medium-blue-color {
  color: #4F87FF; }

.has-cdb-medium-blue-background-color {
  background-color: #4F87FF; }

.has-common-insert-grey-color {
  color: #d6d8da; }

.has-common-insert-grey-background-color {
  background-color: #d6d8da; }

#tarteaucitronDisclaimerAlert {
  overflow-y: scroll;
  max-height: 40vh; }
  @media (min-width: 990px) {
    #tarteaucitronDisclaimerAlert {
      max-height: auto;
      overflow-y: auto; } }

#tarteaucitronIcon, #tarteaucitronManager {
  padding: 8px 6px 5px !important;
  border: none;
  position: fixed;
  bottom: 0; }
  #tarteaucitronIcon img, #tarteaucitronManager img {
    width: 34px !important;
    height: 34px !important; }

#tarteaucitronIcon {
  display: none !important; }

@supports (-webkit-touch-callout: none) {
  .ecosystemNav .safari-display {
    display: block; }
  .ecosystemNav .safari-hidden {
    display: none; } }

.grecaptcha-badge {
  visibility: hidden; }

.tuiles {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 4rem;
  gap: 4rem; }
  .tuiles .wp-block-column {
    margin-left: 0;
    flex-grow: 0;
    flex-basis: auto;
    height: 300px;
    width: 300px; }
  .tuiles h1, .tuiles h2, .tuiles h3, .tuiles h4, .tuiles p, .tuiles a {
    height: 100%;
    width: 100%;
    padding: 3rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem !important;
    font-family: "Playfair", garamond, "Times", serif;
    text-decoration: none;
    text-align: center;
    word-break: normal; }

.youtube-container {
  position: relative; }

.youtube-container > iframe {
  display: block; }

.youtube-container > .video-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  color: white; }

.youtube-container .video-consent-overlay-text {
  text-align: center; }

.youtube-container .video-consent-overlay-accept-button {
  margin: 20px 0 0 0;
  padding: 8px 10px;
  background-color: blue;
  cursor: pointer; }

.recaptcha-container {
  position: relative; }

.recaptcha-container > iframe {
  display: block; }

.recaptcha-container > .form-consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.808);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 0 20px;
  color: white; }

.recaptcha-container .form-consent-overlay-text {
  text-align: center; }

.recaptcha-container .form-consent-overlay-accept-button {
  margin: 20px 0 0 0;
  padding: 8px 10px;
  background-color: blue;
  cursor: pointer; }

.btn-optout {
  padding: 1rem 2rem;
  background-color: white;
  border: 1px solid #bbbbbb;
  margin: 1.4rem 0;
  font-size: small; }
  .btn-optout:hover {
    border: 1px solid #292929; }
  .btn-optout.--active {
    background-color: #3d8548;
    color: white;
    border: solid 1px rgba(0, 0, 0, 0.3);
    cursor: not-allowed; }

.fraudSubscriber__table {
  font-size: 1.4rem;
  margin: 2rem 0;
  width: 100%; }
  .fraudSubscriber__table tbody tr td {
    padding: 1rem 0;
    padding-right: 2rem;
    margin: 0; }
  .fraudSubscriber__table tbody tr:nth-child(even) {
    background-color: #f2f2f2; }
  .fraudSubscriber__table tbody tr:hover {
    background-color: #d8d8d8; }

.wp-block .publication__link,
.app .publication__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  -webkit-text-decoration: auto;
          text-decoration: auto; }

.wp-block .publication__content,
.app .publication__content {
  margin: auto; }

/**
 * Sizes
 */
@custom-media --mobile (max-width: $size-mobile);
@custom-media --tablet (min-width: $size-tablet);
@custom-media --desktop (min-width: $size-desktop);
/**
 * Hides wording while keeping it accessible
 */
/* Gives a block a width of 100% of the viewport, bringing it out of its container */
/*
Theme Name: App Theme
Author: Martin Ibled
Description: This is a app theme.
Version: 1.0
Requires at least: 5.3
Requires PHP: 7.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: app
Text Domain: app
*/
/* ==============-------------- Gotham --------------============== */
@font-face {
  font-family: "Gotham";
  font-weight: normal;
  src: url(/fonts/Gotham-Book.woff2) format("woff2"), url(/fonts/Gotham-Book.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Gotham";
  font-weight: bold;
  src: url(/fonts/Gotham-Medium.woff2) format("woff2"), url(/fonts/Gotham-Medium.woff) format("woff");
  font-display: swap; }

@font-face {
  font-family: "Gotham";
  font-weight: 900;
  src: url(/fonts/Gotham-Bold.woff2) format("woff2"), url(/fonts/Gotham-Bold.woff) format("woff");
  font-display: swap; }

.faq {
  display: block;
  padding: 6.4rem;
  margin-bottom: 3.2rem; }
  .faq .titleWithShadowText__title {
    position: relative;
    z-index: 1; }
  .faq .titleWithShadowText__shadow {
    color: #eeeff2;
    z-index: -1; }

.faq--search {
  background: #f6f7fa; }

.faq__category,
.faq__mostViewed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  /* stylelint-disable-line declaration-property-unit-allowed-list */
  margin-right: -50vw;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  .faq__category > *,
  .faq__mostViewed > * {
    max-width: calc( 1280px - 64px * 2);
    margin-left: auto;
    margin-right: auto; }
  .faq__category:nth-child(odd),
  .faq__mostViewed:nth-child(odd) {
    background: #f6f7fa; }

.faq__categoryInner {
  max-width: 1280px;
  padding: 6.4rem; }

.faq__categoryTitle {
  font-size: 4.5rem;
  font-weight: normal;
  margin-bottom: 2rem; }

.faq__item {
  width: 100%;
  margin-bottom: 3.2rem; }

.faq__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #ccc; }

.faq__heading {
  width: 80%;
  font-size: 2rem;
  margin-bottom: 0;
  text-align: left; }

.faq__toggle {
  padding: 0 1.2rem; }

.faq__answer {
  display: none;
  font-size: 1.6rem; }
  .faq__answer .postAttachment__wrapper {
    background: #fff;
    box-shadow: 0 7px 16px 0 rgba(50, 50, 50, 0.07);
    padding: 2rem 3.2rem;
    border-radius: 14px;
    margin-bottom: 3.2rem; }
    .faq__answer .postAttachment__wrapper:first-of-type {
      margin-top: 2rem; }
  .faq__answer .postActions__action {
    background: #f9ae41; }
  .faq__answer .postActions__icon {
    fill: #fff; }

.orderLine__name {
  font-family: "Gotham", "Arial", sans-serif; }

.orderLine__action {
  background-color: #ffbb48; }

.wp-block .keyFigure__section,
.wp-block .keyFigure__link,
.wp-block .keyFigure .components-base-control__label,
.wp-block .editor-styles-wrapper .keyFigure__name,
.wp-block .keyFigure__tag,
.app .keyFigure__section,
.app .keyFigure__link,
.app .keyFigure .components-base-control__label,
.app .editor-styles-wrapper .keyFigure__name,
.app .keyFigure__tag {
  color: #fff; }

.wp-block .keyFigure__section,
.app .keyFigure__section {
  background-color: #ffbb48; }

.wp-block .keyFigure__numberValue,
.app .keyFigure__numberValue {
  font-family: "Gotham", "Arial", sans-serif; }

.wp-block .keyFigure__section--weekVideo,
.app .keyFigure__section--weekVideo {
  background-color: #808080; }

.wp-block .keyFigure__playButton,
.app .keyFigure__playButton {
  border: 3px solid #fff;
  padding: 1.2rem;
  border-radius: 50%; }
  @media (prefers-reduced-motion: no-preference) {
    .wp-block .keyFigure__playButton,
    .app .keyFigure__playButton {
      transition: 0.2s background ease-in-out; } }
  .wp-block .keyFigure__playButton:hover, .wp-block .keyFigure__playButton:focus,
  .app .keyFigure__playButton:hover,
  .app .keyFigure__playButton:focus {
    background: #fff; }
    .wp-block .keyFigure__playButton:hover .keyFigure__playerIcon, .wp-block .keyFigure__playButton:focus .keyFigure__playerIcon,
    .app .keyFigure__playButton:hover .keyFigure__playerIcon,
    .app .keyFigure__playButton:focus .keyFigure__playerIcon {
      fill: #222222; }
  .wp-block .keyFigure__playButton .keyFigure__playerIcon,
  .app .keyFigure__playButton .keyFigure__playerIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform: translate(-33%, -50%);
    fill: #fff; }

.wp-block .playlist__chapters,
.app .playlist__chapters {
  background-color: #000;
  color: #fff;
  padding: 0.8rem; }

.wp-block .playlist__title,
.app .playlist__title {
  font-family: "Gotham", "Arial", sans-serif; }

.app .categoryContent__title,
.wp-block .categoryContent__title {
  font-size: 4.5rem;
  font-family: "Gotham", "Arial", sans-serif; }

.app .categoryContent__spotlight,
.wp-block .categoryContent__spotlight {
  margin-bottom: 3.2rem; }
  .app .categoryContent__spotlight .card,
  .wp-block .categoryContent__spotlight .card {
    background-color: #2fd3bf;
    height: auto; }
    .app .categoryContent__spotlight .card .postActions__iconMenu,
    .wp-block .categoryContent__spotlight .card .postActions__iconMenu {
      fill: #fff; }
  .app .categoryContent__spotlight .card__link .card__content,
  .wp-block .categoryContent__spotlight .card__link .card__content {
    color: #fff; }
  .app .categoryContent__spotlight .card__content,
  .wp-block .categoryContent__spotlight .card__content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-end; }
  .app .categoryContent__spotlight .card__mainInformation,
  .wp-block .categoryContent__spotlight .card__mainInformation {
    max-width: 80%; }
  .app .categoryContent__spotlight .card__metas,
  .wp-block .categoryContent__spotlight .card__metas {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.2rem; }
  .app .categoryContent__spotlight .card__metas .card__submetas .card__source,
  .wp-block .categoryContent__spotlight .card__metas .card__submetas .card__source {
    color: #fff;
    border: none;
    background: none;
    box-shadow: inherit; }

.app .categoryContent__posts,
.wp-block .categoryContent__posts {
  width: 100%; }
  @media (max-width: 990px) {
    .app .categoryContent__posts .card,
    .wp-block .categoryContent__posts .card {
      height: auto; } }
  @media (min-width: 990px) {
    .app .categoryContent__posts,
    .wp-block .categoryContent__posts {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2rem; }
      .app .categoryContent__posts .card,
      .wp-block .categoryContent__posts .card {
        min-width: calc(100% / 4);
        max-width: calc(100% / 3); } }

.app .categoryContent__results,
.wp-block .categoryContent__results {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.2rem; }

.app .categoryContent__seeMore,
.wp-block .categoryContent__seeMore {
  align-self: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1.2rem;
  margin-bottom: 2rem; }

#category_posts_sort-button {
  display: none; }

.categoryLinks .capsule__option,
.categoryLinks .ui-selectmenu-button {
  margin: 0 1.2rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold; }

.categoryLinks__lock {
  fill: #ccc; }

.categoryLinks__subscription {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
  color: #808080;
  font-style: italic;
  margin-bottom: 1.2rem; }

.categoryLinks__subscriptionBell {
  margin-left: 2rem;
  background-color: #f6f7fa;
  padding: 0.8rem;
  border-radius: 99rem; }

.categoryLinks__subscriptionBell.categoryLinks__subscriptionBell--active {
  background-color: #f9ae41;
  fill: #fff; }

.categoryLinks__subscriptionText {
  display: inline-block; }

.categoryLinks__selectedTitle {
  font-family: "Gotham", "Arial", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 3.2rem; }
  @media (min-width: 990px) {
    .categoryLinks__selectedTitle {
      font-size: 4.5rem; } }

.categoryLinks__selectedTitleLock {
  fill: #000; }

.categoryLinks__group {
  padding: 0;
  margin-bottom: 3.2rem; }

.categoryLinks__groupTitle {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.2rem; }
  @media (min-width: 990px) {
    .categoryLinks__groupTitle {
      font-size: 2rem; } }

.categoryLinks__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 0.5px solid #ccc; }

.categoryLinks__item .categoryLinks__link {
  color: #222222;
  text-decoration: none;
  font-weight: 300;
  font-size: 1.2rem; }
  @media (min-width: 990px) {
    .categoryLinks__item .categoryLinks__link {
      font-size: 1.8rem; } }

.categoryLinks__arrow {
  width: 30px;
  height: 30px;
  /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  @media (min-width: 990px) {
    .categoryLinks__arrow {
      width: 40px;
      height: 40px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.categoryLinks__arrow--simple {
  transform: rotate(180deg); }

.categoryLinks__carrousel {
  margin-bottom: 2rem; }

.categoryLinks__description {
  margin-bottom: 3.2rem; }

.bannerCarousel .bannerCard {
  background-color: #19a69b;
  color: #fff; }

.bannerCard .bannerCard__position {
  font-family: "Gotham", "Arial", sans-serif; }

.accessNavigation a {
  padding: 1.2rem 2rem;
  border-radius: 999em;
  background: #f6f7fa;
  color: #000;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold; }

.accessNavigation a:hover,
.accessNavigation a:focus,
.accessNavigation .menu-item-home a {
  background: #000;
  color: #fff; }

.app .button,
.dialogCustom .button {
  background: #f9ae41;
  color: #fff;
  border-color: #f9ae41; }
  .app .button:hover, .app .button:focus,
  .dialogCustom .button:hover,
  .dialogCustom .button:focus {
    box-shadow: 0 5px 10px -3px #f9ae41; }
  .app .button:disabled,
  .dialogCustom .button:disabled {
    background: #fafbfc;
    color: #222222;
    border-color: #fafbfc; }
    .app .button:disabled:hover, .app .button:disabled:focus,
    .dialogCustom .button:disabled:hover,
    .dialogCustom .button:disabled:focus {
      box-shadow: none; }

.app .button--secondary,
.dialogCustom .button--secondary {
  background: transparent;
  border-color: #222222;
  color: #fff; }

.app .button--alternate:hover, .app .button--alternate:focus,
.dialogCustom .button--alternate:hover,
.dialogCustom .button--alternate:focus {
  background: #f9ae41;
  border-color: #f9ae41;
  box-shadow: 0 5px 10px -3px #f9ae41; }

.app .button--alternate .button--secondary,
.dialogCustom .button--alternate .button--secondary {
  background: transparent;
  border-color: #fff;
  color: #fff; }
  .app .button--alternate .button--secondary:hover, .app .button--alternate .button--secondary:focus,
  .dialogCustom .button--alternate .button--secondary:hover,
  .dialogCustom .button--alternate .button--secondary:focus {
    background: #222222;
    border-color: #222222;
    box-shadow: 0 5px 10px -3px #222222; }

.app .button--alternate:disabled,
.dialogCustom .button--alternate:disabled {
  background: #95c8cf;
  border-color: #95c8cf; }
  .app .button--alternate:disabled:hover, .app .button--alternate:disabled:focus,
  .dialogCustom .button--alternate:disabled:hover,
  .dialogCustom .button--alternate:disabled:focus {
    box-shadow: none; }

.myAlertsPublic--background {
  padding: 6.4rem 1.2rem;
  background: #19a69b;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  left: auto;
  position: relative;
  top: -1px; }
  .myAlertsPublic--background .myAlertsPublic__subTitle,
  .myAlertsPublic--background .myAlertsPublic__description {
    color: #fff;
    margin-left: 10%;
    /* stylelint-disable-line declaration-property-unit-allowed-list */
    margin-right: 10%;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ }
  .myAlertsPublic--background .myAlertsPublic__description {
    font-weight: normal; }
  .myAlertsPublic--background .titleWithShadowText .titleWithShadowText__title {
    color: #fff; }
  .myAlertsPublic--background .titleWithShadowText .titleWithShadowText__shadow {
    -webkit-text-stroke: 1px #fff; }

.myAlertsPublic__header {
  position: relative; }

.myAlertsPublic__wave {
  width: 100%;
  position: relative;
  fill: #19a69b; }

.bannerCarousel .bannerCard {
  background-color: #19a69b;
  color: #fff; }
  @media (min-width: 990px) {
    .bannerCarousel .bannerCard {
      height: 570px;
      /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.bannerCard .bannerCard__position {
  font-family: "Gotham", "Arial", sans-serif;
  font-weight: bold; }
  .bannerCard .bannerCard__position .bannerCard__itemsNb {
    line-height: 4.2rem;
    /* stylelint-disable-line declaration-property-unit-allowed-list */ }
    @media (min-width: 990px) {
      .bannerCard .bannerCard__position .bannerCard__itemsNb {
        line-height: 7rem;
        /* stylelint-disable-line declaration-property-unit-allowed-list */ } }

.bannerCard .bannerCard__title {
  font-weight: bold; }

.error404 {
  background: none;
  max-width: none;
  color: #4f87ff;
  font-size: 1.6rem; }

.error404__title {
  font-family: "Gotham", "Arial", sans-serif;
  color: #0064f0; }

.error404__inner {
  min-height: 400px;
  margin: 4rem 0;
  align-items: center; }

.error404__wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center; }
  @media (min-width: 990px) {
    .error404__wrapper {
      max-width: 1200px;
      flex-direction: row; } }

.error404__left {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  width: auto; }
  .error404__left img {
    -o-object-fit: none;
       object-fit: none;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content; }
  .error404__left p {
    font-weight: 800; }
  @media (min-width: 990px) {
    .error404__left {
      width: 50%; } }

.error404__right {
  display: flex;
  width: 70%; }
  .error404__right img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
    height: 100%; }
  @media (min-width: 990px) {
    .error404__right {
      width: 50%; } }

.error404__link {
  border: 1px solid #0064f0;
  border-radius: 4px;
  background: transparent;
  color: #4f87ff;
  display: inline-block;
  text-decoration: none;
  margin: 2rem auto;
  padding: 1.2rem 2rem; }
  .error404__link:hover, .error404__link:focus {
    background: #4f87ff;
    color: #fff;
    border-color: #0064f0; }

.wp-block .card__head .card__time,
.app .card__head .card__time {
  font-weight: bold; }

.wp-block .card:not(.card--white) .card__title,
.app .card:not(.card--white) .card__title {
  color: #222222; }

.wp-block .card.card--white .card__title,
.app .card.card--white .card__title {
  color: #fff; }

.wp-block .card__title,
.app .card__title {
  font-weight: bold; }

.wp-block .card__category,
.app .card__category {
  font-weight: bold; }

.app .card--white:not(.card--background)::before, .bannerCard--background:not(.card--background)::before {
  background: linear-gradient(180deg, rgba(79, 79, 79, 0) 0%, rgba(0, 0, 0, 0.2) 100%); }

.app .card--white:not(.card--background)::after, .bannerCard--background:not(.card--background)::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%); }

.content--miniGuides .page__header {
  background: none;
  text-align: left; }

.content--miniGuides .ui-selectmenu-button {
  border-color: #000;
  color: #808080; }
  .content--miniGuides .ui-selectmenu-button .ui-custom-button--white {
    background-image: url(/fonts/dropdown.svg); }

.content--miniGuides .titleWithShadowText__wave {
  display: none; }

.content--miniGuides .page__header::after {
  content: none; }

.category__orderBy .ui-selectmenu-text {
  font-family: "Gotham", "Arial", sans-serif; }

@media (min-width: 990px) {
  .category__orderBy .ui-selectmenu-text {
    font-family: "Gotham", "Arial", sans-serif; } }

.category__filterWrapper {
  background-color: #f6f7fa; }
  @media (min-width: 990px) {
    .category__filterWrapper {
      background-color: transparent;
      background-color: initial; } }

.category__modalHeader {
  font-weight: bold; }

.category__filter input[type='checkbox']::before {
  background-color: #f6f7fa; }

.category__filterLegend {
  font-weight: bold;
  font-family: "Gotham", "Arial", sans-serif; }

.category__mobileDropdown {
  font-family: "Gotham", "Arial", sans-serif;
  font-weight: bold; }

.category__DropdownIcon {
  fill: #222222; }

.mainFooter__header {
  justify-content: flex-start; }

.mainFooter__baseline {
  flex: 1; }

.themeMenu .current-category-ancestor > a,
.themeMenu .current-menu-item {
  border-bottom: 3px solid #f9ae41; }

.themeMenu .themeMenu__items {
  display: none; }
  @media (min-width: 1280px) {
    .themeMenu .themeMenu__items {
      list-style-type: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-transform: uppercase;
      font-size: 1.3rem;
      font-weight: 500;
      margin-top: 2rem;
      margin-bottom: 3.2rem; } }
  .themeMenu .themeMenu__items .menu-item {
    list-style: none;
    margin-right: 2rem;
    flex-shrink: 0; }
  .themeMenu .themeMenu__items a {
    color: #222222;
    text-decoration: none; }
    .themeMenu .themeMenu__items a:hover, .themeMenu .themeMenu__items a:focus {
      text-decoration: underline;
      font-weight: bold;
      text-decoration: none;
      border-bottom: 3px solid #f9ae41; }

.wp-block .titleWithShadowText,
.app .titleWithShadowText {
  font-family: "Gotham", "Arial", sans-serif; }
  .wp-block .titleWithShadowText .titleWithShadowText__subtitle,
  .app .titleWithShadowText .titleWithShadowText__subtitle {
    font-family: "Gotham";
    font-size: 1.4rem; }
    @media (min-width: 990px) {
      .wp-block .titleWithShadowText .titleWithShadowText__subtitle,
      .app .titleWithShadowText .titleWithShadowText__subtitle {
        font-size: 1.2rem; } }
  .wp-block .titleWithShadowText .titleWithShadowText__seeMore,
  .app .titleWithShadowText .titleWithShadowText__seeMore {
    font-family: "Gotham"; }

.wp-block .titleWithShadowText .titleWithShadowText__title,
.app .titleWithShadowText .titleWithShadowText__title {
  font-weight: 900;
  color: #0064f0;
  font-size: 5.5rem;
  margin-bottom: 0;
  text-align: center; }
  @media (min-width: 990px) {
    .wp-block .titleWithShadowText .titleWithShadowText__title,
    .app .titleWithShadowText .titleWithShadowText__title {
      font-size: 8rem; } }

.wp-block .titleWithShadowText .titleWithShadowText__shadow,
.app .titleWithShadowText .titleWithShadowText__shadow {
  opacity: 0.15;
  top: -25px;
  color: transparent;
  font-size: 6rem;
  -webkit-text-stroke: 1px #0064f0; }
  @media (min-width: 990px) {
    .wp-block .titleWithShadowText .titleWithShadowText__shadow,
    .app .titleWithShadowText .titleWithShadowText__shadow {
      top: -45px;
      font-size: 12rem; } }

.wp-block .titleWithShadowText--white .titleWithShadowText__title,
.app .titleWithShadowText--white .titleWithShadowText__title {
  color: #fff; }

.wp-block .titleWithShadowText--white .titleWithShadowText__shadow,
.app .titleWithShadowText--white .titleWithShadowText__shadow {
  -webkit-text-stroke: 1px #fff; }

@media (max-width: 990px) {
  .wp-block .titleWithShadowText.--mobile .titleWithShadowText__inner,
  .app .titleWithShadowText.--mobile .titleWithShadowText__inner {
    background-color: white !important; } }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

.page__header {
  background: #19a69b;
  margin-bottom: 0;
  position: relative; }
  .page__header .breadcrumb {
    margin-left: 1.2rem; }
  .page__header::after {
    content: '';
    min-height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: #19a69b; }

.page__headerWave {
  position: relative;
  transform: rotate(180deg);
  fill: #19a69b;
  margin-bottom: 6.4rem;
  display: block; }
  @media all and (-ms-high-contrast: none) {
    .page__headerWave {
      max-height: 75px;
      max-width: 1280px; } }

.page__header,
.page__headerWave {
  margin-left: -2rem;
  margin-right: -2rem; }
  @media (min-width: 990px) {
    .page__header,
    .page__headerWave {
      margin-left: 0;
      margin-right: 0; } }

@media (min-width: 1280px) {
  .wp-block .focusOn .titleWithShadowText__title,
  .app .focusOn .titleWithShadowText__title {
    font-size: 6rem; } }

.wp-block .focusOn .titleWithShadowText__wrapper,
.app .focusOn .titleWithShadowText__wrapper {
  text-align: center; }
  @media (min-width: 990px) {
    .wp-block .focusOn .titleWithShadowText__wrapper,
    .app .focusOn .titleWithShadowText__wrapper {
      text-align: left;
      text-align: initial; }
      .wp-block .focusOn .titleWithShadowText__wrapper .titleWithShadowText__subtitle,
      .app .focusOn .titleWithShadowText__wrapper .titleWithShadowText__subtitle {
        margin-right: 0;
        margin-bottom: 0; }
      .wp-block .focusOn .titleWithShadowText__wrapper .titleWithShadowText__subtitle,
      .wp-block .focusOn .titleWithShadowText__wrapper .titleWithShadowText__seeMore,
      .app .focusOn .titleWithShadowText__wrapper .titleWithShadowText__subtitle,
      .app .focusOn .titleWithShadowText__wrapper .titleWithShadowText__seeMore {
        text-align: left; } }

.wp-block .focusOn .titleWithShadowText--backgroundColor,
.app .focusOn .titleWithShadowText--backgroundColor {
  padding-bottom: 0;
  position: relative; }
  .wp-block .focusOn .titleWithShadowText--backgroundColor:not(.titleWithShadowText--darkText) .titleWithShadowText__title,
  .app .focusOn .titleWithShadowText--backgroundColor:not(.titleWithShadowText--darkText) .titleWithShadowText__title {
    text-align: center;
    color: #fff; }
    @media (max-width: 990px) {
      .wp-block .focusOn .titleWithShadowText--backgroundColor:not(.titleWithShadowText--darkText) .titleWithShadowText__title,
      .app .focusOn .titleWithShadowText--backgroundColor:not(.titleWithShadowText--darkText) .titleWithShadowText__title {
        color: #0064f0; } }
  .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__shadow,
  .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__shadow {
    -webkit-text-stroke: 1px #fff; }
  .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--horizontal,
  .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--horizontal {
    display: block;
    width: 100%;
    fill: #fff; }
  @media (min-width: 1280px) {
    .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave,
    .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave {
      display: none;
      fill: #fff; }
    .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__inner,
    .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__inner {
      padding-right: 0;
      padding-left: 1.2rem; }
    .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--verticalRight,
    .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--verticalRight {
      display: none;
      width: auto;
      float: right;
      shape-outside: polygon(98.71% 0.15%, 99.79% 100%, -2.34% 99.82%, 2.6% 85.74%, 27.23% 75.43%, 41.64% 51.07%, 43.26% 39.48%, 50.43% 30.1%, 83.5% 14.14%);
      shape-margin: 0.5em; } }

.wp-block .focusOn .titleWithShadowText--backgroundColor.titleWithShadowText--articleColor .titleWithShadowText__wave,
.app .focusOn .titleWithShadowText--backgroundColor.titleWithShadowText--articleColor .titleWithShadowText__wave {
  fill: #f6f7fa; }

@media (min-width: 1280px) {
  .wp-block .focusOn .titleWithShadowText--backgroundColor.titleWithShadowText--articleColor::before,
  .app .focusOn .titleWithShadowText--backgroundColor.titleWithShadowText--articleColor::before {
    background-image: url(/fonts/verticalGreyWave.svg); } }

@media (min-width: 1280px) {
  .wp-block .focusOn .titleWithShadowText__inner,
  .app .focusOn .titleWithShadowText__inner {
    width: 100%; }
  .wp-block .focusOn .focusOn__articlesInner,
  .app .focusOn .focusOn__articlesInner {
    width: 515px;
    padding-left: 0;
    padding-right: 0.8rem; }
    .wp-block .focusOn .focusOn__articlesInner .cards,
    .app .focusOn .focusOn__articlesInner .cards {
      max-width: 515px; } }

.wp-block .titleWithShadowText__seeMore.--mobile,
.app .titleWithShadowText__seeMore.--mobile {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3rem auto 0  auto; }
  @media (min-width: 990px) {
    .wp-block .titleWithShadowText__seeMore.--mobile,
    .app .titleWithShadowText__seeMore.--mobile {
      display: none; } }

.wp-block .titleWithShadowText__seeMore.--primary,
.app .titleWithShadowText__seeMore.--primary {
  display: none !important; }
  @media (min-width: 990px) {
    .wp-block .titleWithShadowText__seeMore.--primary,
    .app .titleWithShadowText__seeMore.--primary {
      display: inline-block !important; } }

@media (min-width: 990px) {
  .wp-block .focusOn.focusOn--invert .titleWithShadowText__wave--verticalLeft,
  .app .focusOn.focusOn--invert .titleWithShadowText__wave--verticalLeft {
    transform: none;
    width: auto;
    float: left;
    shape-margin: 0.5em;
    shape-outside: polygon(0% 0%, 0% 100%, 100% 100%, 100% 89.2%, 82.79% 80.61%, 66.99% 72.26%, 58.9% 46.49%, 50.43% 30.1%, 10.14% 12%); }
  .wp-block .focusOn.focusOn--invert .titleWithShadowText__inner,
  .app .focusOn.focusOn--invert .titleWithShadowText__inner {
    padding-left: 0;
    padding-right: 1.2rem; }
  .wp-block .focusOn.focusOn--invert .focusOn__articlesInner,
  .app .focusOn.focusOn--invert .focusOn__articlesInner {
    padding-right: 0;
    padding-left: 0.8rem; } }

.wp-block .focusOn.focusOn--invert .titleWithShadowText__wrapper,
.app .focusOn.focusOn--invert .titleWithShadowText__wrapper {
  text-align: right; }
  @media (min-width: 990px) {
    .wp-block .focusOn.focusOn--invert .titleWithShadowText__wrapper .titleWithShadowText__title,
    .app .focusOn.focusOn--invert .titleWithShadowText__wrapper .titleWithShadowText__title {
      text-align: center; } }
  @media (min-width: 990px) {
    .wp-block .focusOn.focusOn--invert .titleWithShadowText__wrapper .titleWithShadowText__subtitle,
    .app .focusOn.focusOn--invert .titleWithShadowText__wrapper .titleWithShadowText__subtitle {
      text-align: right;
      margin-right: 0; } }

@media (min-width: 1280px) {
  .wp-block .focusOn.focusOn--invert .titleWithShadowText--backgroundColor::before,
  .app .focusOn.focusOn--invert .titleWithShadowText--backgroundColor::before {
    left: 0;
    transform: rotate(180deg); } }

@media all and (-ms-high-contrast: none) and (min-width: 1280px) {
  .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__textWrapper,
  .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__textWrapper {
    padding-right: 160px;
    padding-left: 0; }
  .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie,
  .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie {
    display: block; }
    .wp-block .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie::before,
    .app .focusOn .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie::before {
      display: block;
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      right: -29px;
      width: 195px;
      background-image: url(/fonts/verticalWave.svg);
      background-repeat: no-repeat;
      background-position: right top;
      transform: rotateX(180deg); }
  .wp-block .focusOn--invert .titleWithShadowText--backgroundColor .titleWithShadowText__textWrapper,
  .app .focusOn--invert .titleWithShadowText--backgroundColor .titleWithShadowText__textWrapper {
    padding-left: 160px;
    padding-right: 0; }
  .wp-block .focusOn--invert .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie::before,
  .app .focusOn--invert .titleWithShadowText--backgroundColor .titleWithShadowText__wave--ie::before {
    left: -29px;
    right: 0;
    background-image: url(/fonts/verticalWave.svg);
    transform: scale(-1, -1); } }

.faq__categoryTitle {
  font-family: "Gotham", "Arial", sans-serif; }

.tippy-content {
  border: 1px solid #0064f0; }

.tippy-content .glossaryTooltip__title {
  color: #0064f0;
  font-weight: bold; }

.glossaryTooltip {
  color: #0064f0;
  border-bottom: none; }

.qsm-quiz-container {
  margin-bottom: 6.4rem; }

.app .qsm-quiz-container .qsm-submit-btn {
  width: inherit;
  display: block;
  margin: 0 auto;
  border-radius: 999em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  background: #f9ae41 !important;
  color: #fff !important;
  border: solid 1px #f9ae41 !important; }
  @media (prefers-reduced-motion: no-preference) {
    .app .qsm-quiz-container .qsm-submit-btn {
      transition: background 0.5s; } }
  .app .qsm-quiz-container .qsm-submit-btn:hover, .app .qsm-quiz-container .qsm-submit-btn:focus {
    color: #f9ae41 !important;
    background: #fff !important;
    box-shadow: 0 5px 10px -3px #f9ae41; }

.qsm-quiz-container input:not([type='checkbox']) {
  padding: 1.2rem 3.2rem; }

.mlw_qmn_new_question {
  font-size: 2rem; }

.mlw_qmn_question {
  margin-bottom: 3.2rem;
  font-size: 1.4rem; }

.qmn_mc_answer_wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-bottom: 2rem; }
  .qmn_mc_answer_wrap label {
    margin-bottom: 0;
    width: 25%; }

.contribution table {
  overflow: scroll; }

.contribution table th {
  padding: 2rem;
  background-color: #0064f0;
  color: #fff; }

.contribution table th:first-child {
  border-radius: 1.2rem 0 0 0; }

.contribution table th:last-child {
  border-radius: 0 1.2rem 0 0; }

.contentSingle .contentSingle__title,
.contentSingle h1 {
  color: #0064f0;
  font-weight: 900;
  font-size: 2rem; }
  @media (min-width: 990px) {
    .contentSingle .contentSingle__title,
    .contentSingle h1 {
      font-size: 3.4rem; } }

.contentSingle {
  max-width: 1080px; }

.contentSingle h2,
.contentSingle h3,
.contentSingle h4,
.contentSingle h5,
.contentSingle h6 {
  color: #0064f0; }

.contentSingle h2 {
  font-weight: 900; }
  @media (min-width: 990px) {
    .contentSingle h2:not([class*='font-size']) {
      font-size: 2.8rem; } }

@media (min-width: 990px) {
  .contentSingle h3:not([class*='font-size']) {
    font-size: 2.8rem; } }

.contentSingle h4 {
  font-weight: 900; }

.contentSingle__navLink[aria-current='true'] {
  color: #0064f0;
  border-color: #0064f0;
  font-weight: 900; }

.contentSingle__thePostThumbnail {
  margin-top: 2.6rem; }

.contentSingle__header {
  margin-bottom: 0; }

div.postActions.postActions--single .postActions__actionsMenu {
  position: static; }

.contentSingle__heading {
  padding-top: 0; }

.app .card--quiz {
  background: #19a69b; }

.wp-block .publication:not(.publication--extract) .publication__title,
.app .publication:not(.publication--extract) .publication__title {
  color: #fff; }

.wp-block .publication .publication__title,
.app .publication .publication__title {
  color: #222222; }

.breadcrumb {
  padding: 0 3.2rem;
  font-size: 1.4rem;
  margin-bottom: 3.2rem;
  color: #808080;
  display: flex;
  flex-direction: column;
  align-items: baseline; }
  @media (min-width: 990px) {
    .breadcrumb {
      padding: 0;
      width: 1200px;
      margin: 0 auto;
      margin-bottom: 3.2rem; } }

.breadcrumb--white {
  color: #fff !important; }
  .breadcrumb--white .breadcrumb__container__link {
    color: #fff !important; }
  .breadcrumb--white .breadcrumb__btn {
    color: #fff !important; }

.breadcrumb__btn {
  display: block;
  text-decoration: underline;
  color: #808080; }
  .breadcrumb__btn.--hide {
    display: none; }
  @media (min-width: 990px) {
    .breadcrumb__btn {
      display: none; } }

.breadcrumb__container {
  display: none; }
  .breadcrumb__container.--display {
    display: block; }
  @media (min-width: 990px) {
    .breadcrumb__container {
      display: block; } }

.breadcrumb__container__link {
  color: #808080;
  text-decoration: none; }
  .breadcrumb__container__link:hover, .breadcrumb__container__link:focus {
    text-decoration: underline; }

.titleWithShadowText__shadow {
  display: none !important; }
  @media (min-width: 990px) {
    .titleWithShadowText__shadow {
      display: block !important; } }

.simulator__label {
  display: none; }

.socialShare__item a {
  background-color: #f9ae41; }

.shareForm__socials button {
  background-color: #f9ae41; }

body {
  font-family: "Gotham", "Arial", sans-serif;
  color: #222222; }

b,
strong {
  font-weight: 900; }

