@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@400;700&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;
  --font-family: 'Catamaran', sans-serif;
  --lightest: #fff;
  --light: #fdfcfb;
  --light-secondary: #f7f7f7;
  --medium: #C4C4C4;
  --dark: #333;
  --darkest: #000;
  --body-background: var(--lightest);
  --body-color: var(--light);
  --body-font-letter-spacing: .02em;
  --body-font-line-height: 1.9em;
  --headings-font-weight: 400;
  --heading-font-height: 2.4rem;

  --primary: #EF4E58;
  --primary-hover: #f14239;
  --primary-contrast: #fc3c31;
  --primary-inverse: var(--lightest);

  --secondary: #CC3B45;
  --secondary-hover: #ef4a55;
  --secondary-contrast: #f64a56;
  --secondary-inverse: var(--lightest);

  --info: #dc2f27;
  --info-hover: #c92b23;
  --info-contrast: #c92b23;
  --info-inverse: var(--lightest);

  --highlight: hsla(207, 79%, 95%, 1);
  --highlight-hover: hsla(207, 79%, 75%, 1);
  --highlight-contrast: hsla(207, 79%, 25%, 1);
  --highlight-inverse: var(--darkest);

  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --dark: #343a40;
  --white: #fff;
  --logo-height: 5.25rem;
  --logo-width: 19rem;
}

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

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

/* Mapping needed when google font does not correspond */
h1,
.h1 {
  font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-size: var(--heading-font-height) !important;
  /* font-style: italic; */
  color: var(--primary) !important;
}

h2,
.h2 {
  font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-size: var(--heading-font-height) !important;
  /* font-style: italic; */
  color: var(--primary) !important;
}

h3,
.h3 {
  /* font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-style: italic; */
}

h4,
.h4 {
  /* font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-style: italic; */
}

h5,
.h5 {
  /* font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-style: italic; */
}

h6,
.h6 {
  /* font-weight: var(--headings-font-weight) !important;
  font-family: var(--font-family-display) !important;
  font-style: italic; */
}

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

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

.navbar-dark .navbar-text a {
  color: var(--darkest) !important;
}

app-search .check-in-constrain {
  display: flex;
  flex-direction: column;
}

app-search .check-in-constrain .notes {
  order: -1;
  margin-bottom: 1rem;
}

app-survey-input .warning-text,
app-survey-input .text-muted {
  display: none !important;
}

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

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

app-agent-dashboard .welcome-container .h2,
app-agent-dashboard .welcome-container .text-dark {
  color: var(--light)!important;
}

.agent-left-sidebar.bg-light {
  background-color: var(--light-secondary) !important;
}

app-view-reservation-detail .page-body .container-lg .row.mt-3 {
  margin-top: -1px !important;
}

/* BUTTON STYLING */
.btn:not(.btn-link),
.btn.rounded-pill,
app-root .btn,
app-root .btn.rounded-pill {
  font-weight: var(--headings-font-weight) !important;
  border-radius: var(--border-radius) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px !important;
  border-width: 2px;
}

@media (max-width: 767px) {
  .btn,
  .btn.rounded-pill,
  app-root .btn,
  app-root .btn.rounded-pill {
    letter-spacing: 0px;
  }
}

.btn-primary,
.btn-secondary,
.btn-info,
app-root .btn-primary,
app-root .btn-secondary,
app-root .btn-info {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:not(:disabled):hover,
.btn-secondary:not(:disabled):hover,
.btn-info:not(:disabled):hover,
app-root .btn-primary:not(:disabled):hover,
app-root .btn-secondary:not(:disabled):hover,
app-root .btn-info:not(:disabled):hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-primary,
app-root .btn-outline-primary,
app-root .btn-outline-secondary,
app-root .btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.btn-outline-primary:not(:disabled):hover,
.btn-outline-secondary:not(:disabled):hover,
.btn-outline-primary:not(:disabled):hover,
app-root .btn-outline-primary:not(:disabled):hover,
app-root .btn-outline-secondary:not(:disabled):hover,
app-root .btn-outline-primary:not(:disabled):hover {
  background-color: var(--primary) !important;
  color: var(--lightest) !important;
}

.btn-outline-primary.active,
app-root .btn-outline-primary.active {
  background-color: var(--primary) !important;
  color: var(--lightest) !important;
}

app-root .btn-group .btn {
  border-radius: 0 !important;
}

app-root .btn-group .btn:first-child,
app-root .page-header--pnr .rounded-pill {
  border-top-left-radius: var(--border-radius) !important;
  border-bottom-left-radius: var(--border-radius) !important;
}

app-root .btn-group .btn:last-child,
.page-header--pnr .dropdown-toggle {
  border-top-right-radius: var(--border-radius) !important;
  border-bottom-right-radius: var(--border-radius) !important;
}

app-root .page-header--pnr .dropdown-toggle {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.page-header--pnr .rounded-pill {
  border-color: var(--primary) !important;
  border-width: 2px !important;
}

.billing-summary-container .btn {
  font-size: 12px !important;
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

app-travel-document-information-input .travel-document-information__document-type .row {
  margin-bottom: 0px;
}

app-view-reservation-itinerary-summary .page-body .my-4 button {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

app-view-reservation-itinerary-summary .page-body .my-4 button:first-child {
  border-right-width: 0px;
}

app-passenger-modification-flow button,
app-deposit-fund button {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

app-agent-dashboard .pointer.text-secondary.col-3 {
  width: 12rem;
}

app-reservations-booking-info-form .row .col-12:nth-child(2) .mt-md-5 {
  margin-top: 1rem !important;
}

app-company-transactions-search-result .col-4 {
  width: 50%!important;
}

app-checkout-success .col-sm-6.d-flex.align-items-start.flex-column {
  width: 70%!important;
}

app-journey-fare-options .fare-type-sell-messages [class*='fare-type-'] > div img {
  width: 1.5rem;
}

app-boarding-pass-card .align-content-center>div:first-child {
  width: 45%;
}
app-boarding-pass-card .align-content-center>div:nth-child(3) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  align-items: end;
}