/* 
 * DO NOT EDIT THIS FILE.
 * The Airbus Web Experience use PostCSS to compile CSS
 * the same way as in the Drupal core except it use the .pcss extension.
 * Therefore, you are supposed to edit the pcss file of the same name.
 */

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

html{
  overflow-x:hidden;
  overflow-y:scroll;
  height:-webkit-fill-available;
  color:var(--awx-black);
  background-color:var(--awx-white);
  font-family:var(--awx-font-sans);
  font-size:1rem;
  font-weight:var(--awx-font-weight-normal);
  font-style:normal;
  line-height:var(--awx-line-height);
  overscroll-behavior:none;
  text-rendering:optimizeLegibility;
  -webkit-overflow-scrolling:touch;
  -webkit-font-smoothing:antialiased;
  -webkit-text-size-adjust:100%;
  scrollbar-width:thin;
  scrollbar-color:var(--awx-color-dominant-gray-light) transparent;
}

html,
body{
  margin:0;
  padding:0;
}

@supports (font-variation-settings: normal){
  html{
    font-family:var(--awx-font-sans-variable);
    font-optical-sizing:auto;
  }
}

[data-color-scheme="dark"]{
  scrollbar-color:var(--awx-color-dominant-gray-dark) transparent;
}

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

[data-color-scheme="dark"] a:not([class]),[data-color-scheme="dark"] a.awx-icon--white{
    color:var(--awx-color-dominant-light-active);
  }

a:hover{
  -webkit-text-decoration:underline;
  text-decoration:underline;
  color:var(--awx-color-link-hover);
}

