@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** Normalize.css *****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background-color: #FDFDFF;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #FDFDFF;
  /* Par défaut le body n'est pas affiché pour éviter les effets de 'blink' lors de la redirection vers le formulaire de demande de rappel */
  /* background-image: url(/hc/theming_assets/01JPW6KM7J6FFS21W25Y9ZE3DJ);
	background-repeat: no-repeat;
	background-position: bottom 0 center;
  background-size: 60%;
  min-height: 100vh; */
}

main {
  display: block;
  background-color: #FDFDFF;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 600;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[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 {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

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

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/***** Base *****/
* {
  box-sizing: border-box;
}

body {
  color: rgba(1, 8, 84, 1);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  body > main {
    min-height: 73vh;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
}

a {
  color: rgba(0, 161, 224, 1);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  text-decoration: underline;
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  max-width: 100%;
  box-sizing: border-box;
  transition: border 0.12s ease-in-out;
}
input:not([type=checkbox]) {
  outline: none;
}
input:not([type=checkbox]):focus {
  border: 1px solid rgba(1, 8, 84, 1);
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23AAA' d='M0 0h10L5 6 0 0z'/%3E%3C/svg%3E%0A") no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}
select:focus {
  border: 1px solid rgba(1, 8, 84, 1);
}
select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #87929D;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}
textarea:focus {
  border: 1px solid rgba(1, 8, 84, 1);
}

.container{
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (min-width: 1160px) {
  .container{
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}

.container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

ul {
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}
@media (min-width: 1160px) {
  .error-page {
    padding: 0;
    width: 90%;
  }
}

.visibility-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/***** Buttons *****/
.button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
  background-color: transparent;
  border: 1px solid #00a1ec;
  border-radius: 4px;
  color: #00a1ec;
  cursor: pointer;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  margin: 0;
  padding: 0 20px;
  text-align: center;
  transition: background-color 0.12s ease-in-out, border-color 0.12s ease-in-out, color 0.15s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: 100%;
  -webkit-touch-callout: none;
  font-weight: 600;
  transition: all .3s ease-in;
}

.subscriptions-subscribe button:hover, .requests-table-toolbar .organization-subscribe button:hover, .community-follow button:hover, .article-subscribe button:hover, .section-subscribe button:hover{
	box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}




@media (min-width: 768px) {
  .button, .pagination-next-link, .pagination-prev-link, .pagination-first-link, .pagination-last-link, .subscriptions-subscribe button, .requests-table-toolbar .organization-subscribe button, .community-follow button, .article-subscribe button, .section-subscribe button, .split-button button {
    width: auto;
  }
}
.button:visited, .pagination-next-link:visited, .pagination-prev-link:visited, .pagination-first-link:visited, .pagination-last-link:visited, .subscriptions-subscribe button:visited, .requests-table-toolbar .organization-subscribe button:visited, .community-follow button:visited, .article-subscribe button:visited, .section-subscribe button:visited, .split-button button:visited {
  color: #00a1ec;
}
.button:hover, .pagination-next-link:hover, .pagination-prev-link:hover, .pagination-first-link:hover, .pagination-last-link:hover, .subscriptions-subscribe button:hover, .requests-table-toolbar .organization-subscribe button:hover, .community-follow button:hover, .article-subscribe button:hover, .section-subscribe button:hover, .split-button button:hover, .button:active, .pagination-next-link:active, .pagination-prev-link:active, .pagination-first-link:active, .pagination-last-link:active, .subscriptions-subscribe button:active, .requests-table-toolbar .organization-subscribe button:active, .community-follow button:active, .article-subscribe button:active, .section-subscribe button:active, .split-button button:active, .button:focus, .pagination-next-link:focus, .pagination-prev-link:focus, .pagination-first-link:focus, .pagination-last-link:focus, .subscriptions-subscribe button:focus, .requests-table-toolbar .organization-subscribe button:focus, .community-follow button:focus, .article-subscribe button:focus, .section-subscribe button:focus, .split-button button:focus, .button.button-primary, .button-primary.pagination-next-link, .button-primary.pagination-prev-link, .button-primary.pagination-first-link, .button-primary.pagination-last-link, .subscriptions-subscribe button.button-primary, .subscriptions-subscribe button[data-selected=true], .requests-table-toolbar .organization-subscribe button.button-primary, .requests-table-toolbar .organization-subscribe button[data-selected=true], .community-follow button.button-primary, .article-subscribe button.button-primary, .article-subscribe button[data-selected=true], .section-subscribe button.button-primary, .section-subscribe button[data-selected=true], .split-button button.button-primary {
  background-color: #00a1ec;
  color: white;
  text-decoration: none;
}
.button.button-primary:hover, .button-primary.pagination-next-link:hover, .button-primary.pagination-prev-link:hover, .button-primary.pagination-first-link:hover, .button-primary.pagination-last-link:hover, .subscriptions-subscribe button.button-primary:hover, .subscriptions-subscribe button[data-selected=true]:hover, .requests-table-toolbar .organization-subscribe button.button-primary:hover, .requests-table-toolbar .organization-subscribe button[data-selected=true]:hover, .community-follow button.button-primary:hover, .article-subscribe button.button-primary:hover, .article-subscribe button[data-selected=true]:hover, .section-subscribe button.button-primary:hover, .section-subscribe button[data-selected=true]:hover, .split-button button:hover, .button.button-primary:focus, .button-primary.pagination-next-link:focus, .button-primary.pagination-prev-link:focus, .button-primary.pagination-first-link:focus, .button-primary.pagination-last-link:focus, .subscriptions-subscribe button.button-primary:focus, .subscriptions-subscribe button[data-selected=true]:focus, .requests-table-toolbar .organization-subscribe button.button-primary:focus, .requests-table-toolbar .organization-subscribe button[data-selected=true]:focus, .community-follow button.button-primary:focus, .article-subscribe button.button-primary:focus, .article-subscribe button[data-selected=true]:focus, .section-subscribe button.button-primary:focus, .section-subscribe button[data-selected=true]:focus, .split-button button.button-primary:focus, .button.button-primary:active, .button-primary.pagination-next-link:active, .button-primary.pagination-prev-link:active, .button-primary.pagination-first-link:active, .button-primary.pagination-last-link:active, .subscriptions-subscribe button.button-primary:active, .subscriptions-subscribe button[data-selected=true]:active, .requests-table-toolbar .organization-subscribe button.button-primary:active, .requests-table-toolbar .organization-subscribe button[data-selected=true]:active, .community-follow button.button-primary:active, .article-subscribe button.button-primary:active, .article-subscribe button[data-selected=true]:active, .section-subscribe button.button-primary:active, .section-subscribe button[data-selected=true]:active, .split-button button.button-primary:active {
  background-color: #00a1ec;
  border-color: #00a1ec;
}

.button[data-disabled], [data-disabled].pagination-next-link, [data-disabled].pagination-prev-link, [data-disabled].pagination-first-link, [data-disabled].pagination-last-link, .subscriptions-subscribe button[data-disabled], .requests-table-toolbar .organization-subscribe button[data-disabled], .community-follow button[data-disabled], .article-subscribe button[data-disabled], .section-subscribe button[data-disabled], .split-button button[data-disabled] {
  cursor: default;
}

.button-large, input[type=submit] {
  cursor: pointer;
  background-color: #010854;
  border: 0;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  width: 100%;
  padding: 10px 15px;
  transition: all ease-in-out .3s;
  font-weight: 600;
  text-transform: uppercase;
}

.button-large, input[type=submit]:hover, .button-large, input[type=submit]:focus {
  text-decoration: none;
  background-color: #fff;
  color: #010854;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
  .button-large, input[type=submit] {
    width: auto;
  }
}

.button-large:hover, .button-large:active, .button-large:focus, input[type=submit]:hover, input[type=submit]:active, input[type=submit]:focus {
  background-color: #00a1ec;
  color: #fff;
}
.button-large[disabled], input[type=submit][disabled] {
  background-color: #ddd;
}

.button-secondary {
  color: #0212b9;
  border: 1px solid #87929D;
  background-color: transparent;
}
.button-secondary:visited {
  color: #0212b9;
}
.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: rgba(1, 8, 84, 1);
  border: 1px solid #87929D;
  background-color: #f7f7f7;
}

/***** Boutons ACD *****/
.btn-nuit{
  padding: 10px;
  margin-top : 15px;
  background-color: #010854;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  transition: all ease-in-out .3s;
}
.btn-nuit:hover, .btn-nuit:focus {
  text-decoration: none;
  background-color: #fff;
  color: #010854;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}

.btn-nuit2{
  padding: 10px;
  margin-top : 15px;
  background-color: #010854;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  transition: all ease-in-out .3s;
}
.btn-nuit2:hover, .btn-nuit2:focus{
  text-decoration: none;
  background-color: #00a1ec;
  color: #fff;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}
.btn-cyan{
  padding: 10px;
  margin-top : 15px;
  background-color: #00A1Ec;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  transition: all ease-in-out .3s;
}

.btn-cyan:hover, .btn-cyan:focus, .btn-cyan:active{
  text-decoration: none;
  background-color: #fff;
  color: #00A1Ec;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}

.btn-cyan2{
  padding: 10px;
  margin-top : 15px;
  background-color: #00A1Ec;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  transition: all ease-in-out .3s;
}

.btn-cyan2:hover, .btn-cyan2:focus{
  text-decoration: none;
  background-color: #010853;
  color: #fff;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}

/***** Split button *****/
.split-button {
  display: flex;
}

.split-button button {
  background-color: #010854;
  border: 0;
  color: #fff;
  font-weight: 500;
  height: 32px;
  line-height: 16px;
}

[dir=rtl] .split-button button:not(:only-child):first-child {
  border-left: 1px solid rgba(255, 255, 255, 1);
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):first-child {
  border-right: 1px solid rgba(255, 255, 255, 1);
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
.split-button button:not(:only-child):last-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  min-width: 26px;
  max-width: 26px;
  padding: 0;
}
[dir=rtl] .split-button button:not(:only-child):last-child {
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
}
[dir=ltr] .split-button button:not(:only-child):last-child {
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
}
.table th,
.table th a {
  color: #010854;
  font-size: 13px;
  text-align: left;
}
[dir=rtl] .table th,
[dir=rtl] .table th a {
  text-align: right;
}
.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}
.table td {
  display: block;
}
@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}
@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}
@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 800px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-field input {
  border: 1px solid #87929D;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}
.form-field input:focus {
  border: 1px solid rgba(1, 8, 84, 1);
}

.form-field input[type=text] {
  border: 1px solid #87929D;
  border-radius: 4px;
}
.form-field input[type=text]:focus {
  border: 1px solid rgba(1, 8, 84, 1);
}

.form-field input[type=checkbox] {
  width: auto;
}

.form-field .nesty-input {
  border-radius: 4px;
  border: 1px solid #87929D;
  height: 40px;
  line-height: 40px;
  outline: none;
  vertical-align: middle;
}
.form-field .nesty-input:focus {
  border: 1px solid rgba(1, 8, 84, 1);
  text-decoration: none;
}

.form-field .hc-multiselect-toggle {
  border: 1px solid #87929D;
}

.form-field .hc-multiselect-toggle:focus {
  outline: none;
  border: 1px solid rgba(1, 8, 84, 1);
  text-decoration: none;
}

.form-field textarea {
  vertical-align: middle;
}

.form-field input[type=checkbox] + label {
  margin: 0 0 0 10px;
}

.form-field .optional {
  color: #0212b9;
  margin-left: 4px;
}

.form-field p {
  color: #0212b9;
  font-size: 12px;
  margin: 5px 0;
}

.mention-form p{
  border-top: solid #eeedeb 2px;
  padding-top: 30px;
  margin-top: 30px;
  font-size: 10px;
  text-align: justify;
  opacity: 0.7;
}

/* Temporaire : ne pas afficher le footer pour le formulaire de demande d'assistance qui sera publié avant le centre d'aide */



.form footer {
  margin: 30px 0;
}

.form footer a {
  color: #0212b9;
  cursor: pointer;
  margin-right: 15px;
}

.form .suggestion-list {
  font-size: 13px;
  margin-top: 30px;
}
.form .suggestion-list label {
  border-bottom: 1px solid #ddd;
  display: block;
  padding-bottom: 5px;
}
.form .suggestion-list li {
  padding: 10px 0;
  list-style-type: none;
}
.form .suggestion-list li a:visited {
  color: rgba(1, 8, 84, 1);
}

/***** Header *****/
.header {
  margin: 0 auto;
  padding: 35px 5%;
  position: relative;
  align-items: center;
  display: flex;
  justify-content: space-between;
  /*border-bottom: solid #00A1Ec 1px;*/
  background-color: #fdfdff;
  /*display: none;*/
}


.logo img {
  max-height: 37px;
  vertical-align: middle;
  border-radius: 6px;
}

.logo span {
  margin: 10px;
  color: #00a1ec;
  font-weight: 500;
  font-size: 16px;
}

.logo a {
  display: inline-block;
}

.logo a:hover, .logo a:focus, .logo a:active {
  text-decoration: none;
}

.user-nav {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .user-nav {
    position: relative;
  }
}
.user-nav[aria-expanded=true] {
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15), 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ddd;
  right: 0;
  left: 0;
  top: 71px;
  z-index: 1;
}
.user-nav[aria-expanded=true] > a {
  display: block;
  margin: 20px;
}
.user-nav[aria-expanded=true] > .user-nav-list li {
  display: block;
}
.user-nav[aria-expanded=true] > .user-nav-list a {
  display: block;
  margin: 20px;
}

.user-nav-list {
  display: block;
  list-style: none;
}
.user-nav-list > li {
  display: inline-block;
}

@media (max-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .nav-wrapper-desktop {
    display: none;
  }
}
@media (min-width: 1024px) {
  .nav-wrapper-desktop {
    display: inline-block;
  }
}
.nav-wrapper-desktop a {
  margin-right : 15px;
  color: #00a1ec;
  display: inline-block;
  font-weight: 500;
  border-radius: 6px;
  transition: all ease-in-out .3s;
}


@media (min-width: 768px) {
  .nav-wrapper-desktop a {
    display: inline-block;
  }
}
[dir=rtl] .nav-wrapper-desktop a {
  padding: 0 0 0 20px;
}
.nav-wrapper-desktop a:hover, .nav-wrapper-desktop a:focus, .nav-wrapper-desktop a:active {
  text-decoration: none;
  color: #010854;
}

@media (min-width: 1024px) {
  .nav-wrapper-mobile {
    display: none;
  }
}
.nav-wrapper-mobile .menu-button-mobile {
  background: none;
  border: 0;
  width: auto;
  min-width: 71px;
  cursor: pointer;
}
.nav-wrapper-mobile .menu-button-mobile .icon-menu {
  padding: 7px;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.nav-wrapper-mobile .menu-button-mobile[aria-expanded=true] .icon-menu {
  background: #f3f3f3;
}
.nav-wrapper-mobile .menu-list-mobile {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  border: solid 1px #eeedeb;
  left: 25%;
  right: 10%;
  top: 71px;
  z-index: 2;
  border-radius: 10px;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=false] {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile[aria-expanded=true] {
  display: block;
}
.nav-wrapper-mobile .menu-list-mobile-items .item {
  margin: 2px 0;
  padding: 2px 6px;
}
.nav-wrapper-mobile .menu-list-mobile-items li:empty:not(.nav-divider) {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider {
  border-bottom: 0.1px solid #eeedeb;
  padding: 0;
}
.nav-wrapper-mobile .menu-list-mobile-items .nav-divider:last-child {
  display: none;
}
.nav-wrapper-mobile .menu-list-mobile-items button {
  background: none;
  border: none;
  padding: 5px 24px;
  width: 100%;
  height: 100%;
  color: rgba(1, 8, 84, 1);
  cursor: pointer;
  text-align: start;
}
.nav-wrapper-mobile .menu-list-mobile-items button:active, .nav-wrapper-mobile .menu-list-mobile-items button:focus, .nav-wrapper-mobile .menu-list-mobile-items button:hover {
  background-color: #f3f3f3;
  text-decoration: underline;
}
.nav-wrapper-mobile .menu-list-mobile-items a {
  display: block;
  padding: 12px 24px;
  width: 100%;
  height: 100%;
  color: rgba(1, 8, 84, 1);
  border-radius: 10px;
  transition: all .3s ease-in-out;
}
.nav-wrapper-mobile .menu-list-mobile-items a:active, .nav-wrapper-mobile .menu-list-mobile-items a:focus, .nav-wrapper-mobile .menu-list-mobile-items a:hover {
  background-color: #eeedeb;
  text-decoration: none;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile {
  display: flex;
  line-height: 1.5;
}
.nav-wrapper-mobile .menu-list-mobile-items .my-profile .my-profile-tooltip {
  font-size: 12px;
  color: #68737D;
}
.nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}
[dir=rtl] .nav-wrapper-mobile .menu-list-mobile-items .menu-profile-avatar {
  margin-right: 0;
  margin-left: 8px;
}

.skip-navigation {
  align-items: center;
  background-color: black;
  color: white;
  display: flex;
  font-size: 14px;
  justify-content: center;
  left: -999px;
  margin: 20px;
  padding: 20px;
  overflow: hidden;
  position: absolute;
  top: auto;
  z-index: -999;
}
[dir=rtl] .skip-navigation {
  left: initial;
  right: -999px;
}
.skip-navigation:focus, .skip-navigation:active {
  left: auto;
  overflow: auto;
  text-align: center;
  text-decoration: none;
  top: auto;
  z-index: 999;
}
[dir=rtl] .skip-navigation:focus, [dir=rtl] .skip-navigation:active {
  left: initial;
  right: auto;
}

#zd-modal-container ~ .skip-navigation {
  display: none;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
  font-size: 14px;
  padding: 10px;
  border: 1px solid #eeedeb;
  border-radius: 6px;
  background-color: transparent;
  transition: all .3s;
  z-index: 1;
}
.user-info:hover{
	background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.user-info .dropdown-toggle{
  font-weight: 500;
}
.user-info .dropdown-toggle::after {
  display: none;
}
@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}
.user-info > button {
  border: 0;
  color: #010854;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > button::after {
  color: rgba(0, 161, 224, 1);
  padding-right: 15px;
}
[dir=rtl] .user-info > button::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}
@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}
#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}
.avatar img {
  height: 40px;
  width: 40px;
}
.avatar .icon-agent {
  color: rgba(1, 8, 84, 1);
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  background-color: rgba(255, 255, 255, 1);
  font-size: 17px;
  height: 17px;
  line-height: 17px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 17px;
}

/***** Footer *****/
.footer {
  background-color: #FDFDFF;
  padding-top: 75px;
}
.footer a {
  color: #0212b9;
}
.footer-inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  border-top: 1px solid #eeedeb;
  padding: 30px 0;
}

.footer div span img{
  width: 50px;
  position: relative;
  top: 4px;
  margin-right: 15px;
}

.footer-inner div p{
  font-weight: 600;
  display: inline;
}

.footer-language-selector button {
  color: #0212b9;
  display: inline-block;
}

.powered-by-zendesk a,
.powered-by-zendesk a:visited {
  color: #0212b9;
}

.footer ul{
  list-style-type: none;
}

.footer ul li{
  display : inline-block;
  margin: 0 10px;
}

.footer ul li a{
  color: #010854;
}

@media (max-width: 1160px) {
	.footer-inner{
    padding: 30px 30px;
  }
}

@media (max-width: 1090px) {
	.footer-inner{
    flex-direction: column;
  }
  .footer-inner > div{
    margin-bottom: 10px;
  }
}

@media (max-width: 700px) {
  .footer-inner{
    text-align: center;
  }
  .footer-inner > div{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-inner > div img{
    display: inline;
   position: static;
    top: 0;
  }
	.footer-inner ul li{
    display: block;
    margin: 5px 0;
  }
}

/***** Breadcrumbs *****/
.breadcrumbs {
  margin: 0 0 15px 0;
  padding: 0;
  display: inline;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
  }
}
.breadcrumbs li {
  color: #00a1ec;
  font-size: 13px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline;
}

.breadcrumbs li a{
  font-weight: 500;
}
.breadcrumbs li a:hover, .breadcrumbs li a:focus{
  text-decoration: none;
  transition: all .3s ease-in-out;
  color: #010854;
}
.breadcrumbs li + li::before {
  content: "/";
  margin: 0 4px 0 8px;
}

.section-breadcrumbs{
  margin-bottom: 15px;
}

/***** Search field *****/
.search-container {
  position: relative;
}

.search {
  display: flex;
  position: relative;
  transition: border 0.12s ease-in-out;
  transition: .2s all ease-in;
  position: relative;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    border: none;
    height: 50px;
    transition: border .2s ease-in;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #F5F5F5;
    background-color: #fff;
    width: 100%;
}
}

.search:focus-within {
  border-color: #010854;
}
.search input[type=search] {
  position: relative;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  border: none;
  transition: border .2s ease-in;
  width: 100%;
  transition: all .3s ease-in-out;
}

.search input[type=search]::placeholder{
  color: #010854;
}

.search input[type=search]::-webkit-search-decoration, .search input[type=search]::-webkit-search-cancel-button, .search input[type=search]::-webkit-search-results-button, .search input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}
.search input[type=search]:-webkit-autofill, .search input[type=search]:-webkit-autofill:hover, .search input[type=search]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
.search .clear-button {
  align-items: center;
  box-sizing: border-box;
  color: #010854;
  background-color: #fff;
  cursor: pointer;
  display: none;
  flex: none;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  justify-content: center;
  padding: 0 15px;
  transition: all ease-in-out .3s;
  border: #eeedeb;
  border: 1px solid #F5F5F5;
}

.search .clear-button:hover {
  background-color: #F5F5F5;
}
.search .clear-button:focus {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(1, 8, 84, 1);
}
.search-has-value .clear-button {
  display: flex;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

[dir=ltr] .search input[type=search] {
  padding-left: 40px;
  padding-right: 20px;
}
[dir=ltr] .search-has-value input[type=search] {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}

[dir=rtl] .search input[type=search] {
  padding-left: 20px;
  padding-right: 40px;
}
[dir=rtl] .search-has-value input[type=search] {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-left-color: transparent;
}
[dir=rtl] .search-has-value input[type=search]:focus {
  border-left-color: rgba(1, 8, 84, 1);
}
[dir=rtl] .search .clear-button {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-right-color: transparent;
}
[dir=rtl] .search .clear-button:focus {
  border-right-color: rgba(1, 8, 84, 1);
}

.search-icon {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 15px;
  z-index: 1;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
[dir=rtl] .search-icon {
  left: auto;
  right: 15px;
}

.search input[type=submit]{
  display: none;
}
.search input[type=submit]:after{
  display: block;
  content: "";
  width: 50px;
  height: 50px;
  background-color: red;
  translate: 50px 50px;
}

/***** Hero component *****/

.hero {
  display: flex;
  flex-direction: row;
  background-size: cover;
  text-align: left;
  margin-bottom: 0px;
}

@keyframes hero { 
	0% {
	  opacity: 0;
	}
  
	100% {
	  opacity: 1;
	}
}

.hero .presentation{
  width : 55%;
  padding: 110px 225px 120px 160px;
  /*
  background-image : url(/hc/theming_assets/01JPW6KM9NW7DRZ180C1M7FN66);
  background-size : 50%;
  background-position: center;
  background-repeat: no-repeat;*/
  animation: 2s presentation;
}

@keyframes presentation {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}


@media (max-width: 1600px) {
  .hero .presentation{
    padding: 50px 100px;
  }
}

@media (max-width: 1200px) {
  .hero .presentation{
    padding: 30px 50px;
  }
}

@media (max-width: 1000px) {
  .hero .presentation{
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .hero .presentation{
  	width: 80%;
   padding: 0;
    margin-bottom: 30px; 
  }
}

.hero .presentation img{
  width : 125px;
}
.hero .presentation h1{
  font-size: 45px;
  font-weight : 700;
  margin: 0 0 50px 0;
  color: #010854;
  line-height: 1.25;
}
 .hero .mobile-promotion{
    display: none;
  }

@media (max-width: 1600px) {
  .hero .presentation img{
    width : 100px;
  }
  .hero .presentation h1{
    font-size: 40px;
  }
}

@media (max-width: 1200px) {
  .hero .presentation img{
    width : 75px;
  }
  .hero .presentation h1{
    font-size: 40px;
  }
}

@media (max-width: 1000px) {
  .hero .presentation img{
      display: none;
    }
  .hero .presentation h1{
      font-size: 35px;
      text-align: center;
      margin: 0 0 15px 0;
    }
 	.hero .mobile-promotion{
      display: block;
      text-align: center;
      text-transform: uppercase;
   		margin: 0 0 50px 0;
      font-size: 12px;
    }
   	.hero .mobile-promotion span{
      color: #00a1ec;
    }
}

@media (max-width: 700px) {
  .hero .presentation h1{
    font-size: 30px;
  }
}

.hero .presentation h1 .cyan{
  color: #00A1Ec;
}/*
.hero .presentation h1 .beta{
  display: inline-block;
  color: #FDFDFF;
  background-color: #00a1ec;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 16px;
  transform: translateY(-20px);
  margin-left: 5px;
}*/
.notif-beta{
  background-color: #d7e4fb;
  padding: 15px;
  border-radius: 6px;
  text-align: justify;
  opacity: 0.85;
}
.hero .presentation b{
  font-weight: 800;
}
.hero .presentation .hero-inner {
  position: relative;
  transform: translateY(-50%);
  width: 100%;
}
.hero .presentation p{
  font-weight: bold;
  font-size: 12px;
  display: inline-block;
}
.hero .presentation ul{
  display: inline-block;
}
.hero .presentation ul li{
  display: inline-block;
  margin-bottom: 20px;
}
.hero .presentation ul li a{
  color: #010854;
  text-transform: uppercase; 
  padding: 6px;
  font-weight: 600;
  border: 1px solid transparent;
  margin-right: 10px;
  border-radius: 6px;
  background-color: #EEEDEB;
  font-size: 10px;
  transition: all ease-in-out .3s;
}
.hero .presentation ul li a:hover{
  border: 1px solid #010854;
  text-decoration: none;
}

.hero .promotion{
  width: 50%;
  padding: 60px 60px 30px 0;
}

@keyframes promotion {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

@media (max-width: 1600px) {
  .hero .promotion{
  	padding: 30px 60px 30px 0;
  }
}

@media (max-width: 1200px) {
  .hero .promotion{
  	padding: 15px 30px 15px 0;
  }
}

@media (max-width: 1000px) {
  .hero .promotion{
  	display: none;
    width: 0%;
  }
}
@media (max-width: 1000px) {
  .hero .slider{
  	display: none;
    width: 0%;
  }
}

/*.hero .promotion > div {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image : url(/hc/theming_assets/01JPW6KMSS87C876FZPCQF4DPM);
  background-position : left center;
  background-size: cover;
  border-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  position : relative;
	border: 2px transparent solid;
  display: inline-block;
}
*/
/*
.hero .promotion div a{
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 80%;
  height: 78%;
  background-image : url(/hc/theming_assets/01HZP9ZEQBYM3HV8W8R0FBBV9J);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  transition: all .3s ease-in;
  background-color: #fafafa;
  border-top-left-radius: 10px;
}
.hero .promotion a:hover{
    box-shadow: 0px 0px 50px -3px rgba(255,255,255,0.3);
}


.hero .promotion a span{
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero .promotion a span #play{
  width : 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate : -50% -50%;
  border-radius: 50%;
  transition: all .3s ease-in;
  animation: video-play 2s ease-in-out infinite;
  box-shadow: 0px 0 15px -3px rgba(0,0,0,0.16);
}

@keyframes video-play { 
	0% {
	  transform: scale(1);	
	}
  50% {
	 transform: scale(0.95);	
	}
	100% {
	 transform: scale(1);	
	}
}

.hero .promotion a span #articles-hp{
    position: absolute;
    width: 130px;
    top: -12%;
    z-index: 2;
    animation: hero-scale 2s ease-in-out infinite;
}

@media (max-width: 1600px) {
  .hero .promotion a span #articles-hp{
    width: 110px;
  }
}

.hero .promotion a span #fiches-hp{
    position: absolute;
    width: 115px;
    top: 10%;
    left : -6%;
    z-index: 1;
    animation: hero-scale 2.5s ease-in-out infinite;
}

@media (max-width: 1600px) {
  .hero .promotion a span #fiches-hp{
    width: 100px;
    top: 12%;
  }
}

@keyframes hero-scale { 
	0% {
    transform: scale(0.97);
	}
  50% {
  	transform: scale(1);
	}
	100% {
    transform: scale(0.97);
	}
}*/

.hero .promotion .video{
  position: relative;
}

.hero .promotion .video #nouveau-produit{
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  padding: 5px 10px;
  background-color: #00a1ec;
  border-radius: 6px;
  display: inline-block;
  animation: product-move 2s infinite ease-in-out;
}

@keyframes product-move {
  0% {
    transform: translateY(0);
    
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

/* --- SLIDER --- */
.slider{
  width: 45%;
  animation: 3s promotion;
}
.slider .promotion{
  width: 100%;
  animation: slide-fade .6s ease-in-out;
}

@keyframes slide-fade {
  0% {
    opacity: 0;
    
  }
  100% {
    opacity: 1;
  }
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: .3rem;
  position: relative;
  top: -22px;
  z-index: 10;
}

.slider .prev,
.slider .next {
  display: inline-flex;          
  align-items: center;          
  justify-content: center; 
  width: 20px;
  height: 20px;
  border: 1px solid #010854;
  color: #010854;
  border-radius: 6px;
  background: transparent;
  font-size: 18px;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative; 
  transition: all ease-in-out .3s;
}

.slider .prev span,
.slider .next span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 1px));
  line-height: 1;               
  pointer-events: none;              
}

.slider .prev:hover, .slider .next:hover{
	background-color: #010854;
  color: #fff;
}
.slider-dots{
  margin-left: 6px;
}


.slider-dots button {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #010854;
  background: transparent;
  line-height: 0;
  box-sizing: border-box;
  flex: 0 0 auto;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
  align-items: center;
  margin-right: 3px;
}


.slider-dots button.active { 
  background: #00a1ec;
  box-shadow: 0 0 0 2px rgba(0,163,255,.25);
  border-color: #fff; transform: scale(1.01);
}

/* SLIDER ACD PAIE */
.hero .promotion .video #nouveau-ACDPaie{
  position: absolute;
  top: 10px;
  right: 14%;
}
.hero .promotion .video #nouveau-ACDPaie img{
  width: 20px;
  margin-right: 7px;
}

.hero .promotion .video #nouveau-ACDPaie span{
  position: relative;
  top: -5px;
  text-transform: uppercase;
  font-weight: 600;
}

