@charset "UTF-8";
.v2-main {
  display: flex;
  flex-direction: column;
  width: calc(100% - 48px);
  height: 100vh;
  background-color: var(--pix-neutral-20);
}

.challenges-production {
  position: relative;
  overflow: auto;
  height: 100%;
  flex: 1;
}
.challenges-production--hidden {
  display: none;
}
.challenges-production-table {
  padding: var(--pix-spacing-6x) var(--pix-spacing-8x);
}
.challenges-production-table__locale {
  text-wrap: nowrap;
}
.challenges-production-table__display-actions {
  display: flex;
  justify-content: space-between;
  margin-block: var(--pix-spacing-4x);
}
.challenges-production .localized-menu-action {
  padding: var(--pix-spacing-2x);
}
.challenges-production .localized-menu-action__item a, .challenges-production .localized-menu-action__item button {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-2x);
  padding: var(--pix-spacing-2x) var(--pix-spacing-6x);
  white-space: nowrap;
}
.challenges-production .localized-menu-action__item a:hover, .challenges-production .localized-menu-action__item button:hover {
  color: var(--pix-neutral-800);
  background: var(--pix-primary-10);
}
.challenges-production .localized-menu-action .title {
  display: block;
  background: var(--pix-neutral-20);
  padding: var(--pix-spacing-2x) var(--pix-spacing-4x);
  border-radius: var(--pix-spacing-2x);
}

td.challenges-production__localized-menu-action {
  display: flex;
  align-items: center;
}

td.challenges-production-table__actions {
  text-wrap: nowrap;
}
td.challenges-production-table__consigne {
  max-width: 650px;
}
td.challenges-production-table__consigne div {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.challenges-production-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.challenges-production-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--pix-neutral-0);
  background-color: var(--pix-neutral-900);
  padding: var(--pix-spacing-2x) var(--pix-spacing-6x);
  border-bottom: 1px solid var(--pix-neutral-100);
}
.challenges-production-header p {
  display: flex;
  gap: var(--pix-spacing-2x);
}
.challenges-production-header__separator {
  height: 24px;
  width: 1px;
  border-right: solid 1px var(--pix-neutral-0);
}
.challenges-production-header__action-buttons {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-2x);
}
.challenges-production-header__action-buttons > .challenges-production-header__button-icon {
  color: var(--pix-neutral-0);
}
.challenges-production-header__action-buttons > .challenges-production-header__button-icon:hover {
  background-color: rgba(var(--pix-neutral-500-inline), 0.5) !important;
}

.challenge-view {
  display: flex;
  flex-direction: column;
  background-color: var(--pix-neutral-0);
  padding: var(--pix-spacing-4x) var(--pix-spacing-6x);
  gap: var(--pix-spacing-3x);
  overflow: auto;
  flex: 2;
}
.challenge-view .pix-checkbox {
  margin-top: 0;
}
.challenge-view > p {
  color: var(--pix-neutral-900);
  font-weight: var(--pix-font-medium);
}
.challenge-view > img {
  width: 100px;
  height: auto;
}
.challenge-view-internationalisation {
  width: 100%;
  display: flex;
}
.challenge-view-internationalisation .pix-input {
  margin-right: var(--pix-spacing-4x);
}
.challenge-view-quality {
  background: var(--pix-neutral-20);
  border-radius: var(--pix-spacing-2x);
  padding: var(--pix-spacing-4x);
}
.challenge-view-quality fieldset:not(:last-child) {
  margin-bottom: var(--pix-spacing-8x);
}
.challenge-view-quality legend {
  font-weight: var(--pix-font-bold);
  color: var(--pix-neutral-500);
  margin-bottom: var(--pix-spacing-2x);
}
.challenge-view-quality input.pix-input__input,
.challenge-view-quality input.pix-checkbox__input:not(:checked) {
  background: var(--pix-neutral-0);
}
.challenge-view-quality__certification {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--pix-spacing-6x);
}
.challenge-view__tolerance {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-6x);
}
.challenge-view .pix-label:has(+ div > div > .sr-only-label) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
}
.challenge-view-default-embed-url {
  background-color: var(--pix-info-50);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem;
  width: fit-content;
  border-radius: 5px;
  border: solid 1px var(--pix-tertiary-100);
  margin-top: 0.5rem;
}
.challenge-view-editable-fields {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: solid 1px var(--pix-tertiary-100);
  border-radius: var(--pix-spacing-2x);
}
.challenge-view-editable-fields > * {
  margin-bottom: var(--pix-spacing-2x);
}
.challenge-view label {
  font-size: 1rem;
  font-weight: var(--pix-font-medium);
  color: var(--pix-neutral-900);
}

.challenge-view-url-to-consult--label {
  margin-bottom: 0;
}
.challenge-view-url-to-consult--info {
  font-size: 0.875rem;
  color: var(--pix-neutral-500);
}
.challenge-view-url-to-consult--textarea {
  font-size: 1rem;
  resize: none;
  border-radius: var(--pix-spacing-1x);
  border: solid 1px var(--pix-neutral-100);
  padding: var(--pix-spacing-2x) var(--pix-spacing-3x);
  margin-top: var(--pix-spacing-1x);
}
.challenge-view-url-to-consult--textarea[readonly] {
  background: var(--pix-neutral-20);
  color: var(--pix-neutral-500);
}

.challenge-view-header {
  display: flex;
  flex-direction: column;
  color: var(--pix-neutral-0);
}
.challenge-view-header p {
  display: flex;
  gap: var(--pix-spacing-2x);
}
.challenge-view-header-first, .challenge-view-header-second {
  display: flex;
  width: 100%;
  align-items: center;
  font-size: 14px;
}
.challenge-view-header-first {
  justify-content: space-between;
  background-color: var(--pix-neutral-900);
  padding: var(--pix-spacing-2x) var(--pix-spacing-6x);
}
.challenge-view-header-second {
  color: var(--pix-neutral-900);
  border-bottom: 1px solid var(--pix-neutral-100, #CDD1D9);
  background: var(--pix-neutral-20);
  padding: var(--pix-spacing-4x);
}
.challenge-view-header-second__locales, .challenge-view-header-second__infos {
  display: flex;
  flex-direction: column;
}
.challenge-view-header-second__locales {
  padding-right: var(--pix-spacing-4x);
}
.challenge-view-header-second__infos {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--pix-tertiary-80);
  font-size: var(--pix-body-m);
}
.challenge-view-header-second__actions {
  display: flex;
  align-items: center;
  padding-left: var(--pix-spacing-4x);
}
.challenge-view-header-second__actions .phrase-link {
  display: flex;
  align-items: center;
}
.challenge-view-header-second__right-action {
  margin-left: auto;
  display: flex;
  gap: var(--pix-spacing-2x);
}
.challenge-view-header__separator {
  height: 24px;
  width: 1px;
  border-right: solid 1px var(--pix-neutral-0);
}
.challenge-view-header__dark-separator {
  height: 46px;
  width: 1px;
  border-right: solid 1px var(--pix-neutral-900);
  padding: 0 var(--pix-spacing-4x);
}
.challenge-view-header__action-buttons {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-2x);
}
.challenge-view-header__action-buttons > .challenge-view-header__button-icon {
  color: var(--pix-neutral-0);
}
.challenge-view-header__action-buttons > .challenge-view-header__button-icon:hover {
  background-color: rgba(var(--pix-neutral-500-inline), 0.5) !important;
}
.challenge-view-header-action__preview {
  display: flex;
}

:root {
  --pix-primary-10-inline:247, 245, 255;
  --pix-primary-10: rgb(var(--pix-primary-10-inline));
  --pix-primary-100-inline:206, 195, 244;
  --pix-primary-100: rgb(var(--pix-primary-100-inline));
  --pix-primary-300-inline:149, 126, 232;
  --pix-primary-300: rgb(var(--pix-primary-300-inline));
  --pix-primary-500-inline:97, 63, 221;
  --pix-primary-500: rgb(var(--pix-primary-500-inline));
  --pix-primary-700-inline:69, 45, 157;
  --pix-primary-700: rgb(var(--pix-primary-700-inline));
  --pix-primary-900-inline:41, 26, 93;
  --pix-primary-900: rgb(var(--pix-primary-900-inline));
  --pix-secondary-50-inline:255, 250, 235;
  --pix-secondary-50: rgb(var(--pix-secondary-50-inline));
  --pix-secondary-100-inline:255, 239, 192;
  --pix-secondary-100: rgb(var(--pix-secondary-100-inline));
  --pix-secondary-300-inline:255, 220, 118;
  --pix-secondary-300: rgb(var(--pix-secondary-300-inline));
  --pix-secondary-500-inline:255, 203, 51;
  --pix-secondary-500: rgb(var(--pix-secondary-500-inline));
  --pix-secondary-700-inline:161, 98, 6;
  --pix-secondary-700: rgb(var(--pix-secondary-700-inline));
  --pix-secondary-900-inline:91, 56, 8;
  --pix-secondary-900: rgb(var(--pix-secondary-900-inline));
  --pix-tertiary-100-inline:195, 208, 255;
  --pix-tertiary-100: rgb(var(--pix-tertiary-100-inline));
  --pix-tertiary-500-inline:61, 104, 255;
  --pix-tertiary-500: rgb(var(--pix-tertiary-500-inline));
  --pix-tertiary-900-inline:26, 44, 107;
  --pix-tertiary-900: rgb(var(--pix-tertiary-900-inline));
  --pix-neutral-0-inline:255, 255, 255;
  --pix-neutral-0: rgb(var(--pix-neutral-0-inline));
  --pix-neutral-20-inline:244, 245, 247;
  --pix-neutral-20: rgb(var(--pix-neutral-20-inline));
  --pix-neutral-100-inline:205, 209, 217;
  --pix-neutral-100: rgb(var(--pix-neutral-100-inline));
  --pix-neutral-500-inline:94, 108, 132;
  --pix-neutral-500: rgb(var(--pix-neutral-500-inline));
  --pix-neutral-800-inline:37, 56, 88;
  --pix-neutral-800: rgb(var(--pix-neutral-800-inline));
  --pix-neutral-900-inline:18, 38, 71;
  --pix-neutral-900: rgb(var(--pix-neutral-900-inline));
  --pix-info-50-inline:234, 241, 255;
  --pix-info-50: rgb(var(--pix-info-50-inline));
  --pix-info-100-inline:190, 212, 255;
  --pix-info-100: rgb(var(--pix-info-100-inline));
  --pix-info-300-inline:114, 163, 255;
  --pix-info-300: rgb(var(--pix-info-300-inline));
  --pix-info-500-inline:44, 117, 255;
  --pix-info-500: rgb(var(--pix-info-500-inline));
  --pix-info-700-inline:31, 83, 181;
  --pix-info-700: rgb(var(--pix-info-700-inline));
  --pix-info-900-inline:18, 49, 107;
  --pix-info-900: rgb(var(--pix-info-900-inline));
  --pix-success-50-inline:230, 246, 239;
  --pix-success-50: rgb(var(--pix-success-50-inline));
  --pix-success-100-inline:176, 228, 204;
  --pix-success-100: rgb(var(--pix-success-100-inline));
  --pix-success-300-inline:84, 197, 144;
  --pix-success-300: rgb(var(--pix-success-300-inline));
  --pix-success-500-inline:0, 168, 90;
  --pix-success-500: rgb(var(--pix-success-500-inline));
  --pix-success-700-inline:0, 119, 64;
  --pix-success-700: rgb(var(--pix-success-700-inline));
  --pix-success-900-inline:0, 71, 38;
  --pix-success-900: rgb(var(--pix-success-900-inline));
  --pix-warning-50-inline:253, 240, 231;
  --pix-warning-50: rgb(var(--pix-warning-50-inline));
  --pix-warning-100-inline:250, 209, 181;
  --pix-warning-100: rgb(var(--pix-warning-100-inline));
  --pix-warning-300-inline:244, 155, 96;
  --pix-warning-300: rgb(var(--pix-warning-300-inline));
  --pix-warning-500-inline:238, 105, 17;
  --pix-warning-500: rgb(var(--pix-warning-500-inline));
  --pix-warning-700-inline:169, 75, 12;
  --pix-warning-700: rgb(var(--pix-warning-700-inline));
  --pix-warning-900-inline:100, 44, 7;
  --pix-warning-900: rgb(var(--pix-warning-900-inline));
  --pix-error-50-inline:251, 235, 234;
  --pix-error-50: rgb(var(--pix-error-50-inline));
  --pix-error-100-inline:243, 192, 188;
  --pix-error-100: rgb(var(--pix-error-100-inline));
  --pix-error-300-inline:228, 118, 111;
  --pix-error-300: rgb(var(--pix-error-300-inline));
  --pix-error-500-inline:215, 51, 40;
  --pix-error-500: rgb(var(--pix-error-500-inline));
  --pix-error-700-inline:153, 36, 28;
  --pix-error-700: rgb(var(--pix-error-700-inline));
  --pix-error-900-inline:90, 21, 17;
  --pix-error-900: rgb(var(--pix-error-900-inline));
  --pix-certif-50-inline:232, 242, 242;
  --pix-certif-50: rgb(var(--pix-certif-50-inline));
  --pix-certif-500-inline:24, 127, 125;
  --pix-certif-500: rgb(var(--pix-certif-500-inline));
  --pix-orga-50-inline:235, 241, 249;
  --pix-orga-50: rgb(var(--pix-orga-50-inline));
  --pix-orga-500-inline:54, 116, 191;
  --pix-orga-500: rgb(var(--pix-orga-500-inline));
  --pix-information-dark-inline:242, 70, 69;
  --pix-information-dark: rgb(var(--pix-information-dark-inline));
  --pix-information-light-inline:241, 161, 65;
  --pix-information-light: rgb(var(--pix-information-light-inline));
  --pix-content-dark-inline:26, 140, 137;
  --pix-content-dark: rgb(var(--pix-content-dark-inline));
  --pix-content-light-inline:82, 217, 135;
  --pix-content-light: rgb(var(--pix-content-light-inline));
  --pix-communication-dark-inline:61, 104, 255;
  --pix-communication-dark: rgb(var(--pix-communication-dark-inline));
  --pix-communication-light-inline:18, 163, 255;
  --pix-communication-light: rgb(var(--pix-communication-light-inline));
  --pix-security-dark-inline:172, 0, 141;
  --pix-security-dark: rgb(var(--pix-security-dark-inline));
  --pix-security-light-inline:255, 63, 148;
  --pix-security-light: rgb(var(--pix-security-light-inline));
  --pix-environment-dark-inline:94, 37, 99;
  --pix-environment-dark: rgb(var(--pix-environment-dark-inline));
  --pix-environment-light-inline:86, 77, 166;
  --pix-environment-light: rgb(var(--pix-environment-light-inline));
  --pix-shadow-inline: 7, 20, 46;
  --pix-shadow: rgb(var(--pix-shadow-inline));
}