a:active{
  -webkit-text-decoration:underline;
  text-decoration:underline;
  color:var(--awx-color-link-active);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover{
  -webkit-text-decoration:none;
  text-decoration:none;
  color:inherit;
}

h1, h2, h3, h4, h5, h6{
  margin-top:0;
  margin-bottom:var(--awx-sp-h0-5);
}

h1, h2, h3, h4{
  text-wrap:balance;
  hyphens:none;
  font-weight:400;
  line-height:1.2;
}

h5, h6{
  font-weight:700;
  line-height:var(--awx-line-height);
}

h1{
  font-size:calc(1.375rem + 1.5vw);
}

h2{
  font-size:calc(1.325rem + 0.9vw);
}

h3{
  font-size:calc(1.3rem + 0.6vw);
}

h4{
  font-size:calc(1.275rem + 0.3vw);
  font-weight:500;
}

h5{
  font-size:1.25rem;
}

h6{
  font-size:1rem;
  font-weight:700;
}

@media (min-width: 48em){
  h1{
    font-size:2.5rem;
  }

  h2{
    font-size:2rem;
  }

  h3{
    font-size:1.75rem;
  }

  h4{
    font-size:1.5rem;
  }
}

p{
  margin:0 0 var(--awx-sp-v);
  text-wrap:pretty;
}

hr{
  margin:var(--awx-sp-v) 0;
  opacity:0.25;
  color:inherit;
  border:0;
  background-color:currentColor;
}

hr:not([size]){
  height:1px;
}

abbr[title]{
  cursor:help;
  text-decoration:underline;
  -webkit-text-decoration:underline dotted;
  text-decoration:underline dotted;
  -webkit-text-decoration-skip-ink:none;
  text-decoration-skip-ink:none;
}

address{
  margin-bottom:var(--awx-sp-v);
  font-style:normal;
  line-height:inherit;
}

@counter-style numbers{
  system:extends decimal;
  suffix:".   ";
  pad:2 "0";
}

ol{
  list-style:numbers;
}

@counter-style dashes{
  system:cyclic;
  symbols:"—";
  suffix:"    ";
}

ul{
  list-style:dashes;
}

li::marker{
  letter-spacing:-0.1em;
  color:var(--awx-color-dominant-gray-light);
  font-size:1.125em;
  font-weight:500;
}

[data-color-scheme="dark"] li::-csstools-invalid-marker{
    color:var(--awx-color-dominant-light-active);
  }

ol li::marker{
  color:var(--awx-color-dominant-gray);
}

ol, ul{
  padding-left:var(--awx-sp-h2);
}

dl, ol, ul{
  margin:0 0 var(--awx-sp-v);
}

ol ol, ol ul, ul ol, ul ul{
  margin-top:var(--awx-sp-v0-5);
  margin-bottom:0;
}

li{
  margin-bottom:var(--awx-sp-v0-5);
}

dt{
  font-weight:700;
}

dd{
  margin-bottom:var(--awx-sp-v0-5);
  margin-left:0;
}

dt > :first-child{
    margin-top:0;
  }

dd > :first-child{
    margin-top:0;
  }

dt > :last-child{
    margin-bottom:0;
  }

dd > :last-child{
    margin-bottom:0;
  }

blockquote:not(.awx-quote__text){
  position:relative;
  overflow:visible;
  margin:0 0 var(--awx-sp-v);
  padding:var(--awx-sp-v2) var(--awx-sp-h2);
  color:var(--awx-color-dominant-gray-dark);
  border:none;
  border-radius:var(--awx-border-radius);
  background:var(--awx-color-dominant-lighter);
  font-size:1.25rem;
  font-style:normal;
  line-height:1.5;
}

blockquote:not(.awx-quote__text) > :first-child{
    margin-top:0;
  }

blockquote:not(.awx-quote__text) > :last-child{
    margin-bottom:0;
  }

blockquote:not(.awx-quote__text)::before{
    position:absolute;
    z-index:0;
    top:-3rem;
    left:var(--awx-sp-h);
    content:"“";
    opacity:1;
    color:var(--awx-color-dominant-gray);
    font-family:serif;
    font-size:5.5rem;
    font-weight:bold;
    line-height:1.5;
  }

blockquote:not(.awx-quote__text) p{
    position:relative;
    z-index:1;
    float:none;
    overflow:hidden;
    height:auto;
  }

[data-color-scheme="light-gray"] blockquote:not(.awx-quote__text){
    background:var(--awx-white);
  }

[data-color-scheme="dark"] blockquote:not(.awx-quote__text){
    color:var(--awx-color-text-light);
    background:var(--awx-color-dominant-dark);
  }

[data-color-scheme="dark"] blockquote:not(.awx-quote__text)::before{
      color:var(--awx-color-dominant-light-active);
    }

b, strong{
  font-weight:bold;
}

small{
  font-size:0.875em;
}

mark{
  padding:0.2em;
}

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

sub{
  bottom:-0.25em;
}

sup{
  top:-0.5em;
}

code, kbd, pre, samp{
  font-family:var(--awx-font-mono);
  font-size:0.875rem;
}

code, pre, kbd, .awx-page .backtrace{
  display:inline-block;
  padding:1px 6px;
  color:var(--awx-color-code-text);
  border-radius:var(--awx-border-radius);
  background-color:var(--awx-color-code);
  font-size:0.875rem;
  mix-blend-mode:exclusion;
}

pre,
.awx-page .backtrace{
  display:block;
  margin:var(--awx-sp-v0-75) 0;
  padding:var(--awx-sp-v0-75) var(--awx-sp-h0-75);
  font-size:0.625rem;
  mix-blend-mode:luminosity;
}

pre.sf-dump{
  mix-blend-mode:inherit;
}

pre code{
  word-break:normal;
  color:inherit;
  font-size:inherit
}

code{
  word-wrap:break-word;
  overflow-wrap:break-word;
}

a > code{
  color:inherit;
}

kbd kbd{
  padding:0;
  font-size:1em;
  font-weight:700;
}

figure{
  margin:0;
}

img, svg{
  vertical-align:middle;
}

img{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  -o-object-fit:cover;
  object-fit:cover;
  color:rgba(0,0,0,0.56471);
  color:#00000090;
  text-shadow:0 1px 0 rgba(255,255,255,0.37647);
  text-shadow:0 1px 0 #ffffff60;
  font-size:0.875rem;
  font-style:italic;
}

picture{
  align-content:center;
  justify-content:center;
  place-content:center;
}

table{
  caption-side:bottom;
  border-collapse:collapse;
}

caption{
  padding-top:var(--awx-sp-v0-5);
  padding-bottom:var(--awx-sp-v0-5);
  text-align:left;
}

th{
  text-align:inherit;
}

tbody, td, tfoot, th, thead, tr{
  border:solid 0 currentColor;
}

table:not(.awx-table){
  width:100%;
  margin:var(--awx-sp-v2) 0;
  border-color:var(--awx-gray-light);
  box-shadow:0 1px 3px rgba(0, 0, 0, 0.03), 0 10px 30px rgba(0, 0, 0, 0.06);
  box-shadow:0 1px 3px rgb(0 0 0 / 0.03), 0 10px 30px rgb(0 0 0 / 0.06);
  font-size:0.875rem;
}

table:not(.awx-table) caption{
    padding:0.5rem 1rem;
    caption-side:top;
    font-weight:bold;
  }

table:not(.awx-table) + table:not(.awx-table){
    margin-top:0;
  }

table:not(.awx-table) tr{
    transition:background-color var(--awx-ease-in-out) 200ms;
  }

table:not(.awx-table) tr:nth-of-type(even){
    background-color:var(--awx-white);
  }

table:not(.awx-table) tr:nth-of-type(odd):not(:hover){
    background-color:var(--awx-color-dominant-light);
  }

table:not(.awx-table) tr:hover{
    background-color:var(--awx-color-dominant-lighter);
  }

table:not(.awx-table) thead + tbody tr:nth-of-type(odd):not(:hover){
      background-color:var(--awx-white);
    }

table:not(.awx-table) thead + tbody tr:nth-of-type(even):not(:hover){
      background-color:var(--awx-color-dominant-light);
    }

table:not(.awx-table) td,table:not(.awx-table) th{
    padding:0.5rem 1rem;
    border-color:var(--awx-gray-light);
    line-height:1.5rem;
  }

table:not(.awx-table) td > p,table:not(.awx-table) th > p{
      margin:0;
    }

[data-color-scheme="dark"] table:not(.awx-table) tr:nth-of-type(even){
    background-color:var(--awx-color-dominant-dark);
  }

[data-color-scheme="dark"] table:not(.awx-table) tr:nth-of-type(odd):not(:hover){
    background-color:var(--awx-color-dominant-darker);
  }

[data-color-scheme="dark"] table:not(.awx-table) tr:hover{
    background-color:var(--awx-color-accent-hover);
  }

[data-color-scheme="dark"] table:not(.awx-table) thead + tbody tr:nth-of-type(odd):not(:hover){
      background-color:var(--awx-color-dominant-dark);
    }

[data-color-scheme="dark"] table:not(.awx-table) thead + tbody tr:nth-of-type(even):not(:hover){
      background-color:var(--awx-color-dominant-darker);
    }

label{
  display:inline-block;
}

button, input, optgroup, select, textarea{
  margin:0;
}

button, select{
  text-transform:none;
}

[role=button]{
  cursor:pointer;
}

select{
  word-wrap:normal;
  overflow-wrap:normal;
}

select:disabled{
  opacity:1;
}

[list]::-webkit-calendar-picker-indicator{
  display:none;
}

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

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled){
  cursor:pointer;
}