/*SLIDER ACD FACT */

#logo-ACDFACT{
  position: absolute;
  top: 10px;
  right: 14%;
}
#logo-ACDFACT img{
  width: 50px;
  position: relative;
  top: -7.5px;
}

/*VIDEO*/

.hero .promotion .video #play{
  position: absolute;
  width: 75px;
  top: 52.5%;
  left: 45%;
  translate : -50% -50%;
  border-radius: 50%;
  transition: all .3s ease-in;
  animation: video-play 2s ease-in-out infinite;
  box-shadow: 0px 0 15px -3px rgba(0,0,0,0.16);
  cursor: pointer;
}

@keyframes video-play { 
	0% {
	  transform: scale(1);	
	}
  50% {
	 transform: scale(0.90);	
	}
	100% {
	 transform: scale(1);	
	}
}

.hero .promotion .video video{
  width: 90%;
  border-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
  margin: 0 auto;
  cursor: pointer;
}

.hero .promotion .video a{
  position: absolute;
  padding: 10px 15px;
  background-color: #fff;
  bottom: -16px;
  left: 45%;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
  text-transform: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.16);
  transform: translateX(-50%);
  transition: all .3s ease-in-out;
  border: 1px solid #fff;
  z-index: 500;
}

.hero .promotion .video a:hover{
  text-decoration: none;
  border: 1px solid #fff;
  bottom: -10px;
}



/*
.hero .hero-overlay{
  position: absolute;
  width: 100%;
  height: 103%;
  top : 0;
  bottom : 0;
  right : 0;
  background-image : url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-position : center;
  background-size: cover;
  border-bottom-left-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  z-index: -5;
}
*/
.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  /*justify-content: space-between;*/
  margin: 10px 0;
}
@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin: 0;
  }
}
.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}
.page-header h1 {
  /*flex-grow: 1;*/
}
.page-header-description {
  font-style: italic;
  margin: 0 0 30px 0;
  word-break: break-word;
}
@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}
.page-header .icon-lock {
  height: 20px;
  width: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  /*
  background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;
  */
  background-color: #00a1ec;
  padding: 30px; 
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin: 50px 0;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.05);
  justify-content: middle;
  align-items: center;
}

.sub-nav img{
  display: inline-block;
  height: 43px;
}
@media (min-width: 1185px) {
  .sub-nav {
    flex-direction: row;
  }

}

