@charset "UTF-8";
/* Replace Google Fonts import with self-hosted fonts  */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700");

/* Add additional @font-face declarations for Open Sans and Roboto Mono */

/*
Return rem size from pixel size according to root font-size as define in settings
Always use this function for rem values
// root font-size : 100 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1rem; }

// root font-size : 62.5 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1.6rem; }
*/
/*
Return rem size from pixel size according to root font-size as define in settings
Always use this function for rem values
// root font-size : 100 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1rem; }

// root font-size : 62.5 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1.6rem; }
*/
:root, :host {
  --qc-font-family-roboto: Roboto,sans-serif;
  --qc-font-family-open-sans: Open Sans,sans-serif;
  --qc-font-family-roboto-mono: Roboto Mono,monospace;
  --qc-font-family-content: var(--qc-font-family-open-sans);
  --qc-font-family-header: var(--qc-font-family-roboto);
  --qc-font-family-code: var(--qc-font-family-roboto-mono);
  --qc-font-size-root-percent: 62.5%;
  --qc-font-size-h6: 1.6rem;
  --qc-font-size-h5: 1.9rem;
  --qc-font-size-h4: 2.1rem;
  --qc-font-size-h3: 2.8rem;
  --qc-font-size-h2: 3.6rem;
  --qc-font-size-h1: 4.8rem;
  --qc-font-size-90: 1.4rem;
  --qc-font-size-100: 1.6rem;
  --qc-font-size-120: 1.8rem;
  --qc-font-size-200: 2.2rem;
  --qc-font-size-sm: var(--qc-font-size-90);
  --qc-font-size-md: var(--qc-font-size-100);
  --qc-font-size-lg: var(--qc-font-size-120);
  --qc-font-size-xl: var(--qc-font-size-200);
  --qc-font-size-content: var(--qc-font-size-md);
  --qc-font-weight-regular: 400;
  --qc-font-weight-medium: 500;
  --qc-font-weight-semi-bold: 600;
  --qc-font-weight-bold: 700;
  --qc-font-weight-header-regular: var(--qc-font-weight-regular);
  --qc-font-weight-header-medium: var(--qc-font-weight-medium);
  --qc-font-weight-header-bold: var(--qc-font-weight-bold);
  --qc-font-weight-content-regular: var(--qc-font-weight-regular);
  --qc-font-weight-content-medium: var(--qc-font-weight-semi-bold);
  --qc-font-weight-content-bold: var(--qc-font-weight-bold);
  --qc-line-height-h6: 2rem;
  --qc-line-height-h5: 2.4rem;
  --qc-line-height-h4: 2.4rem;
  --qc-line-height-h3: 3.2rem;
  --qc-line-height-h2: 4rem;
  --qc-line-height-h1: 5.6rem;
  --qc-line-height-90: 2rem;
  --qc-line-height-100: 2.4rem;
  --qc-line-height-120: 2.8rem;
  --qc-line-height-200: 3.2rem;
  --qc-line-height-sm: var(--qc-line-height-90);
  --qc-line-height-md: var(--qc-line-height-100);
  --qc-line-height-lg: var(--qc-line-height-120);
  --qc-line-height-xl: var(--qc-line-height-200);
  --qc-line-height-content: var(--qc-line-height-md);
  --qc-max-content-width: 82.5rem;
  --qc-color-white: white;
  --qc-color-blue-pale: #dae6f0;
  --qc-color-blue-light: #4a98d9;
  --qc-color-blue-regular: #1472bf;
  --qc-color-blue-piv: #095797;
  --qc-color-blue-medium: #19406C;
  --qc-color-blue-dark: #223654;
  --qc-color-purple: #6b4fa1;
  --qc-color-grey-pale: #f1f1f2;
  --qc-color-grey-light: #c5cad2;
  --qc-color-grey-regular: #8893a2;
  --qc-color-grey-medium: #6b778a;
  --qc-color-grey-dark: #4e5662;
  --qc-color-pink-pale: #ffdbd6;
  --qc-color-pink-regular: #e58271;
  --qc-color-red-regular: #cb381f;
  --qc-color-red-dark: #692519;
  --qc-color-green-pale: #d7f0bb;
  --qc-color-green-regular: #4f813d;
  --qc-color-green-dark: #2c4024;
  --qc-color-yellow-pale: #f8e69a;
  --qc-color-yellow-regular: #e0ad03;
  --qc-color-yellow-dark: #ad781c;
  --qc-color-text-primary: var(--qc-color-blue-dark);
  --qc-color-accent: var(--qc-color-pink-regular);
  --qc-color-success: var(--qc-color-green-regular);
  --qc-color-error: var(--qc-color-red-regular);
  --qc-color-danger: var(--qc-color-red-dark);
  --qc-color-link-text: var(--qc-color-blue-piv);
  --qc-color-link-hover: var(--qc-color-blue-piv);
  --qc-color-link-visited: var(--qc-color-purple);
  --qc-color-link-active: var(--qc-color-red-regular);
  --qc-box-shadow-color: rgba(34, 54, 84, 0.24);
  --qc-box-shadow-blur-0: 0;
  --qc-box-shadow-blur-1: 4px;
  --qc-box-shadow-blur-2: 8px;
  --qc-box-shadow-blur-3: 16px;
  --qc-box-shadow-blur-4: 24px;
  --qc-box-shadow-offset-0: 0;
  --qc-box-shadow-offset-1: 1px;
  --qc-box-shadow-offset-2: 2px;
  --qc-box-shadow-offset-3: 4px;
  --qc-box-shadow-offset-4: 6px;
  --qc-spacer-xs: 0.8rem;
  --qc-spacer-sm: 1.6rem;
  --qc-spacer-md: 2.4rem;
  --qc-spacer-lg: 4.8rem;
  --qc-spacer-xl: 9.6rem;
  --qc-spacer-section: var(--qc-spacer-xl);
  --qc-spacer-h1-mt: 7.5rem;
  --qc-spacer-h1-mb: 3.2rem;
  --qc-spacer-h2-mt: 7.5rem;
  --qc-spacer-h2-mb: var(--qc-spacer-sm);
  --qc-spacer-h3-mt: var(--qc-spacer-lg);
  --qc-spacer-h3-mb: var(--qc-spacer-xs);
  --qc-spacer-h4-mt: var(--qc-spacer-lg);
  --qc-spacer-h4-mb: var(--qc-spacer-xs);
  --qc-spacer-h5-mt: var(--qc-spacer-md);
  --qc-spacer-h5-mb: 0;
  --qc-spacer-h6-mt: var(--qc-spacer-md);
  --qc-spacer-h6-mb: 0;
  --qc-spacer-content-block-mb: var(--qc-spacer-md);
  --qc-spacer-list-pl: var(--qc-spacer-sm);
  --qc-spacer-list-mb: var(--qc-spacer-content-block-mb);
  --qc-spacer-list-embedded-mb: var(--qc-spacer-sm);
  --qc-spacer-list-item-mb: var(--qc-spacer-sm);
  --qc-spacer-notice-my: var(--qc-spacer-md);
  --qc-spacer-notice-mx: 3.2rem;
  --qc-grid-gutter: 32px;
  --qc-grid-breakpoint-xs: 0;
  --qc-grid-breakpoint-sm: 576px;
  --qc-grid-breakpoint-md: 768px;
  --qc-grid-breakpoint-lg: 992px;
  --qc-grid-breakpoint-xl: 1200px;
  --qc-grid-container-max-width-sm: 576px;
  --qc-grid-container-max-width-md: 768px;
  --qc-grid-container-max-width-lg: 992px;
  --qc-grid-container-max-width-xl: 1200px;
}
@media (max-width: 1199.98px) {
  :root, :host {
    --qc-grid-gutter: 24px;
  }
}
@media (max-width: 991.98px) {
  :root, :host {
    --qc-font-size-h3: 2.5rem;
    --qc-font-size-h2: 2.8rem;
    --qc-font-size-h1: 3.6rem;
    --qc-line-height-h2: 3.2rem;
    --qc-line-height-h1: 4rem;
    --qc-spacer-h2-mt: 4.8rem;
    --qc-spacer-h2-mb: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  :root, :host {
    --qc-grid-gutter: 16px;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  font-size: var(--qc-font-size-root-percent);
}

body {
  font-size: var(--qc-font-size-md);
  line-height: var(--qc-line-height-md);
  font-weight: var(--qc-font-weight-regular);
  font-family: var(--qc-font-family-content);
  background-color: var(--qc-color-white);
  color: var(--qc-color-text-primary);
}

h1, .qc-h1 {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h1);
  line-height: var(--qc-line-height-h1);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-h1-mt);
  margin-bottom: var(--qc-spacer-h1-mb);
}

