@charset "utf-8";

.fa-icon,
blockquote:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/**********
 Variables
 **********/
body {
  /* Text */
  --text-font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif;
  --heading-font-family: 'Museo Sans Rounded', sans-serif;
  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --heading-1-font-size: 48px;
  --heading-2-font-size: 32px;
  --heading-3-font-size: 24px;
  --heading-4-font-size: 20px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);
  /* Other */
  --border-radius-base: 16px;
  --border-radius-small: calc(16px / 2);
  --border-radius-button: 6px;
  --logo-height: 40px;
  /* Assets */
  --assets-check-svg: url(/hc/theming_assets/01JKAR9TW96XHS61HB94KKKZFF);
  --assets-circle-svg: url(/hc/theming_assets/01JKAR9TSX5MHMED60HHP0ED2A);
}

/**********
 Light mode
 **********/
body {
  --primary-color: #ea212d;
  --secondary-color: #212e36;
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: #EEF5F5;
  --secondary-bg-color-always: #EEF5F5;
  --primary-text-color: #282930;
  --secondary-text-color: #282930;
  --link-color: #538b86;
  --border-color: #dbdbde;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #d81420;
  --primary-color-hover: #bc121c;
  --primary-color-active: #ae101a;
  --secondary-color-hover: #0a0e10;
  --secondary-color-active: #040607;
  --secondary-bg-color-hover: #e1eded;
  --secondary-bg-color-active: #dbeaea;
  --secondary-text-color-hover: #1f1f25;
  --secondary-text-color-active: #1a1b1f;
  --link-color-hover: #3c6561;
  --link-color-active: #365b58;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.5;
  --bg-image-color: var(--primary-text-color);
}

.layout--style-filled .section:nth-child(even),
.layout--style-invert .section:nth-child(odd),
.section--secondary {
  /* Invert colors */
  --primary-bg-color: #EEF5F5;
  --secondary-bg-color: #FFFFFF;
}

/*********
 Dark mode
 *********/
.ui-dark body {
  /* UI dark colors */
  --primary-color: #E52722;
  --secondary-color: #8CCCC6;
  --primary-bg-color: #282930;
  --primary-bg-color-always: #282930;
  --secondary-bg-color: #3A3C42;
  --secondary-bg-color-always: #3A3C42;
  --primary-text-color: #FFFFFF;
  --secondary-text-color: #8CCCC6;
  --link-color: #ffffff;
  --border-color: #5F5F68;
  --info-color: #1863BC;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-light-hover: #e8423d;
  --primary-color-hover: #eb5d59;
  --primary-color-active: #ed6a66;
  --secondary-color-hover: #b6dfdb;
  --secondary-color-active: #c1e4e0;
  --secondary-bg-color-hover: #575a63;
  --secondary-bg-color-active: #5e616b;
  --link-color-hover: #fff;
  --link-color-active: #fff;
  --bg-image-opacity: 0.5;
  --bg-image-opacity-dark: 0.75;
  --bg-image-color: var(--primary-bg-color);
}

.ui-dark .layout--style-filled .section:nth-child(even),
.ui-dark .layout--style-invert .section:nth-child(odd),
.ui-dark .section--secondary {
  /* Invert colors */
  --primary-bg-color: #3A3C42;
  --secondary-bg-color: #282930;
}

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

body,
html {
  min-height: 100vh;
}