@media (max-width: 1185px) {
  .sub-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
 .sub-nav img{
    display: none;
  }
}
.sub-nav .breadcrumbs {
  margin: 0;
}
.sub-nav .search-container {
  max-width: 650px;
  width: 100%;
}

.sub-nav input[type=search]::after {
  font-size: 15px;
}

/***** PRODUITS *****/
.produits{
  margin-top: -50px;
}

.produits h2{
  display: inline-block;
  padding-top : 20px;
  border-top: solid 3px #00a1ec;
  margin-top: 0;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.homepage{
  animation: 3s homepage;
  position: relative;
}

@keyframes homepage {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.homepage h2{
  font-size: 24px;
  font-weight : 700;
  margin: 30px 0;
}
@media (max-width: 600px) {
	.homepage h2{
  	font-size: 18px;
  }
}
.homepage h2 span{
  color: #00A1Ec;
}
.homepage .others h2 span{
    font-size: 16px;
}

.blocks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(380px, 1fr));
  padding: 0;
}
@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

@media (max-width: 600px) {
  .blocks-list {
   grid-template-columns: repeat(auto-fill,minmax(270px, 1fr));
  }
}

.blocks-item {
  border: 2px solid #F5F5F5;
  border-radius: 6px;
  box-sizing: border-box;
  color: rgba(1, 8, 84, 1);
  font-weight: 600;
  display: flex;
  flex: 1 0 380px;
  margin: 0 0 5px;
  max-width: 100%;
  text-align: left;
  transition: all .3s ease-out;
}

.topics .blocks-item-link {
 	display: block;
  padding: 30px;
}

.topics .blocks-item-link .blocks-item-title{
 	padding-left: 0;
}

.blocks-item img{
  width: 35px;
  display: inline;
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 5px 10px;
  }
}
.blocks-item:hover, .blocks-item:focus, .blocks-item:active {
  border: 2px solid #010854;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
	transform: translateY(-5px);  
}

.blocks-item-internal {
  background-color: transparent;
  border: 1px solid #ddd;
}
.blocks-item-internal .icon-lock {
  height: 15px;
  width: 15px;
  bottom: 5px;
  position: relative;
}
.blocks-item-internal a {
  color: rgba(1, 8, 84, 1);
}
.blocks-item-link {
  color: rgba(1, 8, 84, 1);
  padding: 20px 30px;
  display: flex;
  flex-direction: row;
  flex: 1;
}
.blocks-item-link:visited, .blocks-item-link:hover, .blocks-item-link:active, .blocks-item-link:focus {
  text-decoration: none;
}
.blocks-item-title {
  transform: translateY(20%);
  margin-bottom: 0;
  font-size: 18x;
  padding-left: 15px;
}
.blocks-item-title img{
  display: inline;
  width: 20px;
  position: relative;
  top: 4px;
  margin-right: 3px;
}
.blocks-item-description {
  margin: 0;
}
.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Autres aides *****/

.section .others{
  margin: 75px 0;
}

.blocks-list-others {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(380px, 1fr));
}



@media (min-width: 768px) {
  .blocks-list-others {
    margin: 0 -15px;
  }
}

@media (max-width: 600px) {
  .blocks-list-others {
   grid-template-columns: repeat(auto-fill,minmax(270px, 1fr));
  }
}

@media (min-width: 768px) {
  .blocks-list-others {
    margin: 0 -15px;
  }
}


/***** Liens utiles *****/
.links{
  margin-top: 75px;
}
@media (max-width: 600px) {
  .links {
    margin-top: 30px;
  }
}

/***** Homepage *****/
.section {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section {
    margin-bottom: 0;
  }
}

/***** Promoted articles *****/
.promoted-articles {
  /*
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;*/
}
@media (min-width: 1024px) {
  .promoted-articles {/*
    flex-direction: row;*/
  }
}
.promoted-articles-item {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  /*
  flex: 1 0 auto;
  list-style-type: none;*/
}
@media (min-width: 1024px) {
  .promoted-articles-item {
    /*
    flex: 0 0 auto;
    padding-right: 30px;
    width: 33%; /* Three columns on desktop */*/
  }
  [dir=rtl] .promoted-articles-item {
    padding: 0 0 0 30px;
  }
}
.promoted-articles-item:nth-child(3n) {
  padding-right: 0;
}
.promoted-articles-item a {
  display: inline-block;
  border: 2px solid #F5F5F5;
  border-radius: 10px;
  padding: 15px;
  transition: all .3s ease-in-out;
  background-color: #fff;
  font-weight: 500;
}
.promoted-articles-item a:hover {
  text-decoration: none;
  border: 2px solid #010854;
}
.promoted-articles-item .icon-lock {
  vertical-align: baseline;
}

.articles h2{
      display: inline-block;
    padding-top: 20px;
    border-top: solid 3px #00a1ec;
}

/***** Community section in homepage *****/
.community {
  text-align: center;
}
.community-image {
  min-height: 300px;
  margin-top: 32px;
  background-image: url(/hc/theming_assets/01JPW6KQT1GZXC9VWFP87WRK7W);
  background-position: center;
  background-repeat: no-repeat;

  max-width: 100%;
}
.community a {
  color: rgba(0, 161, 224, 1);
  text-decoration: underline;
}
.community a:visited {
  color: rgba(1, 8, 84, 1);
}
.community a:hover, .community a:active, .community a:focus {
  color: rgba(1, 8, 84, 1);
}

/***** Recent activity *****/

.recent-activity{
	border: 2px solid #F5F5F5;
  border-radius: 10px;
  padding: 50px 75px 50px 75px;
  background-color: #fff;
}

.recent-activity-header {
  text-align: left;
  color: #010854;
  display: inline-block;
  border-bottom: solid 3px #00a1ec;
}

@media (max-width: 600px) {
  .recent-activity {
    padding: 20px 40px 40px 40px;
  }
  .recent-activity h2{
    font-size: 22px;
    margin: 15px 0;
  }
}

@media (max-width: 400px) {
	.recent-activity h2{
    margin: 10px 0
    font-size: 18px;
  }
}

.recent-activity-list {
  padding: 0;
}
.recent-activity-item {
  border-bottom: 1px solid #eeedeb;
  overflow: auto;
  padding: 10px 0 5px 0;
}
.recent-activity-item h3 {
  margin: 0;
}
.recent-activity-item-parent {
  text-transform: uppercase; 
  padding: 6px;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 6px;
  background-color: #EEEDEB;
  font-size:10px;
  color: #010854;
  transition: all ease-in-out .3s;
}
.recent-activity-item-parent:hover{
  border: 1px solid #010854;
  text-decoration: none;
}

.recent-activity-item-link {
  margin: 6px 0;
  display: inline-block;
  width: 100%;
}
@media (min-width: 768px) {
  .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}


.recent-activity-item-link {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 15px;
  color: #010854;
}

@media (max-width: 768px) {
	.recent-activity-item-link{
    font-size: 16px;
    margin: 10px 0 0 0;
  }
}

@media (max-width: 400px) {
	.recent-activity-item-link{
    margin: 10px 0 0 0;
    font-size: 14px;
    text-decoration: underline;
  }
}

.recent-activity-item-meta {
  color: rgba(1, 8, 84, 1);
  margin-top: 0x;
  float: none;
}
@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir=rtl] .recent-activity-item-meta {
    float: left;
  }
}



.recent-activity-item-time{
  display: inline-block;
  font-size: 13px;
}