h2, .qc-h2 {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h2);
  line-height: var(--qc-line-height-h2);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-h2-mt);
  margin-bottom: var(--qc-spacer-h2-mb);
}

.page-heading {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h4);
  line-height: var(--qc-line-height-h4);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-xs);
  margin-bottom: var(--qc-spacer-h4-mb);
}

h3, .qc-h3 {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h3);
  line-height: var(--qc-line-height-h3);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-h3-mt);
  margin-bottom: var(--qc-spacer-h3-mb);
}
.p-h3 {
    font-family: var(--qc-font-family-header);
    font-size: var(--qc-font-size-h3);
    line-height: var(--qc-line-height-h3);
    font-weight: var(--qc-font-weight-header-bold);
    /*max-inline-size: var(--qc-max-content-width);*/
    margin-top: var(--qc-spacer-h3-mt);
    margin-bottom: var(--qc-spacer-h3-mb);
}
.field-note {
    font-size: 0.85em;
    font-weight: 600;
}

h4, .qc-h4 {
  font-family: var(--qc-font-family-header);
   
  line-height: var(--qc-line-height-h4);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  /* margin-top: var(--qc-spacer-h4-mt); */
  /* margin-bottom: var(--qc-spacer-h4-mb); */
}

h5, .qc-h5 {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h5);
  line-height: var(--qc-line-height-h5);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-h4-mt);
  margin-bottom: var(--qc-spacer-h5-mb);
}

h6, .qc-h6 {
  font-family: var(--qc-font-family-header);
  font-size: var(--qc-font-size-h6);
  line-height: var(--qc-line-height-h6);
  font-weight: var(--qc-font-weight-header-bold);
  /*max-inline-size: var(--qc-max-content-width);*/
  margin-top: var(--qc-spacer-h6-mt);
  margin-bottom: var(--qc-spacer-h6-mb);
}

h1 .qc-subhead, .qc-h1 .qc-subhead {
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
  font-family: var(--qc-font-family-content);
  color: var(--qc-color-grey-medium);
  display: block;
  margin: 0;
}
h1:after, .qc-h1:after {
  content: "";
  display: block;
  margin: 0;
  width: 4.8rem;
  padding-top: 0.8rem;
  border-bottom: 4px solid var(--qc-color-accent);
}