@font-face {
  font-weight: 700;
  font-family: "Nunito";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/Nunito/Nunito-Bold.woff2");
}
@font-face {
  font-weight: 400;
  font-family: "Nunito";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/Nunito/Nunito-Regular.woff2");
}
/* @deprecated - use Nunito */
@font-face {
  font-weight: 500;
  font-family: "Open Sans";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/OpenSans/OpenSans-Medium.woff2");
}
@font-face {
  font-weight: 400;
  font-family: "Roboto";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/Roboto/Roboto-Regular.woff2");
}
@font-face {
  font-weight: 500;
  font-family: "Roboto";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/Roboto/Roboto-Medium.woff2");
}
@font-face {
  font-weight: 700;
  font-family: "Roboto";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/Roboto/Roboto-Bold.woff2");
}
@font-face {
  font-weight: 400;
  font-family: "Roboto Mono";
  font-style: normal;
  src: url("../@1024pix/pix-ui/fonts/RobotoMono/RobotoMono-Regular.woff2");
}
/* @deprecated - use Design Tokens */
:root {
  --pix-font-normal: 400;
  --pix-font-medium: 500;
  --pix-font-bold: 700;
  --_pix-font-family-title: 'Nunito', Arial, sans-serif;
  --_pix-font-family-body: 'Roboto', Arial, sans-serif;
  --_pix-font-family-monospace: 'Roboto Mono', monospace;
}

:root {
  --pix-spacing-1x: 4px;
  --pix-spacing-2x: 8px;
  --pix-spacing-3x: 12px;
  --pix-spacing-4x: 16px;
  --pix-spacing-6x: 24px;
  --pix-spacing-8x: 32px;
  --pix-spacing-9x: 36px;
  --pix-spacing-10x: 40px;
  --pix-spacing-12x: 48px;
}

.select-search .results-list,
.pix-shadow-xs {
  box-shadow: 0 4px 8px rgba(7, 20, 46, 0.08);
}

.localized-framework-tube-actions, .dropdown-menu, .competence-overview-actions, .whitelisted-urls-table .pix-table,
.pix-shadow-sm {
  box-shadow: 0 6px 12px rgba(7, 20, 46, 0.08);
}

.pix-shadow-md {
  box-shadow: 0 8px 16px rgba(7, 20, 46, 0.08);
}

.competence-header,
.pix-shadow-lg {
  box-shadow: 0 10px 20px rgba(7, 20, 46, 0.08);
}

.pix-shadow-xl {
  box-shadow: 0 12px 24px rgba(7, 20, 46, 0.08);
}

.pix-title-xxs, .competence-header > h2,
.pix-title-xs,
.pix-title-s,
.pix-title-m,
.pix-title-l {
  font-weight: var(--pix-font-bold);
  font-family: var(--_pix-font-family-title);
}

.pix-title-l {
  --font-size-title: 2rem;
  font-size: var(--font-size-title);
  line-height: 1.3;
  letter-spacing: calc(-0.02 * var(--font-size-title));
}
@media (min-width: 769px) {
  .pix-title-l {
    --font-size-title: 2.5rem;
  }
}
@media (min-width: 992px) {
  .pix-title-l {
    --font-size-title: 3rem;
  }
}

.pix-title-m {
  --font-size-title: 1.625rem;
  --letter-spacing-title: -0.02;
  font-size: var(--font-size-title);
  line-height: 1.3;
  letter-spacing: calc(var(--letter-spacing-title) * var(--font-size-title));
}
@media (min-width: 769px) {
  .pix-title-m {
    --font-size-title: 2rem;
  }
}
@media (min-width: 992px) {
  .pix-title-m {
    --font-size-title: 2.25rem;
    --letter-spacing-title: -0.01;
  }
}

.pix-title-s {
  --font-size-title: 1.375rem;
  font-size: var(--font-size-title);
  line-height: 1.3;
  letter-spacing: calc(-0.01 * var(--font-size-title));
}
@media (min-width: 769px) {
  .pix-title-s {
    --font-size-title: 1.5rem;
  }
}
@media (min-width: 992px) {
  .pix-title-s {
    --font-size-title: 1.75rem;
  }
}

.competence-header > h2,
.pix-title-xs {
  --font-size-title: 1.25rem;
  font-size: var(--font-size-title);
  line-height: 1.4;
  letter-spacing: calc(-0.01 * var(--font-size-title));
}

.pix-title-xxs {
  --font-size-title: 1.125rem;
  font-size: var(--font-size-title);
  line-height: 1.625;
  letter-spacing: calc(-0.01 * var(--font-size-title));
}

.pix-body-l, .competence-overview-actions__tabs, .competence-overview-footer .competence-overview-counts p, .competence-header .locale-tag,
.pix-body-m, .competence-overview,
.pix-body-s,
.pix-body-xs {
  font-weight: var(--pix-font-normal);
  font-family: var(--_pix-font-family-body);
}

.pix-body-xs {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.competence-overview,
.pix-body-s {
  font-size: 0.875rem;
  line-height: 1.5;
}

.competence-overview-actions__tabs, .competence-overview-footer .competence-overview-counts p, .competence-header .locale-tag,
.pix-body-m {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .competence-overview-actions__tabs, .competence-overview-footer .competence-overview-counts p, .competence-header .locale-tag,
  .pix-body-m {
    font-size: 1rem;
  }
}

.pix-body-l {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 769px) {
  .pix-body-l {
    font-size: 1.125rem;
  }
}

.pix-monospace {
  font-weight: var(--pix-font-normal);
  font-family: var(--_pix-font-family-monospace);
}

.pix-body-weight-medium {
  font-weight: var(--pix-font-medium);
}

.pix-body-weight-bold {
  font-weight: var(--pix-font-bold);
}

/* #0000ff; */
body, html, body > div.ember-view, .application, .pusher, .main, .main-menu, .pusher > .column {
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--_pix-font-family-title), Arial, sans-serif;
}

a, p, span, li {
  font-family: var(--_pix-font-family-body), Arial, sans-serif;
}

.waiting {
  height: 100%;
}

.application {
  background-color: #fff;
}
.application .pusher {
  display: flex;
  flex-direction: row;
  transition: transform 0.5s;
}

.ui.menu.main-menu {
  border-right: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0;
}
.ui.menu.main-menu .ui.icon.button {
  color: #fff;
}

.hidden {
  display: none !important;
}

.no-visibility {
  visibility: hidden;
}

.CodeMirror {
  height: 100px;
  min-height: 100px;
}

.CodeMirror-scroll {
  min-height: auto;
}

.main {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: row;
  min-width: 0;
}

.main .messages, .v2-main .messages {
  position: absolute;
  top: 5px;
  right: 5px;
}
.main .ui.message, .v2-main .ui.message {
  z-index: 3;
}
.main .ui[class*="top attached"].menu, .v2-main .ui[class*="top attached"].menu {
  margin: 0;
  border-radius: 0;
}
.main .ui[class*="top attached"].menu.tabular, .v2-main .ui[class*="top attached"].menu.tabular {
  padding-left: 5px;
  border-bottom-width: 0;
}
.main .ui[class*="top attached"].menu.tabular .item, .v2-main .ui[class*="top attached"].menu.tabular .item {
  margin-top: 0.4em;
  padding-top: 0.528571em;
  color: #777;
  cursor: pointer;
}
.main .ui[class*="top attached"].menu.tabular .item.active, .v2-main .ui[class*="top attached"].menu.tabular .item.active {
  background-color: #F9FAFB;
}
.main .ui[class*="top attached"].menu.tabular .item.active.production, .main .ui[class*="top attached"].menu.tabular .item.active.workbench, .v2-main .ui[class*="top attached"].menu.tabular .item.active.production, .v2-main .ui[class*="top attached"].menu.tabular .item.active.workbench {
  color: #dbbd17;
}
.main .menu.skill-mode .ui[class*="top attached"].menu.tabular .item.active.production, .main .menu.skill-mode .ui[class*="top attached"].menu.tabular .item.active.workbench, .v2-main .menu.skill-mode .ui[class*="top attached"].menu.tabular .item.active.production, .v2-main .menu.skill-mode .ui[class*="top attached"].menu.tabular .item.active.workbench {
  color: #448;
}
.main .ui[class*="bottom attached"].menu, .v2-main .ui[class*="bottom attached"].menu {
  margin: 0;
  border-radius: 0;
}
.main .ui.attached.menu:not(.tabular), .v2-main .ui.attached.menu:not(.tabular) {
  background-color: #F9FAFB;
  border: none;
  border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}
.main .ui.attached .ui.button.item.left.first, .v2-main .ui.attached .ui.button.item.left.first {
  margin-right: 0 !important;
}
.main .ui.attached + .ui.attached.menu:not(.top), .v2-main .ui.attached + .ui.attached.menu:not(.top) {
  display: flex;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}