.recent-activity-item-comment {
  display: none;
  font-size: 13px;
}
.recent-activity-item-comment {
  padding-left: 5px;
}
[dir=rtl] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}
.recent-activity-item-comment::before {
  display: inline-block;
}
.recent-activity-controls {
  padding-top: 15px;
}
.recent-activity-controls a {
  padding: 10px;
  margin-top : 15px;
  background-color: #00a1ec;
  color: #fff;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 6px;
  font-size: 12px;
  transition: all ease-in-out .3s;

}
.recent-activity-controls a:hover{
  text-decoration: none;
  background-color: #fff;
  color: #00a1ec;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}

.recent-activity-accessibility-label {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.recent-activity-comment-icon svg {
  vertical-align: middle;
  color: rgba(1, 8, 84, 1);
  width: 16px;
  height: 16px;
}
.recent-activity-comment-icon:after {
  content: attr(data-comment-count);
  margin-left: 3px;
}
[dir=rtl] .recent-activity-comment-icon:after {
  margin-left: 0;
  margin-right: 3px;
}

/***** Communauté *****/

.communaute{
  margin: 75px 0;
}

.communaute > div {
  background-color: #00a1ec;
  /*background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;*/
  border-radius : 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  transition: all .3s ease-in-out;
}

.communaute > div > div{
  width: 50%;
  position: relative
}

.communaute > div > div:first-child{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding : 75px;
}

@media (max-width: 1000px) {
  .communaute > div{
    flex-direction: column-reverse;
    padding: 50px;
  }
    .communaute > div > div{
    width: 100%;
    padding: 0;
  }
  .communaute > div > div:first-child{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    padding: 0;
  }
      .communaute > div > div:last-child img{
    display: none;
  }
}

@media (max-width: 600px) {
  .communaute > div{
    flex-direction: column-reverse;
    padding: 30px;
  }
    .communaute > div > div{
   		width: 100%;
      padding: 0;
  }
  .communaute > div > div:first-child{
    padding: 0;
  }
      .communaute > div > div:last-child img{
    display: none;
  }
}

.communaute .communite-img > img{
  width : 90%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1000px) {
  .communaute .block-img {
    padding: 50px;
    text-align: center;
    margin-top: 30px;
  }
  .communaute .block-img > img{
    width : 80%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 600px) {
  .communaute .block-img {
    padding: 50px;
    text-align: center;
    margin-top: 30px;
  }
  .communaute .block-img > img{
    width : 100%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 400px) {
  .communaute{
    margin: 30px 0 40px 0;
  }
  .communaute > div {
    padding: 30px;
  }
  .communaute .block-img {
    padding: 30px;
    text-align: center;
    margin-top: 30px;
  }
  .communaute .block-img > img{
    width : 100%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 350px) {
  .communaute .block-img {
    padding: 20px;
  }
}
.communaute .sub-title{
  color: #010853;
}

.communaute h2{
  margin: 0 0 10px 0;
  font-size: 36px;
}

@media (max-width: 600px) {
  .communaute h2{
  	font-size: 24px;
	}
  .communaute > div > div:first-child{
    font-size: 14px;
	}
}

@media (max-width: 400px) {
  .communaute h2{
  	font-size: 24px;
	}
  .communaute > div > div:first-child{
    font-size: 14px;
	}
}
.communaute img{
  width: 150px;
  display: block;
}

.communaute ul li{
  font-weight: 600;
  padding-left: 15px;
}

.communaute ul li:before{
  content: '';
  display: inline-block;
  height: 12px;
  width: 12px;
  background-color: #00A1Ec;
  border-radius: 2px;
  margin-right: 10px;
}

.communaute .block-img{
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
/*
.communaute:after{
  content: " ";
  position: absolute;
  width: 35%;
  height: 100%;
 	background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  padding : 50px 0;
  top: -50px;
  right: 0;
  z-index: -1;
}

@keyframes block-img { 
	0% {
	  transform: scale(0.99);
    box-shadow: 0px 0 10px -3px rgba(0,0,0,0.3);
	}
  50% {
	 transform: scale(1);
    box-shadow: 0px 0 15px -3px rgba(0,0,0,0.1);
	}
	100% {
	  transform: scale(0.99);
    box-shadow: 0px 0 10px -3px rgba(0,0,0,0.3);
	}
}
*/


.hero-communaute{
  margin-bottom: 30px;
}

.hero-communaute > div {
    border-radius: 10px;
    transition: all .3s ease-in-out;
  background-image: url(/hc/theming_assets/01JPW6KMSS87C876FZPCQF4DPM);
  background-size: cover;
  background-position: center;*/
  border-radius : 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  transition: all .3s ease-in-out;
}

.hero-communaute > div > div{
  width: 50%;
  position: relative
}

.hero-communaute > div > div:first-child{
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding : 75px;
}

@media (max-width: 1000px) {
  .commhero-communauteunaute > div{
    flex-direction: column-reverse;
    padding: 50px;
  }
    .hero-communaute > div > div{
    width: 100%;
    padding: 0;
  }
  .hero-communaute > div > div:first-child{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    padding: 0;
  }
      .hero-communaute > div > div:last-child img{
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-communaute > div{
    flex-direction: column-reverse;
    padding: 30px;
  }
    .hero-communaute > div > div{
   		width: 100%;
      padding: 0;
  }
  .hero-communaute > div > div:first-child{
    padding: 0;
  }
      .hero-communaute > div > div:last-child img{
    display: none;
  }
}

.hero-communaute .communite-img > img{
  width : 90%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media (max-width: 1000px) {
  .hero-communaute .block-img {
    padding: 50px;
    text-align: center;
    margin-top: 30px;
  }
  .hero-communaute .block-img > img{
    width : 80%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 600px) {
  .hero-communaute .block-img {
    padding: 50px;
    text-align: center;
    margin-top: 30px;
  }
  .hero-communaute .block-img > img{
    width : 100%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 400px) {
  .hero-communaute{
    margin: 30px 0 40px 0;
  }
  .hero-communaute > div {
    padding: 30px;
  }
  .hero-communaute .block-img {
    padding: 30px;
    text-align: center;
    margin-top: 30px;
  }
  .hero-communaute .block-img > img{
    width : 100%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 350px) {
  .hero-communaute .block-img {
    padding: 20px;
  }
}
.hero-communaute .sub-title{
  color: #010853;
}

.hero-communaute h2{
  margin: 0 0 10px 0;
  font-size: 36px;
}

@media (max-width: 600px) {
  .hero-communaute h2{
  	font-size: 24px;
	}
  .hero-communaute > div > div:first-child{
    font-size: 14px;
	}
}

@media (max-width: 400px) {
  .hero-communaute h2{
  	font-size: 24px;
	}
  .hero-communaute > div > div:first-child{
    font-size: 14px;
	}
}
.hero-communaute img{
  width: 150px;
  display: block;
}

.hero-communaute ul li{
  font-weight: 600;
  padding-left: 15px;
}

.hero-communaute ul li:before{
  content: '';
  display: inline-block;
  height: 12px;
  width: 12px;
  background-color: #00A1Ec;
  border-radius: 2px;
  margin-right: 10px;
}

.hero-communaute .block-img{
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
/*


/***** Baseline *****/
.editeur{
  text-align: center;
}
.editeur dotlottie-player{
  display: inline-block;
  width: 40%;
  border-radius: 6px;
  padding: 30px;
  margin-bottom: 20px;
}

/***** Assistance *****/

.assistance{
	font-size: 16px;
  margin-top: 100px;
  border-radius: 10px;
  padding: 60px;
  border-radius: 10px;
  background-color: #EEEDEB;
}
.assistance .assistance-flex{
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: 50px;
}

.assistance  .assistance-flex > div{
  width: 50%;
}


.sub-title{
  text-transform: uppercase;
  font-weight: bold;
  color: #00A1Ec;
}
.sub-title-white{
  text-transform: uppercase;
  font-weight: bold;
  color: #010853;
}
.assistance h2{
  margin: 0 0 10px 0;
}

.assistance .assistance-flex  > div:first-child{
  font-size: 18px;
  font-weight: 500;
  padding: 30px 0 30px 75px;
  position: relative;
}
.assistance .assistance-flex  > div:last-child div {
  position: relative;
}
.assistance .assistance-flex  > div:last-child div img{
  	height: 90%;
	  max-height: 90%;
  	position: absolute;
  	bottom: 0;
  	left: 50%;
  	transform: translateX(-50%);
}



@media (max-width: 600px) {
  .assistance .assistance-flex > div:first-child{
     font-size: 16px;
  }
}

@media (max-width: 400px) {
    .assistance h2{
      font-size: 24px;
    }
    .assistance > div:first-child{
      padding: 0;
      font-size: 14px;
  }
}

.assistance > div:first-child h2{
  margin-bottom: 10px;
}
.assistance div:first-child a{
  display: inline-block;
  margin-right: 10px;
}

.assistance .assistance-flex > div:last-child div{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-image: url(/hc/theming_assets/01JPW6KMSS87C876FZPCQF4DPM);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}


@media (max-width: 500px) {
  .assistance > div:last-child ul{
    font-size: 14px;
  }
}

.assistance > div:last-child ul{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
}
@media (min-width: 1060px) {
    .assistance > div:last-child ul{
  		row-gap: 30px;
    }
}
@media (max-width: 1060px) {
    .assistance > div:last-child ul{
  		row-gap: 15px;
    }
}


.assistance > div:last-child ul{
  list-style-type: none;
}

.assistance > div:last-child ul li{
  	font-size: 14px;
  	position : relative;
  	padding-left: 20px;
  	background-color: #fff;
  	box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.15);
  	padding: 30px 20px;
  	text-align: center;
 		border-radius: 10px;
  	margin-bottom: 0;
  	font-weight: 500;
  	margin-right: 30px;
}

.assistance > div:last-child ul li b{
  color: #010854;
  display: inline-block;
  border-bottom: 2px solid #00a1ec;
  margin-bottom: 10px;
}

@media (max-width: 1060px){
  .assistance .assistance-flex{
    display: flex;
    flex-direction: column;
    margin-bottom: 50px;
  }
.assistance .assistance-flex > div:first-child{
    width: 100%;
    padding: 0px;
  }
  .assistance > div:last-child ul{
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
.assistance > div:last-child ul li:not(:last-child){
  margin-right: 15px;
}
  
.assistance > div:last-child ul li {
  	margin-right: 15px;
	}
}

@media (max-width:768px){
  .assistance{
    padding: 30px;
  }
  .assistance > div:last-child ul{
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    
  }
  .assistance > div:last-child ul li{
    line-height: auto;
    padding: 15px: 10px;
  }
  .assistance > div:last-child ul li:not(:last-child){
    margin-right: 0;
  }
  .assistance > div:last-child ul li:last-child{
    margin-right: 0;
    margin-bottom: 0;
  }
}

/***** Support : Cours en ligne & Formations *****/

.cours{
  position: relative;
  background-image: url(/hc/theming_assets/01JPW6KMSS87C876FZPCQF4DPM);
  background-size: cover;
  background-position: center;
  padding: 100px;
  margin: 100px 0 100px 0;
  border-radius: 10px;
  transition: all .3s ease-in-out;
}


.cours > div{
  display: flex;
  flex-direction: row;
  margin: 0 auto;
}

.cours > div > div{
  width: 50%;
}

.cours > div > div:first-child{
  padding: 75px 100px 75px 0;
  background-image : url(/hc/theming_assets/01JPW6KM9NW7DRZ180C1M7FN66);
  background-size : 50%;
  background-position: center;
  background-repeat: no-repeat;
  color:#fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .cours > div{
    flex-direction: column;
  }
  .cours > div > div{
    width: 100%;
  }
  .cours > div > div:first-child{
    padding: 0 0 50px 0;
  }
}


/*
.cours:after{
  content: " ";
  position: absolute;
  width: 40%;
  height: 100%;
 	background-image: url(/hc/theming_assets/01JPW6KMSS87C876FZPCQF4DPM);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  right: 0;
  z-index: -1;
  padding: 75px 0;
  top: -75px;
}
*/

.cours  > div > div:first-child h2{
  font-size: 36px;
  margin: 0 0 10px 0;
}

@media (max-width: 650px) {
  .cours{
    padding: 30px;
    margin: 50px 0 50px 0;
  }
  .cours > div > div:first-child{
    font-size: 14px;
  }
  .cours  > div > div:first-child h2{
    font-size: 24px;
    margin: 0 0 10px 0;
  }
}

.cours  > div > div:first-child ul {
  margin: 15px 0 15px 0;
  list-style-type: none;
}
.cours  > div > div:first-child ul li{
  font-weight: 600;
  padding-left: 15px;
}
.cours > div > div:first-child ul li:before{
  content: '';
  display: inline-block;
  height: 12px;
  width: 12px;
  background-color: #00A1Ec;
  border-radius: 2px;
  margin-right: 10px;
}

.cours .block-list{
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  position: relative;
}
.cours .block-list h3 p{
	display: inline;
  position: relative;
  top: 1.75px;
}

.cours .block-list > div{
  overflow-y: scroll;
  position: absolute;
  padding: 50px 50px 15px 50px;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 15px -3px rgba(0,0,0,0.3);
}


@media (max-width: 1100px) {
  .cours .block-list{
    border-radius: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    position: relative;
  }
  .cours .block-list > div{
    position: static;
    height: 500px;
    max-height: 500px;
	}
}

@media (max-width: 600px) {
  .cours .block-list{
    border-radius: 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    position: relative;

  }
  .cours .block-list > div{
    position: static;
    height: 500px;
    max-height: 500px;
    padding: 25px 25px 0px 25px;
    font-size: 14px;
	}
}


.cours .block-list > div::-webkit-scrollbar-track{
	border-radius: 20px;
	background-color: none;
}

.cours .block-list > div::-webkit-scrollbar{
	width: 20px;
	background-color: none;
  border-radius: 10px;
}

.cours .block-list > div::-webkit-scrollbar-thumb{
	border-radius: 10px;
  border: 7px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  border-radius: 9999px;
  background-color: #eeedeb;
}

.cours h3{
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: solid 3px #00a1ec;
  font-weight: 700;
}

.cours h3 img{
  width: 30px;
  margin-right: 15px;
  vertical-align: middle;
}
.cours  .block-list ul{
  margin-bottom: 50px;
}
.cours  > div > div:last-child ul li{
  margin: 0;
  border-bottom: 1px solid #eeedeb;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.cours  > div > div:last-child ul li p{
  margin: 0;
  padding: 15px;
}

@media (max-width: 400px) {
  .cours  > div > div:last-child ul li p{
    padding: 15px 15px 15px 0;
    font-size: 14px;
  }
}


.cours  > div > div:last-child ul li a{
  margin-top: 0;
  cursor: pointer;
}

/* BLOC FORMATIONS */

.formation{
  margin: 75px 0 0 0;
  max-width: 100%;
}

.formation > div {
  /*background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;*/
  border-radius : 10px;
  color: #fff;
  display: flex;
  flex-direction: row;
  margin: 0 auto;
	transition: all .3s ease-in-out;
}


.formation > div > div{
  width: 50%;
}

@media (max-width: 1100px) {
  .formation > div{
    flex-direction: column;
    padding: 0;
  }
    .formation > div >div{
    width: 100%;
  }
}

@media (max-width: 600px) {
  .formation{
    margin: 50px 0 0 0;
  }
  .formation > div{
    flex-direction: column;
  }
    .formation > div > div{
    width: 100%;
  }
}

@media (max-width: 400px) {
  .formation > div{
    flex-direction: column;
  }
  .formation > div >div{
    width: 100%;
  }
}


.formation > div > div:first-child{
  padding-right: 100px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 1000px) {
	.formation > div > div:first-child{
    padding-right: 0px;
  }
}



.formation .block-img > img{
  width : 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1100px) {
  .formation .block-img {
    padding: 50px;
    text-align: center;
    margin-top: 30px;
  }
  .formation .block-img > img{
    width : 80%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}

@media (max-width: 600px) {
  .formation .block-img {
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    
  }
  .formation .block-img > img{
    width : 100%;
    position: static;
    transform: translate(0, 0);
    display: inline;
  }
}


.formation .sub-title{
  color: #010853;
}

.formation h2{
  margin: 0 0 10px 0;
  font-size: 36px;
}

@media (max-width: 600px) {
	.formation > div > div:first-child{
    padding: 0px;
    font-size: 14px;
  }
  .formation h2{
  font-size: 24px;
}

}

.formation img{
  width: 150px;
  display: block;
}

.formation ul li{
  font-weight: 600;
  padding-left: 15px;
}
.formation ul li:before{
  content: '';
  display: inline-block;
  height: 12px;
  width: 12px;
  background-color: #00A1Ec;
  border-radius: 2px;
  margin-right: 10px;
}

.formation .block-img{
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.15);
}
/*
.formation:after{
  content: " ";
  position: absolute;
  width: 35%;
  height: 100%;
 	background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 30px;
  border-top-left-radius: 30px;
  padding : 50px 0;
  top: -50px;
  right: 0;
  z-index: -1;
}

@keyframes block-img { 
	0% {
	  transform: scale(0.99);
    box-shadow: 0px 0 10px -3px rgba(0,0,0,0.3);
	}
  50% {
	 transform: scale(1);
    box-shadow: 0px 0 15px -3px rgba(0,0,0,0.1);
	}
	100% {
	  transform: scale(0.99);
    box-shadow: 0px 0 10px -3px rgba(0,0,0,0.3);
	}
}
*/
/***** Category pages *****/

.h1-category{
  position: relative;
  padding-left: 65px;
  margin-bottom: 50px;
}
.h1-category img{
	width: 50px;
  position: absolute;
  top:50%;
  left: 0;
  top: 0;
}

.category-container {
  display: flex;
  justify-content: flex-end;
}
.category-content {
  flex: 1;
  max-width: 100%;
  animation: 1s category-content;
}

@keyframes category-content {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.category-list{
  animation: 1s category-list;
}

@keyframes category-list {
  	0% {
      opacity: 0;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.f1{
	font-size: 16px;
  position: relative;
  padding-left: 50px;
}
.f1:before{
  content: "F1";
  padding: 3px 10px;
  border: 2px solid #010854;
  border-radius: 6px;
  font-weight: 600;
  animation: f1 2s infinite;
	display: block;
	position: absolute;
  left: 0;
  top: -5px;
  color: #010854;
}

@keyframes f1 {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(.95);
    }

    100% {
        transform: scale(.9);
    }
}

.section-tree-title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
.title-gi-img{
  width: 25px;
  position: relative;
  top: 7px;
  margin-left: 10px;
}
.title-gi{
	font-size: 16px;
  position: relative;
  top: 1px;
}
.section-tree-title a {
  color: rgba(1, 8, 84, 1);
}
.section-tree .see-all-articles {
  display: block;
  padding: 15px 0;
}

.article-list-item {
  font-size: 16px;
  padding: 15px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  
}
.article-list-item a {
  color: #010854;
  font-weight: 500;
}

.article-list-item a:hover, .article-list-item a:focus{
  transition: .3s all ease-in-out;
	text-decoration: none;
  color: #00a1ec;
}

.icon-star {
  color: rgba(1, 8, 84, 1);
  font-size: 18px;
}

.section-main{
  margin-top: 30px;
}

.section-main h2{ 
  display: inline-block;
  border-bottom: solid 3px #00a1ec;
  padding-bottom: 10px; 
  margin-top: 0;
}

.section-main .blocks-list-others {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px, 1fr));
}

.section-main .blocks-list-others .blocks-item {
  border: 2px solid transparent;
  background-color: #eeedeb;
  border-radius: 6px;
  box-sizing: border-box;
  font-weight: 600;
  display: flex;
  flex: 1 0 300px;
  margin: 5px;
  max-width: 100%;
  text-align: left;
  transition: all .3s ease-out;
}

.section-main .blocks-list-others .blocks-item .blocks-item-link{
  color: rgba(1, 8, 84, 1);
  padding: 15px 15px;
  display: flex;
  flex-direction: row;
  flex: 1;
  border-radius: inherit;
  transform: translateY(-4px);
}

.section-main .blocks-list-others .blocks-item:hover, .section-main .blocks-list-others .blocks-item:focus{
	border-color: #010854;
  text-decoration: none;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-container h1 span{
  padding-bottom: 10px;
  display: inline;
  border-bottom: solid 3px #00a1ec;
}
.section-content {
  flex: 1;
  max-width: 100%;
  animation: 1s section-content;
}

@keyframes section-content {
  	0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  padding: 15px 0;
  background-color: #fff;
}
.section-list-item:first-child {
  border-top: 1px solid #ddd;
}
.section-list-item a {
  align-items: center;
  color: rgba(1, 8, 84, 1);
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}
.see-all-sections-trigger[aria-hidden=true] {
  display: none;
}

/* Iframe basdeco */

.iframe-basdeco{
 padding: 30px; 
}

.iframe-basdeco iframe{
  border: 1px solid #00a1ec;
  border-radius: 10px;
  box-shadow: 0px 0px 25px -3px rgba(0,0,0,0.16);
}

/***** Article *****/
.article {
  /*
  * The article grid is defined this way to optimize readability:
  * Sidebar | Content | Free space
  * 17%     | 66%     | 17%
  */
  flex: 1 0 auto;
}

.article-container {
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  margin: 0 auto;
  
}
.article-header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 15px;
  animation: 1.2s article-header;
}

@keyframes article-header {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.title-product{
  display: block;
  width: 100%;
  margin-top: 30px;
}

.title-product ol li:before{
  display: none;
}

.title-product nav{
  position: relative;
  margin-bottom: 15px;
}

.title-product ol li:not(:nth-child(2)){
  display: none;
}

.title-product ol li a{
  font-size: 20px;
  font-weight: 700;
  padding-left: 40px;
	color: #010854;
}

.title-product > nav > img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

@media (min-width: 1215px) {
  .article{
    flex: 1 0 66%;
    max-width: 700px;
    min-width: 700px;
  }
   .article-container{
    flex-direction: row;
    max-width: 1300px;
  }
  .article-header{
    max-width: 1300px;
  }
}

@media (min-width: 1590px) {
  .article{
    flex: 1 0 66%;
    max-width: 750px;
    min-width: 750px;
  }
    .article-container{
    max-width: 1300px;
    justify-content: space-between;
  }
    .article-header{
    max-width: 1300px;
  }
}

@media (min-width: 768px) {
  .article-header {
    flex-direction: row;
    margin-top: 0;
  }
}
.article-avatar {
  margin-right: 10px;
}
.article-author {
  margin-bottom: 10px;
}
.article-title {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .article-title {
    flex-basis: 100%; /* Take entire row */
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .article-title {
    font-size: 28px;
  }
}
.article-title .icon-lock {
  position: relative;
  left: -5px;
  vertical-align: baseline;
}
.article [role=button] {
  flex-shrink: 0; /*Avoid collapsing elements in Safari (https://github.com/philipwalton/flexbugs#1-minimum-content-sizing-of-flex-items-not-honored)*/
  width: 100%;
}
@media (min-width: 768px) {
  .article [role=button] {
    width: auto;
  }
}
.article-info {
  max-width: 100%;
}
.article-meta {
  display: inline-block;
  vertical-align: middle;
}
.current-article{
  font-weight: 600;
}

.article-body {
  display: flow-root;
  animation: 1s article-body;
  position: relative;
}

@keyframes article-body {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

.article-body img {
  height: auto;
  max-width: 100%;
  border-radius: 6px;
  transition: all .3s ease-out;
  z-index: 200;
  box-shadow: 0px 0 10px -3px rgba(0,0,0,0.1);
}

/*ARTICLE BODY*/
.article-body {
  display: flow-root;
}

.article-body h3{
  color: #00a1ec;
  font-weight: bold;
  font-size: 18px;
  margin: 30px 0 10px 0;
}

.article-body h4{
  text-decoration: underline;
  font-weight: 500;
}

.article-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figure.image {
  display: table;
  margin: 0 auto;
}
.article-body figure.image > img {
  display: block;
  width: 100%;
}
.article-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.article-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.article-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.article-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.article-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.article-body ul,
.article-body ol {
  padding-left: 20px;
  list-style-position: outside;
}
[dir=rtl] .article-body ul,
[dir=rtl] .article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

/* Numbers */
.article-body ol {
  list-style: none;
  counter-reset: fuel-awesome-counter;
  margin: 0 auto;
  text-align: justify;
  padding: 0px 0 0px 50px;
}

.article-body ol li {
  counter-increment: fuel-awesome-counter;
  position: relative;
  margin: 25px 0;
}

.article-body ol li::before {
  content: counter(fuel-awesome-counter);
  color: #fff;
  background: #00a1ec;
  width: 20px;
  height: 20px;
  line-height: 1.8;
  display: inline-block;
  text-align: center;
  font-size: 0.8em;
  border-radius: 3px;
  margin-right: 0.5em;
  position: absolute;
  left: -2rem;
  top: 0.1em;
  font-weight: 800;
}

.article-body ul > ul,
.article-body ol > ol,
.article-body ol > ul,
.article-body ul > ol,
.article-body li > ul,
.article-body li > ol {
  margin: 0;
}
.article-body > ul {
  list-style-type: disc;
  padding: 0 0 5px 50px;
}

.article-body ul li ul li{
  list-style-type: circle;
}

.article-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.article-body blockquote {
  background-color: #F5F5F5;
  margin: 20px 0;
  padding: 20px;
  border-left: 4px solid #010854;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
.article-body blockquote p{
  margin: 0;
  color: #010854;
}
.article-body blockquote ul{
  list-style-type: disc;
}
.article-body > p:last-child {
  margin-bottom: 0;
}
.article-content {
  line-height: 1.6;
  word-wrap: break-word;
}
.article-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.article-comment-count {
  color: #0212b9;
}
.article-comment-count:hover {
  text-decoration: none;
}
.article-comment-count-icon {
  vertical-align: middle;
  color: rgba(1, 8, 84, 1);
  width: 18px;
  height: 18px;
}

.article-relatives {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .article-relatives {
    flex-direction: row;
  }
}
.article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}
.article-relatives > *:last-child {
  padding: 0;
}
@media (min-width: 768px) {
  .article-relatives > * {
    padding-right: 20px;
  }
}

.article-relatives ul{
  margin-top: 20px;
}

.article-relatives ul li{
  display: flex;
}

.article-relatives ul li:before{
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
  	min-width: 10px;
    background-color: #00A1Ec;
    border-radius: 2px;
    margin-right: 8px;
  	transform: translateY(55%);
}
.article-relatives ul li a{
  color: #00a1ec;
  font-weight: 500; 
}
.article-relatives ul li a:hover, .article-relatives ul li a:focus{
  text-decoration: none;
  color: #010854;
  transition: ease-in-out all .3s;
}

.article-votes {
  border-top: 1px solid #ddd;
  padding: 30px 0;
  text-align: center;
}
.article-vote {
  margin: 10px 5px;
  min-width: 90px;
  width: auto;
}
.article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}
.article-more-questions a {
  color: rgba(0, 161, 224, 1);
  text-decoration: underline;
}
.article-more-questions a:visited {
  color: rgba(1, 8, 84, 1);
}
.article-more-questions a:hover, .article-more-questions a:active, .article-more-questions a:focus {
  color: rgba(1, 8, 84, 1);
}
.article-return-to-top {
  border-top: 1px solid #87929D;
}
@media (min-width: 1024px) {
  .article-return-to-top {
    display: none;
  }
}
.article-return-to-top a {
  color: rgba(1, 8, 84, 1);
  display: block;
  padding: 20px 0;
}
.article-return-to-top a:hover, .article-return-to-top a:focus {
  text-decoration: none;
}
.article-return-to-top-icon {
  transform: rotate(0.5turn);
}
.article td > p:first-child,
.article th > p:first-child {
  margin-top: 0;
}
.article td > p:last-child,
.article th > p:last-child {
  margin-bottom: 0;
}

.sidenav-title {
  font-size: 15px;
  position: relative;
  font-weight: 600;
}
.sidenav-item{
  display: block;
  margin-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}

.recent-articles li,
.related-articles li {
  margin-bottom: 15px;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  margin-top: 30px;
  position: relative;
  margin-bottom: 10px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
	background-color: #eeedeb;
}
.attachments .attachment-item .attachment-name a{
  font-size: 14px;
  font-weight: 600;
  color: #010854;
}
.attachments .attachment-item .attachment-name .meta-data{
  background-color: #fff;
  display: inline-block;
  margin-top: 5px;
}
.attachments .attachment-item .attachment-link{
  display: flex;
  align-items: center;
}
.attachments .attachment-item .attachment-link a{
    margin-top: 0;
}
.attachments .attachment-item:last-child {
  margin-bottom: 0;
}
.attachments .attachment-item .attachment-icon {
  color: rgba(1, 8, 84, 1);
  left: 0;
  position: absolute;
  top: 5px;
}
[dir=rtl] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}
[dir=rtl] .attachments .attachment-item .attachment-icon {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #0212b9;
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share li {
  height: 25px;
  width: 25px;
}

.share a {
  color: #0212b9;
}
.share a:hover {
  text-decoration: none;
  color: rgba(1, 8, 84, 1);
}
.share a svg {
  height: 18px;
  width: 18px;
  display: block;
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */

.comment-heading, .recent-articles-title,
.related-articles-title {
  margin-bottom: 5px;
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}
.comment-overview {
  padding: 20px 0;
}
.comment-overview p {
  margin-top: 0;
}
.comment-callout {
  color: #010854;;
  display: inline-block;
  font-size: 13px;
  margin-bottom: 0;
}
.comment-callout a {
  color: rgba(0, 161, 224, 1);
  text-decoration: underline;
}
.comment-callout a:visited {
  color: rgba(1, 8, 84, 1);
}
.comment-callout a:hover, .comment-callout a:active, .comment-callout a:focus {
  color: rgba(1, 8, 84, 1);
}
.comment-sorter {
  display: inline-block;
  float: right;
  padding: 10px;
  border: solid 1px #010854;
  border-radius: 6px;
  position: relative;
  top: -20px;
}
.comment-sorter .dropdown-toggle {
  color: #010854;
  font-size: 13px;
  font-weight: 500;
}
[dir=rtl] .comment-sorter {
  float: left;
}
.comment-wrapper {
  position: relative;
      padding: 30px;
    background-color: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #F5F5F5;
}
.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}
[dir=rtl] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}
.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}
.comment-avatar {
  margin-right: 10px;
}
.comment-author .comment-meta{
  font-weight: 600;
}
[dir=rtl] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}
.comment-meta {
  flex: 1 1 auto;
}
.comment-labels {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment-form {
  display: flex;
  word-wrap: break-word;
}
.comment-container {
  width: 100%;
}
.comment-container textarea{
  border-radius: 6px;
  transition: all .3s ease-in-out;
  border: 2px solid #f5f5f5;
}
.comment-container textarea:hover{
  border: 2px solid #010854;
}
.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}
@media (min-width: 768px) {
  [dir=ltr] .comment-form-controls {
    text-align: right;
  }
}
.comment-form-controls input[type=submit] {
  margin-top: 15px;
}
@media (min-width: 1024px) {
  .comment-form-controls input[type=submit] {
    margin-left: 15px;
  }
  [dir=rtl] .comment-form-controls input[type=submit] {
    margin-left: 0;
    margin-right: 15px;
  }
}
.comment-form-controls input[type=checkbox] {
  margin-right: 5px;
}
.comment-form-controls input[type=checkbox] [dir=rtl] {
  margin-left: 5px;
}
.comment-ccs {
  display: none;
}
.comment-ccs + textarea {
  margin-top: 10px;
}
.comment-attachments {
  margin-top: 10px;
}
.comment-attachments a {
  color: rgba(1, 8, 84, 1);
}
.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flow-root;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  overflow-x: auto;
  border-top: #F5F5F5 2px solid;
  padding-top: 15px;
}
.comment-body a {
  color: rgba(0, 161, 224, 1);
  text-decoration: underline;
}
.comment-body a:visited {
  color: rgba(1, 8, 84, 1);
}
.comment-body a:hover, .comment-body a:active, .comment-body a:focus {
  color: rgba(1, 8, 84, 1);
}
.comment-body img {
  height: auto;
  max-width: 100%;
}
.comment-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figure.image {
  display: table;
  margin: 0 auto;
}
.comment-body figure.image > img {
  display: block;
  width: 100%;
}
.comment-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.comment-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.comment-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.comment-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.comment-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.comment-body ul,
.comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir=rtl] .comment-body ul,
[dir=rtl] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.comment-body ul > ul,
.comment-body ol > ol,
.comment-body ol > ul,
.comment-body ul > ol,
.comment-body li > ul,
.comment-body li > ol {
  margin: 0;
}
.comment-body ul {
  list-style-type: disc;
}
.comment-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #0212b9;
  font-style: italic;
}
.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: flex;
  flex-direction: row;
  text-align: center;
  border: solid 2px #f5f5f5;
  border-radius: 6px;
  transition: all .3s ease-in-out;
  z-index: 1;
}
.vote:hover{
	background-color: #fff;
  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
.vote a:active, .vote a:hover, .vote a:focus {
  text-decoration: none;
}

.vote-sum {
  color: #010854;
  display: block;
  padding: 10px 10px 10px 15px;
  font-weight: 500;
}
[dir=rtl] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up svg {
  transform: scale(1, -1);
}

.vote-up:hover,
.vote-down:hover {
  color: rgba(1, 8, 84, 1);
}

.vote-up, .vote-down {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border:none;
  color: #010854;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vote-voted {
  color: rgba(1, 8, 84, 1);
}

.vote-voted:hover {
  color: #000;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0; /*Avoid collapsing elements in Safari*/
}
.actions button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***** Community *****/

.community{
  
}

.community-hero {
  background-image: url(/hc/theming_assets/01JPW6KQFDF65CZDVHE0C901SD);
  margin-bottom: 10px;
}
.community-footer {
  padding-top: 50px;
  text-align: center;
  margin-bottom: 100px;
}
.community-footer-title {
  font-size: 16px;
  margin-bottom: 0;
}
.community-featured-posts{
  background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  border: 2px solid #F5F5F5;
  padding: 50px;
  border-radius: 10px;
  margin-top: 75px;
}
.community-featured-posts .title{
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
}
.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}
.community-header {
  margin-bottom: 30px;
}
.community-header .title {
  margin-bottom: 0;
  font-size: 16px;
}
.post-to-community {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}
.topics-item{
  background-color: #fff;
}
.topics-item .meta-group {
  justify-content: center;
}
.topics-item .meta-data {
  display: inline-block;
  margin-top: 10px;
}
/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 13px;
}
@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}
.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}
@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */

.community-avatar{
  height: 45px;
  border-radius: 50%;
  margin-right: 15px;
  vertical-align: middle;
}

.community-follow {
  margin-bottom: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}
.community-follow button {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
  transition: all .3s ease-in-out;
}
@media (min-width: 768px) {
  .community-follow button {
    width: auto;
  }
}
.community-follow button:hover {
  background-color: #00a1ec;
  color:#fff;
}
.community-follow button:after:{
  transition: all .3s ease-in-out;
  border-color: #00a1ec;
}
.community-follow button:hover::after, .community-follow button:focus::after {
  border-color: #fff;
  color: #fff;
}
.community-follow button[data-selected=true] {
  background-color: transparent;
  color: #00a1ec;
}
.community-follow button[data-selected=true]::after {
  border-left: 1px solid #00a1ec;
  color: #010854;
  transition: all .3s ease-in-out;
}
.community-follow button[data-selected=true]:hover {
  background-color: #00a1ec;
  color:#fff;
}
.community-follow button[data-selected=true]:hover::after{
  border-left: 1px solid #fff;
  color: #fff;
}

.community-follow button::after {
  border-left: 1px solid #00a1ec;
  content: attr(data-follower-count);
  color: rgba(1, 8, 84, 1);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}
@media (min-width: 768px) {
  .community-follow button::after {
    position: static;
  }
}
[dir=rtl] .community-follow button::after {
  border-left: 0;
  border-right: 1px solid rgba(1, 8, 84, 1);
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}
.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}
.striped-list-info {
  flex: 2;
}
.striped-list-title {
  color: rgba(0, 161, 224, 1);
  margin-bottom: 10px;
  margin-right: 5px;
}
.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}
.striped-list .meta-group {
  margin: 10px 0 5px 0;
}
.striped-list-count {
  color: #010854;
  font-size: 13px;
  justify-content: flex-start;
  text-transform: capitalize;
  font-weight: 600;
}
@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    justify-content: space-around;
  }
}
.striped-list-count-item{
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
}
.striped-list-count-item:not(:first-child){
	margin-left: 10px;
}
.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}
@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .striped-list-count-item:not(:first-child){
    margin-left: 0;
    display: inline-block;
  }
  .striped-list-count-item{
		margin-top: 10px;
    background-color: transparent;
    padding: 0;
  }
}
.striped-list-count-item:last-child::after {
  display: none;
}
.striped-list-number {
  text-align: center;
}
@media (min-width: 768px) {
  .striped-list-number {
    color: rgba(1, 8, 84, 1);
    display: block;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #038153;
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}
.post-header .status-label{
  position: relative;
  top: 6px;
}
.striped-list-item  .status-label{
  position: relative;
  top: -2px;
}
.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}
.status-label-pinned, .status-label-featured {
  background-color: #00a1ec;
}