::-moz-focus-inner{
  padding:0;
  border-style:none;
}

textarea{
  resize:vertical;
}

fieldset{
  min-width:0;
  margin:0;
  padding:0;
  border:0;
}

legend{
  float:left;
  width:100%;
  margin-bottom:var(--awx-sp-v0-5);
  padding:0;
  font-size:1.25rem;
  line-height:inherit;
}

legend + *{
  clear:left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field{
  padding:0;
}

::-webkit-inner-spin-button{
  height:auto;
}

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

::-webkit-search-decoration{
  -webkit-appearance:none;
}

::-webkit-color-swatch-wrapper{
  padding:0;
}

::file-selector-button{
  font:inherit;
}

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

output{
  display:inline-block;
}

iframe{
  border:0;
}

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

progress{
  vertical-align:baseline;
}

[hidden]{
  display:none !important;
}

[target="_blank"]::after{
  position:relative;
  top:-0.05em;
  display:inline-block;
  width:1em;
  height:1em;
  margin-right:0.15em;
  margin-left:0.25em;
  content:"";
  transition:transform 600ms var(--awx-ease-in-out);
  vertical-align:middle;
  filter:brightness(8%) sepia(88%) hue-rotate(180deg) saturate(1100%);
  color:currentColor;
  background-image:url(/themes/custom/airbus_web_experience_ui/assets/images/awx-icons-views.svg?c#launch);
  background-repeat:no-repeat;
  background-position:left center;
  background-size:cover;
}

.no-external-link-icon[target="_blank"]::after,
.no-external-link-icon [target="_blank"]::after{
  display:none !important;
}

[target="_blank"]:hover::after{
  transform:translateX(var(--awx-sp-h0-25));
}

video[poster]{
  -o-object-fit:cover;
  object-fit:cover;
}