p {
  margin-top: 0;
  margin-bottom: var(--qc-spacer-md);
  /*max-inline-size: var(--qc-max-content-width);*/
}

img {
  border: none;
  vertical-align: middle;
}

a {
  color: var(--qc-color-link-text);
  /* to assure non breaking space inter last word and icon */
}
a:visited {
  color: var(--qc-color-link-visited);
}
a:hover, a:focus {
  color: var(--qc-color-link-hover);
  text-decoration: none;
}
a:active {
  color: var(--qc-color-link-active);
}
a .qc-external-link-tail {
  white-space: nowrap;
}
a .qc-external-link-tail img {
  max-height: 1.1rem;
  max-width: 1.1rem;
  margin-bottom: 0.16rem;
  display: inline-block;
  content: url(../img/external-link.svg?v=1.2.5);
}

code, .qc-code {
  font-family: var(--qc-font-family-code);
}

.qc-bg-color-white {
  background-color: white;
}

.qc-bg-color-blue-pale {
  background-color: #dae6f0;
}

.qc-bg-color-blue-light {
  background-color: #4a98d9;
}

.qc-bg-color-blue-regular {
  background-color: #1472bf;
}

.qc-bg-color-blue-piv {
  background-color: #095797;
}

.qc-bg-color-blue-medium {
  background-color: #19406C;
}

.qc-bg-color-blue-dark {
  background-color: #223654;
}

.qc-bg-color-purple {
  background-color: #6b4fa1;
}

.qc-bg-color-grey-pale {
  background-color: #f1f1f2;
}

.qc-bg-color-grey-light {
  background-color: #c5cad2;
}

.qc-bg-color-grey-regular {
  background-color: #8893a2;
}

.qc-bg-color-grey-medium {
  background-color: #6b778a;
}

.qc-bg-color-grey-dark {
  background-color: #4e5662;
}

.qc-bg-color-pink-pale {
  background-color: #ffdbd6;
}

.qc-bg-color-pink-regular {
  background-color: #e58271;
}

.qc-bg-color-red-regular {
  background-color: #cb381f;
}

.qc-bg-color-red-dark {
  background-color: #692519;
}

.qc-bg-color-green-pale {
  background-color: #d7f0bb;
}

.qc-bg-color-green-regular {
  background-color: #4f813d;
}

.qc-bg-color-green-dark {
  background-color: #2c4024;
}

.qc-bg-color-yellow-pale {
  background-color: #f8e69a;
}

.qc-bg-color-yellow-regular {
  background-color: #e0ad03;
}

.qc-bg-color-yellow-dark {
  background-color: #ad781c;
}

.qc-bg-color-text-primary {
  background-color: var(--qc-color-blue-dark);
}

.qc-bg-color-accent {
  background-color: var(--qc-color-pink-regular);
}

.qc-bg-color-success {
  background-color: var(--qc-color-green-regular);
}

.qc-bg-color-error {
  background-color: var(--qc-color-red-regular);
}

.qc-bg-color-danger {
  background-color: var(--qc-color-red-dark);
}

.qc-bg-color-link-text {
  background-color: var(--qc-color-blue-piv);
}

.qc-bg-color-link-hover {
  background-color: var(--qc-color-blue-piv);
}

.qc-bg-color-link-visited {
  background-color: var(--qc-color-purple);
}

.qc-bg-color-link-active {
  background-color: var(--qc-color-red-regular);
}

figure {
  display: inline-block;
  flex-direction: column;
}
figure img {
  max-width: 100%;
  height: auto;
}

figcaption {
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
  background-color: var(--qc-color-grey-pale);
  padding: 0.8rem;
  margin-top: 0.8rem;
}
figcaption p {
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
}
figcaption p:last-child {
  margin-bottom: 0;
}

ul {
  max-inline-size: fit-content;/*var(--qc-max-content-width)*/;
  list-style: disc;
  margin-top: 0;
  margin-bottom: var(--qc-spacer-list-mb);
  padding-left: var(--qc-spacer-list-pl);
}
/* ul li {
  margin-bottom: var(--qc-spacer-list-item-mb);
} */
ul ul {
  margin-top: var(--qc-spacer-list-item-mb);
  margin-bottom: var(--qc-spacer-list-embedded-mb);
  list-style: circle;
}

.qc-shading-0 {
  box-shadow: 0 0 0 var(--qc-color-grey-light);
}

.qc-shading-1, .qc-to-top {
  box-shadow: 0 1px 4px var(--qc-color-grey-light);
}

.qc-shading-2, .qc-to-top:focus {
  box-shadow: 0 2px 8px var(--qc-color-grey-light);
}

.qc-shading-3 {
  box-shadow: 0 4px 16px var(--qc-color-grey-light);
}

.qc-shading-4 {
  box-shadow: 0 6px 24px var(--qc-color-grey-light);
}

/*
Return rem size from pixel size according to root font-size as define in settings
Always use this function for rem values
// root font-size : 100 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1rem; }

// root font-size : 62.5 %,
// foo.scss
.foo { font-size: rem(16); }
// foo.css
.foo { font-size: 1.6rem; }
*/
.qc-d-none {
  display: none !important;
}

.qc-d-inline {
  display: inline !important;
}

.qc-d-inline-block {
  display: inline-block !important;
}

.qc-d-block {
  display: block !important;
}

.qc-d-table {
  display: table !important;
}

.qc-d-table-row {
  display: table-row !important;
}

.qc-d-table-cell {
  display: table-cell !important;
}