.status-label-not-planned, .status-label-closed {
  background-color: #e9ebed;
  color: #0212b9;
}
.status-label-pending, .status-label-pending-moderation {
  background-color: #1f73b7;
  text-align: center;
}
.status-label-open {
  background-color: #c72a1c;
}
.status-label-solved {
  background-color: #68737d;
}
.status-label-new {
  background-color: #ffb648;
  color: #703b15;
}
.status-label-hold {
  background-color: #000;
}
.status-label-request {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .status-label-request {
    max-width: 150px;
  }
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}
.post-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}
.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}
.post-header .status-label {
  vertical-align: super;
}
.post-title {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}
.post-title h1 {
  display: inline;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}
.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-author .post-meta{
  font-weight: 600;
}

.post-content {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  word-break: break-word;
  text-align: justify;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}
[dir=rtl] .post-info {
  padding-right: 0;
  padding-left: 20px;
}
.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}
[dir=rtl] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}
.post-body {
  display: flow-root;
  padding: 20px 0;
}
.post-body a {
  color: rgba(0, 161, 224, 1);
  text-decoration: underline;
}
.post-body a:visited {
  color: rgba(1, 8, 84, 1);
}
.post-body a:hover, .post-body a:active, .post-body a:focus {
  color: rgba(1, 8, 84, 1);
}
.post-body img {
  height: auto;
  max-width: 100%;
}
.post-body p > img.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body p > img.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body p > img.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body p > img.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figure.image {
  display: table;
  margin: 0 auto;
}
.post-body figure.image > img {
  display: block;
  width: 100%;
}
.post-body figure.image.image-style-align-left {
  float: left;
  margin: 8px 20px 6px 0;
}
.post-body figure.image.image-style-align-right {
  float: right;
  margin: 8px 0px 6px 20px;
}
.post-body figure.image.image-style-block-align-right {
  margin-left: auto;
  margin-right: 0;
}
.post-body figure.image.image-style-block-align-left {
  margin-left: 0;
  margin-right: auto;
}
.post-body figcaption {
  padding: 10px 0;
  font-size: 12px;
  text-align: center;
  background-color: #f2f2f2;
}
.post-body ul,
.post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}
[dir=rtl] .post-body ul,
[dir=rtl] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}
.post-body ul > ul,
.post-body ol > ol,
.post-body ol > ul,
.post-body ul > ol,
.post-body li > ul,
.post-body li > ol {
  margin: 0;
}
.post-body ul {
  list-style-type: disc;
}
.post-body :not(pre) > code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}
.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}
.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #0212b9;
  font-style: italic;
  padding: 0 15px;
}
.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.post-comment-count {
  color: #0212b9;
}
.post-comment-count:hover {
  text-decoration: none;
}
.post-comment-count .icon-comments {
  color: rgba(1, 8, 84, 1);
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 5px;
  vertical-align: middle;
}
.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir=rtl] .post-sidebar {
    padding: 0 50px 0 0;
  }
}
.post-sidebar-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.post-comments {
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/***** Community Badges *****/
/* Styles labels used next to the authors of article comments, community posts, and community comments */
.community-badge-title {
  background-color: #010854;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 0px 8px;
  vertical-align: top;
  white-space: nowrap;
  display: inline-block;
  line-height: 18px;
  vertical-align: middle;
}

.community-badge-titles {
  display: flex;
}

.community-badge-achievement {
  display: block;
  height: 16px;
  white-space: nowrap;
  width: 16px;
}
.community-badge-achievement img {
  width: 100%;
  height: 100%;
}

.community-badge-achievements {
  display: flex;
}

.community-badge-achievements-rest {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  vertical-align: top;
}

.community-badge {
  margin: 2px;
}

.profile-info .community-badge-title {
  padding: 2px 8px;
  line-height: 20px;
}
.profile-info .community-badge-achievement {
  height: 20px;
  width: 20px;
}
.community-badge-achievements{
  width: 100%;
}
.profile-info .community-badge-achievements-rest {
  line-height: 40px;
  font-size: 20px;
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  flex-direction: column;
  font-size: 14px;
  position: relative;
}
@media (min-width: 768px) {
  .collapsible-nav {
    flex-direction: row;
  }
}

.collapsible-nav-border {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
@media (min-width: 768px) {
  .collapsible-nav-border {
    border-top: 0;
  }
}

.collapsible-nav-toggle {
  top: 22.5px;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  padding: 0;
  border: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .collapsible-nav-toggle {
    display: none;
  }
}
[dir=rtl] .collapsible-nav-toggle {
  left: 0;
  right: auto;
}
.profile-nav button{
  display: none;
}
.collapsible-nav-toggle-icon {
  display: none;
}
.collapsible-nav-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}
.collapsible-nav-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}
.collapsible-nav-toggle:focus {
  outline: none;
  border: 1px solid rgba(1, 8, 84, 1);
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}
.collapsible-nav-list li {
  color: rgba(1, 8, 84, 1);
  line-height: 45px;
  order: 1;
}
@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir=rtl] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 6px 0;
  }
}
.collapsible-nav-list li a {
  color: #010854;
  display: block;
  font-weight: 500;
}