[dir] body,
[dir] html {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[dir] body {
  background-color: var(--secondary-bg-color);
}

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

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

[dir] a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

[dir] a,
[dir] button,
[dir] [type=submit],
[dir] [type=button],
[dir] [type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

[dir] figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/********
 Headings
 ********/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1,
.h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

[dir] h1,
[dir] .h1 {
  margin: 0 0 1.2em;
}

[dir] .markdown h1,
[dir] .markdown .h1 {
  margin-top: 1.2em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h1,
  .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  [dir] h1,
  [dir] .h1 {
    margin: 0 0 1em;
  }

  [dir] .markdown h1,
  [dir] .markdown .h1 {
    margin-top: 1em;
  }
}

h2,
.h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

[dir] h2,
[dir] .h2 {
  margin: 0 0 1.3em;
}

[dir] .markdown h2,
[dir] .markdown .h2 {
  margin-top: 1.3em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h2,
  .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  [dir] h2,
  [dir] .h2 {
    margin: 0 0 1.2em;
  }

  [dir] .markdown h2,
  [dir] .markdown .h2 {
    margin-top: 1.2em;
  }
}

h3,
.h3 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h3,
[dir] .h3 {
  margin: 0 0 1.4em;
}

[dir] .markdown h3,
[dir] .markdown .h3 {
  margin-top: 1.4em;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  h3,
  .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }

  [dir] h3,
  [dir] .h3 {
    margin: 0 0 1.3em;
  }

  [dir] .markdown h3,
  [dir] .markdown .h3 {
    margin-top: 1.3em;
  }
}

h4,
.h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

[dir] h4,
[dir] .h4 {
  margin: 0 0 1.4em;
}

[dir] .markdown h4,
[dir] .markdown .h4 {
  margin-top: 1.4em;
}

h5,
.h5 {
  font-size: var(--heading-5-font-size);
  line-height: 1.5;
}

[dir] h5,
[dir] .h5 {
  margin: 0 0 1.5em;
}

[dir] .markdown h5,
[dir] .markdown .h5 {
  margin-top: 1.5em;
}

h6,
.h6 {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
}

[dir] h6,
[dir] .h6 {
  margin: 0 0 1.5em;
}

[dir] .markdown h6,
[dir] .markdown .h6 {
  margin-top: 1.5em;
}

/**********************
 Other default elements
 *********************/
[dir] p,
[dir] ul,
[dir] ol,
[dir] dl,
[dir] pre,
[dir] table,
[dir] blockquote {
  margin: 1.5em 0 1.5em;
}

[dir] li {
  margin: 0.75em 0 0.75em;
}

small,
.small {
  font-size: var(--heading-6-font-size);
}

[role="main"] {
  flex-grow: 1;
  position: relative;
}

hr {
  display: block;
  height: 0;
}

[dir] hr {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

pre {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  color: var(--primary-bg-color);
}

[dir] pre {
  padding: 8px 16px;
  border-radius: var(--border-radius-base);
  background-color: var(--primary-text-color);
}

.ui-dark pre {
  color: var(--secondary-text-color);
}

[dir].ui-dark pre {
  background-color: var(--secondary-bg-color);
}

blockquote {
  display: block;
  position: relative;
  z-index: 2;
}

[dir=ltr] blockquote {
  padding-left: 16px;
  border-left: 1px solid var(--border-color);
}

[dir=rtl] blockquote {
  padding-right: 16px;
  border-right: 1px solid var(--border-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 24px;
  }

  [dir=rtl] blockquote {
    padding-right: 24px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote {
    padding-left: 32px;
  }

  [dir=rtl] blockquote {
    padding-right: 32px;
  }
}

blockquote:before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -4px;
  font-size: 60px;
  color: var(--secondary-bg-color);
}

[dir=ltr] blockquote:before {
  left: 8px;
}

[dir=rtl] blockquote:before {
  right: 8px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9) and (max-width: 979px), only screen and (min-width: 668px) and (min-height: 416px) and (max-width: 979px) {
  [dir=ltr] blockquote:before {
    left: 12px;
  }

  [dir=rtl] blockquote:before {
    right: 12px;
  }
}

@media only screen and (min-width: 980px) {
  [dir=ltr] blockquote:before {
    left: 16px;
  }

  [dir=rtl] blockquote:before {
    right: 16px;
  }
}

.list-unstyled {
  list-style: none;
}

[dir=ltr] .list-unstyled {
  padding-left: 0;
}

[dir=rtl] .list-unstyled {
  padding-right: 0;
}

dl.details {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

[dir] dl.details {
  margin-bottom: 32px;
  margin-top: 0;
}

dl.details > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details > dt {
  font-weight: 700;
}

[dir] dl.details > dt {
  margin-bottom: 12px;
}

[dir=ltr] dl.details > dt {
  margin-right: 8px;
}

[dir=rtl] dl.details > dt {
  margin-left: 8px;
}

[dir] dl.details > dd {
  margin-bottom: 12px;
}

dl.details > div {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1 / 3;
}

[dir] dl.details > div {
  margin-bottom: 12px;
}

dl.details--type-2 {
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

[dir] dl.details--type-2 {
  margin-bottom: 0;
}

dl.details--type-2 > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

dl.details--type-2 > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

dl.details--type-2 > dd {
  color: var(--secondary-text-color);
}

@media only screen and (min-width: 980px), only screen and (max-width: 567px) and (max-aspect-ratio: 13 / 9) {
  [dir=ltr] dl.details--type-2 > dd {
    text-align: right;
  }

  [dir=rtl] dl.details--type-2 > dd {
    text-align: left;
  }
}

[dir] dl.details--no-margin {
  margin-bottom: 0;
}

.text-secondary {
  font-size: var(--heading-6-font-size);
  line-height: 1.5;
  color: var(--secondary-text-color);
}

/******
 Tables
 ******/
.table-container {
  display: block;
  width: 100%;
  overflow-x: auto;
}

[dir] .table-container {
  border: 1px solid var(--border-color);
}

.table-container table:not(.pika-table) {
  width: calc(100% + 3px);
  max-width: calc(100% + 3px);
}

[dir] .table-container table:not(.pika-table) {
  margin: -1px;
}

table:not(.pika-table) {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table:not(.pika-table) thead {
  font-weight: 700;
}

[dir] table:not(.pika-table) thead {
  background-color: var(--secondary-bg-color);
}

[dir] table:not(.pika-table) tfoot {
  background-color: var(--secondary-bg-color);
}

table:not(.pika-table) thead,
table:not(.pika-table) tbody,
table:not(.pika-table) tfoot {
  width: 100%;
  max-width: 100%;
}

[dir=ltr] table:not(.pika-table) th {
  border-left: 1px solid var(--border-color);
}

[dir=rtl] table:not(.pika-table) th {
  border-right: 1px solid var(--border-color);
}

[dir] table:not(.pika-table) td {
  padding: 8px;
  border: 1px solid var(--border-color);
}

/*******
 Iframes
 *******/
.iframe {
  display: block;
  width: 100%;
  height: 0;
  position: relative;
}

.iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

[dir=ltr] .iframe iframe {
  left: 0;
}

[dir=rtl] .iframe iframe {
  right: 0;
}

[dir] .markdown > * {
  margin: 1.5em 0 1.5em;
}

[dir] .markdown > *:first-child,
.article-body > *:first-child {
  margin-top: 0;
}

[dir] .markdown > *:last-child,
.article-body > *:last-child {
  margin-bottom: 0;
}

[dir] .welcome--style-1 .h1 {
  color: var(--primary-text-color);
}

[dir] .welcome--style-1 .popular-searches .btn--gray {
  color: var(--primary-text-color);
  background-color: rgba(0, 0, 0, .5);
}

[dir] .welcome--style-1 .popular-searches .btn--gray:not(.no-hover):hover,
[dir] .welcome--style-1 .popular-searches .btn--gray:not(.no-hover):active,
[dir] .welcome--style-1 .popular-searches .btn--gray:not(.no-hover):focus {
  color: var(--primary-text-color);
  background-color: #282930;
}

.powered-by-zendesk,
[dir] .page-heading--style-4 .welcome__bg {
  display: none !important;
}

[dir] .page-heading--style-4,
html[dir] .layout .section--secondary:after,
html[dir] .layout--style-filled .section:nth-child(even):after,
html[dir] .layout--style-invert .section:nth-child(odd):after {
  background: url(/hc/theming_assets/01JYE342S05GSWKYVN7TFDK09S) repeat;
  background-size: 1300px;
}

html[dir] .layout .section--secondary:after,
html[dir] .layout--style-filled .section:nth-child(even):after,
html[dir] .layout--style-invert .section:nth-child(odd):after {
  opacity: .3;
}

[dir] .page-heading--style-4 {
  background-color: var(--secondary-color);
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir] .helpers--type-2 .helpers__secondary-icon {
    top: 22px;
  }
}

html[dir] .welcome__section {
  padding-top: 15%;
  padding-bottom: 15%;
  margin-top: 0;
}

@media only screen and (min-width: 980px) {
  html[dir] .welcome--size-large .welcome__section {
    padding-top: 78px;
    padding-bottom: 78px;
    margin-top: 0;
  }
}

@media only screen and (min-width: 1440px) {
  [dir] .welcome__bg-image {
    height: 45vw;
  }
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  [dir] .footer .container {
    display: block;
  }
}

[dir] .footer .container p {
  margin: 0;
  text-align: center;
}

[dir] .footer .container p ~ p {
  font-size: 22px;
  margin-top: 12px;
}

html[dir] .footer--style-3 .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

@media only screen and (min-width: 980px) {
  .page-heading--article {
    margin-bottom: 40px !important;
  }

  .page-heading--article ~ .page-content {
    margin-top: 40px !important;
  }
}

.subscribe-btn button {
  color: transparent !important;
  padding-right: 50px !important;
  padding-left: 50px !important;
  background-color: transparent !important;
  border-color: var(--primary-color) !important;
}

.subscribe-btn button::before {
  content: 'Suivre';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  color: var(--primary-color) !important;
}

.subscribe-btn button:hover,
.subscribe-btn button:active,
.subscribe-btn button:focus,
.subscribe-btn button.is-active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.subscribe-btn button:hover::before,
.subscribe-btn button:active::before,
.subscribe-btn button:focus::before,
.subscribe-btn button.is-active::before {
  color: #fff !important;
}

.subscribe-btn button[data-selected="true"]::before {
  content: 'Ne plus suivre';
}

.labels {
  row-gap: 4px;
}

html[dir] .modal__content--img {
  padding-top: 0;
  padding-bottom: 0;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
}

html[dir] .modal__content--img img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100vh;
}

.page-heading {
  position: relative;
}

.page-heading::after {
  content: '';
  display: block;
  width: 100%;
  height: 6.25vw;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  background: url(/hc/theming_assets/01JYE3413S6HGS45SFZAKQRWB1) no-repeat top center;
  background-size: 100%;
}

.cta {
  padding-bottom: 100px;
}

.page-footer {
  background-color: #3a3c42;
  color: #fff;
  position: relative;
  padding-bottom: 24px;
  margin-top: 6.25vw;
}

.page-footer::before {
  content: '';
  display: block;
  width: 100%;
  height: 6.25vw;
  position: absolute;
  top: calc(-6.25vw + 1px);
  left: 0;
  z-index: 2;
  background: url(/hc/theming_assets/01JYE340GY04GFT7EZSRPVP68K) no-repeat top center;
  background-size: 100%;
}

.page-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-footer__logo {
  display: block;
  width: 100px;
  height: auto;
}

.page-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.page-footer__text {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  text-align: right;
}

@media (min-width: 768px) {
  .page-footer {
    padding-bottom: 48px;
  }

  .page-footer__logo {
    width: 184px;
  }

  .page-footer__text {
    font-size: 32px;
  }
}

html[dir] .section--padding {
  padding-bottom: 78px;
}

html[dir] .page-heading {
  padding-bottom: 68px;
}

@media only screen and (min-width: 568px) and (max-aspect-ratio: 13 / 9), only screen and (min-width: 668px) and (min-height: 416px), only screen and (min-width: 980px) {
  .helpers .row {
    row-gap: 24px;
  }

  html[dir] .section--padding {
    padding-bottom: 104px;
  }

  html[dir] .page-heading {
    padding-bottom: 104px;
  }
}

@media only screen and (min-width: 980px) {
  html[dir] .section--padding {
    padding-bottom: 146px;
  }

  html[dir] .page-heading {
    padding-bottom: calc(35px + 6.25vw);
  }
}

@media only screen and (min-width: 568px), (min-aspect-ratio: 13 / 9) {
  html[dir=ltr] .welcome input[type=search] {
    border-top-right-radius: calc(var(--border-radius-base) / 2);
    border-bottom-right-radius: calc(var(--border-radius-base) / 2);
  }
}

html[dir] zd-autocomplete-title-multibrand {
  color: var(--primary-text-color);
}

html[dir] .vote--style-2 .vote__btn,
html[dir] .labels .btn {
  color: #fff;
  border-color: #8cccc6;
  background-color: #8cccc6;
  border-radius: 50px;
  min-width: 120px;
}

html[dir] .vote--style-2 .vote__btn:not(.no-hover):hover,
html[dir] .labels .btn:not(.no-hover):hover {
  color: #fff;
  background-color: #69bcb4;
  border-color: #69bcb4;
}

html[dir] .vote--style-2 .vote__btn:not(.no-hover):focus,
html[dir] .vote--style-2 .vote__btn:not(.no-hover):active,
html[dir] .labels .btn:not(.no-hover):focus,
html[dir] .labels .btn:not(.no-hover):active {
  color: #fff;
  background-color: #57b4ac;
  border-color: #57b4ac;
}

html[dir] .vote--style-2 .vote__btn.vote__btn--selected {
  color: #fff;
  background-color: var(--primary-bg-color);
  border-color: var(--primary-bg-color);
}

html[dir] .vote--style-2 .vote__btn.vote__btn--selected:not(.no-hover):hover,
html[dir] .vote--style-2 .vote__btn.vote__btn--selected:not(.no-hover):focus,
html[dir] .vote--style-2 .vote__btn.vote__btn--selected:not(.no-hover):active {
  color: #fff;
  background-color: var(--primary-bg-color-hover);
  border-color: var(--primary-bg-color-hover);
}

html[dir] .vote--style-2 .vote__progress {
  background-color: var(--secondary-color);
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-header .button.header-button-sar {
  margin-right: 0 !important;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.custom-header .button.header-button-sar:hover,
.custom-header .button.header-button-sar:focus,
.custom-header .button.header-button-sar:active {
  margin-right: 0 !important;
  background-color: var(--secondary-color-hover);
  border-color: var(--secondary-color-hover);
}

[dir] .subscribe-btn button:not(.no-hover)[data-selected=false] {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

[dir] .subscribe-btn button:not(.no-hover)[data-selected=false]::before {
  color: #fff !important;
}

html[dir] .activity .recent-activity-controls a {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

html[dir] .activity .recent-activity-controls a:not(.no-hover):hover,
html[dir] .activity .recent-activity-controls a:not(.no-hover):active,
html[dir] .activity .recent-activity-controls a:not(.no-hover):focus {
  color: var(--primary-color);
  background-color: transparent;
  border-color: var(--primary-color);
}

.cta.cta--type-1.cta--style-2 {
  padding-bottom: 0;
}

.cta.cta--type-1.cta--style-2 .cta__title,
.cta.cta--type-1.cta--style-2 .cta__subtitle {
  display: none;
}

.cta.cta--type-1.cta--style-2 .cta__content {
  padding-top: 48px;
  padding-bottom: 48px;
}

[dir] .cta.cta--type-1.cta--style-2 .cta__section {
  background-color: var(--secondary-bg-color);
}

html[dir] .comment-form__submit[type=submit] {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #FFFFFF;
  top: 0;
  right: 0;
  height: 100%;
}

html[dir] .comment-form__submit[type=submit]:not(.no-hover):hover,
html[dir] .comment-form__submit[type=submit]:not(.no-hover):focus,
html[dir] .comment-form__submit[type=submit]:not(.no-hover):active {
  background-color: #69bcb4;
  border-color: #69bcb4;
  color: #FFFFFF;
}

.markdown * {
  color: #fff !important;
}