.main .ui.attached + .ui.attached.menu:not(.top) .item.competence-info, .v2-main .ui.attached + .ui.attached.menu:not(.top) .item.competence-info {
  flex: 1;
  flex-direction: row;
  justify-content: space-evenly;
}
.main .ui.attached.segment, .v2-main .ui.attached.segment {
  margin: 0;
  padding: 0;
  border: none;
}
.main .main-left,
.main .main-right, .v2-main .main-left,
.v2-main .main-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
  border-left: 10px solid #dfe1e4;
}
.main .main-left__loader,
.main .main-right__loader, .v2-main .main-left__loader,
.v2-main .main-right__loader {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.main-title {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 10px;
  background-color: #3498db;
  border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}
.main-title.lite {
  background-color: #7C0E6A;
}
.main-title h1.ui.header {
  margin: 0;
  padding: 6px 0;
  color: #FFF;
  font-weight: normal;
  font-size: 20px;
}
.main-title h1.ui.header .ui.right.floated.menu {
  min-height: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.main-title h1.ui.header .ui.right.floated.menu .ui.button {
  padding-top: 7px;
  padding-bottom: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.main-title h1.ui.header .ui.right.floated.menu .ui.button i {
  color: #fff;
}
.main-title .ui.selection.dropdown {
  width: 150px;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 2px 0;
  padding: 8px 40px 8px 8px;
}

.ui.inverted.menu {
  background-color: #3498db;
}
.ui.inverted.menu.lite {
  background-color: #7C0E6A;
}
.ui.inverted.menu.main-menu {
  margin-bottom: 0;
}
.ui.inverted.menu .item {
  color: #fff;
}

.ui.disabled.dropdown {
  opacity: 1;
}
.ui.disabled.dropdown i.icon {
  display: none;
}

.elephant {
  width: 100%;
  height: 100%;
  background: url("/assets/images/elephant_main.png") center center no-repeat;
  background-size: contain;
}

footer.ui.attached.header {
  color: white;
  background: rgb(52, 152, 219) !important;
}
footer.ui.attached.header p {
  position: relative;
  left: -198px;
}

.ui.button {
  color: #000;
  font-weight: normal;
  background-color: transparent;
}
.ui.button:hover, .ui.button:focus {
  background-color: rgba(0, 0, 0, 0.03);
}

.ui.page.dimmer.inverted.active {
  z-index: 10000;
}

.rotate-90 {
  transform: rotate(90deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip-path: inset(50%);
}

.main-sidebar.ui.sidebar {
  z-index: 99;
  transition: transform 0.5s, visibility 0.5s;
}
.main-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px 15px 5px;
  color: #fff;
}
.main-sidebar__header h1 {
  margin: 0;
  font-size: 25px;
}
.main-sidebar__header label span {
  color: #fff;
}
.main-sidebar .legal-mention {
  margin: 0;
  padding: 0 5px 7px;
  color: #00DBFF;
}
.main-sidebar .ui.menu {
  align-items: end;
  width: 100%;
  height: 100%;
  padding-bottom: 1rem;
  background: transparent;
  border: none;
  box-shadow: none;
}
.main-sidebar .ui.menu .button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.main-sidebar .ui.menu .icon {
  margin-left: 0.5rem !important;
}
.main-sidebar .menu .item {
  align-items: initial;
  padding: 10px;
  color: #fff;
}
.main-sidebar .menu .item i.icon {
  float: none;
  margin-right: 5px;
  font-size: 12px;
}
.main-sidebar.ui.vertical.inverted.menu {
  display: flex !important;
  flex-direction: column;
}
.main-sidebar .ui.search {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 5px;
  padding: 0 5px;
}
.main-sidebar .ui.search .prompt {
  border-radius: 0;
}
.main-sidebar .ui.search .ui.input {
  width: 100%;
}
.main-sidebar .ui.search .ui.input input {
  padding: 4px;
  color: rgba(255, 255, 255, 0.8);
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}
.main-sidebar .ui.search .ui.input input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.main-sidebar .ui.search .ui.input i.icon {
  color: #fff;
}
.main-sidebar .ui.search.loading .input > i.icon::after {
  border-color: #fff transparent transparent;
}
.main-sidebar .ui.search .results .message .header {
  display: none;
}
.main-sidebar .secondary-links {
  margin-top: 40px;
  border-top: solid 1px rgba(255, 255, 255, 0.08);
}
.main-sidebar .secondary-links .secondary-links--action {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.main-sidebar .secondary-links i, .main-sidebar .secondary-links a, .main-sidebar .secondary-links p {
  color: rgba(255, 255, 255, 0.9);
}
.main-sidebar .secondary-links a, .main-sidebar .secondary-links p {
  display: block;
  margin-bottom: 0;
  padding: 13px 5px;
}
.main-sidebar .secondary-links a:hover, .main-sidebar .secondary-links p:hover {
  background-color: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.main-sidebar .secondary-links a svg, .main-sidebar .secondary-links p svg {
  width: 20px;
}

.main-title-filters {
  display: flex;
  gap: 2rem;
}

.competence-header__language-filter {
  width: 200px;
}

.competence-management-link {
  color: var(--pix-neutral-0);
}
.competence-management-link:hover {
  color: var(--pix-neutral-0);
  text-decoration: underline;
}

.competence {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  justify-content: stretch;
  overflow: hidden;
}
.competence.half {
  max-height: 30%;
}
.competence .table {
  box-sizing: border-box;
  margin: 0;
  border: none;
}

.competence-grid {
  height: 100%;
  min-height: 0;
  overflow: scroll;
}

.ui.table.tubes.definition {
  margin-top: -1px;
  font-size: 15px;
  border-radius: 0;
}
.ui.table.tubes.definition td {
  box-sizing: border-box;
  padding: 5px;
}
.ui.table.tubes.definition td.theme-cell {
  width: 200px;
  padding-left: 10px;
  background: rgba(0, 0, 0, 0.01);
}
.ui.table.tubes.definition td.theme-cell.create-tube {
  position: relative;
  text-align: center;
}
.ui.table.tubes.definition td.theme-cell.create-tube a {
  display: block;
  margin-bottom: 30px;
}
.ui.table.tubes.definition td.theme-cell.create-tube .tube-management {
  position: absolute;
  bottom: 5px;
  display: flex;
  width: calc(100% - 15px);
  border: none;
}
.ui.table.tubes.definition td.tube-cell {
  width: 160px;
  padding-left: 10px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.03);
  border-left: 1px solid rgba(34, 36, 38, 0.15);
}
.ui.table.tubes.definition td.empty-row {
  background: rgba(0, 0, 0, 0.03);
}
.ui.table.tubes.definition td.skill-cell {
  text-align: center;
}
.ui.table.tubes.definition td.skill-cell .skill-cell__link {
  color: var(--pix-neutral-900);
  cursor: pointer;
}
.ui.table.tubes.definition td.skill-cell .skill-cell__link.disabled {
  cursor: not-allowed;
}
.ui.table.tubes.definition td.skill-cell.production.warning {
  background: var(--pix-error-100) !important;
}
.ui.table.tubes.definition td.skill-cell.production.danger {
  background: var(--pix-error-500) !important;
}
.ui.table.tubes.definition td.skill-cell.production, .ui.table.tubes.definition td.skill-cell.workbench {
  background-color: #fcfd9f !important;
}
.ui.table.tubes.definition td.skill-cell.production.active, .ui.table.tubes.definition td.skill-cell.workbench.active {
  position: relative;
  color: var(--pix-error-500) !important;
}
.ui.table.tubes.definition td.skill-cell.production.active::after, .ui.table.tubes.definition td.skill-cell.workbench.active::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(146, 146, 55, 0.3);
  content: "";
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.draft-prototype, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.draft-prototype {
  background: #9ceaf7;
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.validated-prototype, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.validated-prototype {
  background: #0f0;
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.archived-prototype, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.archived-prototype {
  color: var(--pix-neutral-0);
  background: #6b686d;
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.obsolete-prototype, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.obsolete-prototype {
  color: var(--pix-neutral-0);
  background: #c13b3b;
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.not-declinable, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.not-declinable {
  color: var(--pix-neutral-900);
  background: var(--pix-neutral-0);
}
.ui.table.tubes.definition td.skill-cell.production .workbench__status span.loading, .ui.table.tubes.definition td.skill-cell.workbench .workbench__status span.loading {
  height: 25px;
}
.ui.table.tubes.definition td.skill-cell.skill-mode.warning {
  background: var(--pix-primary-100) !important;
}
.ui.table.tubes.definition td.skill-cell.skill-mode.danger {
  background: var(--pix-primary-300) !important;
}
.ui.table.tubes.definition td.skill-cell.skill-mode, .ui.table.tubes.definition td.skill-cell.skill-workbench {
  background-color: #d5e8fd !important;
}
.ui.table.tubes.definition td.skill-cell.skill-mode.active, .ui.table.tubes.definition td.skill-cell.skill-workbench.active {
  position: relative;
  color: var(--pix-error-500) !important;
}
.ui.table.tubes.definition td.skill-cell.skill-mode.active::after, .ui.table.tubes.definition td.skill-cell.skill-workbench.active::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(124, 144, 167, 0.3);
  content: "";
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.validated, .ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.prevalidated, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.validated, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.prevalidated {
  color: #0f0;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.to-be-submitted, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.to-be-submitted {
  color: #ffc851;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.need-work, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.need-work {
  color: #ff51e8;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.suggested, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.suggested {
  color: #9ceaf7;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.archived, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.archived {
  color: #6b686d;
  text-shadow: none;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.na, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.na {
  color: #3e7726;
  text-shadow: none;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .idea.icon.empty, .ui.table.tubes.definition td.skill-cell.skill-workbench .idea.icon.empty {
  color: #c13b3b;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .tuto-count, .ui.table.tubes.definition td.skill-cell.skill-workbench .tuto-count {
  font-size: 12px;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .skill-workbench__status, .ui.table.tubes.definition td.skill-cell.skill-workbench .skill-workbench__status {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .skill-workbench__status .workbench-status.active-skill, .ui.table.tubes.definition td.skill-cell.skill-workbench .skill-workbench__status .workbench-status.active-skill {
  background: #0f0;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .skill-workbench__status .workbench-status.draft-skill, .ui.table.tubes.definition td.skill-cell.skill-workbench .skill-workbench__status .workbench-status.draft-skill {
  background: #9ceaf7;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .skill-workbench__status .workbench-status.archive-skill, .ui.table.tubes.definition td.skill-cell.skill-workbench .skill-workbench__status .workbench-status.archive-skill {
  color: var(--pix-neutral-0);
  background: #6b686d;
}
.ui.table.tubes.definition td.skill-cell.skill-mode .skill-workbench__status .workbench-status.obsolete-skill, .ui.table.tubes.definition td.skill-cell.skill-workbench .skill-workbench__status .workbench-status.obsolete-skill {
  color: var(--pix-neutral-0);
  background: #c13b3b;
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell {
  padding: 0;
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality {
  height: 100%;
  padding: 5px;
  cursor: pointer;
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality.bad-quality {
  color: var(--pix-neutral-0);
  background: var(--pix-error-500);
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality.medium-quality {
  background: var(--pix-warning-500);
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality.good-quality {
  background: var(--pix-success-500);
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality.loading {
  background-color: var(--pix-neutral-500);
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell .quality .half-tutorial {
  color: var(--pix-neutral-500);
}
.ui.table.tubes.definition td.skill-cell.quality-skill-cell.active .quality {
  box-shadow: var(--pix-shadow-100) 0 0 7px;
  opacity: 0.8;
}
.ui.table.tubes.definition td .add-skill {
  display: block;
  width: 100%;
  text-align: center;
}
.ui.table.tubes.definition td .add-skill:not(:hover) i {
  visibility: hidden;
}
.ui.table.tubes.definition td .add-skill:hover i {
  visibility: visible;
}
.ui.table.tubes.definition td .quality-indication {
  display: flex;
  justify-content: space-between;
}
.ui.table.tubes.definition td .quality-indication span:nth-child(2) {
  margin-left: 10px;
  font-weight: bold;
}

.prototype-list,
.alternative-list {
  height: 100%;
}

.quality-indication-details tr:nth-child(even) {
  color: var(--pix-neutral-0);
  background: var(--pix-warning-500);
}
.quality-indication-details tr:nth-child(odd) {
  background: var(--pix-warning-300);
}
.quality-indication-details tr td {
  padding: 5px;
  color: inherit !important;
  background: transparent !important;
}
.quality-indication-details tr td:nth-child(2) {
  text-align: center;
}

.quality-icons {
  display: flex;
}

#language-filter-info {
  max-width: 470px;
}
#language-filter-info .table {
  width: 330px;
}
#language-filter-info .table.skillSection .color {
  width: 80px;
}
#language-filter-info .table.skillSection .color.warning {
  background: var(--pix-primary-100) !important;
}
#language-filter-info .table.skillSection .color.danger {
  background: var(--pix-primary-300);
}
#language-filter-info .table.challengeSection {
  width: 380px;
}
#language-filter-info .table.challengeSection .color {
  width: 80px;
}
#language-filter-info .table.challengeSection .color.warning {
  background: var(--pix-error-100) !important;
}
#language-filter-info .table.challengeSection .color.danger {
  background: var(--pix-error-500);
}

#quality-tooltip {
  z-index: 10;
  max-width: 250px;
}

.flag.fr-fr {
  position: relative;
}
.flag.fr-fr::after {
  position: absolute;
  top: 0;
  left: 3px;
  color: var(--pix-neutral-900);
  font-weight: bold;
  font-size: 10px;
  font-style: normal;
  content: ".fr";
}

.ui.icon.menu .item > .icon:not(.dropdown) {
  margin-right: 0.5em;
}

.ui.icon.menu .item.production {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.ui.icon.menu .item.production .pix-icon {
  width: 1.3rem;
  height: 1.3rem;
}
.ui.icon.menu .item.production .pix-tooltip__trigger-element {
  display: flex;
}

.alternative {
  color: rgba(0, 0, 0, 0.87);
  font-size: 12px;
}
.alternative .production {
  color: #085508;
}
.alternative .draft {
  color: #1083ce;
}
.alternative .not-declinable {
  font-weight: bold;
}
.alternative .alternative-count {
  color: #c48807;
}

.challenge, .tube-details, .skill-details, .area-management__details, .competence-management__details {
  display: flex;
  flex: 1 1 0;
  flex-direction: row;
  overflow: hidden;
}
.challenge .ui.labeled.icon.menu, .tube-details .ui.labeled.icon.menu, .skill-details .ui.labeled.icon.menu, .area-management__details .ui.labeled.icon.menu, .competence-management__details .ui.labeled.icon.menu {
  overflow-y: auto;
}
.challenge .ui.labeled.icon.menu .item, .tube-details .ui.labeled.icon.menu .item, .skill-details .ui.labeled.icon.menu .item, .area-management__details .ui.labeled.icon.menu .item, .competence-management__details .ui.labeled.icon.menu .item {
  text-align: left;
}
.challenge .ui.labeled.icon.menu .item > .icon:not(.dropdown), .tube-details .ui.labeled.icon.menu .item > .icon:not(.dropdown), .skill-details .ui.labeled.icon.menu .item > .icon:not(.dropdown), .area-management__details .ui.labeled.icon.menu .item > .icon:not(.dropdown), .competence-management__details .ui.labeled.icon.menu .item > .icon:not(.dropdown) {
  display: inline;
  margin-right: 10px !important;
  font-size: 1.2em !important;
}
.challenge .ui.icon.right, .tube-details .ui.icon.right, .skill-details .ui.icon.right, .area-management__details .ui.icon.right, .competence-management__details .ui.icon.right {
  border: none;
  box-shadow: none;
}
.challenge .ui.cards > .card .header .ui.button > .icon, .tube-details .ui.cards > .card .header .ui.button > .icon, .skill-details .ui.cards > .card .header .ui.button > .icon, .area-management__details .ui.cards > .card .header .ui.button > .icon, .competence-management__details .ui.cards > .card .header .ui.button > .icon {
  margin-right: 0;
}
.challenge .ui.cards > .card > .content, .tube-details .ui.cards > .card > .content, .skill-details .ui.cards > .card > .content, .area-management__details .ui.cards > .card > .content, .competence-management__details .ui.cards > .card > .content,
.challenge .ui.cards > .card > .content > .header,
.tube-details .ui.cards > .card > .content > .header,
.skill-details .ui.cards > .card > .content > .header,
.area-management__details .ui.cards > .card > .content > .header,
.competence-management__details .ui.cards > .card > .content > .header {
  font-size: 14px;
}
.challenge--loading {
  align-items: center;
  justify-content: center;
}

img.clickable {
  max-width: 400px;
  max-height: 80px;
  cursor: pointer;
}

.modal img {
  max-height: 500px;
  margin: auto;
}

.dropdown-content-challenge > .item {
  margin: 0;
  padding: 0.7em 1.4em;
  font-size: 16px !important;
  border-radius: 0;
}
.dropdown-content-challenge > .item.validate {
  color: #000 !important;
  background-color: #0f0 !important;
}
.dropdown-content-challenge > .item.archive {
  color: #fff !important;
  background-color: #6b686d !important;
}

.challenge-header, .tube-header, .skill-header {
  border-top: 1px solid rgba(34, 36, 38, 0.15);
  border-bottom: 1px solid rgba(34, 36, 38, 0.15);
}
.challenge-header .creation, .tube-header .creation, .skill-header .creation {
  font-style: italic;
}
.challenge-header .ui.menu .ui.dropdown i, .tube-header .ui.menu .ui.dropdown i, .skill-header .ui.menu .ui.dropdown i {
  font-size: 14px;
}
.challenge-header .ui.menu, .tube-header .ui.menu, .skill-header .ui.menu {
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.challenge-header .ui.menu .circular.validated, .tube-header .ui.menu .circular.validated, .skill-header .ui.menu .circular.validated {
  color: #2f2f2f !important;
  background: #0f0 !important;
}
.challenge-header .ui.menu .circular.suggested, .tube-header .ui.menu .circular.suggested, .skill-header .ui.menu .circular.suggested {
  color: #2f2f2f !important;
  background: #9ceaf7 !important;
}
.challenge-header .ui.menu .circular.archived, .tube-header .ui.menu .circular.archived, .skill-header .ui.menu .circular.archived {
  background: #6b686d !important;
}
.challenge-header .ui.menu .circular.deleted, .tube-header .ui.menu .circular.deleted, .skill-header .ui.menu .circular.deleted {
  background: #c13b3b !important;
}
.challenge-header .ui.menu .item, .tube-header .ui.menu .item, .skill-header .ui.menu .item {
  color: inherit;
}
.challenge-header .ui.menu .item.header, .tube-header .ui.menu .item.header, .skill-header .ui.menu .item.header {
  flex: 1;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: normal;
  font-size: 20px;
}
.challenge-header .ui.menu > .item:first-child, .tube-header .ui.menu > .item:first-child, .skill-header .ui.menu > .item:first-child {
  border-radius: 0;
}
.challenge-header .ui.menu .item::before, .tube-header .ui.menu .item::before, .skill-header .ui.menu .item::before {
  display: none;
}
.challenge-header.prevalidated, .prevalidated.tube-header, .prevalidated.skill-header, .challenge-header.validated_no_test, .validated_no_test.tube-header, .validated_no_test.skill-header, .challenge-header.validated, .validated.tube-header, .validated.skill-header, .challenge-header.suggested, .suggested.tube-header, .suggested.skill-header, .challenge-header.archived, .archived.tube-header, .archived.skill-header, .challenge-header.deleted, .deleted.tube-header, .deleted.skill-header, .challenge-header.to-be-submitted, .to-be-submitted.tube-header, .to-be-submitted.skill-header, .challenge-header.need-work, .need-work.tube-header, .need-work.skill-header {
  background-color: #fcfd9f !important;
}

.challenge-data, .tube-data, .skill-data, .area-management__data, .competence-management__data {
  flex: 1;
  box-sizing: border-box;
  padding: 10px 20px;
  overflow: scroll;
}
.challenge-data .ui.form, .tube-data .ui.form, .skill-data .ui.form, .area-management__data .ui.form, .competence-management__data .ui.form {
  margin-bottom: 20px;
}
.challenge-data .ui.form .label-input, .tube-data .ui.form .label-input, .skill-data .ui.form .label-input, .area-management__data .ui.form .label-input, .competence-management__data .ui.form .label-input {
  min-width: 70px;
  padding: 9px 5px;
  text-align: left;
}
.challenge-data .ui.form .disabled.field, .tube-data .ui.form .disabled.field, .skill-data .ui.form .disabled.field, .area-management__data .ui.form .disabled.field, .competence-management__data .ui.form .disabled.field {
  opacity: 1;
  pointer-events: auto;
}
.challenge-data .ui.form .disabled.field > label, .tube-data .ui.form .disabled.field > label, .skill-data .ui.form .disabled.field > label, .area-management__data .ui.form .disabled.field > label, .competence-management__data .ui.form .disabled.field > label {
  opacity: 1;
}
.challenge-data .ui.form .field.disabled textarea, .tube-data .ui.form .field.disabled textarea, .skill-data .ui.form .field.disabled textarea, .area-management__data .ui.form .field.disabled textarea, .competence-management__data .ui.form .field.disabled textarea,
.challenge-data .ui.form .field.disabled input[type=text],
.tube-data .ui.form .field.disabled input[type=text],
.skill-data .ui.form .field.disabled input[type=text],
.area-management__data .ui.form .field.disabled input[type=text],
.competence-management__data .ui.form .field.disabled input[type=text],
.challenge-data .ui.form .field.disabled .selection,
.tube-data .ui.form .field.disabled .selection,
.skill-data .ui.form .field.disabled .selection,
.area-management__data .ui.form .field.disabled .selection,
.competence-management__data .ui.form .field.disabled .selection {
  background-color: #f9f9f9;
}
.challenge-data .ui.form .field.textArea.maximized, .tube-data .ui.form .field.textArea.maximized, .skill-data .ui.form .field.textArea.maximized, .area-management__data .ui.form .field.textArea.maximized, .competence-management__data .ui.form .field.textArea.maximized {
  position: fixed;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0;
  padding: 10px;
  background-color: #fff;
  inset: 0;
}
.challenge-data .ui.form .field.textArea.maximized label, .tube-data .ui.form .field.textArea.maximized label, .skill-data .ui.form .field.textArea.maximized label, .area-management__data .ui.form .field.textArea.maximized label, .competence-management__data .ui.form .field.textArea.maximized label {
  margin-top: 5px;
}
.challenge-data .ui.form .field.textArea.maximized textarea, .tube-data .ui.form .field.textArea.maximized textarea, .skill-data .ui.form .field.textArea.maximized textarea, .area-management__data .ui.form .field.textArea.maximized textarea, .competence-management__data .ui.form .field.textArea.maximized textarea {
  display: block;
  flex-grow: 1;
  margin-bottom: 20px;
}

.challenge-status-actions {
  position: relative;
  display: flex;
  align-items: center;
}
.challenge-status-actions__menu {
  position: absolute;
  top: 45px;
  z-index: 1000000;
  background: white;
  border: solid lightgray 1px;
  border-radius: 5px;
}

.ui.menu.tube-menu, .ui.menu.skill-menu, .area-management__menu, .competence-management__menu, .ui.menu.challenge-menu {
  margin-top: 0;
  border: none;
  border-left: 1px solid rgba(34, 36, 38, 0.15);
  box-shadow: none;
}
.ui.menu.tube-menu div.item::before, .ui.menu.skill-menu div.item::before, .area-management__menu div.item::before, .competence-management__menu div.item::before, .ui.menu.challenge-menu div.item::before {
  display: none;
}
.ui.menu.tube-menu .item.alternatives, .ui.menu.skill-menu .item.alternatives, .area-management__menu .item.alternatives, .competence-management__menu .item.alternatives, .ui.menu.challenge-menu .item.alternatives {
  color: #2185d0;
}

#copyZone {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
}

.file-remove {
  cursor: pointer;
}

.file-remove i {
  vertical-align: top;
}

.ui.form .field > label.file-upload {
  margin-top: 5px;
}

.ui.icon.menu .item.important-action,
.ui.icon.menu .item.important-action:hover {
  color: #d02181;
}

.challenge_languages {
  display: flex;
  justify-content: center;
}

.main-title .target-profile-filter {
  display: flex;
  align-items: center;
  float: right;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  font-size: 14px;
}
.main-title .target-profile-filter.active {
  color: rgba(255, 255, 255, 0.9);
}
.main-title .target-profile-filter .ui.toggle.checkbox {
  margin-left: 10px;
}

.target-profile-title {
  color: white;
  background: black;
}
.target-profile-title .trigger-menu {
  cursor: pointer;
}

.target-profile {
  width: 100%;
  overflow: hidden scroll;
}
.target-profile #target-profile__open-file {
  display: none;
}
.target-profile .ui.grid {
  margin: 0;
}
.target-profile .competence-profile {
  margin-bottom: 0;
  color: white;
  background-color: #004;
}
.target-profile .competence-profile.area-profile-1 {
  background: #F1A141;
}
.target-profile .competence-profile.area-profile-2 {
  background: #57C884;
}
.target-profile .competence-profile.area-profile-3 {
  background: #12A3FF;
}
.target-profile .competence-profile.area-profile-4 {
  background: #FF3F94;
}
.target-profile .competence-profile.area-profile-5 {
  background: #574DA6;
}
.target-profile .competence-profile .competence-info .ui.basic.button {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: none;
}
.target-profile .competence-profile .competence-info .ui.basic.button i {
  color: white;
}
.target-profile .competence-profile .competence-info .ui.basic.button:hover i {
  color: black;
}
.target-profile .theme-profile {
  padding: 0 !important;
  background: #F3F3F3;
}
.target-profile .theme-profile:not(:nth-last-child(2)) {
  border-bottom: #d4d4d4 solid 1px;
}
.target-profile .theme-profile .theme-name {
  display: flex !important;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}
.target-profile .theme-profile .twelve.wide.column {
  padding: 0;
}
.target-profile .theme-profile .tube-profile {
  display: flex;
}
.target-profile .theme-profile .tube-profile:hover {
  background: rgba(50, 170, 220, 0.1);
  cursor: pointer;
}
.target-profile .theme-profile .tube-profile > div {
  display: flex;
  align-items: center;
  width: 35%;
}
.target-profile .theme-profile .tube-profile > div .icon {
  position: relative;
  margin: 0 10px;
  font-size: 1.8rem !important;
  transform: translateY(0.2rem);
}
.target-profile .theme-profile .tube-profile > div .icon.active {
  color: #57C884;
}
.target-profile .theme-profile .tube-profile > div .max-skill-level {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 100%;
  margin-right: 10px;
}
.target-profile .theme-profile .tube-profile > div p {
  padding: 10px 5px;
  font-weight: bold;
}
.target-profile .theme-profile .tube-profile > div .practicalTitle-profile {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.target-profile .theme-profile .tube-profile > div .practicalTitle-profile.active {
  background-color: rgba(87, 200, 130, 0.3);
}
.target-profile .theme-profile .tube-profile > div .practicalTitle-profile__color-red {
  color: #7f0101;
}
.target-profile .theme-profile .tube-profile .practicalDescription-profile {
  width: 65%;
  padding: 10px 50px 10px 5px;
}
.target-profile .theme-profile .tube-profile .practicalDescription-profile.active {
  background-color: rgba(87, 200, 130, 0.3);
}
.target-profile .theme-profile .tube-profile.thematicResult .icon.active {
  color: #3f7bc4;
}
.target-profile .theme-profile .tube-profile.thematicResult .practicalTitle-profile.active {
  background-color: rgba(63, 123, 196, 0.3);
}
.target-profile .theme-profile .tube-profile.thematicResult .practicalDescription-profile.active {
  background-color: rgba(63, 123, 196, 0.3);
}

.popin-tube-level .levels {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 60px;
  border-color: #000;
  border-style: solid;
  border-width: 1px 0 0 1px;
}
.popin-tube-level .levels.loading {
  border-width: 0;
}
.popin-tube-level .levels .level {
  flex: 0 1 12.5%;
  padding: 20px;
  font-size: 16px;
  text-align: center;
  border-color: #000;
  border-style: solid;
  border-width: 0 1px 1px 0;
  cursor: pointer;
}
.popin-tube-level .levels .level.selected {
  background-color: rgba(87, 200, 130, 0.5);
}
.popin-tube-level .levels .level.disabled {
  background-color: #ddd;
  cursor: default;
}
.popin-tube-level.thematicResult .levels .level.selected {
  background-color: rgba(63, 123, 196, 0.3);
}

.text-white {
  color: white;
}

.main-title .skill-mode {
  float: right;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  font-size: 14px;
}
.main-title .skill-mode.active {
  color: #fff;
}
.main-title .skill-mode .checkbox {
  margin-left: 10px;
}

.skill-header.validated, .skill-header.suggested, .skill-header.archived, .skill-header.deleted {
  color: #2f2f2f !important;
  background: #d5e8fd !important;
}
.skill-header .circular.validated {
  color: #2f2f2f !important;
  background: #0f0 !important;
}
.skill-header .circular.suggested {
  color: #2f2f2f !important;
  background: #9ceaf7 !important;
}
.skill-header .circular.archived {
  background: #6b686d !important;
}
.skill-header .circular.deleted {
  background: #c13b3b !important;
}
.skill-header .ui.button {
  color: black !important;
}

.skill-status-actions {
  position: relative;
  display: flex;
  align-items: center;
}
.skill-status-actions__menu {
  position: absolute;
  top: 45px;
  z-index: 1000000;
  background: white;
  border: solid lightgray 1px;
  border-radius: 5px;
}

.search-result {
  border-radius: 5px;
}
.search-result li {
  padding: 0.8em 1.14em;
  border-bottom: solid 1px rgba(34, 36, 38, 0.1);
}
.search-result li .search-title {
  font-weight: bold;
}
.search-result li .search-description {
  color: grey;
}

.search-tuto-more .results, .search-tuto-solution .results {
  max-height: 350px;
  overflow-y: scroll;
}

#container-select-description-status,
#select-i18n-option,
#container-select-clue-status {
  width: 100%;
  margin-bottom: 1rem;
}

.tube-header.suggested, .tube-header.prevalidated, .tube-header.validated_no_test, .tube-header.validated, .tube-header.archived, .tube-header.need-work, .tube-header.to-be-submitted {
  background-color: #448 !important;
}

.popin-prototype-log .own-note-list,
.popin-prototype-log .changelog-entry-list,
.popin-prototype-log .note-list,
.popin-alternative-log .own-note-list,
.popin-alternative-log .changelog-entry-list,
.popin-alternative-log .note-list {
  flex: 1;
}
.popin-prototype-log .own-note-list .list-row .list-item:first-child,
.popin-prototype-log .changelog-entry-list .list-row .list-item:first-child,
.popin-prototype-log .note-list .list-row .list-item:first-child,
.popin-alternative-log .own-note-list .list-row .list-item:first-child,
.popin-alternative-log .changelog-entry-list .list-row .list-item:first-child,
.popin-alternative-log .note-list .list-row .list-item:first-child {
  border-left: none;
}
.popin-prototype-log .note-list .list-row .list-item:first-child, .popin-prototype-log .note-list .list-row .list-item:nth-child(2), .popin-prototype-log .note-list .list-row .list-item:nth-child(4),
.popin-alternative-log .note-list .list-row .list-item:first-child,
.popin-alternative-log .note-list .list-row .list-item:nth-child(2),
.popin-alternative-log .note-list .list-row .list-item:nth-child(4) {
  width: 15%;
}
.popin-prototype-log .note-list .list-row .list-item:nth-child(3),
.popin-alternative-log .note-list .list-row .list-item:nth-child(3) {
  width: 55%;
}
.popin-prototype-log .own-note-list .list-row .list-item:first-child, .popin-prototype-log .own-note-list .list-row .list-item:nth-child(3),
.popin-alternative-log .own-note-list .list-row .list-item:first-child,
.popin-alternative-log .own-note-list .list-row .list-item:nth-child(3) {
  width: 20%;
}
.popin-prototype-log .own-note-list .list-row .list-item:nth-child(2),
.popin-alternative-log .own-note-list .list-row .list-item:nth-child(2) {
  width: 60%;
}
.popin-prototype-log .changelog-entry-list .list-row .list-item:first-child,
.popin-alternative-log .changelog-entry-list .list-row .list-item:first-child {
  border-left: none;
}
.popin-prototype-log .changelog-entry-list .list-row .list-item:first-child, .popin-prototype-log .changelog-entry-list .list-row .list-item:nth-child(2),
.popin-alternative-log .changelog-entry-list .list-row .list-item:first-child,
.popin-alternative-log .changelog-entry-list .list-row .list-item:nth-child(2) {
  width: 20%;
}
.popin-prototype-log .changelog-entry-list .list-row .list-item:nth-child(3),
.popin-alternative-log .changelog-entry-list .list-row .list-item:nth-child(3) {
  width: 60%;
}
.popin-prototype-log .ui.menu.note-menu,
.popin-alternative-log .ui.menu.note-menu {
  justify-content: center;
}
.popin-prototype-log .ui.menu.note-menu .item,
.popin-alternative-log .ui.menu.note-menu .item {
  color: #2185d0;
}
.popin-prototype-log .ui.form .field.disabled, .popin-prototype-log .ui.form .field.disabled label,
.popin-alternative-log .ui.form .field.disabled,
.popin-alternative-log .ui.form .field.disabled label {
  opacity: 1;
  pointer-events: auto;
}
.popin-prototype-log .ui.form .field.disabled textarea, .popin-prototype-log .ui.form .field.disabled .selection,
.popin-alternative-log .ui.form .field.disabled textarea,
.popin-alternative-log .ui.form .field.disabled .selection {
  background-color: #f9f9f9;
}

.challenge-log__tabs {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: var(--pix-spacing-2x);
  height: min-content;
  border-bottom: 2px solid var(--pix-primary-500);
}
.challenge-log__tabs button {
  padding: var(--pix-spacing-3x) var(--pix-spacing-4x);
  color: var(--pix-neutral-900);
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: background-color ease 500ms;
}
.challenge-log__tabs button.active {
  color: var(--pix-neutral-0);
  font-weight: var(--pix-font-bold);
  background-color: var(--pix-primary-500);
}
.challenge-log__tabs button:focus, .challenge-log__tabs button:focus-visible {
  color: var(--pix-neutral-0);
  background-color: rgba(var(--pix-primary-500-inline), 80%);
  outline: 1px solid var(--pix-neutral-0);
  outline-offset: -5px;
}
.challenge-log__tabs button:active {
  background-color: rgba(var(--pix-primary-500-inline), 50%);
  outline: none;
}
.challenge-log__tabs button:hover:not(.active) {
  background-color: rgba(var(--pix-primary-500-inline), 30%);
  transition: background-color ease 500ms;
}

.checkbox-layout {
  padding-top: 1rem;
}

.changelog-layout {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
}
.changelog-layout .changelog-textarea {
  margin-top: 0.3rem;
  padding: 0.5rem;
}

.custom-tooltip {
  z-index: 10;
  padding: 10px;
  color: black;
  line-height: 1.4em;
  text-align: left;
  text-shadow: none;
  background-color: white;
  border-radius: 5px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.custom-tooltip.large {
  width: 75vw;
  min-width: 150px;
  max-width: 1050px;
}
.custom-tooltip .ember-tooltip-arrow {
  display: none;
}
.custom-tooltip .custom-arrow {
  z-index: -1;
  display: block;
  width: 10px;
  height: 10px;
  background-color: white;
  border: none;
  transform: rotate(45deg);
}

.sortable-content ul {
  width: 75%;
  margin: 50px auto;
  padding: 0;
  list-style: none;
}
.sortable-content ul li {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 5px;
  padding: 10px 0;
  background: #d5e8fd;
  cursor: grab;
}
.sortable-content ul li.is-dragging {
  z-index: 100;
  box-shadow: #2f2f2f 0 0 30px;
  cursor: grabbing;
}
.sortable-content ul li i {
  opacity: 0.3;
}

.ember-tabs .ember-tabs__tab-list {
  position: relative;
  top: 1px;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ember-tabs .ember-tabs__tab-list li {
  padding: 0.5em 1em;
  cursor: pointer;
}
.ember-tabs .ember-tabs__tab-list li.ember-tabs__tab--selected {
  border: 1px solid rgb(212, 212, 213);
  border-bottom-color: white;
  border-radius: 5px 5px 0 0;
}

.skill-tab__status {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  border-radius: 50%;
}
.skill-tab__status.validated {
  background: #0f0;
}
.skill-tab__status.suggested {
  background: #9ceaf7;
}
.skill-tab__status.archived {
  background: #6b686d;
}
.skill-tab__status.deleted {
  background: #c13b3b;
}

.ember-table {
  height: 100%;
}
.ember-table table th {
  padding: 10px;
  text-align: left;
  background-color: #F9FAFB;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: 1px solid rgba(34, 36, 38, 0.1);
}
.ember-table table th .et-sort-indicator::before {
  display: inline-block;
  color: #b9b9b9;
  font-family: Icons;
  line-height: 1;
  border: none;
  content: "\f0d7";
}
.ember-table table th .et-sort-indicator.is-ascending::before {
  content: "\f0d8";
}
.ember-table table td {
  padding: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(34, 36, 38, 0.1);
  border-left: 1px solid rgba(34, 36, 38, 0.1);
  cursor: pointer;
}
.ember-table table td.suggested {
  color: #0a1b53;
  background-color: #9ceaf7 !important;
}
.ember-table table td.validated {
  color: #000;
  background-color: #0f0 !important;
}
.ember-table table td.archived {
  color: #fff;
  background-color: #6b686d !important;
}
.ember-table table td.deleted {
  color: #1f0101;
  background-color: #c13b3b !important;
}
.ember-table table tr.is-selected td {
  background-color: #ffc;
}

.statistics {
  overflow: auto;
}
.statistics .statistics-table.ui.grid > .column:not(.row) {
  padding-top: 7px;
  padding-bottom: 7px;
}

.ui.form .field.mde > label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ui.form .field.mde > label > span {
  display: flex;
  align-items: center;
}
.ui.form .field.mde > label > span > * {
  margin: 0;
}

.mde-preview {
  --background: #efefef;
  --focus: #0096bfab;
  --border: #dbdbdb;
  box-sizing: border-box;
  height: 95px;
  padding: 0.78571429em 1em;
  overflow: scroll;
  color: #253858;
  font-size: 14px;
  line-height: 20px;
  background-color: #f9f9f9;
  border: 1px solid rgba(34, 36, 38, 0.15);
  border-radius: 0.28571429rem;
}
.mde-preview ul {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2.5em;
  list-style-type: disc;
}
.mde-preview ol {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2.5em;
  list-style-type: decimal;
}
.mde-preview a {
  color: #00e;
}
.mde-preview p {
  margin: 0;
  overflow-wrap: break-word;
}
.mde-preview h1 {
  font-size: 1.8em;
}
.mde-preview h2 {
  font-size: 1.4em;
}
.mde-preview h3 {
  font-size: 1.2em;
}
.mde-preview h1,
.mde-preview h2,
.mde-preview h3,
.mde-preview h4,
.mde-preview h5,
.mde-preview h6 {
  margin-bottom: 12px;
  color: #000;
}
.mde-preview strong {
  color: #000;
}
.mde-preview h1,
.mde-preview h2,
.mde-preview h3,
.mde-preview h4,
.mde-preview h5,
.mde-preview h6,
.mde-preview b,
.mde-preview strong,
.mde-preview th {
  font-weight: 600;
}
.mde-preview q::before {
  content: none;
}
.mde-preview q::after {
  content: none;
}
.mde-preview blockquote {
  margin: 1.5em 0;
  padding: 0.5em 1em;
  font-style: italic;
  border-left: 4px solid var(--focus);
}
.mde-preview q {
  margin: 1.5em 0;
  padding: 0.5em 1em;
  font-style: italic;
  border-left: 4px solid var(--focus);
}
.mde-preview blockquote > footer {
  font-style: normal;
  border: 0;
}
.mde-preview blockquote cite {
  font-style: normal;
}
.mde-preview mark {
  padding: 0 2px;
  color: #000;
  background-color: #ff0;
  border-radius: 2px;
}
.mde-preview code {
  padding: 2.5px 5px;
  color: #000;
  font-size: 1em;
  background: var(--background);
  border-radius: 6px;
}
.mde-preview hr {
  border: none;
  border-top: 1px solid var(--border);
}
.mde-preview table {
  width: 100%;
  margin-bottom: 10px;
  table-layout: fixed;
  border: 1px solid #dbdbdb;
  border-radius: 8px;
  border-collapse: collapse;
}
.mde-preview table caption {
  text-align: left;
}
.mde-preview td,
.mde-preview th {
  padding: 6px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: break-word;
  border-right: 1px solid var(--border);
}
.mde-preview thead {
  border-bottom: 1px solid var(--border);
}
.mde-preview tfoot {
  border-top: 1px solid var(--border);
}
.mde-preview tbody tr:nth-child(even) {
  background-color: #efefef;
}
.mde-preview tbody tr:nth-child(even) button {
  background-color: #f7f7f7;
}
.mde-preview tbody tr:nth-child(even) button:hover {
  background-color: #fff;
}

.pix-modal__footer {
  display: flex;
  flex-direction: column;
  gap: var(--pix-spacing-4x);
  margin-bottom: var(--pix-spacing-4x);
}
@media (min-width: 769px) {
  .pix-modal__footer {
    flex-flow: row wrap;
    justify-content: flex-end;
  }
}
.pix-modal__overlay {
  z-index: 100;
}

.login-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(91.59deg, #fedc41 0%, #ff9f00 100%);
}
.login-page__container {
  display: flex;
  flex-direction: column;
  gap: var(--pix-spacing-4x);
}

.menu-toggle {
  position: sticky;
  top: 0;
}

.new-mission-form .card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.new-mission-form .card__content label {
  font-weight: 500;
}
.new-mission-form .card__content .pix-input {
  width: 100%;
}
.new-mission-form .card__content .pix-textarea {
  width: 100%;
}
.new-mission-form__select {
  width: 100%;
}
.new-mission-form__label-text-area {
  font-size: 1rem;
  margin-top: 10px;
}
.new-mission-form__label {
  margin-bottom: 4px;
  color: rgb(23, 43, 77);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.new-mission-form__description {
  font-size: 0.825rem;
}
.new-mission-form__mission-introduction {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mission-introduction__title {
  font-weight: bold;
  margin-bottom: 8px;
}
.mission-introduction__description {
  font-size: 1rem;
  margin-bottom: 8px;
}

.mission-details__card-information li {
  margin-bottom: 12px;
}
.mission-details__back-home {
  width: fit-content;
}
.mission-details__back-home:hover {
  color: white;
}

.static-course-list__pagination {
  margin-top: 16px;
}

.page-section {
  padding: 0 !important;
}

.static-course-tag {
  margin-bottom: 8px;
}

.static-course-details__card-information--actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 16px;
}
.static-course-details__card-information li {
  margin-top: 8px;
}

.static-course-details__description {
  white-space: pre-line;
}

.static-course-tag__area {
  display: flex;
  align-items: end;
}

.static-course-chips {
  margin-left: 1rem;
}

.filter-whitelisted-url-form .card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.filter-whitelisted-url-form .card__content label {
  font-weight: 500;
}
.filter-whitelisted-url-form .card__content .pix-input {
  width: 100%;
}
.filter-whitelisted-url-form .card__content .pix-textarea {
  width: 100%;
}
.filter-whitelisted-url-form__select {
  width: 100%;
}
.filter-whitelisted-url-form__label-text-area {
  font-size: 1rem;
  margin-top: 10px;
}
.filter-whitelisted-url-form__label {
  margin-bottom: 4px;
  color: rgb(23, 43, 77);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
.filter-whitelisted-url-form__description {
  font-size: 0.825rem;
}

.whitelisted-urls-table .column--small {
  width: 8%;
  max-width: 150px;
}
.whitelisted-urls-table .column--wide {
  width: 25%;
}
.whitelisted-urls-table .actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  margin: auto;
}

.new-whitelisted-url-details {
  display: flex;
  gap: 1.5rem;
}

#whitelisted-url-check-type span {
  margin-block: 0;
}

#whitelisted-url-link {
  display: block;
}

.synchronize-translations--block {
  padding: var(--pix-spacing-4x);
  margin-bottom: var(--pix-spacing-4x);
}
.synchronize-translations--action {
  margin-top: var(--pix-spacing-4x);
}

.card {
  box-shadow: 5px 4px 10px 2px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--pix-neutral-0);
  border: 1.2px #8993A4 solid;
  margin-bottom: 24px;
}
.card__title {
  color: var(--pix-neutral-0);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 28px;
  padding: 11px 32px;
  background: #344563;
  border-radius: 8px 8px 0 0;
}
.card__content {
  padding: 11px 32px;
  font-family: "Roboto", Arial, sans-serif;
}
.card__content .pix-input, .card__content .pix-textarea, .card__content .pix-select, .card__content span {
  margin-bottom: 8px;
  margin-top: 8px;
}
.card__body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}
.card-footer {
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card .card-footer,
.card .card-header {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
}

.competence-header {
  align-items: center;
  background-color: var(--pix-neutral-0);
  border-bottom: 1px solid var(--pix-neutral-100);
  display: flex;
  gap: var(--pix-spacing-2x);
  padding: var(--pix-spacing-3x) var(--pix-spacing-6x);
}
.competence-header > h2 {
  color: var(--pix-neutral-900);
}
.competence-header__spacer {
  flex-grow: 1;
}
.competence-header .locale-tag {
  background: var(--pix-neutral-20);
  padding: var(--pix-spacing-2x) var(--pix-spacing-4x);
  border-radius: var(--pix-spacing-2x);
}
.competence-header .locale-tag span {
  display: inline-block;
  margin-right: var(--pix-spacing-2x);
}

.competence-overview {
  background: var(--pix-primary-10);
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--pix-spacing-4x);
  margin: var(--pix-spacing-6x);
}
.competence-overview--hidden {
  display: none;
}

.competence-overview-actions {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  background: white;
  padding: 0 var(--pix-spacing-6x);
  border-radius: 8px;
}
.competence-overview-actions__tabs {
  display: flex;
  align-items: stretch;
  gap: var(--pix-spacing-6x);
}
.competence-overview-actions__tabs li {
  display: flex;
  align-items: center;
}
.competence-overview-actions__tabs li.active {
  color: var(--pix-primary-500);
  border-bottom: solid 2px var(--pix-primary-500);
}
.competence-overview-actions__tabs li a:hover {
  color: var(--pix-primary-500);
}
.competence-overview-actions__buttons {
  display: flex;
  gap: var(--pix-spacing-4x);
}
.competence-overview-actions__refresh, .competence-overview-actions__fetch {
  margin: 0.5rem 0;
}

.competence-overview-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border: 1px solid var(--pix-neutral-500);
  border-radius: var(--pix-spacing-2x);
  overflow: auto;
}
.competence-overview-grid h3,
.competence-overview-grid h4 {
  background: var(--pix-neutral-20);
  font-weight: var(--pix-font-medium);
  padding: 0 var(--pix-spacing-2x);
}
.competence-overview-grid h3,
.competence-overview-grid .skill {
  text-align: center;
}
.competence-overview-grid h3,
.competence-overview-grid h4,
.competence-overview-grid .skill {
  place-content: center;
  border-right: 1px solid var(--pix-neutral-500);
  border-bottom: 1px solid var(--pix-neutral-500);
}
.competence-overview-grid .thematic:first-child h3 {
  border-top-left-radius: var(--pix-spacing-2x);
}
.competence-overview-grid .thematic:first-child .tube:first-of-type .skill:last-child {
  border-top-right-radius: var(--pix-spacing-2x);
}
.competence-overview-grid .thematic:last-child h3 {
  border-bottom: none;
  border-bottom-left-radius: var(--pix-spacing-2x);
}
.competence-overview-grid .thematic:last-child .tube:last-child {
  border-bottom: none;
}
.competence-overview-grid .thematic:last-child .tube:last-child .skill,
.competence-overview-grid .thematic:last-child .tube:last-child h4 {
  border-bottom: none;
}
.competence-overview-grid .thematic:last-child .tube:last-child .skill:last-child {
  border-bottom-right-radius: var(--pix-spacing-2x);
}
.competence-overview-grid .skill:last-child {
  border-right: none;
}

.competence-overview-grid::-webkit-scrollbar:vertical {
  display: none;
}

.thematic {
  display: grid;
  grid-column: 1/span 9;
  grid-template-columns: subgrid;
  grid-template-rows: max-content;
}
.thematic h3 {
  grid-row: span var(--tubes-count);
}

.tube {
  display: grid;
  grid-column: 2/span 8;
  grid-template-columns: subgrid;
}

.competence-overview-footer {
  display: grid;
  grid-template-columns: 2, 1fr;
}
.competence-overview-footer .competence-overview-legend {
  display: flex;
  grid-column: 1;
  justify-self: start;
  gap: var(--pix-spacing-4x);
  background: var(--pix-neutral-0);
  padding: var(--pix-spacing-4x);
  border-radius: var(--pix-spacing-2x);
  border: solid 1px var(--pix-neutral-100);
}
.competence-overview-footer .competence-overview-legend li {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-2x);
}
.competence-overview-footer .competence-overview-legend .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.competence-overview-footer .competence-overview-legend .red {
  background: var(--pix-error-100);
}
.competence-overview-footer .competence-overview-legend .green {
  background: var(--pix-success-100);
}
.competence-overview-footer .competence-overview-legend .blue {
  background: var(--pix-info-100);
}
.competence-overview-footer .competence-overview-counts {
  display: flex;
  align-items: center;
  grid-column: 2;
  justify-self: end;
  gap: var(--pix-spacing-4x);
}
.competence-overview-footer .competence-overview-counts p {
  font-weight: var(--pix-font-bold);
}

.production-skill-overview {
  background-color: var(--pix-neutral-0);
}
.production-skill-overview-action {
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  padding: 0 var(--pix-spacing-1x);
}
.production-skill-overview-action--empty {
  background-color: var(--pix-error-100);
}
.production-skill-overview-action--empty:hover, .production-skill-overview-action--empty:focus, .production-skill-overview-action--empty.active {
  color: inherit;
  background-color: hsl(from var(--pix-error-100) h s calc(l - 25));
}
.production-skill-overview-action--proposed {
  background-color: var(--pix-info-100);
}
.production-skill-overview-action--proposed:hover, .production-skill-overview-action--proposed:focus, .production-skill-overview-action--proposed.active {
  color: inherit;
  background-color: hsl(from var(--pix-info-100) h s calc(l - 25));
}
.production-skill-overview-action--validated {
  background-color: var(--pix-success-100);
}
.production-skill-overview-action--validated:hover, .production-skill-overview-action--validated:focus, .production-skill-overview-action--validated.active {
  color: inherit;
  background-color: hsl(from var(--pix-success-100) h s calc(l - 25));
}

.login {
  background-color: var(--pix-neutral-0);
  border-radius: 10px;
  padding: 20px 30px;
  max-width: 500px;
}
@media (min-width: 769px) {
  .login {
    padding: 40px 60px;
  }
}
.login__header {
  text-align: center;
}
.login__main {
  width: 100%;
}

.login-header__title {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #253858;
  margin-top: 32px;
  margin-bottom: 8px;
}
.login-header__information {
  margin-bottom: 32px;
  font-family: "Roboto", Arial, sans-serif;
  max-width: 400px;
  width: 100%;
}

.login-main__form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: var(--pix-spacing-4x);
}

.login-main-form__button {
  margin-top: 8px;
  font-size: 0.875rem;
}

/**
 * easymde v2.20.0
 * Copyright Jeroen Akkerman
 * @link https://github.com/ionaru/easy-markdown-editor
 * @license MIT
 */
.CodeMirror {
  font-family: monospace;
  height: 300px;
  color: #000;
  direction: ltr;
}

.CodeMirror-lines {
  padding: 4px 0;
}

.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
  padding: 0 4px;
}

.CodeMirror-gutter-filler, .CodeMirror-scrollbar-filler {
  background-color: #fff;
}

.CodeMirror-gutters {
  border-right: 1px solid #ddd;
  background-color: #f7f7f7;
  white-space: nowrap;
}

.CodeMirror-linenumber {
  padding: 0 3px 0 5px;
  min-width: 20px;
  text-align: right;
  color: #999;
  white-space: nowrap;
}

.CodeMirror-guttermarker {
  color: #000;
}

.CodeMirror-guttermarker-subtle {
  color: #999;
}

.CodeMirror-cursor {
  border-left: 1px solid #000;
  border-right: none;
  width: 0;
}

.CodeMirror div.CodeMirror-secondarycursor {
  border-left: 1px solid silver;
}

.cm-fat-cursor .CodeMirror-cursor {
  width: auto;
  border: 0 !important;
  background: #7e7;
}

.cm-fat-cursor div.CodeMirror-cursors {
  z-index: 1;
}

.cm-fat-cursor .CodeMirror-line::selection, .cm-fat-cursor .CodeMirror-line > span::selection, .cm-fat-cursor .CodeMirror-line > span > span::selection {
  background: 0 0;
}

.cm-fat-cursor .CodeMirror-line::-moz-selection, .cm-fat-cursor .CodeMirror-line > span::-moz-selection, .cm-fat-cursor .CodeMirror-line > span > span::-moz-selection {
  background: 0 0;
}

.cm-fat-cursor {
  caret-color: transparent;
}

@-moz-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@-webkit-keyframes blink {
  50% {
    background-color: transparent;
  }
}
@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.cm-tab {
  display: inline-block;
  text-decoration: inherit;
}

.CodeMirror-rulers {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  overflow: hidden;
}

.CodeMirror-ruler {
  border-left: 1px solid #ccc;
  top: 0;
  bottom: 0;
  position: absolute;
}

.cm-s-default .cm-header {
  color: #00f;
}

.cm-s-default .cm-quote {
  color: #090;
}

.cm-negative {
  color: #d44;
}

.cm-positive {
  color: #292;
}

.cm-header, .cm-strong {
  font-weight: 700;
}

.cm-em {
  font-style: italic;
}

.cm-link {
  text-decoration: underline;
}

.cm-strikethrough {
  text-decoration: line-through;
}

.cm-s-default .cm-keyword {
  color: #708;
}

.cm-s-default .cm-atom {
  color: #219;
}

.cm-s-default .cm-number {
  color: #164;
}

.cm-s-default .cm-def {
  color: #00f;
}

.cm-s-default .cm-variable-2 {
  color: #05a;
}

.cm-s-default .cm-type, .cm-s-default .cm-variable-3 {
  color: #085;
}

.cm-s-default .cm-comment {
  color: #a50;
}

.cm-s-default .cm-string {
  color: #a11;
}

.cm-s-default .cm-string-2 {
  color: #f50;
}

.cm-s-default .cm-meta {
  color: #555;
}

.cm-s-default .cm-qualifier {
  color: #555;
}

.cm-s-default .cm-builtin {
  color: #30a;
}

.cm-s-default .cm-bracket {
  color: #997;
}

.cm-s-default .cm-tag {
  color: #170;
}

.cm-s-default .cm-attribute {
  color: #00c;
}

.cm-s-default .cm-hr {
  color: #999;
}

.cm-s-default .cm-link {
  color: #00c;
}

.cm-s-default .cm-error {
  color: red;
}

.cm-invalidchar {
  color: red;
}

.CodeMirror-composing {
  border-bottom: 2px solid;
}

div.CodeMirror span.CodeMirror-matchingbracket {
  color: #0b0;
}

div.CodeMirror span.CodeMirror-nonmatchingbracket {
  color: #a22;
}

.CodeMirror-matchingtag {
  background: rgba(255, 150, 0, 0.3);
}

.CodeMirror-activeline-background {
  background: #e8f2ff;
}

.CodeMirror {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.CodeMirror-scroll {
  overflow: scroll !important;
  margin-bottom: -50px;
  margin-right: -50px;
  padding-bottom: 50px;
  height: 100%;
  outline: 0;
  position: relative;
  z-index: 0;
}

.CodeMirror-sizer {
  position: relative;
  border-right: 50px solid transparent;
}

.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
  position: absolute;
  z-index: 6;
  display: none;
  outline: 0;
}

.CodeMirror-vscrollbar {
  right: 0;
  top: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.CodeMirror-hscrollbar {
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: scroll;
}

.CodeMirror-scrollbar-filler {
  right: 0;
  bottom: 0;
}

.CodeMirror-gutter-filler {
  left: 0;
  bottom: 0;
}

.CodeMirror-gutters {
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
  z-index: 3;
}

.CodeMirror-gutter {
  white-space: normal;
  height: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: -50px;
}

.CodeMirror-gutter-wrapper {
  position: absolute;
  z-index: 4;
  background: 0 0 !important;
  border: none !important;
}

.CodeMirror-gutter-background {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
}

.CodeMirror-gutter-elt {
  position: absolute;
  cursor: default;
  z-index: 4;
}

.CodeMirror-gutter-wrapper ::selection {
  background-color: transparent;
}

.CodeMirror-gutter-wrapper ::-moz-selection {
  background-color: transparent;
}

.CodeMirror-lines {
  cursor: text;
  min-height: 1px;
}

.CodeMirror pre.CodeMirror-line, .CodeMirror pre.CodeMirror-line-like {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-width: 0;
  background: 0 0;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  line-height: inherit;
  color: inherit;
  z-index: 2;
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-variant-ligatures: contextual;
  font-variant-ligatures: contextual;
}

.CodeMirror-wrap pre.CodeMirror-line, .CodeMirror-wrap pre.CodeMirror-line-like {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: normal;
}

.CodeMirror-linebackground {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.CodeMirror-linewidget {
  position: relative;
  z-index: 2;
  padding: 0.1px;
}

.CodeMirror-rtl pre {
  direction: rtl;
}

.CodeMirror-code {
  outline: 0;
}

.CodeMirror-gutter, .CodeMirror-gutters, .CodeMirror-linenumber, .CodeMirror-scroll, .CodeMirror-sizer {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.CodeMirror-measure {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.CodeMirror-cursor {
  position: absolute;
  pointer-events: none;
}

.CodeMirror-measure pre {
  position: static;
}

div.CodeMirror-cursors {
  visibility: hidden;
  position: relative;
  z-index: 3;
}

div.CodeMirror-dragcursors {
  visibility: visible;
}

.CodeMirror-focused div.CodeMirror-cursors {
  visibility: visible;
}

.CodeMirror-selected {
  background: #d9d9d9;
}

.CodeMirror-focused .CodeMirror-selected {
  background: #d7d4f0;
}

.CodeMirror-crosshair {
  cursor: crosshair;
}

.CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection {
  background: #d7d4f0;
}

.CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection {
  background: #d7d4f0;
}

.cm-searching {
  background-color: #ffa;
  background-color: rgba(255, 255, 0, 0.4);
}

.cm-force-border {
  padding-right: 0.1px;
}

@media print {
  .CodeMirror div.CodeMirror-cursors {
    visibility: hidden;
  }
}
.cm-tab-wrap-hack:after {
  content: "";
}

span.CodeMirror-selectedtext {
  background: 0 0;
}

.EasyMDEContainer {
  display: block;
}

.CodeMirror-rtl pre {
  direction: rtl;
}

.EasyMDEContainer.sided--no-fullscreen {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.EasyMDEContainer .CodeMirror {
  box-sizing: border-box;
  height: auto;
  border: 1px solid #ced4da;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 10px;
  font: inherit;
  z-index: 0;
  word-wrap: break-word;
}

.EasyMDEContainer .CodeMirror-scroll {
  cursor: text;
}

.EasyMDEContainer .CodeMirror-fullscreen {
  background: #fff;
  position: fixed !important;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  z-index: 8;
  border-right: none !important;
  border-bottom-right-radius: 0 !important;
}

.EasyMDEContainer .CodeMirror-sided {
  width: 50% !important;
}

.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided {
  border-right: none !important;
  border-bottom-right-radius: 0;
  position: relative;
  flex: 1 1 auto;
}

.EasyMDEContainer .CodeMirror-placeholder {
  opacity: 0.5;
}

.EasyMDEContainer .CodeMirror-focused .CodeMirror-selected {
  background: #d9d9d9;
}

.editor-toolbar {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 9px 10px;
  border-top: 1px solid #ced4da;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.editor-toolbar.fullscreen {
  width: 100%;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  background: #fff;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 9;
}

.editor-toolbar.fullscreen::before {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #fff), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, #fff 0, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, #fff 0, rgba(255, 255, 255, 0) 100%);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}

.editor-toolbar.fullscreen::after {
  width: 20px;
  height: 50px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, #fff));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0, #fff 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff 100%);
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.EasyMDEContainer.sided--no-fullscreen .editor-toolbar {
  width: 100%;
}

.editor-toolbar .easymde-dropdown, .editor-toolbar button {
  background: 0 0;
  display: inline-block;
  text-align: center;
  text-decoration: none !important;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
}

.editor-toolbar button {
  font-weight: 700;
  min-width: 30px;
  padding: 0 6px;
  white-space: nowrap;
}

.editor-toolbar button.active, .editor-toolbar button:hover {
  background: #fcfcfc;
  border-color: #95a5a6;
}

.editor-toolbar i.separator {
  display: inline-block;
  width: 0;
  border-left: 1px solid #d9d9d9;
  border-right: 1px solid #fff;
  color: transparent;
  text-indent: -10px;
  margin: 0 6px;
}

.editor-toolbar button:after {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 65%;
  vertical-align: text-bottom;
  position: relative;
  top: 2px;
}

.editor-toolbar button.heading-1:after {
  content: "1";
}

.editor-toolbar button.heading-2:after {
  content: "2";
}

.editor-toolbar button.heading-3:after {
  content: "3";
}

.editor-toolbar button.heading-bigger:after {
  content: "▲";
}

.editor-toolbar button.heading-smaller:after {
  content: "▼";
}

.editor-toolbar.disabled-for-preview button:not(.no-disable) {
  opacity: 0.6;
  pointer-events: none;
}

@media only screen and (max-width: 700px) {
  .editor-toolbar i.no-mobile {
    display: none;
  }
}
.editor-statusbar {
  padding: 8px 10px;
  font-size: 12px;
  color: #959694;
  text-align: right;
}

.EasyMDEContainer.sided--no-fullscreen .editor-statusbar {
  width: 100%;
}

.editor-statusbar span {
  display: inline-block;
  min-width: 4em;
  margin-left: 1em;
}

.editor-statusbar .lines:before {
  content: "lines: ";
}

.editor-statusbar .words:before {
  content: "words: ";
}

.editor-statusbar .characters:before {
  content: "characters: ";
}

.editor-preview-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 7;
  overflow: auto;
  display: none;
  box-sizing: border-box;
}

.editor-preview-side {
  position: fixed;
  bottom: 0;
  width: 50%;
  top: 50px;
  right: 0;
  z-index: 9;
  overflow: auto;
  display: none;
  box-sizing: border-box;
  border: 1px solid #ddd;
  word-wrap: break-word;
}

.editor-preview-active-side {
  display: block;
}

.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side {
  flex: 1 1 auto;
  height: auto;
  position: static;
}

.editor-preview-active {
  display: block;
}

.editor-preview {
  padding: 10px;
  background: #fafafa;
}

.editor-preview > p {
  margin-top: 0;
}

.editor-preview pre {
  background: #eee;
  margin-bottom: 10px;
}

.editor-preview table td, .editor-preview table th {
  border: 1px solid #ddd;
  padding: 5px;
}

.cm-s-easymde .cm-tag {
  color: #63a35c;
}

.cm-s-easymde .cm-attribute {
  color: #795da3;
}

.cm-s-easymde .cm-string {
  color: #183691;
}

.cm-s-easymde .cm-header-1 {
  font-size: calc(1.375rem + 1.5vw);
}

.cm-s-easymde .cm-header-2 {
  font-size: calc(1.325rem + 0.9vw);
}

.cm-s-easymde .cm-header-3 {
  font-size: calc(1.3rem + 0.6vw);
}

.cm-s-easymde .cm-header-4 {
  font-size: calc(1.275rem + 0.3vw);
}

.cm-s-easymde .cm-header-5 {
  font-size: 1.25rem;
}

.cm-s-easymde .cm-header-6 {
  font-size: 1rem;
}

.cm-s-easymde .cm-header-1, .cm-s-easymde .cm-header-2, .cm-s-easymde .cm-header-3, .cm-s-easymde .cm-header-4, .cm-s-easymde .cm-header-5, .cm-s-easymde .cm-header-6 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cm-s-easymde .cm-comment {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
}

.cm-s-easymde .cm-link {
  color: #7f8c8d;
}

.cm-s-easymde .cm-url {
  color: #aab2b3;
}

.cm-s-easymde .cm-quote {
  color: #7f8c8d;
  font-style: italic;
}

.editor-toolbar .easymde-dropdown {
  position: relative;
  background: linear-gradient(to bottom right, #fff 0, #fff 84%, #333 50%, #333 100%);
  border-radius: 0;
  border: 1px solid #fff;
}

.editor-toolbar .easymde-dropdown:hover {
  background: linear-gradient(to bottom right, #fff 0, #fff 84%, #333 50%, #333 100%);
}

.easymde-dropdown-content {
  display: block;
  visibility: hidden;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  padding: 8px;
  z-index: 2;
  top: 30px;
}

.easymde-dropdown:active .easymde-dropdown-content, .easymde-dropdown:focus .easymde-dropdown-content, .easymde-dropdown:focus-within .easymde-dropdown-content {
  visibility: visible;
}

.easymde-dropdown-content button {
  display: block;
}

span[data-img-src]::after {
  content: "";
  background-image: var(--bg-image);
  display: block;
  max-height: 100%;
  max-width: 100%;
  background-size: contain;
  height: 0;
  padding-top: var(--height);
  width: var(--width);
  background-repeat: no-repeat;
}

.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word) {
  background: rgba(255, 0, 0, 0.15);
}

.EasyMDEContainer .mde-preview {
  border-radius: 0;
  height: 100%;
}

.ui.form .field-title {
  font-size: 0.92857143em;
  font-weight: bold;
}

.fields--selectors {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: flex-end;
}

.select-search {
  position: relative;
}
.select-search .pix-search-input {
  width: 100%;
}
.select-search .results-list {
  position: absolute;
  z-index: 10;
  max-height: 150px;
  width: 100%;
  overflow-y: auto;
  background: var(--pix-neutral-0);
  border-radius: 0.25rem;
}
.select-search .result-option {
  padding: 0.75rem;
  width: 100%;
  text-align: start;
}
.select-search .result-option:not(:last-child) {
  border-bottom: 1px solid var(--pix-neutral-100);
}
.select-search .result-option:hover {
  color: var(--pix-tertiary-500);
  background: var(--pix-neutral-20);
}
.select-search .result-info {
  padding: 0.75rem;
}

.toggle-field-v1 .tooltip-icon {
  margin-left: var(--pix-spacing-1x);
}

#tutorials-field .header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#tutorials-field .header span {
  align-items: center;
  display: flex;
}
#tutorials-field .header .tutorial-link {
  padding: 0.4rem;
}
#tutorials-field .header .tutorial-link svg {
  height: 1.3rem;
  width: 1.3rem;
}
#tutorials-field .favorite {
  display: flex;
  align-items: center;
  gap: 4px;
}
#tutorials-field .favorite .flag {
  font-size: 1.3rem;
}
#tutorials-field .favorite svg {
  fill: var(--pix-error-500);
}

#select-tutorial-solution,
#select-tutorial-more,
#container-select-tutorial-solution,
#container-select-tutorial-more {
  width: 100%;
}

.tutorial-option {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.tutorial-option__title {
  font-weight: bold;
  font-size: 1rem;
}
.tutorial-option__tags {
  color: var(--pix-neutral-500);
}

.tutorial-search {
  width: 50%;
}

.challenge-form .pix-select,
.challenge-form .pix-select__dropdown,
.challenge-form .pix-multi-select {
  width: 100%;
}
.challenge-form .pix-select-button {
  margin-bottom: var(--pix-spacing-3x);
}

.tutorial-tags-select input[type=checkbox]:has(+ span .add) {
  display: none !important;
}

.tutorial-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.tutorial-form .pix-input, .tutorial-form .pix-select, .tutorial-form .pix-multi-select {
  width: 100% !important;
}
.tutorial-form .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}
.tutorial-form .tags .tag {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  background-color: var(--pix-neutral-0);
  border-radius: var(--pix-spacing-2x);
  border: 1px solid var(--pix-neutral-500);
  padding-left: var(--pix-spacing-2x);
  width: fit-content;
}
.tutorial-form .crush-button {
  color: red;
}
.tutorial-form .crush-button:active {
  color: red;
  background: rgba(255, 0, 0, 0.1);
}
.tutorial-form .crush-button:focus {
  color: red;
  background: rgba(255, 0, 0, 0.1);
  outline: 2px solid red;
}
.tutorial-form .span-two {
  grid-column: span 2;
}
.tutorial-form .span-three {
  grid-column: span 3;
}

.dropdown .dropdown-button[aria-expanded=true],
.dropdown .dropdown-button:hover {
  background: var(--pix-neutral-100);
}
.dropdown-menu {
  position: absolute;
  z-index: 10;
  background: var(--pix-neutral-0);
  border-radius: var(--pix-spacing-2x);
  padding: var(--pix-spacing-2x);
  visibility: hidden;
}

.pix-modal .image-modal {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.tutorial-pop-in {
  width: min(48rem, 100% - var(--pix-spacing-4x));
}
.tutorial-pop-in .pix-button {
  align-items: flex-start;
  display: flex;
  gap: 0.5rem;
}
.tutorial-pop-in .tutorial-form label.span-three {
  align-items: center;
  display: flex;
}

.pdf-entries .pix-input {
  width: 100%;
}
.pdf-entries .pix-select {
  width: 128px;
}

form.select-location {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.select-framework {
  padding: 0 5px 8px 5px;
  width: 100%;
}
.select-framework .pix-select-button {
  background: none;
  color: white;
  border-color: white;
}
.select-framework .pix-select-button__dropdown-icon {
  color: white;
}
.select-framework .pix-select-button:focus, .select-framework .pix-select-button:focus-within {
  outline-color: rgba(var(--pix-info-100-inline), 0.5);
}
.select-framework .pix-select__dropdown {
  transform: translate(0, 54px) !important;
}
.select-framework .pix-select-list-category__option--selected {
  background: var(--pix-info-50);
  color: var(--pix-info-900);
}
.select-framework .pix-select-list-category__option:focus {
  background: var(--pix-info-100);
}

.area-accordion .pix-accordions {
  color: white;
  border: none;
  background: transparent;
  border-radius: 0;
}
.area-accordion .pix-accordions:focus, .area-accordion .pix-accordions:focus-within {
  outline: 1px solid var(--pix-info-100);
}
.area-accordion .pix-accordions__title {
  color: white;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 0.375rem;
  text-align: start;
}
.area-accordion .pix-accordions__title:hover {
  background: #3B8DCC;
}
.area-accordion .pix-accordions__content {
  background: #3B8DCC;
  padding: 0;
}
.area-accordion .area-link {
  display: block;
  padding: 0.5rem 1rem;
  color: white;
}
.area-accordion .area-link:hover {
  background: #3683BE;
}

.sidebar-search {
  padding: 0 5px;
  width: 100%;
}
.sidebar-search .pix-select-button {
  background: none;
  color: white;
  border-color: white;
}
.sidebar-search .pix-select-button__dropdown-icon, .sidebar-search .pix-select-button__icon {
  color: white;
}
.sidebar-search .pix-select-button:focus, .sidebar-search .pix-select-button:focus-within {
  outline-color: rgba(var(--pix-info-100-inline), 0.5);
}
.sidebar-search .pix-select__dropdown {
  transform: translate(0, 54px) !important;
  min-width: auto;
}
.sidebar-search .pix-select-list-category__option {
  width: 100%;
  overflow-x: hidden;
  white-space: normal;
}
.sidebar-search .pix-select-list-category__option--selected {
  background: var(--pix-info-50);
  color: var(--pix-info-900);
}
.sidebar-search .pix-select-list-category__option:focus {
  background: var(--pix-info-100);
}
.sidebar-search .pix-select__search:focus, .sidebar-search .pix-select__search:focus-within {
  border-bottom-color: var(--pix-info-900);
}

.bold {
  font-weight: bold;
}

.white-font {
  color: var(--pix-neutral-0) !important;
}

.form-error {
  width: 100%;
  color: #B91C1C;
  font-weight: bold;
  margin-bottom: 16px;
}

.pix-button-link-with-icon:hover {
  color: #172B4D;
}
.pix-button-link-with-icon > svg {
  margin-right: 8px;
}

.disabled-link-with-icon {
  pointer-events: none;
}
.disabled-link-with-icon > svg {
  color: #97A0AF;
}

.disabled-tooltip-content > span {
  cursor: not-allowed;
}

.c-notification {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  border: 1.5px solid #505F79 !important;
  color: #344563;
  line-height: 1.3125rem;
}
.c-notification > div:first-child {
  background-color: #505F79;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-notification > div:nth-child(2) {
  background-color: #DFE1E6;
  padding: 8px 12px;
  align-items: center;
}
.c-notification > div:nth-child(2) > div {
  align-self: center;
  padding-right: 0;
  background-color: inherit;
}
.c-notification a {
  color: #344563;
}
.c-notification .fa {
  font-size: 1.375rem;
}
.c-notification .fa-exclamation-circle {
  color: var(--pix-neutral-0);
}
.c-notification .c-notification__close svg {
  fill: #505F79;
}
.c-notification .c-notification__close svg:hover, .c-notification .c-notification__close svg:active {
  fill: #344563;
}
.c-notification--error {
  border: 1.5px solid #B91C1C;
}
.c-notification--error div:first-child {
  background-color: #B91C1C;
}
.c-notification--error div:nth-child(2) {
  background-color: #FEF2F2;
  color: #B91C1C;
}
.c-notification--error .c-notification__close svg {
  fill: #B91C1C;
}
.c-notification--error .c-notification__close svg:hover, .c-notification--error .c-notification__close svg:active {
  fill: #991B1B;
}
.c-notification--warning {
  border: 1.5px solid #A95800;
}
.c-notification--warning div:first-child {
  background-color: #A95800;
}
.c-notification--warning div:nth-child(2) {
  background-color: #FFF9E6;
  color: #A95800;
}
.c-notification--warning .c-notification__close svg {
  fill: #A95800;
}
.c-notification--warning .c-notification__close svg:hover, .c-notification--warning .c-notification__close svg:active {
  fill: #874D00;
}
.c-notification--success {
  border: 1.5px solid #176C4D;
}
.c-notification--success div:first-child {
  background-color: #176C4D;
}
.c-notification--success div:nth-child(2) {
  background-color: #ECFDF5;
  color: #176C4D;
}
.c-notification--success .c-notification__close svg {
  fill: #176C4D;
}
.c-notification--success .c-notification__close svg:hover, .c-notification--success .c-notification__close svg:active {
  fill: #104834;
}

.page {
  background-color: #EAECF0;
  width: 100%;
}
.page .page-header {
  background: var(--pix-neutral-0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  border-bottom: 1px solid #DFE1E6;
  top: 0;
  left: 80px;
  right: 0;
  min-height: 60px;
  z-index: 4;
  margin: 0;
}
.page .page-header .page-title {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
}
.page .page-header .page-title a {
  color: #3D68FF;
}
.page .page-header .page-title h1 {
  display: inline;
  font-size: 1rem;
  font-weight: bold;
}
.page .page-body {
  inset: 60px 0 0 80px;
  padding: 32px;
}
.page .page-body .page-section {
  background: transparent;
  border-radius: 5px;
  padding: 32px;
  margin-bottom: 10px;
}
.page .page-body .page-section__header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.page .page-body .page-section__title {
  font-size: 1.2rem;
  font-weight: 600;
}
.page .page-body .page-section__title--sub {
  margin-bottom: var(--pix-spacing-4x);
}
.page .page-body .page-section__content {
  margin-bottom: 10px;
}
.page .page-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.table-filter-banner {
  margin-bottom: 0.75rem;
}

.panel-table-v2 {
  border-radius: 4px;
  border: none;
  box-shadow: 0 2px 5px 0 rgba(var(--pix-neutral-100-inline), 0.05);
  background-color: var(--pix-neutral-0);
  overflow: auto;
}
.panel-table-v2 table {
  height: 100%;
  position: relative;
  overflow: auto;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  box-sizing: border-box;
}
.panel-table-v2 thead {
  width: 100%;
  color: #091E42;
}
.panel-table-v2 thead th {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.panel-table-v2 tbody {
  color: #505F79;
}
.panel-table-v2 tbody tr:focus-within, .panel-table-v2 tbody tr:hover {
  background-color: #EAECF0;
}
.panel-table-v2 tbody tr.tr--clickable {
  cursor: pointer;
}
.panel-table-v2 tbody tr.tr--clickable:hover, .panel-table-v2 tbody tr.tr--clickable:focus, .panel-table-v2 tbody tr.tr--clickable:active {
  color: var(--pix-neutral-100);
  background-color: #F4F5F7;
  transition: 0.25s ease;
}
.panel-table-v2 tbody .row--not-clickable {
  cursor: auto;
  background-color: white;
}
.panel-table-v2 tbody th.th--clickable {
  background-color: white;
}
.panel-table-v2 tbody th.th--clickable:hover {
  background-color: #EAECF0;
}
.panel-table-v2 tbody td {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #253858;
  position: relative;
}
.panel-table-v2 tbody td.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.panel-table-v2 tbody td.actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  margin: auto;
}
.panel-table-v2 tbody td.actions__edit-mission {
  height: inherit;
}
.panel-table-v2 tbody td.actions a {
  padding: 8px 10px;
  border-radius: 50%;
}
.panel-table-v2 tbody td.actions a:hover {
  background-color: #DFE1E6;
}
.panel-table-v2 tbody td.actions__edit-mission a {
  border-radius: 0;
}
.panel-table-v2 tbody td.actions__edit-mission a:hover {
  background-color: var(--pix-primary-700);
}
.panel-table-v2 tbody td > a {
  color: #253858;
  text-decoration: none;
}
.panel-table-v2 tbody td > a:hover, .panel-table-v2 tbody td > a:focus, .panel-table-v2 tbody td > a:active {
  color: #253858;
}
.panel-table-v2 tr {
  width: 100%;
  height: 60px;
  border-top: 1px solid #EAECF0;
}
.panel-table-v2 td,
.panel-table-v2 th {
  word-wrap: break-word;
  text-align: left;
  padding: 12px;
}
.panel-table-v2 th::first-letter {
  text-transform: capitalize;
}
.panel-table-v2 .table__column {
  width: 16%;
}
.panel-table-v2 .table__column col {
  min-width: 100px;
}
.panel-table-v2 .table__column--tiny {
  width: 3%;
  max-width: 100px;
}
.panel-table-v2 .table__column--small {
  width: 8%;
  max-width: 150px;
}
.panel-table-v2 .table__column--wide {
  width: 25%;
}
.panel-table-v2 .table__column--highlight {
  color: #253858;
}

.content-text {
  color: #505f79;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 1rem;
}
.content-text--small {
  font-size: 0.8125rem;
}

.files-field h3, .files-field label, .files-field p {
  font-family: var(--_pix-font-family-body), sans-serif;
}
.files-field--display {
  margin-bottom: 0.3rem;
}
.files-field--display button {
  align-items: center;
  display: flex;
}
.files-field--title {
  font-size: 1rem;
  font-weight: var(--pix-font-medium);
  color: var(--pix-neutral-900);
  margin-bottom: 0.5rem;
}
.files-field--display, .files-field--download {
  display: flex;
  align-items: center;
  gap: 5px;
}
.files-field--input-name {
  margin-top: 0.5rem;
}
.files-field--input-name label {
  font-weight: 200;
  font-size: 0.875rem;
}
.files-field--input-name input {
  height: 1.6rem;
}
.files-field--input-file {
  display: flex;
  gap: var(--pix-spacing-2x);
}
.files-field--input-file label, .files-field--input-file input {
  font-size: 0.875rem;
}

.illustration-field h3, .illustration-field label, .illustration-field p {
  font-family: var(--_pix-font-family-body), sans-serif;
}
.illustration-field--infos {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-2x);
  font-size: 0.875rem;
}
.illustration-field--infos img {
  width: 100px;
  height: auto;
}
.illustration-field--infos button + button {
  align-self: start;
}
.illustration-field--title {
  font-size: 1rem;
  font-weight: var(--pix-font-medium);
  color: var(--pix-neutral-900);
  margin-bottom: 0.5rem;
}
.illustration-field--input-image {
  display: flex;
  gap: var(--pix-spacing-2x);
}
.illustration-field--input-image label, .illustration-field--input-image input {
  font-size: 0.875rem;
}
.illustration-field .illustration-field--name {
  font-weight: var(--pix-font-normal);
}

.toggle-field {
  display: flex;
  align-items: center;
  gap: var(--pix-spacing-1x);
}
.toggle-field--button {
  font-size: 1rem;
  font-weight: var(--pix-font-medium);
  color: var(--pix-neutral-900);
}
.toggle-field--tooltip:hover {
  cursor: help;
}

.localized-framework-tube .pix-input {
  grid-column: span 7;
}
.localized-framework-tube-actions {
  display: flex;
  align-items: stretch;
  background: white;
  padding: 0 var(--pix-spacing-6x);
  border-radius: 8px;
  gap: var(--pix-spacing-6x);
}
/*@ sourceMappingURL=pixeditor.css.map*/