.collapsible-nav-list li{
  border-bottom: 4px solid #fff;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #eeedeb;
    transition: all .3s ease-in-out;
  }
  .collapsible-nav-list li:hover a:not([aria-current=page]) {
    
    text-decoration: none;
  }
}
.collapsible-nav-list li:not([aria-selected=true]),
.collapsible-nav-list li:not(.current) {
  display: none;
}
@media (min-width: 768px) {
  .collapsible-nav-list li:not([aria-selected=true]),
  .collapsible-nav-list li:not(.current) {
    display: block;
  }
}

.collapsible-nav-list li[aria-selected=true],
.collapsible-nav-list li.current {
  order: 0;
  position: relative;
}
@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected=true],
  .collapsible-nav-list li.current {
    border-bottom: 4px solid #00a1ec;
    order: 1;
  }
}
.collapsible-nav-list li[aria-selected=true] a,
.collapsible-nav-list li.current a {
  color: rgba(1, 8, 84, 1);
}

.collapsible-nav[aria-expanded=true] li:not([aria-selected=true]),
.collapsible-nav[aria-expanded=true] li:not(.current) {
  display: block;
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.collapsible-sidebar ul{
  list-style-type: none;
}

.collapsible-sidebar-title {
  margin-top: 0;
}
.collapsible-sidebar-toggle {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  background: none;
  width: 25px;
  height: 25px;
  border-radius: 5px; 
  border: 2px solid #010854;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .collapsible-sidebar-toggle {
    display: none;
  }
}
[dir=rtl] .collapsible-sidebar-toggle {
  left: 0;
  right: auto;
}
.collapsible-sidebar-toggle-icon {
  display: none;
}
.collapsible-sidebar-toggle[aria-expanded=false] .chevron-icon {
  display: inline-block;
}
.collapsible-sidebar-toggle[aria-expanded=true] .x-icon {
  display: inline-block;
}
.collapsible-sidebar-toggle:focus {
  outline: none;
  
}
.collapsible-sidebar-body {
  display: none;
}
@media (min-width: 1024px) {
  .collapsible-sidebar-body {
    display: block;
  }
}
.collapsible-sidebar[aria-expanded=true] {
  max-height: none;
}
.collapsible-sidebar[aria-expanded=true] .collapsible-sidebar-body {
  display: block;
}

/***** My activities *****/
.my-activities-nav {
  margin-bottom: 20px;
}

.my-activities-nav .collapsible-nav{
	padding: 15px 30px;
  border-radius: 10px;
	box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}

.my-activities-sub-nav {
  margin-bottom: 30px;
}

.my-activities-table .striped-list-title { /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}
@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.my-activities-table thead {
  display: none;
}
@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}
.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}
@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}
.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}
.my-activities-table td:not(:first-child) {
  display: none;
}
@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}
.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}
.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}
.requests-table-toolbar .request-table-filter {
  width: 100%;
}
.requests-table-toolbar .request-table-filter:hover {
  color: #fff;
}
@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}
.requests-table-toolbar .request-filter {
  display: block;
}
@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir=rtl] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}
.requests-table-toolbar .request-filter-label {
  font-size: 13px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}
.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe {
    margin-left: 10px;
  }
  [dir=rtl] .requests-table-toolbar .organization-subscribe {
    margin: 0 10px 0 0;
  }
}
.requests-table-toolbar .organization-subscribe button {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}
.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}
.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}
.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}
.requests-table-toolbar + .requests {
  margin-top: 40px;
}
.requests .requests-table-meta {
  display: block;
}
@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}
.requests .requests-table thead {
  display: none;
}
@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}
.requests .requests-table-info {
  display: block;
}
@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}
.requests .requests-table .requests-link {
  position: relative;
}
.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
@media (min-width: 768px) {
  .subscriptions-subscribe button {
    width: auto;
  }
}
.subscriptions-table td:last-child {
  display: block;
}
@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}
.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}
.subscriptions-table .user-avatar {
  margin-right: 10px;
}
.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #0212b9;
  font-size: 13px;
}
@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #0212b9;
}

/***** Request *****/
.request-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .request-container {
    align-items: flex-start;
    flex-direction: row;
  }
}
.request-container .comment-container {
  min-width: 0;
}
.request-breadcrumbs {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .request-breadcrumbs {
    margin-bottom: 60px;
  }
}
.request-main {
  flex: 1 0 auto;
  order: 1;
}
.request-main .comment-fields, .request-main .request-submit-comment {
  display: none;
}
.request-main .comment-fields.shown {
  display: block;
}
.request-main .request-submit-comment.shown {
  display: inline;
}
@media (min-width: 1024px) {
  .request-main {
    flex: 0 0 66%;
    order: 0;
    min-width: 0;
  }
}
.request-main .comment-form-controls {
  display: block;
}
.request-main .comment-ccs {
  display: block;
}
.request-main .comment-show-container {
  border-radius: 2px;
  border: 1px solid #ddd;
  color: #0212b9;
  text-align: inherit;
  padding: 8px 25px;
  width: 100%;
}
.request-main .comment-show-container.hidden {
  display: none;
}
.request-main .form-field.comment-ccs > ul {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.request-main .form-field.comment-ccs > ul[data-hc-focus=true] {
  border: 1px solid rgba(1, 8, 84, 1);
}
.request-main .form-field.comment-ccs > input[type=text] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
}
.request-main .comment-ccs + textarea {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: 0;
}
.request-main .comment-ccs + textarea:focus {
  border-top: 1px solid rgba(1, 8, 84, 1);
}
.request-main input#mark_as_solved {
  display: none;
}
.request-title {
  width: 100%;
}
@media (min-width: 1024px) {
  .request-title {
    margin-bottom: 0;
    max-width: 66%;
    padding-bottom: 20px;
  }
}
.request-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  order: 0;
}
@media (min-width: 1024px) {
  .request-sidebar {
    background-color: #f7f7f7;
    border: 0;
    font-size: 13px;
    flex: 0 0 auto;
    padding: 0 20px;
    width: 30%;
  }
}
.request-sidebar h2 {
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
@media (min-width: 1024px) {
  .request-sidebar h2 {
    display: none;
  }
}
.request-details {
  border-bottom: 1px solid #ddd;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}
.request-details:last-child {
  border: 0;
}
.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 13px;
  margin: 20px 0 0 0;
}
.request-details dd {
  padding: 0 10px;
  width: 60%;
}
.request-details dd::after {
  content: "\a";
  white-space: pre;
}
.request-details dt {
  color: #010854;
  font-weight: 500;
  width: 40%;
}
.request-details .request-collaborators {
  display: inline-block;
}
.request-attachments dt, .request-attachments dd {
  width: 100%;
}
.request-attachments dd {
  margin: 10px 0 0 0;
}
.request-form textarea {
  min-height: 120px;
}
.request-follow-up {
  padding-top: 20px;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}
.pagination-next, .pagination-prev, .pagination-first, .pagination-last {
  display: inline-block;
}
.pagination-first-link, .pagination-last-link {
  padding: 0 10px;
}
.pagination-first-text, .pagination-last-text {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.pagination-next-link {
  padding-right: 10px;
}
.pagination-next-text {
  margin-right: 10px;
}
[dir=rtl] .pagination-next-link {
  padding-left: 10px;
}
[dir=rtl] .pagination-next-text {
  margin-left: 10px;
}
.pagination-prev-link {
  padding-left: 10px;
}
.pagination-prev-text {
  margin-left: 10px;
}
[dir=rtl] .pagination-prev-link {
  padding-right: 10px;
}
[dir=rtl] .pagination-prev-text {
  margin-right: 10px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group-opposite {
  float: right;
}

[dir=rtl] .meta-group-opposite {
  float: left;
}
.meta-data {
  color: #010854;
  font-size: 10px;
  padding: 8px 12px;
  background-color: #eeedeb;
  border-radius: 6px;
  margin-right: 5px;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
}
.meta-data-comment{
  margin: 10px 0;
  display: inline-block;
}
.meta-data-comment a{
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  background-color: #010854;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .3s;
}

.meta-data-comment a:hover{
  text-decoration: none;
  background-color: #00a1ec;
  color: #fff;
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
}

/* User Profiles */
.profile-header {
  padding: 30px;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  padding: 30px;
  background-image : url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
}
@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  background-color: #fafafa;
  box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 30px;
}
  .profile-info .avatar{
		display: inline-block;
  }

.profile-info .profile-private-badge{
  display: none;
}
.profile-info .community-name-and-title-badges{
  margin-left: 15px;
}

@media (max-width: 768px) {
  .profile-info {
		  justify-content: center;
    margin-bottom: 15px;
  }
  .profile-info .avatar{
		display: inline-block;
  }
  .profile-info .community-name-and-title-badges{
    margin-left: 0;
    text-align: center;
  }
    .profile-info .community-name-and-title-badges .user-profile-actions{
    margin-bottom: 0;
  }
  
  .profile-info .profile-stats .stat:not(:last-child){
    margin-bottom: 10px;
  }
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
 
}
[dir=rtl] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 75px;
  height: 75px;
  box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.2);
   border: 2px solid #fff;
}

.profile-avatar .icon-agent {
  bottom: 0;
  right: 0;
}
.profile-header .basic-info{
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile-header .basic-info .name {
  margin: 0;
  display: inline;
  font-size: 24px;
}

.profile-header .basic-info .name a{
  color: #010854;
}

.profile-header .basic-info .name a:hover, .profile-header .basic-info .name a:focus{
  text-decoration: none;
}

.profile-header .options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-basis: 100%;
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
  }
  [dir=rtl] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir=rtl] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.user-profile-actions {
  width: 100%;
  vertical-align: middle;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  margin-bottom: 15px;
}

.profile-info .profile-stats .stat{
  display: flex;
	background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.05);
}



.profile-stats .stat-label {
  color:#010854;
  flex: 0 0 100px;
  margin-right: 10px;
  font-weight: 500;
}
[dir=rtl] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
	        display: ruby;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 10px;
  }
  [dir=rtl] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 15px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
  
}

.profile-stats-counters {
  justify-content: center;
}

.profile-stats-counters .stat{
  display: flex;
	color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.profile-stats-counters .stat .stat-label{
  color: #fff;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir=rtl] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}
@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir=rtl] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}
@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px rgba(1, 8, 84, 1);
  border-radius: 4px;
  color: rgba(1, 8, 84, 1);
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}
.profile-private-badge .profile-private-icon {
  margin-left: 5px;
  line-height: 15px;
}
@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  margin-bottom: 37px;
}

.profile-nav .container{
  background-color: #fff;
    padding: 15px 30px;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

@media (max-width: 1160px) {
  .profile-nav{
    padding: 0 30px;
  }
}
.profile-section {
  width: 100%;
}
@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
   margin-top: 15px;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #010854;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
}
@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 13px;
}
.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}
.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}
[dir=rtl] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}
@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}
@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir=rtl] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-badges-items {
  margin-top: 25px;
}
.profile-badges-item {
  border-top: 1px solid #ddd;
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: flex-start;
  padding: 27px 12px;
}
.profile-badges-item > div {
  padding-right: 12px;
  padding-left: 12px;
}
.profile-badges-item-image {
  height: 40px;
  width: 40px;
  margin-right: 12px;
}
.profile-badges-item-image img {
  max-height: 40px;
}
[dir=rtl] .profile-badges-item-image {
  margin-left: 12px;
  margin-right: 0;
}
.profile-badges-item-title, .profile-badges-item-metadata-title {
  font-size: 15px;
  margin-bottom: 10px;
}
.profile-badges-item-title {
  font-weight: 600;
}
.profile-badges-item-description, .profile-badges-item-metadata-description {
  color: #00a1ec;
  font-size: 13px;
  margin: 0;
}
.profile-badges-item-metadata {
  margin-left: auto;
  text-align: right;
}
[dir=rtl] .profile-badges-item-metadata {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 30px;
  position: relative;
  background-color: #fff;
  margin: 15px 0;
  border-radius: 10px;
  border: 2px solid #eeedeb
}
.profile-activity-list .profile-contribution{
  border: none;
}

.profile-contribution-header {
  margin-bottom: 5px;
}
.profile-contribution-header a{
  font-size: 20px;
  color: #010854;
  transition: .3s all ease-in-out;
  border-bottom: 3px solid transparent;
}
.profile-contribution-header a:hover, .profile-contribution-header a:focus{
  text-decoration: none;
  border-bottom: 3px solid #00a1ec;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir=rtl] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-icon {
  display: none;
  left: 0;
  position: absolute;
  color: #ccc;
  line-height: 25px;
}
[dir=rtl] .profile-contribution-icon {
  right: 0;
}
.profile-contribution-icon svg {
  vertical-align: middle;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir=rtl] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir=rtl] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}
[dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}
@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir=rtl] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.private-activity-icon {
  margin-right: 10px;
}
[dir=rtl] .private-activity-icon {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
  background-color: #fff;
  border: 2px solid #eeedeb;
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 30px;
}
@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir=rtl] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
  .profile-activity-list {
  padding-left: 5%;
}
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}
[dir=rtl] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}
@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir=rtl] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}
[dir=rtl] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 15px 0;
  margin-top: 10px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir=rtl] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background-color: #fff;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  text-align: center;
  color: #ccc;
  border: solid #010854 2px;
  border-radius: 50%;
}
[dir=rtl] .profile-activity-icon {
  right: 0;
}
@media (min-width: 768px) {
  .profile-activity-icon {
    top: -16px;
    left: -16px;
  }
  [dir=rtl] .profile-activity-icon {
    right: -14px;
  }
}

.profile-activity-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  margin: auto;
}

/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}
.search-results-column {
  flex: 1;
}
@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}
.search-results-sidebar {
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}
@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 22%;
    height: auto;
  }
}
.search-results-sidebar .sidenav-item {
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 4px;
  color: #00a1ec;
  font-weight: 500;
  transition: all .3s ease-in-out;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.search-results-sidebar .sidenav-item img {
  width: 15px;
  height: auto;
  margin-right: 6px;
}
.search-results-sidebar .sidenav-item:hover, .search-results-sidebar .sidenav-item.current {
  background-color: #eeedeb;
  text-decoration: none;
}
.search-results-sidebar .sidenav-subitem {
  unicode-bidi: embed;
}
.search-results-sidebar .sidenav-tag {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-grow: 0;
}
.search-results-sidebar .sidenav-tag .content-tag {
  background: #E9EBED;
  border-radius: 4px;
  padding: 4px 12px;
  text-decoration: none;
}
.search-results-sidebar .sidenav-tag .content-tag .label {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.000427656px;
  color: #49545C;
  flex-grow: 0;
  vertical-align: middle;
  display: inline-block;
}
.search-results-sidebar .sidenav-tag .content-tag .close-icon {
  color: #555555;
  vertical-align: middle;
  display: inline-block;
}
.search-results-sidebar .collapsible-sidebar {
  margin-bottom: 30px;
}
.search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
  display: none;
}
@media (min-width: 1024px) {
  .search-results-sidebar .collapsible-sidebar[aria-expanded=false] .multibrand-filter-list {
    display: block;
  }
}
.search-results-sidebar .multibrand-filter-list--collapsed li:nth-child(1n+6) {
  display: none;
}
.search-results-sidebar .multibrand-filter-list .doc-count {
  color: #010854;
  margin-left: 5px;
}
.search-results-sidebar .see-all-filters {
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  padding: 10px;
  color: rgba(0, 161, 224, 1);
}
.search-results-sidebar .see-all-filters[aria-hidden=true] {
  display: none;
}
.search-results-sidebar .see-all-filters:hover {
  text-decoration: underline;
}
.search-results-sidebar .see-all-filters::after {
  content: " ⌄";
  font-weight: bold;
}
.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}
.search-results-list {
  margin-bottom: 25px;
  list-style-type: none;
}
.search-results-list > li {
  padding: 20px 0;
}
.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}
.search-results .no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
}
.search-results .no-results .headline {
  color: #2F3941;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.45px;
}
.search-results .no-results .action-prompt {
  color: #68737D;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.154px;
}
.search-results .no-results .action-prompt a {
  color: rgba(0, 161, 224, 1);
}
.search-results .no-results .action-prompt a:visited {
  color: rgba(0, 161, 224, 1);
}

.search-result-title-container {
  align-items: center;
}
.search-result-title {
  font-size: 16px;
  margin-bottom: 0;
  display: inline-block;
  margin-right: 10px;
}

.search-result-title a{
  transition: all .3s ease-in-out;
}
.search-result-title a:hover{
  text-decoration: none;
  color: #010854;
}

.search-result-icons{
  display: inline-block;
}