.qc-d-flex {
  display: flex !important;
}

.qc-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .qc-d-sm-none {
    display: none !important;
  }
  .qc-d-sm-inline {
    display: inline !important;
  }
  .qc-d-sm-inline-block {
    display: inline-block !important;
  }
  .qc-d-sm-block {
    display: block !important;
  }
  .qc-d-sm-table {
    display: table !important;
  }
  .qc-d-sm-table-row {
    display: table-row !important;
  }
  .qc-d-sm-table-cell {
    display: table-cell !important;
  }
  .qc-d-sm-flex {
    display: flex !important;
  }
  .qc-d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .qc-d-md-none {
    display: none !important;
  }
  .qc-d-md-inline {
    display: inline !important;
  }
  .qc-d-md-inline-block {
    display: inline-block !important;
  }
  .qc-d-md-block {
    display: block !important;
  }
  .qc-d-md-table {
    display: table !important;
  }
  .qc-d-md-table-row {
    display: table-row !important;
  }
  .qc-d-md-table-cell {
    display: table-cell !important;
  }
  .qc-d-md-flex {
    display: flex !important;
  }
  .qc-d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .qc-d-lg-none {
    display: none !important;
  }
  .qc-d-lg-inline {
    display: inline !important;
  }
  .qc-d-lg-inline-block {
    display: inline-block !important;
  }
  .qc-d-lg-block {
    display: block !important;
  }
  .qc-d-lg-table {
    display: table !important;
  }
  .qc-d-lg-table-row {
    display: table-row !important;
  }
  .qc-d-lg-table-cell {
    display: table-cell !important;
  }
  .qc-d-lg-flex {
    display: flex !important;
  }
  .qc-d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .qc-d-xl-none {
    display: none !important;
  }
  .qc-d-xl-inline {
    display: inline !important;
  }
  .qc-d-xl-inline-block {
    display: inline-block !important;
  }
  .qc-d-xl-block {
    display: block !important;
  }
  .qc-d-xl-table {
    display: table !important;
  }
  .qc-d-xl-table-row {
    display: table-row !important;
  }
  .qc-d-xl-table-cell {
    display: table-cell !important;
  }
  .qc-d-xl-flex {
    display: flex !important;
  }
  .qc-d-xl-inline-flex {
    display: inline-flex !important;
  }
}
/* @media print {
  .qc-d-print-none {
    display: none !important;
  }
  .qc-d-print-inline {
    display: inline !important;
  }
  .qc-d-print-inline-block {
    display: inline-block !important;
  }
  .qc-d-print-block {
    display: block !important;
  }
  .qc-d-print-table {
    display: table !important;
  }
  .qc-d-print-table-row {
    display: table-row !important;
  }
  .qc-d-print-table-cell {
    display: table-cell !important;
  }
  .qc-d-print-flex {
    display: flex !important;
  }
  .qc-d-print-inline-flex {
    display: inline-flex !important;
  }
} */
/* TODO voir si meilleure façon d'intégrer en scss... */
.qc-icon {
  display: inline-block;
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  min-width: 32px;
  height: 32px;
}
.qc-icon.qc-icon-sm {
  min-width: 12px;
  height: 12px;
}
.qc-icon.qc-icon-md {
  min-width: 20px;
  height: 20px;
}
.qc-icon.qc-icon-lg {
  min-width: 40px;
  height: 40px;
}
.qc-icon.qc-external-link {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#external-link);
}
.qc-icon.qc-warning {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#warning);
}
.qc-icon.qc-arrow-up-white {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#arrow-up-white);
}
.qc-icon.qc-clipboard {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#clipboard);
}
.qc-icon.qc-error {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#error);
}
.qc-icon.qc-error-white {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#error-white);
}
.qc-icon.qc-information {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#information);
}
.qc-icon.qc-information-white {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#information-white);
}
.qc-icon.qc-minus {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#minus);
}
.qc-icon.qc-plus {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#plus);
}
.qc-icon.qc-question-mark {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#question-mark);
}
.qc-icon.qc-success {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#success);
}
.qc-icon.qc-success-white {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#success-white);
}
.qc-icon.qc-xclose-white {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url(../img/qc-sprite.svg?v=1.2.5#xclose-white);
}
.qc-icon.qc-xclose-blue {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-image: url(../img/qc-sprite.svg?v=1.2.5#xclose-blue);
}
.qc-icon.qc-chevron-blue, .qc-icon.qc-chevron-white {
  width: 16px;
  min-width: 16px;
  height: 10px;
}
.qc-icon.qc-chevron-blue {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#chevron-blue);
}
.qc-icon.qc-chevron-white {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#chevron-white);
}
.qc-icon.qc-facebook {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#facebook);
}
.qc-icon.qc-linkedin {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#linkedin);
  height: 30px;
}
.qc-icon.qc-twitter {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#twitter);
}
.qc-icon.qc-youtube {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#youtube);
}
.qc-icon.qc-warning-alert-icon {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#warning);
}
.qc-icon.qc-general-alert-icon {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#information);
}
.qc-icon.qc-search {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-droite);
}
.qc-icon.qc-search-submit {
  background-image: url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-fonce);
}

