@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  /* Changes to Major version include renaming or deletion of variables. 
   Changes to Minor version include addition of new variables.
   Changes to Revision version include variable value changes. */
  --Version-Number: 2.1;

  /* global styles variables */
  --font-family: 'Manrope', sans-serif;
  --lightest: #fff;
  --light: #F8F8FA;
  --medium: #C4C4C4;
  --dark: #333;
  --darkest: #000;
  --body-background: var(--lightest);
  --body-color: var(--light);
  --headings-font-weight: 700;
  --logo-height: 3.25rem;

  --blue-primary: #1C125F;

  --primary: #E04A00;
  --primary-hover: #A83800;
  --primary-contrast: #A83800;
  --primary-inverse: var(--lightest);

  --secondary: #0F0F0F;
  --secondary-hover: #69696D;
  --secondary-contrast: #69696D;
  --secondary-inverse: var(--lightest);

  --info: #F29600;
  --info-hover: #FFCA61;
  --info-contrast: #FFCA61;
  --info-inverse: var(--lightest);

  --highlight: #A6CDFC;
  --highlight-hover: #5CA4F9;
  --highlight-contrast: #5CA4F9;
  --highlight-inverse: var(--darkest);

  --success: #28a745;
  --danger: #A83800;
  --warning: #F29600;
  --dark: #69696D;
  --white: #fff;
}

/* ------- PER CLIENT CUSTOMIZATION ------- */

/* Assign Font to document */
html,
body {
  font-family: var(--font-family) !important;
}

/* Mapping needed when google font does not correspond */
h1,
.h1 {
  font-weight: var(--headings-font-weight) !important;
}

h2,
.h2 {
  font-weight: var(--headings-font-weight) !important;
}

h3,
.h3 {
  font-weight: var(--headings-font-weight) !important;
}

h4,
.h4 {
  font-weight: var(--headings-font-weight) !important;
}

h5,
.h5 {
  font-weight: var(--headings-font-weight) !important;
}

h6,
.h6 {
  font-weight: var(--headings-font-weight) !important;
}

/* Logo sizing specific to brand */
a.navbar-brand img {
  height: var(--logo-height);
}

/* AmeliaRes Logo Style */
.page-footer img.amelia-logo {
  width: 4.75rem;
}

/* SVG Icon Substitution */
.leg--footer .logo {
  background-image: url(./img/airline-icon.svg);
  width: 20px;
  height: 20px;
}


/*--------------------Fare Type Styling----------------- */
/* The fare type identifier is configured in client specific MongoDB Collections. 
Fare type CSS class name is constrcuted using the following rules: 1. Prefix 'fare-type-', 
2. Replace spaces within fare type identifier by '-'. 3. Transform fare type identifier into lowercase. */
/* Example CSS class for fare type identifier Bronze:*/

app-journey-fare-option-header.fare-type-deal,
app-journey-fare-option-summary.fare-type-deal .btn-select {
  background-color: var(--blue-primary) !important;
}

app-journey-fare-option-header.fare-type-choice,
app-journey-fare-option-summary.fare-type-choice .btn-select {
  background-color: var(--primary) !important;
}

app-journey-fare-option-header.fare-type-regular,
app-journey-fare-option-summary.fare-type-regular .btn-select {
  background-color: var(--info) !important;
}

app-journey-fare-option-header div.h6>span {
  text-align: center !important;
  width: 100% !important;
  display: inline-block !important;
}

.seat-container .seat-design.emergency-exit-seat {
  stroke: var(--warning) !important;
}

/* Customer Customization/Overrides */

/* Remove Rounded Cornders */
/* body .card,
body .rounded,
body .rounded-pill,
body .btn,
body .card-header:first-child,
body .nav-pills .nav-link,
body .form-control,
body .stv-radio-buttons-wrapper label:first-of-type,
body .modal-footer,
body .modal-header,
body .dropdown-menu,
body app-passengers-count-picker .navbar-toggler,
body .custom-select {
  border-radius: 0 !important;
} */

app-site-header.bg-primary,
app-agent-login .agent-login-header {
  background-color: var(--lightest) !important;
  color: var(--secondary) !important;
}

app-site-header .text-white,
app-site-header li::after,
app-site-header .iasi::after,
#language-picker {
  color: var(--secondary) !important;
}