.search-result-votes, .search-result-meta-count {
  color: #010854;
  font-size: 13px;
}
.search-result-votes-icon, .search-result-meta-count-icon {
  color: rgba(1, 8, 84, 1);
  vertical-align: middle;
  width: 13px;
  height: 13px;
}
.search-result-meta-container {
  color: #666;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .search-result-meta-container {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .search-result-meta-container nav {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  [dir=ltr] .search-result-meta-container .meta-data {
    margin-left: 20px;
  }
}
@media (min-width: 1024px) {
  [dir=rtl] .search-result-meta-container .meta-data {
    margin-right: 20px;
  }
}
.search-result-meta-container .meta-data::after {
  content: none;
}
.search-result-breadcrumbs {
  margin: 10px 0;
}

.search-result-breadcrumbs li:before{
  display: none;
}

.search-result-breadcrumbs li:first-child{
  display: none;
}
.search-result-breadcrumbs img{
  width: 15px;
  position: absolute;
}

.search-result-breadcrumbs li a{
  display: inline-block;
  padding: 6px;
  font-weight: 600;
  text-decoration: none;
  color: #010854;
  background-color: #EEEDEB;
  margin-top: 10px;
  margin-right: 10px;
  border-radius: 6px;
  font-size: 10px;
  transition: all ease-in-out .3s;
	border: 1px transparent solid;
}

.search-result-breadcrumbs li a:hover{
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
  border: 1px #010854 solid;
}

.search-result-breadcrumbs li a:focus{
  text-decoration: none;
}

.search-result-breadcrumbs a, .search-result-breadcrumbs a:visited, .search-result-breadcrumbs a:focus{
  text-decoration: none;
	color: #010854;
  text-transform: uppercase;
  font-weight: 600;
}

.search-result-description {
  margin-top: 10px;
  margin-bottom: 0;
  word-break: break-word;
}

/* By default use bold instead of italic to highlight */
.search-results-description em {
  font-style: normal;
  font-weight: bold;
}

/* Add a yellow background for Chinese */
html[lang|=zh] .search-results-description em {
  font-style: normal;
  background: yellow;
}

/***** Notifications *****/
.notification {
  border: 1px solid;
  display: table;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  padding: 13px 15px;
  transition: height 0.2s;
  width: 100%;
  color: #555;
}

.notification a {
  color: #158ec2;
}

.notification-inner {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 980px;
}

.notification-icon, .notification-inline.notification-error::before, .notification-text, .notification-dismiss {
  display: table-cell;
  vertical-align: middle;
}

.notification-text {
  padding: 0 15px;
  width: 100%;
}

.notification + .notification {
  margin-bottom: -1px;
  position: relative;
  top: -1px;
}

/* Error */
.notification-error {
  background: #ffeded;
  border-color: #f7cbcb;
}

.notification-error .notification-icon::before, .notification-error .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23555555'/%3E%3C/svg%3E");
}

/* Notice */
.notification-notice {
  background: #dbf3ff;
  border-color: #b5e0f5;
}

.notification-notice .notification-icon::before, .notification-notice .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23555555'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.5 6l2 2L9 4.5'/%3E%3Ccircle cx='6' cy='6' r='5.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Alert / Lock */
.notification-alert {
  color: #ad5e18;
  background: #fff8ed;
  border-color: #fcdba9;
}

.notification-alert .notification-icon::before, .notification-alert .notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23ad5e18' stroke-linecap='round' d='M5.06 1.27l-4.5 8.5c-.18.33.06.73.44.73h9c.38 0 .62-.4.44-.73l-4.5-8.5a.494.494 0 00-.88 0zM5.5 4v2'/%3E%3Ccircle cx='5.5' cy='8' r='.8' fill='%23ad5e18'/%3E%3C/svg%3E");
}

.notification-icon::before, .notification-inline.notification-error::before {
  background-size: cover;
  content: "";
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: middle;
}

/* Dismiss button */
.notification-dismiss, a.notification-dismiss {
  color: #555;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 100ms ease;
  text-decoration: none !important;
}

.notification-dismiss:hover {
  opacity: 1;
}

/* Inline notifications */
.notification-inline {
  border-radius: 4px;
  line-height: 14px;
  margin-top: 5px;
  padding: 5px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}
[dir=rtl] .notification-inline {
  text-align: right;
}
.notification-inline[aria-hidden=true] {
  display: none;
}
.notification-inline.notification-error::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' focusable='false' viewBox='0 0 12 12'%3E%3Cg fill='none' stroke='%23e35b66'%3E%3Ccircle cx='5.5' cy='6.5' r='5'/%3E%3Cpath stroke-linecap='round' d='M5.5 3.5v3'/%3E%3C/g%3E%3Ccircle cx='5.5' cy='9' r='1' fill='%23e35b66'/%3E%3C/svg%3E");
  margin: -2px 5px 0 0;
}
[dir=rtl] .notification-inline.notification-error::before {
  margin: 0 0 0 5px;
}
.notification-inline.notification-error {
  background-color: #fff0f1;
  border: 1px solid #e35b66;
  color: #cc3340;
}
.notification-inline.notification-large {
  padding: 13px 15px;
  margin-bottom: 25px;
}

.notification-left-aligned {
  text-align: left;
  padding-left: 0;
}

html[dir=rtl] .notification-left-aligned {
  text-align: right;
  padding-left: auto;
  padding-right: 0;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  display: inline-block;
  padding: 0;
  text-align: initial;
  vertical-align: middle;
}
.dropdown-toggle:hover {
  text-decoration: none;
}
.dropdown-toggle > * {
  display: inline-block;
}
.dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  display: block;
}

.dropdown-menu {
  background: #fff;
  padding: 10px;
  border: 1px solid #eeedeb;
  border-radius: 6px;
  box-shadow: 0px 20px 30px 0px rgba(23, 73, 77, 0.15);
  display: none;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  left: 0;
  margin-top: 1px;
  min-width: 170px;
  padding: 10px;
  position: absolute;
  text-align: left;
  z-index: 1000;
}
.dropdown-menu a:not(:last-child){
  margin-bottom: 5px;
}
[dir=rtl] .dropdown-menu {
  text-align: right;
}
.dropdown-menu [role=separator] {
  border-bottom: 1px solid #e9ebed;
  margin: 4px 0;
}
.dropdown-menu [role=menuitem],
.dropdown-menu [role=menuitemradio] {
  color: #010854;
  cursor: pointer;
  display: block;
  padding: 7px 40px 7px 20px;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  text-align: start;
  line-height: inherit;
  width: 100%;
  transition: all .3s ease-in-out;
}
[dir=rtl] .dropdown-menu [role=menuitem],
[dir=rtl] .dropdown-menu [role=menuitemradio] {
  padding: 7px 20px 7px 40px;
}
.dropdown-menu [role=menuitem]:hover, .dropdown-menu [role=menuitem]:focus,
.dropdown-menu [role=menuitemradio]:hover,
.dropdown-menu [role=menuitemradio]:focus {
  background-color: #eeedeb;
  text-decoration: none;
  color: #010854;
}
.dropdown-menu [role=menuitem][aria-selected=true], .dropdown-menu [role=menuitem][aria-checked=true],
.dropdown-menu [role=menuitemradio][aria-selected=true],
.dropdown-menu [role=menuitemradio][aria-checked=true] {
  cursor: default;
}
.dropdown-menu [role=menuitem][aria-selected=true]::after, .dropdown-menu [role=menuitem][aria-checked=true]::after,
.dropdown-menu [role=menuitemradio][aria-selected=true]::after,
.dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M1 7l3 3 7-7'%3E%3C/path%3E%3C/svg%3E");
  display: inline-block;
  height: 12px;
  margin-left: 10px;
  width: 12px;
}
[dir=rtl] .dropdown-menu [role=menuitem][aria-selected=true]::after, [dir=rtl] .dropdown-menu [role=menuitem][aria-checked=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-selected=true]::after,
[dir=rtl] .dropdown-menu [role=menuitemradio][aria-checked=true]::after {
  margin-left: 0;
  margin-right: 10px;
  float: left;
}
.dropdown-menu [role=menuitem][hidden], .dropdown-menu [role=menuitem][aria-hidden=true],
.dropdown-menu [role=menuitemradio][hidden],
.dropdown-menu [role=menuitemradio][aria-hidden=true] {
  display: none !important;
}

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

.dropdown-menu-top {
  bottom: 100%;
  margin-bottom: 1px;
}

[dir=rtl] .dropdown-menu {
  left: auto;
  right: 0;
  text-align: right;
}
[dir=rtl] .dropdown-menu-end {
  left: 0;
  right: auto;
}

.dropdown-chevron-icon {
  vertical-align: middle;
}
.post-info > .content-tags{
  margin-bottom: 15px;
}
.content-tags > p {
  color: #010854;
  margin-top: 0;
  margin-bottom: 4px;
}
.content-tags-add-hint {
  color: #68737D;
  font-size: 14px;
}

.content-tag-list{
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
  list-style-type: none;
}

.content-tag-list a{
	  color: #010854;
    text-transform: uppercase;
    padding: 6px;
    font-weight: 600;
    border: 1px solid transparent;
    margin-right: 10px;
    border-radius: 6px;
    background-color: #EEEDEB;
    font-size: 10px;
    transition: all ease-in-out .3s;
}
.content-tag-list a:hover{
  border: 1px solid #010854;
  text-decoration: none;
}

.content-tag-list li {
  border-right: 1px solid #C2C8CC;
  margin-bottom: 4px;
}
[dir=ltr] .content-tag-list li {
  padding-right: 8px;
  margin-right: 8px;
}
[dir=rtl] .content-tag-list li {
  padding-left: 8px;
  margin-left: 8px;
}
.content-tag-list li:last-child {
  border: none;
}
.text-center {
  text-align: center;
}

/* Formulaire de demande */

#wrap-formulaire {
	min-height: 100vh;
  width: 100%;
  background-image: url(/hc/theming_assets/01HZM7Q75NJYP77F9SKHPVSZJR);
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

#formulaire {
  margin: 0 auto;
  padding: 50px;
  background-color: #fff;
  border-radius: 30px;
  border: 2px solid #F5F5F5;
  z-index: 5;
  animation: 1s formulaire;
  footer {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

#formulaire-acd-erreur {
  border: 1px solid #010854;
  border-radius: 15px;
  padding: 50px;    
  background-color: #fff;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border: 2px #eeedeb solid;
  img {
    text-align: center;
    width: 100px;
    display: inline;
    margin-bottom: 25px;
  }
  p{
    font-size: 20px;
  }
  animation: 1s formulaire;
}

@keyframes formulaire {
    0% {
      opacity: 0;
    }
    25% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}

#notification-succes {
  text-align: center;
  background: #e7f1ce;
  padding: 20px;
  margin-bottom: 30px;
}

/***** WYSIWYG Editor *****/
#hc-wysiwyg {
  border: 1px solid #87929D;
}

/***** Upload Dropzone *****/
.upload-dropzone {
  border: 1px solid #87929D;
}

/* WRAP RECOUVRANT L'INTÉGRALITÉ DE LA PAGE D'ACCUEIL (pour la redirectoin) */


/* SECTION */
.section-tree{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 30px 0 30px;
  border-radius: 10px;
  background-color: #eeedeb;
  margin: 15px 0 75px 0;
  /*
  background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;
  */
}

.section-tree > section{
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0px 15px -3px rgba(0, 0, 0, 0.15);
}