.qc-notice {
  max-inline-size: var(--qc-max-content-width);
  display: flex;
  border: 1px solid var(--qc-color-grey-light);
  background-color: var(--qc-color-white);
  /* word-break: break-word; */
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
  margin-bottom: 3.2rem;
  /*TODO Quelle est la marge entre le titre et le texte? Rien de spécifié dans le SDG. */
}
.qc-notice .icon-container {
  display: flex;
  padding: var(--qc-spacer-md) var(--qc-spacer-xs);
  background-color: var(--qc-color-blue-pale);
}
.qc-notice .icon-container .qc-icon {
  background-size: 100% auto;
  min-width: var(--qc-spacer-md);
  height: var(--qc-spacer-md);
}
.qc-notice .content-container {
  width: 100%;
}
.qc-notice.qc-information .icon-container {
  background-color: var(--qc-color-blue-pale);
}
.qc-notice.qc-warning .icon-container {
  background-color: var(--qc-color-yellow-pale);
}
.qc-notice.qc-success .icon-container {
  background-color: var(--qc-color-green-pale);
}
.qc-notice.qc-error .icon-container {
  background-color: var(--qc-color-pink-pale);
}
.qc-notice .title {
  margin: 0;
  padding: 0;
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-bold);
  font-family: var(--qc-font-family-content);
}
.qc-notice .content {
  margin: var(--qc-spacer-notice-my) var(--qc-spacer-notice-mx) var(--qc-spacer-notice-my) var(--qc-spacer-sm);
}
.qc-notice .content .text ::slotted(ul) {
  padding-left: var(--qc-spacer-sm) !important;
  margin-top: var(--qc-spacer-sm) !important;
}

/* Links in a error notice (eg. error summary) */
qc-notice[type=error] ul li a {
  color: var(--qc-color-red-regular);
}
qc-notice[type=error] ul li a:hover, qc-notice[type=error] ul li a:focus {
  text-decoration: none;
}

@media (max-width: 575.98px) {
  .qc-notice .content {
    margin-right: var(--qc-spacer-notice-my);
  }
}
qc-piv-header {
  display: block;
  min-height: 7.2rem;
  background-color: var(--qc-color-blue-piv);
  width: 100%;
}
.qc-piv-header {
  color: var(--qc-color-white);
}
.qc-piv-header a {
  color: var(--qc-color-white);
  text-decoration: none;
}
.qc-piv-header a:hover, .qc-piv-header a:focus {
  color: var(--qc-color-white);
  text-decoration: underline;
}
.qc-piv-header .piv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qc-piv-header .piv-top .logo {
  margin-right: 6.4rem;
}
@media (max-width: 575.98px) {
  .qc-piv-header .piv-top .logo {
    margin: 0;
  }
}
.qc-piv-header .piv-top .logo a {
  display: block;
}
.qc-piv-header .piv-top .logo img {
  height: 7.2rem;
  min-width: 20rem;
}
.qc-piv-header .piv-top .title {
  width: 100%;
  padding: var(--qc-spacer-sm) 0;
  min-height: 7.2rem;
  align-items: center;
  display: flex;
  margin-right: 4rem;
}
.qc-piv-header .piv-top .title a {
  font-size: var(--qc-font-size-100);
  line-height: var(--qc-line-height-100);
  font-weight: var(--qc-font-weight-regular);
  font-family: var(--qc-font-family-header);
}
.qc-piv-header .piv-top .title a:hover, .qc-piv-header .piv-top .title a:focus {
  text-decoration: underline;
}
.qc-piv-header .piv-top .title a .description {
  font-size: var(--qc-font-size-sm);
}
.qc-piv-header .piv-top .right-section {
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .qc-piv-header .piv-top .right-section {
    min-width: auto;
  }
}
.qc-piv-header .piv-top .qc-search {
  min-width: 2.4rem;
  height: 2.4rem;
}
.qc-piv-header .piv-top .qc-search span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.qc-piv-header .piv-bottom .title {
  display: none;
}
.qc-piv-header .piv-bottom .search-zone {
  padding-bottom: var(--qc-spacer-md);
}
.qc-piv-header .piv-bottom .search-zone form .input-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.qc-piv-header .piv-bottom .search-zone form .input-group input {
  width: 100%;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--qc-color-blue-dark);
  border-right: none;
}
.qc-piv-header .piv-bottom .search-zone form .input-group input:focus {
  outline: 0.2rem solid var(--qc-color-blue-light);
  border-right: 1px solid black;
  z-index: 1;
}
.qc-piv-header .piv-bottom .search-zone form .input-group input::-moz-placeholder {
  font-size: var(--qc-font-size-sm);
}
.qc-piv-header .piv-bottom .search-zone form .input-group input::placeholder {
  font-size: var(--qc-font-size-sm);
}
.qc-piv-header .piv-bottom .search-zone form .input-group button {
  display: flex;
  justify-content: center;
  border: 1px solid var(--qc-color-blue-dark);
  border-left: none;
  background-color: white;
  width: 4.16rem;
}
.qc-piv-header .piv-bottom .search-zone form .input-group button:focus {
  outline: 0.2rem solid var(--qc-color-blue-light);
  border-left: 1px solid black;
}
.qc-piv-header .piv-bottom .search-zone form .input-group button .qc-search-submit {
  min-width: 2.4rem;
  height: 2.4rem;
  align-self: center;
}
.qc-piv-header .piv-bottom .search-zone form .input-group button .sr-description {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

qc-piv-header [slot=links], .qc-piv-header .piv-top .right-section .links ul, qc-piv-header [slot=links] ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  margin-left: var(--qc-spacer-md);
}
@media (max-width: 575.98px) {
  qc-piv-header [slot=links], .qc-piv-header .piv-top .right-section .links ul, qc-piv-header [slot=links] ul {
    margin-left: var(--qc-spacer-sm);
  }
}
qc-piv-header [slot=links] li, .qc-piv-header .piv-top .right-section .links ul li {
  padding: 0;
  margin: 0;
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
}
qc-piv-header [slot=links] a, .qc-piv-header .piv-top .right-section .links ul a {
  font-family: var(--qc-font-family-header);
  text-decoration: none;
  font-size: 1.2rem;
  color: var(--qc-color-white);
  font-weight: var(--qc-font-weight-regular);
}
qc-piv-header [slot=links] a:focus, .qc-piv-header .piv-top .right-section .links ul a:focus, qc-piv-header [slot=links] a:hover, .qc-piv-header .piv-top .right-section .links ul a:hover {
  text-decoration: underline;
  color: var(--qc-color-white);
}