.section-tree > .section-article-list{
  background-color: #fff;
  padding: 20px 30px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.section-tree .section h2{
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.section-tree .section h2 a{
  position: relative;
  top:2px;
  transition: all .3s ease-in-out;
  border-bottom: 3px solid transparent; 
}

.section-tree .section h2 a:hover, .section-tree .section h2 a:focus{
  text-decoration: none;
  border-bottom: 3px solid #00a1ec; 
}
.section-tree .section ul{
  padding-left: 30px;
}

.section-tree .section li{
  padding: 10px 0;
}
.section-tree .section ul li::before{
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #00A1Ec;
    border-radius: 2px;
    margin-right: 5px;
}

@media (min-width: 768px) {
  .section-tree {
    flex-direction: row;
  }
}
.section-tree .section {
  flex: initial;
  max-width: 100%;
}
@media (min-width: 768px) {
  .section-tree .section {
    flex: 0 0 49%; /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree .section ul li a{
	transition: all .2s ease-in-out;
}

.section-tree .section ul li a:hover, .section-tree .section ul li a:focus  {
  color: #00a1ec;
  text-decoration: none;
}

.section-tree2{
  padding: 30px 30px 20px 30px;
  border-radius: 10px;
  background-color: #eeedeb;
  margin-top: 15px;
}

.section-tree2 .blocks-list-others{
  margin: 0;
}
.section-tree2 .blocks-item {
  margin: 0 5px 10px 5px;
  border-color: #fff;
  transition: all .3s ease-in-out;
  vertical-align: middle;
}
.section-tree2 .blocks-item:hover{
  border-color: #010854;
}
.section-tree2  .blocks-list-others a{
  background-color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.section-tree2  .blocks-list-others img{
  width: 20px;
}
.section-tree2  .blocks-list-others .blocks-item-title{
  position: relative;
  bottom: 4px;
}

.section-tree3 .section-article-list li{
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 2px solid #F5F5F5;
}

.section-tree3 .section-article-list li .icon-lock{
  width: 10px;
}

.section-article-list li::before{
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #00A1Ec;
    border-radius: 2px;
    margin-right: 5px;
}

.article-list li a{
  transition: all ease-in-out .2s;
}

.article-list li a:hover  {
  color: #00a1ec;
  text-decoration: none;
}

.article-sidebar {
  flex: 1 0 auto;
  margin-bottom: 20px;
  animation: 1.2s article-sidebar;
  position: relative;
}

@keyframes article-sidebar {
    0% {
      opacity: 0;
    }
    40% {
      opacity: 0;
      left: 10px;
    }
    100% {
      opacity: 1;
      left:0;
    }
}

@media (min-width: 1024px) {
  .article-sidebar {
    padding-left: 75px;  
  }
}
@media (max-width: 1024px){
  .article-sidebar{
  	padding-left:0; 
    margin: 25px 0;
  }
}


.article-sidebar > div{
  position: sticky;
  top: 8%;
}
@media (min-width: 1024px) {
  .article-sidebar {
    border: 0;
    flex: 0 0 33%;
    height: auto;
    max-width: 33%;
  }
}

.article-sidebar .collapsible-sidebar ul li:first-child a{
  margin-top: 0;
}
.article-sidebar .collapsible-sidebar ul li:last-child a{
  margin-bottom: 0;
}


.article-sidebar .collapsible-sidebar ul li a{
  color: #010854;
  display: flex;
}

.article-sidebar .collapsible-sidebar ul li a:before {
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
  	min-width: 10px;
    background-color: #00A1Ec;
    border-radius: 2px;
  	margin-right: 5px;
  	transform: translateY(55%);
}

.article-sidebar .collapsible-sidebar ul li a:hover {
  transition: all .3s ease-in-out;
	text-decoration: none;
  color: #00a1ec;
}


@media (max-width: 1215px) {
  .article-sidebar {
    display: none;
  }
}


/* ARTICLE */

.article-body {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.61em;
}

.article-body ul li{
  text-align: justify;
}

.article-body blockquote{
  text-align: justify;
}

.article-body blockquote p{
  text-align: justify;
}
.article-body h2{
  display: flex;
  text-justify: !none;
}

.article-body a{
  transition: .3s ease-in-out all;
  color: #00a1ec;
  border-bottom: 1px solid;
  font-weight: 600;
}

.article-body h3 a{
  font-weight: 700;
}

.article-body a:hover{
  color: #010854;
  text-decoration: none;
}
.article-body a:focus{
  color: #00a1ec;
  text-decoration: none;
}
.article-body a:linked{
  color: #00a1ec;
  text-decoration: none;
}
.article-body table{
  border-radius: 10px;
  position: relative;
  border-collapse: collapse;
  z-index: 1;
  margin: 15px;
}

.article-body tbody{
  border: transparent;
}
.article-body thead{
    background-color: #010854;
}
.article-body th{
  text-transform:uppercase;
  color: #fff;
}
.article-body tbody tr:not(:last-child){
    border-bottom:1px solid #ddd;
}
.article-body tbody tr td:not(:last-child){
    border-right: 1px solid #ddd;
}
.article-body tbody tr td{
  position: relative;
	padding: 10px 5px 5px 5px;
}

.article-body tbody tr td img{
  box-shadow:none;
  border-radius: 0;
}

.article-body h2:not(:first-child){
  border-top: 2px solid #F5F5F5 ;
  padding-top: 40px;
  margin-top: 40px;
}

.article-body h2::before{
  display: inline-block;
  border-radius: 0.1rem;
  width: 0.75rem;
  min-width: 0.75rem; 
  height: 0.75rem;
  background-color: #00a1e0;
  content: "";
  margin-right: 10px;
  transform: translateY(6px);
}

.article-content .content-tags{
  margin-top: 30px;
}

.sidebar-cours{
  border-radius: 10px;
  border: solid #F5F5F5 2px;
  margin-top: 15px;
  padding: 30px;
  background-color: #fff;
}

.sidebar-cours p{
  color: #010854;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 10px;
}

.sidebar-cours a{
  display: inline-block;
  transition: all .3s ease-in-out;
}

.collapsible-sidebar {
  padding: 20px;
  border: solid #F5F5F5 2px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
.collapsible-sidebar {
  padding: 25px;
}
}
.article-sidebar-item{
  display: block;
  margin-bottom: 15px;
}

.columns2{
  display: flex;
  flex-direction: row;
}
.columns2-articles{
  width: 50%;
  padding-right: 30px;
}
.columns2-sections{
  width: 50%;
}
.columns2-articles ul{
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  border: 2px solid #F5F5F5;
}
.columns2-articles .article-list-item{
  display: block;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 6px;
  border: 2px solid #F5F5F5;
}

.columns2-articles .article-list-item:not(:last-child){
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  .columns2 {
    flex-direction: column;
  }
  .columns2-articles{
    width: 100%;
    padding-right: 0px;
	}
  .columns2-sections{
    width: 100%;
}
}

.section-tree4{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 30px 0 30px;
  border-radius: 10px;
  background-color: #eeedeb;
  margin: 15px 0 75px 0;
  /*
  background-image: url(/hc/theming_assets/01JPW6KN364BW760ZAQZ3N5HZH);
  background-size: cover;
  background-position: center;
  */
}

.section-tree4 > section{
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 0px 15px -3px rgba(0, 0, 0, 0.15);
}

.section-tree4 > .section-article-list{
  background-color: #fff;
  padding: 20px 30px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 30px;
}

.section-tree4 .section h2{
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.section-tree4 .section h2 a{
  position: relative;
  top:2px;
  transition: all .3s ease-in-out;
  border-bottom: 3px solid transparent; 
}

.section-tree4 .section h2 a:hover, .section-tree4 .section h2 a:focus{
  text-decoration: none;
  border-bottom: 3px solid #00a1ec; 
}
.section-tree4 .section ul{
  padding-left: 30px;
}

.section-tree4 .section li{
  padding: 10px 0;
}
.section-tree4 .section ul li::before{
    content: '';
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #00A1Ec;
    border-radius: 2px;
    margin-right: 5px;
}


.section-tree4 .section {
  flex: initial;
  max-width: 100%;
}
@media (min-width: 768px) {
  .section-tree4 .section {
    flex: 0 0 49%; /* Two columns for tablet and desktop. Leaving 5% separation between columns */
  }
}

.section-tree .section ul li a{
	transition: all .2s ease-in-out;
}

.section-tree .section ul li a:hover, .section-tree .section ul li a:focus  {
  color: #00a1ec;
  text-decoration: none;
}

/* LISEZ-MOI */

.lisez-moi, .transcription{
  border: 2px solid #F3F4F6;
	border-radius: 1.5rem;
	margin: 0;
  list-style-type: none;
  padding: 0 !important;
}

.lisez-moi h2, .transcription h2{
	padding: 16px;
  font-size: 15px;
	border-bottom: none;
	text-transform: uppercase;
	font-weight: 800;
	position: relative;
	display: block;
	transition: color 0.3s;
  cursor: pointer;
  margin: 0;
}
.lisez-moi h2::before, .transcription h2::before{
  display: none;
}
.lisez-moi h2:first-child, .transcription h2::first-child{
  border-top: none;
}
.lisez-moi h2:not(:first-child), .transcription h2:not(:first-child){
  padding: 16px;
  border-top: 2px solid #F3F4F6;
	border-bottom: none;
	text-transform: uppercase;
	font-weight: 800;
	position: relative;
	display: block;
	transition: color 0.3s;
  cursor: pointer;
  margin: 0;
}

.lisez-moi h2 .readme-h2-count{
  font-size: 14px;
  padding: 4px 9px;
  color: #010854;
  background-color: #eeedeb;
  border-radius: 6px;
  margin-left: 10px; 
}

.lisez-moi h2 .readme-h2-plus{
  font-size: 24px;
  color: #00a1ec;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.transcription h2 .transcription-h2-plus{
  font-size: 24px;
  color: #00a1ec;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.readme-wrap, .transcription-wrap{
  padding-left: 30px;
  padding-right: 20px;
  padding-bottom: 15px;
}
.readme-wrap-sub{
  padding-left: 10px;
}
.readme-wrap-sub ul{
  padding-left: 30px;
}
.lisez-moi .readme-wrap h3:first-child{
  margin-top: 15px;
}

.lisez-moi h3{
  display: inline-block;
  padding: 0;
  margin: 0;
  text-transform: none;
  font-weight: 800;
  border-bottom: #F3F4F6 3px solid;
  transition: 0.5s;
  line-height: 1;
  font-size: 16px;
  color: #010854;
  padding-bottom: 7px;
  cursor: pointer;
}

.lisez-moi h3 .readme-h3-count{
  padding: 3px 8px;
  color: #010854;
  background-color: #eeedeb;
  border-radius: 6px;
  margin: 10px; 
  font-size: 13px;
  position: relative;
  top: -2px;
}

.lisez-moi h3 .readme-h3-plus{
  font-size: 20px;
  color: #00a1ec;
}

.lisez-moi h4{
  text-decoration: none;
  font-weight: 600;
  margin: 30px 0 -10px 0;
}

.lisez-moi h4::before {
    display: inline-block;
    border-radius: 0.1rem;
    width: 0.64rem;
    height: 0.64rem;
    background-color: #00a1e0;
    content: "";
    margin-right: 10px;
}

.article-body .task-list{
	border: 2px solid #F3F4F6;
	border-radius: 1.5rem;
	margin: 0;
  list-style-type: none;
  padding: 0 !important;
}

.lisez-moi ul li, .transcription ul li{
  margin-bottom: 10px;
}


/*ANCIENNE VERSION*/

.lisez-moi2 img{
	border: 2px solid #F3F4F6;
	border-radius: 30px;
	margin: 0;
  list-style-type: none;
  padding-left: 0;
  position: relative;
  display: block;
  z-index:1;
}

.lisez-moi2 img:before{
	position: absolute;
  background-color: red;
  top: 0;
  left:0;
  right: 0;
  bottom: 0;
  z-index:5;
}

.article-body .task-list > li > strong{
	padding: 16px;
  border-top: 2px solid #F3F4F6;
	border-bottom: none;
	text-transform: uppercase;
	font-weight: 800;
	position: relative;
	display: block;
	transition: color 0.3s;
  cursor: pointer;
}

.task-list > li:first-child > strong {
	border-top: none;
}
.task-list > li:last-child > strong {
	border-bottom: none;
}

.article-body .task-list > li > ul {
    margin-bottom: 20px;
    padding: 0 30px;
}

.article-body .task-list > li > ul > li {
  	list-style-type: none;
}

.article-body .task-list > li > ul > li > strong {
    display: inline-block;
    padding: 15px 0 5px 0;
    text-transform: none;
    font-weight: 800;
    border-bottom: #F3F4F6 3px solid;
    transition: 0.5s;
  	cursor: pointer;
}


.article-body .task-list > li > ul > li > ul > li{
    margin-top: 25px;
}

.article-body .task-list > li > ul > li > ul > li > p > .wysiwyg-underline{
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: none;
}

.article-body .task-list > li > ul > li > ul > li > p > .wysiwyg-underline::before{
    display: inline-block;
    border-radius: 0.1rem;
    width: 0.64rem;
    height: 0.64rem;
    background-color: #00a1e0;
    content: "";
    margin-right: 10px;
}

.article-body .task-list > li > ul > li >  ul {
  padding-left: 15px;
}

.article-body .task-list > li > ul > li >  ul > li{
  	list-style-type: none !important;
    padding-left: 0;
}

.article-body .task-list > li > ul > li > ul > li > ul {
    padding: 0 0 0 25px;
}

.article-body .task-list > li > ul > li > ul > li > ul > li{
    list-style-type: disc;
}

/*ZOOM*/
.zoom{
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0px 0 10px -3px rgba(0,0,0,0.1);
}
.zoom:hover{
  cursor: url(/hc/theming_assets/01JCGC48B1KKSH3EXK26RMNR53), auto;
  border: 1px solid #010854;
}
.zoom img{
  display: block;
}
.zoomImg{
  transition: all .3s ease-in;
}

/*LIGHTBOX*/
.img-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(1, 8, 84, .95);
    text-align: center;
    display: none;
    z-index: 9999999999999;
    animation: pop-in;
    animation-duration: 0.5s;
    -webkit-animation: pop-in 0.5s;
    -moz-animation: pop-in 0.5s;
    -ms-animation: pop-in 0.5s;
}

.img-popup img {
    position: absolute;
    top: 50%;
    max-width: 80%;
    max-height: 80vh;
    display: inline-block;
    transform: translate(-50%, -50%);
  	border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: 45px;
    right: 45px;
		width: 45px;
  	height : 45px;
    color: #010854;
  	background-color: #fff;
    font-size: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 99;
    cursor: pointer;
  	transition: all .3s ease-in-out;
  	line-height: 0;
}

.close-lightbox:hover{
  	transform: rotate(90deg);
}
.close-lightbox > div{
  position: relative;
  height: 100%;
  width: 100%;
}
.close-lightbox > div > span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


@keyframes pop-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes pop-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes pop-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.lightboxfadeout{
    animation: fadeout;
    animation-duration: 0.5s;
    -webkit-animation: fadeout 0.5s;
    -moz-animation: fadeout 0.5s;
    -ms-animation: fadeout 0.5s;
}

@keyframes fadeout {
    100% {
        opacity: 0;
    }
    0% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    100% {
        opacity: 0;
    }
    0% {
        opacity: 1;
    }
}

@-moz-keyframes fadeout {
    100% {
        opacity: 0;
    }
    0% {
        opacity: 1;
    }
}
/*Pour la vidéo de présentation sur la homepage */

.img-popup iframe{
  margin-top: 50vh;
  transform: translateY(-50%);
}

/*GUIDE DE DÉMARRAGE*/

.guide h1 .return{
  font-size: 14px;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.guide h1 .return:hover{
  text-decoration: none;
  transform: translateY(-3px);
}

.guide h1 .title-product{
  margin-top: 10px;
}
.guide h1 .title-product nav{
  margin-bottom: 0;
}

.guide-information{
  background-color: #eeedeb;
  color: #010854;
  border-radius: 10px;
  padding: 10px 15px;
  width: 300px;
  border: #E41E3D 2px solid;
  transform: translateY(50%);
}


@media (max-width: 768px) {
  .guide-information {
    display: none;
  }
}

.guide-information img{
  width: 15px;
  transform: translateY(3px);
}
.guide{
  width: 100%;
  background-color: #010854;
  margin: 0 auto;
  z-index: 5;
}

.guide header{
  color: #fff;
  justify-content: space-between;
}

.guide .title-product ol li a{
  color: #fff;
}

.guide .section-content > svg{
  width: 80%;
  display: block;
  margin: 0 auto;
  padding: 15px 0;
}

.guide svg .cyclePaie-rotation{
  animation: cyclePaie-rotation 16s infinite linear;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

@keyframes cyclePaie-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.guide svg text{
  cursor: pointer;
}
.guide svg .video-link{
  cursor: pointer;
  transform-origin: 50% 50%;
  transform-box: fill-box;
}

.guide svg .video-link{
  cursor: pointer;
  z-index: 9999999;
  /*animation: cyclePaie-scale 3s infinite linear;*/
  transform-origin: 50% 50%;
  transform-box: fill-box;
  transition: all .3s ease-in-out;
  transform: scale(1);
}
.guide svg .video-link:hover{
	 transform: scale(1.2);
}

@keyframes cyclePaie-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.guide .section-tree{
  justify-content: center;
  background: transparent;
}

.guide .section-tree > div{
  padding: 30px 50px 40px 50px;
  background-color: #fff;
  display: block;
  border-radius: 10px;
}

.guide .section-tree .title-product{
  margin-top: 0;
	margin-bottom: 20px;
  border-bottom: solid #eeedeb 2px;
  padding: 20px;
}

.guide .section-tree .breadcrumbs a{
	color: #010854;
}

.guide .section-tree h2{
  text-transform: uppercase;
  font-size: 15px;
  padding: 10px;
  display: inline-block;
}

.guide .section-tree .article-list{
  padding-left: 15px;
}

.guide .section-tree .section{
  flex: 0 0 100%;
  margin-bottom: 15px;
  margin-top: 15px;
  border-radius: 10px;
}
.guide .section-tree .section ul{
  padding-left: 50px;
}

.guide .section-tree .section ul li{
  list-style-type: disc;
  overflow: visible;
}

.guide .section-tree .section ul li::before{
	display: none;
}

/* MENTIONS LÉGALES / CGU / POLITIQUE DE CONFIDENTIALITÉ / POLITIQUE DE COOKIES*/

.title-mentions{
	margin: 30px 0;
}


/* COMMUNAUTÉ / FORUM */

/*Réglages liste à puces */
.comment-list{
  list-style-type: none;
}

.profile-activity-list{
  list-style-type: none;
}

.contribution-list{
  list-style-type: none;
}

.profile-contribution-list{
    list-style-type: none;
}

/* Publication */
.post #main-content{
  padding: 30px;
  border-radius: 10px;
	box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border: 2px solid #eeedeb;
}
.post-actions-wrapper{
  display: flex;
  justify-content: space-between;
}
/* Commentaires */
.comment-official{
  padding: 30px;
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #010854;
}
.status-label-official{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  background-color: #010854;
}
.official-divider{
  display:block;
  margin-bottom: 20px;
}

/* Votes */
.comment-actions-container{
  display: flex;
  justify-content: space-between;
}
.comment-actions{
  display: flex;
  align-items: flex-end;
}
.post-actions{
	display: flex;
  align-items: flex-end;
}

/* FILTRES DE RECHERCHE */

.select-search{
  width: 135px;
  height: 100%;
  border: 0;
  font-size: 12px;
  border-radius: 0;
  color: #010854;
  padding: 5px 25px 5px 5px;
  border-radius: 6px;
  background-color: #fff;
}

.select-search:focus, .select-search:select{
  border: 0;
}

.tag-list li{
  list-style-type: none;
  display: inline-block;
  margin-bottom: 10px;
}
.tag-filter{
  	list-style-type: none;
    display: inline-block;
    padding: 6px;
    font-weight: 600;
    text-decoration: none;
    color: #010854;
    background-color: #EEEDEB;
    margin-right: 6px;
    border-radius: 6px;
    font-size: 10px;
    transition: all ease-in-out .3s;
    border: 1px transparent solid;
    text-transform: uppercase;
    cursor: pointer;
}

.tag-filter:hover{
  box-shadow: 0px 10px 10px -3px rgba(0,0,0,0.05);
  border: 1px #010854 solid;
}

.tag-filter:focus{
  text-decoration: none;
}

/*SOMMAIRES DYNAMIQUES - BASÉ SUR LES TITRES D'ARTICLES*/

.toc-container{
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  border: solid #F5F5F5 2px;
  background-color: #fff;
}

.toc-container h2 {
  line-height: 0.9;
}
.toc-container .toc-list{
  list-style-type: none;
}
.toc-list .toc-h2-wrapper{
  font-weight: 600;
  padding: 5px;
  border-radius: 6px;
  display: inline-block;
  transition: all .3s ease-in-out;
}
.toc-list .toc-h2-wrapper.active{
	background-color: #eeedeb;
}

.toc-list a{
  color: #010854;
}
.toc-list a:hover{
  transition: all .3s ease-in-out;
	text-decoration: none;
  color: #00a1ec;
}
.toc-list a:focus, .toc-list a:link{
  text-decoration: none;
}
.toc-list .toc-h2 > .active {
  background-color: #eeedeb;
}
.toc-list .toc-h3{
  padding-left: 15px;
  display: flex;
}
.toc-list .toc-h3 a::before{
  	content: '';
    display: inline-block;
    height: 9px;
    width: 9px;
    background-color: #00A1Ec;
    border-radius: 2px;
    margin-right: 5px;
}
.toc-chevron{
  cursor: pointer;
  margin-left: 3px;
  font-size: 18px;
  color: #010854;
}

.toc-sublist{
  list-style-type: none;
}