.go-to-content {
  display: flex;
  height: 0;
}
.go-to-content a {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.go-to-content a:focus {
  width: inherit;
  height: inherit;
  overflow: inherit;
  clip: inherit;
  white-space: inherit;
  color: var(--qc-color-white);
  background-color: var(--qc-color-blue-piv);
}

@media (max-width: 767.98px) {
  .qc-piv-header .piv-top .logo img {
    min-width: 17.5rem;
    width: 17.5rem;
  }
  .qc-piv-header .piv-top .title {
    display: none;
  }
  .qc-piv-header .piv-top .right-section {
    min-width: 13rem;
  }
  .qc-piv-header .piv-bottom .title {
    margin: 0;
    display: flex;
    padding-bottom: var(--qc-spacer-sm);
  }
}
@media (max-width: 575.98px) {
  .qc-piv-header .piv-top {
    height: 7.2rem;
  }
  .qc-piv-header .piv-top .right-section {
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
qc-piv-footer {
  display: block;
  margin-top: 4rem;
  padding-bottom: 3.2rem;
  font-size: var(--qc-font-size-sm);
  line-height: var(--qc-line-height-sm);
  font-weight: var(--qc-font-weight-regular);
}
qc-piv-footer a {
  text-decoration: none;
}
qc-piv-footer a:hover {
  text-decoration: underline;
}
qc-piv-footer ul {
  margin: 0 0 var(--qc-spacer-sm) 0;
  padding: 0;
  width: 100%;
  display: flex;
  list-style-type: none;
  justify-content: center;
  flex-wrap: wrap;
}
qc-piv-footer ul li {
  padding: 0 var(--qc-spacer-sm) var(--qc-spacer-xs);
  margin: 0;
  text-align: center;
}
qc-piv-footer ul li:hover {
  text-decoration: underline;
}

.qc-piv-footer a {
  text-decoration: none;
}
.qc-piv-footer a:hover {
  text-decoration: underline;
}
.qc-piv-footer .qc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.qc-general-alert {
  max-inline-size: var(--qc-max-content-width);
  padding: var(--qc-spacer-md) var(--qc-spacer-sm);
}
@media (max-width: 575.98px) {
  .qc-general-alert {
    padding: var(--qc-spacer-sm);
  }
}
.qc-general-alert .qc-general-alert-elements {
  display: flex;
  padding: 0;
}
.qc-general-alert.warning {
  background-color: var(--qc-color-yellow-pale);
}
.qc-general-alert.general {
  background-color: var(--qc-color-blue-pale);
}
.qc-general-alert .qc-icon {
  min-width: var(--qc-spacer-md);
  height: var(--qc-spacer-md);
}
.qc-general-alert .qc-alert-content {
  font-size: var(--qc-font-size-md);
  line-height: var(--qc-line-height-md);
  font-weight: var(--qc-font-weight-semi-bold);
  margin: 0 var(--qc-spacer-md);
  width: 100%;
}
@media (max-width: 575.98px) {
  .qc-general-alert .qc-alert-content {
    font-size: var(--qc-font-size-sm);
    line-height: var(--qc-line-height-sm);
    font-weight: var(--qc-font-weight-semi-bold);
  }
}
.qc-general-alert .qc-alert-close {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .qc-general-alert .qc-alert-close {
    align-items: inherit;
  }
}
.qc-general-alert .qc-close {
  padding: 0;
  background-color: transparent;
  border: 0;
  display: inline-flex;
  justify-content: center;
}
.qc-general-alert .qc-close .qc-close-alert-icon {
  display: inline-block;
  min-width: var(--qc-spacer-sm);
  height: var(--qc-spacer-sm);
  vertical-align: middle;
  cursor: pointer;
}

qc-alert [slot] *, qc-alert:not([slot=content]) * {
  margin-bottom: 0;
}
qc-alert [slot] a, qc-alert:not([slot=content]) a {
  color: var(--qc-color-blue-dark);
}

.qc-to-top {
  display: flex;
  z-index: 99;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  background-color: var(--qc-color-blue-piv);
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s linear;
  opacity: 0;
  background-size: 1.6rem 2rem;
}
.qc-to-top[demo=false] {
  position: fixed;
  bottom: 9.6rem;
  right: 3.2rem;
}
.qc-to-top[style*=block] {
  display: flex !important;
}
.qc-to-top:hover {
  background-color: var(--qc-color-blue-regular);
}
.qc-to-top:focus {
  background-color: var(--qc-color-blue-regular);
  outline: 2px solid var(--qc-color-blue-light);
  border: 2px solid var(--qc-color-blue-dark);
}
.qc-to-top:active {
  background-color: var(--qc-color-blue-light);
}
.qc-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.qc-to-top span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

hr {
  margin: var(--qc-spacer-lg) 0;
  border: 0;
  border-bottom: 1px solid var(--qc-color-grey-light);
}

.qc-container,
.qc-container-fluid,
.qc-container-xl,
.qc-container-lg,
.qc-container-md,
.qc-container-sm {
  width: 100%;
  padding-right: calc(1 * var(--qc-grid-gutter) / 2);
  padding-left: calc(1 * var(--qc-grid-gutter) / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .qc-container-sm, .qc-container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .qc-container-md, .qc-container-sm, .qc-container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .qc-container-lg, .qc-container-md, .qc-container-sm, .qc-container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .qc-container-xl, .qc-container-lg, .qc-container-md, .qc-container-sm, .qc-container {
    max-width: 1200px;
  }
}
.qc-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1 * var(--qc-grid-gutter) / 2);
  margin-left: calc(-1 * var(--qc-grid-gutter) / 2);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .qc-col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.qc-col-xl,
.qc-col-xl-auto, .qc-col-xl-12, .qc-col-xl-11, .qc-col-xl-10, .qc-col-xl-9, .qc-col-xl-8, .qc-col-xl-7, .qc-col-xl-6, .qc-col-xl-5, .qc-col-xl-4, .qc-col-xl-3, .qc-col-xl-2, .qc-col-xl-1, .qc-col-lg,
.qc-col-lg-auto, .qc-col-lg-12, .qc-col-lg-11, .qc-col-lg-10, .qc-col-lg-9, .qc-col-lg-8, .qc-col-lg-7, .qc-col-lg-6, .qc-col-lg-5, .qc-col-lg-4, .qc-col-lg-3, .qc-col-lg-2, .qc-col-lg-1, .qc-col-md,
.qc-col-md-auto, .qc-col-md-12, .qc-col-md-11, .qc-col-md-10, .qc-col-md-9, .qc-col-md-8, .qc-col-md-7, .qc-col-md-6, .qc-col-md-5, .qc-col-md-4, .qc-col-md-3, .qc-col-md-2, .qc-col-md-1, .qc-col-sm,
.qc-col-sm-auto, .qc-col-sm-12, .qc-col-sm-11, .qc-col-sm-10, .qc-col-sm-9, .qc-col-sm-8, .qc-col-sm-7, .qc-col-sm-6, .qc-col-sm-5, .qc-col-sm-4, .qc-col-sm-3, .qc-col-sm-2, .qc-col-sm-1, .qc-col,
.qc-col-auto, .qc-col-12, .qc-col-11, .qc-col-10, .qc-col-9, .qc-col-8, .qc-col-7, .qc-col-6, .qc-col-5, .qc-col-4, .qc-col-3, .qc-col-2, .qc-col-1 {
  position: relative;
  width: 100%;
  padding-right: calc(1 * var(--qc-grid-gutter) / 2);
  padding-left: calc(1 * var(--qc-grid-gutter) / 2);
}

.qc-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.qc-row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.qc-row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.qc-row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.qc-row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.qc-row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.qc-row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.qc-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.qc-col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.qc-col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.qc-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.qc-col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.qc-col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.qc-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.qc-col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.qc-col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.qc-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.qc-col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.qc-col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.qc-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.qc-order-first {
  order: -1;
}

.qc-order-last {
  order: 13;
}

.qc-order-0 {
  order: 0;
}

.qc-order-1 {
  order: 1;
}

.qc-order-2 {
  order: 2;
}

.qc-order-3 {
  order: 3;
}

.qc-order-4 {
  order: 4;
}

.qc-order-5 {
  order: 5;
}

.qc-order-6 {
  order: 6;
}

.qc-order-7 {
  order: 7;
}

.qc-order-8 {
  order: 8;
}

.qc-order-9 {
  order: 9;
}

.qc-order-10 {
  order: 10;
}

.qc-order-11 {
  order: 11;
}

.qc-order-12 {
  order: 12;
}

.qc-offset-1 {
  margin-left: 8.33333333%;
}

.qc-offset-2 {
  margin-left: 16.66666667%;
}

.qc-offset-3 {
  margin-left: 25%;
}

.qc-offset-4 {
  margin-left: 33.33333333%;
}

.qc-offset-5 {
  margin-left: 41.66666667%;
}

.qc-offset-6 {
  margin-left: 50%;
}

.qc-offset-7 {
  margin-left: 58.33333333%;
}

.qc-offset-8 {
  margin-left: 66.66666667%;
}

.qc-offset-9 {
  margin-left: 75%;
}

.qc-offset-10 {
  margin-left: 83.33333333%;
}

.qc-offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .qc-col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .qc-row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .qc-row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .qc-row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .qc-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .qc-col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .qc-col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .qc-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .qc-col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .qc-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .qc-col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .qc-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .qc-col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .qc-col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .qc-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-order-sm-first {
    order: -1;
  }
  .qc-order-sm-last {
    order: 13;
  }
  .qc-order-sm-0 {
    order: 0;
  }
  .qc-order-sm-1 {
    order: 1;
  }
  .qc-order-sm-2 {
    order: 2;
  }
  .qc-order-sm-3 {
    order: 3;
  }
  .qc-order-sm-4 {
    order: 4;
  }
  .qc-order-sm-5 {
    order: 5;
  }
  .qc-order-sm-6 {
    order: 6;
  }
  .qc-order-sm-7 {
    order: 7;
  }
  .qc-order-sm-8 {
    order: 8;
  }
  .qc-order-sm-9 {
    order: 9;
  }
  .qc-order-sm-10 {
    order: 10;
  }
  .qc-order-sm-11 {
    order: 11;
  }
  .qc-order-sm-12 {
    order: 12;
  }
  .qc-offset-sm-0 {
    margin-left: 0;
  }
  .qc-offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .qc-offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .qc-offset-sm-3 {
    margin-left: 25%;
  }
  .qc-offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .qc-offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .qc-offset-sm-6 {
    margin-left: 50%;
  }
  .qc-offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .qc-offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .qc-offset-sm-9 {
    margin-left: 75%;
  }
  .qc-offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .qc-offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .qc-col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .qc-row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .qc-row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .qc-row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .qc-col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .qc-col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .qc-col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .qc-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .qc-col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .qc-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .qc-col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .qc-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .qc-col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .qc-col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .qc-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-order-md-first {
    order: -1;
  }
  .qc-order-md-last {
    order: 13;
  }
  .qc-order-md-0 {
    order: 0;
  }
  .qc-order-md-1 {
    order: 1;
  }
  .qc-order-md-2 {
    order: 2;
  }
  .qc-order-md-3 {
    order: 3;
  }
  .qc-order-md-4 {
    order: 4;
  }
  .qc-order-md-5 {
    order: 5;
  }
  .qc-order-md-6 {
    order: 6;
  }
  .qc-order-md-7 {
    order: 7;
  }
  .qc-order-md-8 {
    order: 8;
  }
  .qc-order-md-9 {
    order: 9;
  }
  .qc-order-md-10 {
    order: 10;
  }
  .qc-order-md-11 {
    order: 11;
  }
  .qc-order-md-12 {
    order: 12;
  }
  .qc-offset-md-0 {
    margin-left: 0;
  }
  .qc-offset-md-1 {
    margin-left: 8.33333333%;
  }
  .qc-offset-md-2 {
    margin-left: 16.66666667%;
  }
  .qc-offset-md-3 {
    margin-left: 25%;
  }
  .qc-offset-md-4 {
    margin-left: 33.33333333%;
  }
  .qc-offset-md-5 {
    margin-left: 41.66666667%;
  }
  .qc-offset-md-6 {
    margin-left: 50%;
  }
  .qc-offset-md-7 {
    margin-left: 58.33333333%;
  }
  .qc-offset-md-8 {
    margin-left: 66.66666667%;
  }
  .qc-offset-md-9 {
    margin-left: 75%;
  }
  .qc-offset-md-10 {
    margin-left: 83.33333333%;
  }
  .qc-offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .qc-col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .qc-row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .qc-row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .qc-row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .qc-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .qc-col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .qc-col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .qc-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .qc-col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .qc-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .qc-col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .qc-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .qc-col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .qc-col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .qc-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-order-lg-first {
    order: -1;
  }
  .qc-order-lg-last {
    order: 13;
  }
  .qc-order-lg-0 {
    order: 0;
  }
  .qc-order-lg-1 {
    order: 1;
  }
  .qc-order-lg-2 {
    order: 2;
  }
  .qc-order-lg-3 {
    order: 3;
  }
  .qc-order-lg-4 {
    order: 4;
  }
  .qc-order-lg-5 {
    order: 5;
  }
  .qc-order-lg-6 {
    order: 6;
  }
  .qc-order-lg-7 {
    order: 7;
  }
  .qc-order-lg-8 {
    order: 8;
  }
  .qc-order-lg-9 {
    order: 9;
  }
  .qc-order-lg-10 {
    order: 10;
  }
  .qc-order-lg-11 {
    order: 11;
  }
  .qc-order-lg-12 {
    order: 12;
  }
  .qc-offset-lg-0 {
    margin-left: 0;
  }
  .qc-offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .qc-offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .qc-offset-lg-3 {
    margin-left: 25%;
  }
  .qc-offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .qc-offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .qc-offset-lg-6 {
    margin-left: 50%;
  }
  .qc-offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .qc-offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .qc-offset-lg-9 {
    margin-left: 75%;
  }
  .qc-offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .qc-offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .qc-col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .qc-row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .qc-row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .qc-row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .qc-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .qc-col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .qc-col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .qc-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .qc-col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .qc-col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .qc-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .qc-col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .qc-col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .qc-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .qc-col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .qc-col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .qc-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .qc-order-xl-first {
    order: -1;
  }
  .qc-order-xl-last {
    order: 13;
  }
  .qc-order-xl-0 {
    order: 0;
  }
  .qc-order-xl-1 {
    order: 1;
  }
  .qc-order-xl-2 {
    order: 2;
  }
  .qc-order-xl-3 {
    order: 3;
  }
  .qc-order-xl-4 {
    order: 4;
  }
  .qc-order-xl-5 {
    order: 5;
  }
  .qc-order-xl-6 {
    order: 6;
  }
  .qc-order-xl-7 {
    order: 7;
  }
  .qc-order-xl-8 {
    order: 8;
  }
  .qc-order-xl-9 {
    order: 9;
  }
  .qc-order-xl-10 {
    order: 10;
  }
  .qc-order-xl-11 {
    order: 11;
  }
  .qc-order-xl-12 {
    order: 12;
  }
  .qc-offset-xl-0 {
    margin-left: 0;
  }
  .qc-offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .qc-offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .qc-offset-xl-3 {
    margin-left: 25%;
  }
  .qc-offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .qc-offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .qc-offset-xl-6 {
    margin-left: 50%;
  }
  .qc-offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .qc-offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .qc-offset-xl-9 {
    margin-left: 75%;
  }
  .qc-offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .qc-offset-xl-11 {
    margin-left: 91.66666667%;
  }
}