:root {
  --grid-gutter: 1.25rem;
  --half-padding: 0.625rem;
  --base-padding: 1.25rem;
  --double-padding: 2.5rem;
  --triple-padding: 3.75rem;
  --base-border-radius: .375rem;
  --font-color: var(--color-type);
  --font-color-light: var(--color-type-light);
  --font-base: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --color-type: #495662;
  --color-type-light: #a3aab0;
  --color-light-blue: #74b9ff;
  --color-baby-blue: #2990e6;
  --color-blue: #005baa;
  --color-dark-blue: #005ba9;
  --color-light-grey: #eeeeee;
  --color-grey: #dddddd;
  --color-dark-grey: #495662;
  --color-cadet: #E1E8EE;
  --color-pigeon: #bdc6cf;
  --color-steel: #a3aab0;
  --color-success: #7DC855;
  --color-red: #be1e2d;
  --color-business: #E8F3FC;
  --color-dark-business: #A1C4E6;
  --color-maroon: #af554c;
  --color-orange: #f79c34;
  --color-green: #4caf50;
  --box-shadow: 1px 2px 10px #00000029; }

* {
  margin: 0;
  padding: 0;
  /*font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;*/
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; }

html,
body {
  box-sizing: border-box;
  background-color: #f0fbff;
  color: #495662;
  color: var(--font-color);
  font-size: 100%;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%; }

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

a {
  color: #2a92ea; }

a img {
  border: 0; }

ul {
  list-style: square inside; }

ol {
  list-style: decimal inside; }

hr {
  border-top: 1px solid #d3d3d3;
  margin: .5rem 0; }

strong {
  font-weight: 600; }

strong.font-500 {
  font-weight: 500; }

h1 {
  font-size: 2.5rem; }

h2 {
  font-size: 2rem; }

h3 {
  font-size: 1.375rem; }

h4 {
  font-size: 1.125rem; }

h5 {
  font-size: 1rem; }

h6 {
  font-size: .875rem; }

p {
  font-size: 1rem;
  line-height: 1.5rem; }

.grid {
  display: grid;
  grid-gap: 1rem; }

.no-cssgrid .grid {
  display: flex; }

.grid-gap--double {
  grid-gap: 2.5rem;
  grid-gap: var(--double-padding); }

.grid--two {
  grid-template-columns: 1fr 1fr; }

.no-cssgrid .grid--two {
  flex-direction: row;
  flex-wrap: wrap; }
  .no-cssgrid .grid--two .grid-item {
    width: calc((100%/2) - 1rem);
    margin: .5rem; }

.grid--three {
  grid-template-columns: 1fr 1fr 1fr; }
  @media (max-width: 768px) {
    .grid--three {
      grid-template-columns: 1fr; } }

.no-cssgrid .grid--three {
  flex-direction: row;
  flex-wrap: wrap; }
  .no-cssgrid .grid--three .grid-item {
    width: calc(33.33% - 1rem);
    margin: 0 .5rem 1rem .5rem; }
    @media (max-width: 768px) {
      .no-cssgrid .grid--three .grid-item {
        width: 100%;
        margin-bottom: 1.25rem;
        margin-bottom: var(--base-padding); } }
    .no-cssgrid .grid--three .grid-item:last-child {
      padding-right: 0; }

.grid--four {
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media (max-width: 768px) {
    .grid--four {
      grid-template-columns: 1fr 1fr; } }

.no-cssgrid .grid--four {
  flex-direction: row;
  flex-wrap: wrap; }
  .no-cssgrid .grid--four .grid-item {
    width: calc(25% - 1rem);
    margin: .5rem; }
    @media (max-width: 768px) {
      .no-cssgrid .grid--four .grid-item {
        width: calc((100%/2) - 1rem);
        margin: .5rem; } }
  .no-cssgrid .grid--four .megamenu-tile {
    width: calc((100%/4) - 1rem);
    margin: .5rem; }

.grid--dashboard {
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media (max-width: 60em) {
    .grid--dashboard {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 768px) {
    .grid--dashboard {
      grid-template-columns: 1fr 1fr; } }

@media (max-width: 768px) {
  .no-cssgrid .grid--dashboard .grid-item {
    width: calc((100%/2) - 1rem); } }

.grid--five {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }

.no-cssgrid .grid--five {
  flex-direction: row;
  flex-wrap: wrap; }
  .no-cssgrid .grid--five .megamenu-tile {
    width: calc((100%/5) - 1rem);
    margin: .5rem; }

.grid--w-aside {
  grid-template-columns: auto 312px; }
  @media (max-width: 960px) {
    .grid--w-aside {
      grid-template-columns: 1fr;
      display: block !important; }
      .grid--w-aside .grid-item {
        order: 2;
        display: flex;
        flex-direction: column; }
      .grid--w-aside aside.grid-item {
        order: 1; } }

.no-cssgrid .grid--w-aside {
  flex-wrap: wrap; }
  .no-cssgrid .grid--w-aside > .grid-item {
    width: calc(100% - 21.25rem); }
    @media (max-width: 960px) {
      .no-cssgrid .grid--w-aside > .grid-item {
        width: 100% !important; } }
    .no-cssgrid .grid--w-aside > .grid-item:last-child {
      flex: 0 0 20rem;
      margin-left: 1.25rem;
      margin-left: var(--base-padding); }
      @media (max-width: 960px) {
        .no-cssgrid .grid--w-aside > .grid-item:last-child {
          flex: 0 0 auto;
          width: 100%;
          margin-left: 0;
          margin-bottom: 1.25rem;
          margin-bottom: var(--base-padding); } }

.grid--aside-content {
  grid-template-columns: 240px auto; }
  @media (max-width: 960px) {
    .grid--aside-content {
      grid-template-columns: 1fr; }
      .grid--aside-content .grid-item {
        order: 2;
        display: flex;
        flex-direction: column; }
      .grid--aside-content aside.grid-item {
        order: 1; } }

.no-cssgrid .grid--aside-content {
  flex-wrap: wrap; }
  .no-cssgrid .grid--aside-content > .grid-item {
    width: calc(100% - 21.25rem); }
    @media (max-width: 960px) {
      .no-cssgrid .grid--aside-content > .grid-item {
        width: 100% !important; } }
    .no-cssgrid .grid--aside-content > .grid-item:first-child {
      flex: 0 0 20rem;
      margin-right: 1.25rem;
      margin-right: var(--base-padding); }
      @media (max-width: 960px) {
        .no-cssgrid .grid--aside-content > .grid-item:first-child {
          flex: 0 0 auto;
          width: 100%;
          margin-right: 0;
          margin-bottom: 1.25rem;
          margin-bottom: var(--base-padding); } }

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%; }

@media only screen and (min-width: 60em) {
  .container {
    max-width: 70rem;
    /* padding: 0 var(--grid-gutter); not with current grid system */ }
    .container--small {
      max-width: 40rem; } }

.row {
  position: relative;
  width: 100%; }

.row [class^='col-'] {
  float: left;
  margin: .5rem 2%;
  min-height: .125rem; }

.row::after {
  clear: both;
  content: '';
  display: table; }

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%; }

.col-1-sm {
  width: 4.33%; }

.col-2-sm {
  width: 12.66%; }

.col-3-sm {
  width: 21%; }

.col-4-sm {
  width: 29.33%; }

.col-5-sm {
  width: 37.66%; }

.col-6-sm {
  width: 46%; }

.col-7-sm {
  width: 54.33%; }

.col-8-sm {
  width: 62.66%; }

.col-9-sm {
  width: 71%; }

.col-10-sm {
  width: 79.33%; }

.col-11-sm {
  width: 87.66%; }

.col-12-sm {
  width: 96%; }

.hidden-sm {
  display: none; }

.display-block {
  display: block; }

@media only print, only screen and (min-width: 45em) {
  .col-1 {
    width: 4.33%; }
  .col-2 {
    width: 12.66%; }
  .col-3 {
    width: 21%; }
  .col-4 {
    width: 29.33%; }
  .col-5 {
    width: 37.66%; }
  .col-6 {
    width: 46%; }
  .col-7 {
    width: 54.33%; }
  .col-8 {
    width: 62.66%; }
  .col-9 {
    width: 71%; }
  .col-10 {
    width: 79.33%; }
  .col-11 {
    width: 87.66%; }
  .col-12 {
    width: 96%; }
  .hidden-sm {
    display: block; }
  .offset-col-4 {
    margin-left: 29.33% !important; }
  .offset-col-3 {
    margin-left: 24% !important; } }

/*------Grid-------------------------------------------------------------------------------------*/
/*********************************************************************************************

1.  Base code

*********************************************************************************************/
[class*='grid-'] {
  float: left;
  padding: 0px;
  width: 100%; }

.clear-grid {
  clear: both;
  float: inherit; }

.grid-container {
  margin: 0%;
  width: 100%; }

.grid-container:after,
.grid-container:before {
  display: table;
  clear: both;
  content: " "; }

.nest {
  margin: 0 -10px;
  padding: 0;
  width: auto; }

/*********************************************************************************************

2.  Mobile Grid

*********************************************************************************************/
.grid-m-12 {
  width: 100%; }

.grid-m-11 {
  width: 91.666663%; }

.grid-m-10 {
  width: 83.33%; }

.grid-m-9 {
  width: 74.999997%; }

.grid-m-8 {
  width: 66.66666664%; }

.grid-m-7 {
  width: 58.333%; }

.grid-d-6 {
  width: 100%; }

.grid-m-5 {
  width: 41.6665%; }

.grid-m-4 {
  width: 33.33%; }

.grid-m-3 {
  width: 24.99%; }

.grid-m-2 {
  width: 16.66666%; }

.grid-m-1 {
  width: 8.33%; }

.grid-d-2 {
  width: 33.33333%;
  padding-top: 10px;
  padding-bottom: 10px; }

.grid-d-3 {
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px; }

.grid-d-2-5 {
  width: 33.3333%;
  padding-top: 10px;
  padding-bottom: 10px; }

.grid-d-4 {
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px; }

/*********************************************************************************************

3.  Grid 720px+

*********************************************************************************************/
@media (min-width: 720px) {
  .grid-12 {
    width: 100%; }
  .grid-11 {
    width: 91.666663%; }
  .grid-10 {
    width: 83.33%; }
  .grid-9 {
    width: 74.999997%; }
  .grid-8 {
    width: 66.66666664%; }
  .grid-7 {
    width: 58.333%; }
  .grid-d-6 {
    width: 100%; }
  .grid-5 {
    width: 41.6665%; }
  .grid-4 {
    width: 33.33%; }
  .grid-3 {
    width: 24.99%; }
  .grid-2 {
    width: 16.66666%; }
  .grid-1 {
    width: 8.33%; }
  .grid-t-12 {
    width: 100%; }
  .grid-t-11 {
    width: 91.666663%; }
  .grid-t-10 {
    width: 83.33%; }
  .grid-t-9 {
    width: 74.999997%; }
  .grid-t-8 {
    width: 66.66666664%; }
  .grid-t-7 {
    width: 58.333%; }
  .grid-t-6 {
    width: 50%; }
  .grid-t-5 {
    width: 41.6665%; }
  .grid-t-4 {
    width: 33.33%; }
  .grid-t-3 {
    width: 24.99%; }
  .grid-t-2 {
    width: 16.66666%; }
  .grid-t-1 {
    width: 8.33%; }
  .grid-d-2 {
    width: 33.333333%; }
  .grid-d-3 {
    width: 25%;
    padding-top: 5px;
    padding-bottom: 0px; }
  .grid-d-2-5 {
    width: 33.33333%;
    padding-top: 0px;
    padding-bottom: 0px; }
  .grid-d-4 {
    width: 33.33333%;
    padding-top: 5px;
    padding-bottom: 0px; } }

/*********************************************************************************************

4.  Grid 1024px+

*********************************************************************************************/
@media only screen and (min-width: 1024px) {
  .grid-tl-12 {
    width: 100%; }
  .grid-tl-11 {
    width: 91.666663%; }
  .grid-tl-10 {
    width: 83.33%; }
  .grid-tl-9 {
    width: 74.999997%; }
  .grid-tl-8 {
    width: 66.66666664%; }
  .grid-tl-7 {
    width: 58.333%; }
  .grid-d-6 {
    width: 50%; }
  .grid-tl-5 {
    width: 41.6665%; }
  .grid-tl-4 {
    width: 33.33%; }
  .grid-tl-3 {
    width: 24.99%; }
  .grid-tl-2 {
    width: 16.66666%; }
  .grid-tl-1 {
    width: 8.33%; }
  .grid-d-2 {
    width: 16.66666%;
    padding-top: 10px;
    padding-bottom: 10px; }
  .grid-d-3 {
    width: 25%;
    padding-top: 10px;
    padding-bottom: 10px; }
  .grid-d-2-5 {
    width: 20%;
    padding-top: 10px;
    padding-bottom: 10px; }
  .grid-d-4 {
    width: 33.3333%;
    padding-top: 10px;
    padding-bottom: 10px; } }

/*********************************************************************************************

5.  Grid 1200px+

*********************************************************************************************/
@media only screen and (min-width: 1200px) {
  .grid-container {
    max-width: 1180px;
    margin: 0 auto; }
  .grid-container-fluid {
    max-width: 90%;
    margin: 0 5%; }
  .grid-d-12 {
    width: 100%; }
  .grid-d-11 {
    width: 91.666663%; }
  .grid-d-10 {
    width: 83.33%; }
  .grid-d-9 {
    width: 74.999997%; }
  .grid-d-8 {
    width: 66.66666664%; }
  .grid-d-7 {
    width: 58.333%; }
  .grid-d-6 {
    width: 50%; }
  .grid-d-5 {
    width: 41.6665%; }
  .grid-d-4 {
    width: 33.3333%;
    padding-top: 0px;
    padding-bottom: 0px; }
  .grid-d-3 {
    width: 24.99%; }
  .grid-d-2 {
    width: 16.66%;
    padding-top: 0px;
    padding-bottom: 0px; }
  .grid-d-1 {
    width: 8.33%; }
  .grid-d-3 {
    width: 25%;
    padding-top: 0px;
    padding-bottom: 0px; }
  .grid-d-2-5 {
    width: 20%;
    padding-top: 0px;
    padding-bottom: 0px; } }

.grid-d-2.img-link-list.no-margin.max-30 {
  width: 16.66%; }

body::before {
  content: "xs";
  display: none;
  visibility: hidden; }
  @media (min-width: 375px) {
    body::before {
      content: "sm"; } }
  @media (min-width: 768px) {
    body::before {
      content: "md"; } }
  @media (min-width: 60em) {
    body::before {
      content: "lg"; } }
  @media (min-width: 80em) {
    body::before {
      content: "xl"; } }

.aa-icon {
  width: 1em;
  height: 1em;
  vertical-align: middle; }
  .aa-icon--white {
    color: white; }
  .aa-icon--light-blue {
    color: #74b9ff;
    color: var(--color-light-blue); }
  .aa-icon--active {
    color: #2990e6;
    color: var(--color-baby-blue); }
  .aa-icon--small {
    width: 24px;
    height: 24px; }
  .aa-icon--medium {
    width: 32px;
    height: 32px; }
  .aa-icon--large {
    width: 60px;
    height: 60px; }

.button-container-center {
  text-align: center; }

.button {
  appearance: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  white-space: normal;
  margin: 0;
  padding: .5rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: #2990e6;
  background-color: var(--color-baby-blue);
  border: 2px solid #2990e6;
  border: 2px solid var(--color-baby-blue);
  border-radius: 6px;
  color: white;
  transition: all 0.2s ease-in; }
  .button:hover {
    background-color: #005baa;
    background-color: var(--color-blue);
    border: 2px solid #005baa;
    border: 2px solid var(--color-blue);
    text-decoration: none;
    outline: none;
    color: white; }
  .button__inverted {
    background-color: transparent;
    border: 2px solid white; }
    .button__inverted:hover {
      background-color: white;
      border: 2px solid white;
      color: #005baa;
      color: var(--color-blue); }
  .button--large {
    font-size: 1.25rem;
    padding: 1rem 1.5rem; }
  .button[disabled] {
    opacity: 0.3;
    cursor: not-allowed; }

.btn {
  -webkit-appearance: none;
  background: #ffffff;
  border: 0.1rem solid #aaaaaa;
  border-radius: .2rem;
  color: #888888;
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  height: 3.2rem;
  line-height: 1.6rem;
  outline: 0;
  padding: .7rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: .15s ease;
  user-select: none;
  vertical-align: middle;
  white-space: nowrap; }

.btn:hover {
  background: #f3f3f3;
  color: #000000; }

.btn:active {
  background: #d3d3d3;
  color: #000000; }

.btn.btn-shadow {
  border: 0;
  box-shadow: inset -3px -3px 0 0 #bfbfbf; }

.btn.btn-shadow:hover {
  box-shadow: inset -3px -3px 0 0 #b3b3b3; }

.btn.btn-shadow:active {
  box-shadow: none; }

.btn.btn-primary {
  background: #f79c34;
  border-color: #f79c34;
  color: #ffffff; }

.btn.btn-secondary {
  background: #2990e6;
  border-color: #2990e6;
  color: #ffffff; }

.btn.btn-secondary:hover {
  background: #005baa;
  border-color: #005baa; }

.btn.btn-secondary:active {
  background: #064579;
  border-color: #164165; }

.btn.btn-secondary.btn-shadow {
  border: 0;
  box-shadow: inset -3px -3px 0 0 #126bb6; }

.btn.btn-secondary.btn-shadow:hover {
  box-shadow: inset -3px -3px 0 0 #052d4e; }

.btn.btn-secondary.btn-shadow:active {
  box-shadow: none; }

.btn.btn-link {
  background: transparent;
  border-color: transparent;
  color: #2990e6; }

.btn.btn-sm {
  font-size: 1.2rem;
  height: 2.4rem;
  line-height: 1.2rem;
  padding: .4rem .8rem; }

.btn.btn-xsm {
  font-size: 1rem;
  height: 2.2rem;
  line-height: 1.2rem;
  padding: .4rem .8rem; }

.btn.btn-xxsm {
  color: #000000;
  font-size: .8rem;
  height: 2rem;
  line-height: 2rem;
  padding: .1rem; }

.btn.btn-lg {
  font-size: 1.8rem;
  height: 4.2rem;
  line-height: 2rem;
  padding: 1rem 1.5rem; }

.btn.btn-block {
  display: block;
  width: 100%; }

.btn .btn-icon {
  max-height: 1.5rem;
  vertical-align: middle; }

.btn.btn-curved {
  border-radius: .75rem; }

.btn.passenger-select.selected {
  background: #f79c34;
  border-color: #f79c34;
  box-shadow: none;
  color: #ffffff; }

.lightblue-btn {
  width: 145px;
  height: 40px;
  background-color: #74b9ff;
  background-color: var(--color-light-blue);
  color: #005baa;
  color: var(--color-blue);
  text-align: center;
  line-height: 1.2rem;
  border: none;
  line-height: 1;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 2px; }

.darkblue-btn {
  width: 145px;
  height: 40px;
  background-color: #005baa;
  background-color: var(--color-blue);
  color: #74b9ff;
  color: var(--color-light-blue);
  text-align: center;
  line-height: 1.2rem;
  border: none;
  line-height: 1;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 2px; }

.lightblue-btn:hover,
.lightblue-btn:hover:focus {
  background-color: #005baa;
  background-color: var(--color-blue);
  color: #74b9ff;
  color: var(--color-light-blue); }

.darkblue-btn:hover,
.darkblue-btn:hover:focus {
  background-color: #74b9ff;
  background-color: var(--color-light-blue);
  color: #005baa;
  color: var(--color-blue); }

button {
  cursor: pointer; }
  button:disabled {
    cursor: not-allowed; }

.close {
  cursor: pointer;
  font-size: 12pt; }

#browsehappy {
  background: #dd5147;
  padding: 20px 0;
  box-sizing: border-box; }
  #browsehappy p,
  #browsehappy h3 {
    color: #fff;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box; }
  #browsehappy a {
    color: #fff;
    font-weight: 500; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

.spin {
  animation: spin 1s linear infinite; }

.alert {
  background-color: #4caf50;
  color: white;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  padding: 1.25rem;
  padding: var(--base-padding);
  border-radius: .375rem;
  border-radius: var(--base-border-radius); }

.alert p {
  font-size: 0.75rem;
  line-height: 18px; }

.alert.alert-danger {
  background-color: #dd5147; }

.hero-bkg .alert.alert-danger {
  font-size: 18px;
  padding: 20px;
  border-radius: 4px;
  text-align: center;
  background-color: #c92814;
  margin: 0;
  font-weight: 300;
  -webkit-animation: fadein 1s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 1s;
  /* Firefox < 16 */
  -ms-animation: fadein 1s;
  /* Internet Explorer */
  -o-animation: fadein 1s;
  /* Opera < 12.1 */
  animation: fadein 1s; }

.alert.alert-close {
  color: #ffffff;
  cursor: pointer;
  float: right;
  font-size: 22px;
  font-weight: bold;
  line-height: 20px;
  margin-left: 15px;
  transition: .3s; }

.alert.alert-close:hover {
  color: #000000; }

.auth0-lock.auth0-lock .auth0-global-message.auth0-global-message-success {
  background: #4caf50 !important;
  background: var(--color-green) !important; }

.form-group label {
  color: #495662;
  font-size: 14px;
  font-weight: 400;
  line-height: 2rem;
  overflow: hidden;
  padding: 0 10px 10px 0px;
  white-space: nowrap; }

.form-group select {
  height: 38px; }

.form-control {
  background-color: #ffffff;
  border: 1px solid #eee;
  box-sizing: border-box;
  color: #495662;
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  height: 38px;
  line-height: 1;
  padding-left: 10px;
  vertical-align: middle;
  width: 100%; }

fieldset {
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }
  fieldset legend {
    font-size: 1.125rem;
    font-weight: 500;
    color: #2990e6;
    color: var(--color-baby-blue);
    float: left;
    width: 100%;
    margin-bottom: .5rem; }

.no-cssgrid .control-group select {
  padding-right: .5rem; }

.control-group__inline {
  display: flex; }
  .control-group__inline .small--input {
    flex: 0 0 3rem;
    min-width: 3rem; }
  .control-group__inline input, .control-group__inline .select-input {
    margin-right: .5rem !important; }
    .control-group__inline input:last-child, .control-group__inline .select-input:last-child {
      margin-right: 0 !important;
      min-width: 3rem; }

.control-group span {
  font-size: 1rem; }

.control-group label {
  width: 100%;
  display: inline-flex;
  font-size: 1rem;
  line-height: 1rem;
  padding: 1rem 0 .5rem;
  margin: 0;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 0; }

.control-group input, .control-group select, .control-group textarea {
  width: 100%;
  min-height: 41px;
  display: block;
  font-size: 1rem;
  line-height: 1rem;
  padding: .5rem;
  margin: 0;
  border-radius: 0;
  vertical-align: middle;
  box-shadow: none;
  border: 2px solid #E1E8EE;
  border-radius: .375rem;
  border-radius: var(--base-border-radius); }
  .control-group input:focus, .control-group select:focus, .control-group textarea:focus {
    outline: 0;
    border-color: #74b9ff;
    border-color: var(--color-light-blue); }

.control-group select {
  padding-right: 1.5rem; }

.control-group input::placeholder, .control-group textarea::placeholder, .control-group select option:disabled, .control-group select:invalid {
  color: #bdc6cf; }

.control-group .validation-error {
  border-color: #af554c;
  border-color: var(--color-maroon); }

.control-group .select-input {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1; }
  .control-group .select-input::after {
    font-size: 1.25rem;
    font-family: material icons;
    pointer-events: none;
    content: 'unfold_more';
    width: 1rem;
    position: absolute;
    top: 10px;
    right: .5rem;
    color: #bdc6cf !important; }

.control-group select {
  appearance: none; }
  .control-group select:invalid {
    color: #bdc6cf !important; }
  .control-group select [disabled] {
    color: #bdc6cf !important; }
  .control-group select option {
    color: #495662; }

.control-group .checkbox-input {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }
  .control-group .checkbox-input label {
    position: initial; }
  .control-group .checkbox-input input[type=checkbox] {
    margin-right: .5rem;
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer; }
  .control-group .checkbox-input input[type=checkbox] + label {
    position: relative;
    top: 0;
    cursor: pointer;
    pointer-events: auto;
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    color: #5E6977;
    z-index: 1; }
  .control-group .checkbox-input input[type=checkbox] + label::before {
    content: "";
    -webkit-appearance: none;
    background-color: #eee;
    border-radius: .375rem;
    border-radius: var(--base-border-radius);
    padding: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1rem;
    width: 24px;
    height: 24px; }
  .control-group .checkbox-input input[type=checkbox]:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #86939E;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg); }

.half--input {
  width: 50%;
  display: inline-flex;
  flex-direction: column; }
  @media (max-width: 768px) {
    .half--input {
      width: 100%; } }

.third--input {
  width: 33.33%;
  display: inline-flex;
  flex-direction: column; }
  @media (max-width: 768px) {
    .third--input {
      width: 100%; } }

.input--padright {
  padding-right: 0.625rem;
  padding-right: var(--half-padding); }
  @media (max-width: 768px) {
    .input--padright {
      padding-right: 0; } }

.input--padleft {
  padding-left: 0.625rem;
  padding-left: var(--half-padding); }
  @media (max-width: 768px) {
    .input--padleft {
      padding-left: 0; } }

@media only screen and (max-width: 700px) {
  .form-group .empty-label {
    padding: 0px;
    margin: 0px; } }

input.parsley-success {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #468847; }

input.parsley-error {
  background-color: #f3f3f3;
  border: 1px solid #ff0000;
  color: #ff0000;
  outline: none; }

select.parsley-success {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #468847; }

select.parsley-error {
  background-color: #f3f3f3;
  border: 1px solid #ff0000;
  color: #ff0000;
  outline: none; }

textarea.parsley-success {
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  color: #468847; }

textarea.parsley-error {
  background-color: #f3f3f3;
  border: 1px solid #ff0000;
  color: #ff0000;
  outline: none; }

.parsley-errors-list {
  -moz-transition: .3s ease-in;
  -o-transition: .3s ease-in;
  -webkit-transition: .3s ease-in;
  color: #ff0000;
  font-size: .75rem;
  line-height: .9em;
  list-style-type: none;
  margin: 5px 0 3px;
  opacity: 0;
  padding: 0;
  transition: .3s ease-in; }

.parsley-errors-list.filled {
  opacity: 1; }

.checkbox {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: white;
  border-radius: 100%;
  box-sizing: border-box;
  border: 1px solid #dedede;
  margin: 0 3px 3px 0;
  font-size: 12px; }
  .checkbox use {
    display: none; }
  .checkbox--square {
    border-radius: 0; }

:checked + .checkbox,
:checked + * .checkbox,
.checkbox--checked {
  background-color: #74b9ff;
  background-color: var(--color-light-blue);
  border-color: #74b9ff;
  border-color: var(--color-light-blue); }
  :checked + .checkbox use,
  :checked + * .checkbox use,
  .checkbox--checked use {
    display: block; }

label:hover .checkbox, .checkbox:hover {
  border-color: #74b9ff;
  border-color: var(--color-light-blue); }

/* iCheck plugin Square skin, blue
----------------------------------- */
.icheckbox_square-blue,
.iradio_square-blue {
  display: inline-block;
  *display: inline;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  background: url("/images/aa/responsive/icheck/blue.png") no-repeat;
  border: none;
  cursor: pointer; }

.icheckbox_square-blue {
  background-position: 0 0; }

.icheckbox_square-blue.hover {
  background-position: -24px 0; }

.icheckbox_square-blue.checked {
  background-position: -48px 0; }

.icheckbox_square-blue.disabled {
  background-position: -72px 0;
  cursor: default; }

.icheckbox_square-blue.checked.disabled {
  background-position: -96px 0; }

.iradio_square-blue {
  background-position: -120px 0; }

.iradio_square-blue.hover {
  background-position: -144px 0; }

.iradio_square-blue.checked {
  background-position: -168px 0; }

.iradio_square-blue.disabled {
  background-position: -192px 0;
  cursor: default; }

.iradio_square-blue.checked.disabled {
  background-position: -216px 0; }

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5 / 4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
  .icheckbox_square-blue,
  .iradio_square-blue {
    background-image: url("/images/aa/responsive/icheck/blue@2x.png");
    -webkit-background-size: 240px 24px;
    background-size: 240px 24px; } }

/* iCheck.scss
----------------------------------- */
@media only screen and (max-width: 700px) {
  .icheckbox_square-blue,
  .iradio_square-blue {
    border-radius: 25px;
    border: 0; }
  .iradio_square-blue,
  .iradio_square-blue.hover {
    background-position: -144px 0 !important; }
  .iradio_square-blue.checked {
    background-position: -168px 0 !important; } }

.plane-loader {
  width: 120px;
  height: 120px;
  margin: auto;
  position: relative; }
  .plane-loader__plane, .plane-loader__wheel {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute; }

.heading {
  font-size: 32px;
  padding: 0;
  margin: 0 0 2.5rem;
  margin: 0 0 var(--double-padding);
  text-align: center; }
  .heading span {
    font-size: 1rem; }
  .heading--color--white {
    color: white; }
  .heading--color--blue {
    color: #2990e6;
    color: var(--color-baby-blue); }
  .heading--border-color--white {
    border-color: white; }
  .heading--size--small {
    padding: 0 0 0.625rem;
    padding: 0 0 var(--half-padding);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
  .heading--size--medium {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    margin-bottom: var(--double-padding); }
  .heading--no-border {
    border-bottom: none;
    padding-bottom: 0; }
  .heading--left {
    text-align: left; }
  .heading--bold {
    font-weight: 600; }
  .heading--normal-spacing {
    letter-spacing: initial; }

.heading-alt {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.25; }
  @media screen and (min-width: 700px) {
    .heading-alt {
      font-size: 28px; } }
  .heading-alt--small {
    font-size: 18px; }
    @media screen and (min-width: 700px) {
      .heading-alt--small {
        font-size: 24px; } }

.background--blue {
  background-color: #005baa;
  background-color: var(--color-blue); }

.background--light-blue {
  background-color: #74b9ff;
  background-color: var(--color-light-blue); }

.background--baby-blue {
  background-color: #2990e6;
  background-color: var(--color-baby-blue); }

.background--cadet {
  background-color: #E1E8EE;
  background-color: var(--color-cadet); }

.background--white {
  background-color: #fff; }

.background--light-grey {
  background-color: #eeeeee;
  background-color: var(--color-light-grey); }

.image-background,
.image-contain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .image-background.compat-object-fit,
  .image-contain.compat-object-fit {
    background-position: center center;
    background-size: cover; }
    .image-background.compat-object-fit img,
    .image-contain.compat-object-fit img {
      display: none; }
  .image-background img,
  .image-contain img {
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.image-contain.compat-object-fit {
  background-size: contain; }

.image-contain img {
  object-fit: contain; }

header.header {
  background-color: #fff; }

img.logo {
  margin-top: 15px;
  max-width: 150px; }

svg.logo {
  max-width: 140px;
  margin: 6px 0; }

ul.main-nav {
  display: inline-block;
  margin-top: 25px; }

ul.main-nav li.main-nav-item {
  display: inline; }

ul.main-nav li.main-nav-item a {
  color: #005baa;
  color: var(--color-blue);
  padding: 0 10px;
  text-decoration: none;
  font-weight: 500; }

ul.main-nav li.main-nav-item a:hover,
ul.main-nav li.main-nav-item a:focus {
  text-decoration: none;
  color: #74b9ff;
  color: var(--color-light-blue); }

ul.main-nav li:first-child a {
  padding-left: 0; }

ul.main-nav li a img.main-nav-currency-flag {
  margin-right: 5px;
  vertical-align: middle;
  width: 22px; }

ul.main-nav li a .main-nav-currency-caret {
  width: 1.5em;
  height: 1.5em; }

.my-account-login {
  position: relative;
  top: -5px; }

@media only screen and (max-width: 400px) {
  img.logo {
    max-width: 130px; } }

@media only screen and (max-width: 480px) {
  .airline-content .airline-general-information {
    overflow: hidden; }
  header .container {
    width: 100%; } }

@media only screen and (max-width: 767px) {
  svg.logo {
    max-width: 100px;
    z-index: 101;
    position: relative; } }

.header-hubpage {
  background-color: #fff;
  border-bottom: none; }
  .header-hubpage a {
    text-decoration: none;
    text-transform: uppercase; }
  .header-hubpage ul {
    display: flex;
    flex-direction: column; }
    .header-hubpage ul li {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center; }
      .header-hubpage ul li a {
        display: block;
        padding: calc(1.25rem / 2);
        padding: calc(var(--base-padding) / 2);
        color: #495662;
        color: var(--color-dark-grey);
        position: relative; }
        @media (min-width: 768px) {
          .header-hubpage ul li a {
            padding: 0; } }
        .header-hubpage ul li a:before, .header-hubpage ul li a:after {
          content: "";
          display: block;
          position: absolute;
          width: 2px;
          height: 16px;
          bottom: 8px;
          transition: opacity .5s ease;
          height: 22px;
          opacity: 0;
          background-color: #005ba9;
          background-color: var(--color-dark-blue); }
          @media (min-width: 768px) {
            .header-hubpage ul li a:before, .header-hubpage ul li a:after {
              bottom: -2px; } }
        .header-hubpage ul li a:before {
          left: -10px; }
        .header-hubpage ul li a:after {
          right: -10px; }
      .header-hubpage ul li:hover a:before, .header-hubpage ul li:hover a:after,
      .header-hubpage ul li.active a:before,
      .header-hubpage ul li.active a:after {
        opacity: 1; }
  .header-hubpage .main-nav {
    border-bottom: 1px solid #495662;
    border-bottom: 1px solid var(--color-dark-grey); }
    .header-hubpage .main-nav .container {
      padding: 0 0 0 1.25rem;
      padding: 0 0 0 var(--grid-gutter); }
  .header-hubpage .hubpage-nav {
    background-color: white;
    width: 100%;
    text-align: center; }
    @media (min-width: 768px) {
      .header-hubpage .hubpage-nav ul {
        flex-direction: row; } }
    .header-hubpage .hubpage-nav ul li {
      flex: 1 1 auto; }
    @media (min-width: 768px) {
      .header-hubpage .hubpage-nav ul {
        order: 2;
        padding: 0; } }
    @media (min-width: 768px) {
      .header-hubpage .hubpage-nav {
        text-align: left;
        border-bottom: 1px solid #74b9ff;
        border-bottom: 1px solid var(--color-light-blue); } }
    .header-hubpage .hubpage-nav > div {
      display: flex;
      flex-direction: column; }
      @media (min-width: 768px) {
        .header-hubpage .hubpage-nav > div {
          flex-direction: row; } }
    .header-hubpage .hubpage-nav__title {
      flex: 0 0 15%;
      order: 1;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media (min-width: 768px) {
        .header-hubpage .hubpage-nav__title {
          justify-content: flex-start; } }
      .header-hubpage .hubpage-nav__title a {
        display: block;
        padding: calc(1.25rem / 2);
        padding: calc(var(--base-padding) / 2);
        color: #005ba9;
        color: var(--color-dark-blue);
        font-size: 120%;
        font-weight: 600; }
    .header-hubpage .hubpage-nav__list {
      display: none;
      flex: 1 1 100%;
      order: 3;
      padding: 1.25rem;
      padding: var(--base-padding); }
      @media (min-width: 768px) {
        .header-hubpage .hubpage-nav__list {
          display: block; } }
    .header-hubpage .hubpage-nav__search-form {
      flex: 1 1 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      order: 2;
      border-bottom: 2px solid #74b9ff;
      border-bottom: 2px solid var(--color-light-blue); }
      @media (min-width: 768px) {
        .header-hubpage .hubpage-nav__search-form {
          justify-content: flex-end;
          border-bottom: none;
          order: 3; } }
      .header-hubpage .hubpage-nav__search-form label {
        position: relative; }
        .header-hubpage .hubpage-nav__search-form label::before {
          font-family: "Material Icons";
          font-size: 22px;
          font-feature-settings: 'liga';
          content: "search";
          width: 24px;
          height: 24px;
          position: absolute;
          left: 10px;
          top: 0;
          z-index: 1; }
      .header-hubpage .hubpage-nav__search-form input {
        border: 1px solid #495662;
        border: 1px solid var(--color-dark-grey);
        border-radius: 6px;
        padding: calc(1.25rem / 2) calc(1.25rem / 2) calc(1.25rem / 2) calc(1.25rem * 2);
        padding: calc(var(--base-padding) / 2) calc(var(--base-padding) / 2) calc(var(--base-padding) / 2) calc(var(--base-padding) * 2);
        margin-bottom: 1.25rem;
        margin-bottom: var(--base-padding);
        position: relative;
        height: 42px;
        -webkit-appearance: none; }
        @media (min-width: 768px) {
          .header-hubpage .hubpage-nav__search-form input {
            margin: 0; } }
  .header-hubpage .hubpage-nav-mobile {
    display: none; }
    .header-hubpage .hubpage-nav-mobile--show {
      position: absolute;
      width: 100%;
      background: white;
      display: block;
      border-bottom: 1px solid #eeeeee;
      z-index: 10; }
    @media (min-width: 768px) {
      .header-hubpage .hubpage-nav-mobile {
        display: none; } }
  .header-hubpage .burger-menu {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 44px;
    margin-left: auto; }
    @media (min-width: 768px) {
      .header-hubpage .burger-menu {
        display: none; } }
    .header-hubpage .burger-menu svg {
      width: 24px;
      height: 24px; }
  .header-hubpage--simple {
    border-bottom: 1px solid #495662;
    border-bottom: 1px solid var(--font-color);
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
    .header-hubpage--simple .hubpage-nav {
      border-bottom: none; }
      .header-hubpage--simple .hubpage-nav__search-form {
        border-bottom: none; }

.nav-open .hubpage-nav__search-form {
  border-bottom: 2px solid white; }

html.megamenu-open {
  position: fixed;
  overflow-y: scroll; }

.main-nav {
  height: 100%;
  height: 3.5rem; }
  @media (min-width: 768px) {
    .main-nav {
      height: 5.25rem; } }

.main-nav .container {
  padding: 0 1.25rem;
  padding: 0 var(--grid-gutter);
  height: 100%;
  align-items: center;
  position: relative; }

.container-flex {
  display: flex; }

.main-logo {
  margin-right: 3rem; }
  @media (max-width: 1250px) {
    .main-logo {
      margin-right: 1.25rem;
      margin-right: var(--base-padding); } }

.main-menu {
  display: flex; }
  @media (max-width: 768px) {
    .main-menu {
      display: none !important; } }
  .main-menu .sub-menu {
    display: none; }

.main-tools {
  display: flex;
  margin-left: auto; }
  @media (max-width: 768px) {
    .main-tools {
      display: none !important; } }
  .main-tools .sub-menu {
    display: none; }

.main-nav-button {
  display: none;
  align-items: center; }
  .main-nav-button .aa-icon {
    width: 24px;
    height: 24px; }
  @media (max-width: 768px) {
    .main-nav-button {
      display: flex !important; } }

.menu-navigation {
  display: flex; }
  .menu-navigation .menu-item {
    position: relative;
    list-style: none; }
    .menu-navigation .menu-item:hover::before {
      width: 100%; }
    .menu-navigation .menu-item::before {
      content: "";
      width: 0;
      height: 2px;
      position: absolute;
      bottom: -2px;
      z-index: 1;
      background-color: #74b9ff;
      background-color: var(--color-light-blue);
      transition: width .3s ease; }
      @media (max-width: 768px) {
        .menu-navigation .menu-item::before {
          display: none; } }
    @media (min-width: 769px) and (max-width: 920px) {
      .menu-navigation .menu-item:last-child {
        display: none; } }
    .menu-navigation .menu-item.megamenu-open {
      border-color: #74b9ff;
      border-color: var(--color-light-blue); }
      .menu-navigation .menu-item.megamenu-open::before {
        content: "";
        width: 100%;
        height: 2px;
        display: block;
        position: absolute;
        bottom: -2px;
        z-index: 1;
        background-color: #74b9ff;
        background-color: var(--color-light-blue); }
      .menu-navigation .menu-item.megamenu-open a .aa-icon {
        transform: rotate(180deg);
        transition: transform .2s ease; }
    .menu-navigation .menu-item a {
      font-size: 0.875rem;
      font-weight: 500;
      text-decoration: none;
      color: #495662;
      color: var(--font-color);
      display: inline-flex;
      align-items: center;
      padding: .5rem; }
      .menu-navigation .menu-item a .aa-icon {
        font-size: 19px;
        font-size: 1.188rem; }
    .menu-navigation .menu-item .avatar {
      height: 1rem;
      width: 1rem;
      margin-right: .5rem;
      border-radius: 50%; }
    .menu-navigation .menu-item--business {
      background-color: #A1C4E6;
      background-color: var(--color-dark-business);
      border-radius: .375rem;
      border-radius: var(--base-border-radius); }
      .menu-navigation .menu-item--business:hover {
        background-color: #85a2be;
        border-color: #85a2be; }
      .menu-navigation .menu-item--business::before {
        display: none; }
      .menu-navigation .menu-item--business a {
        color: white; }
  .menu-navigation--aside {
    display: block; }
    @media (max-width: 960px) {
      .menu-navigation--aside {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; } }
    .menu-navigation--aside .menu-item {
      border-radius: 0;
      border: 0;
      border-bottom: 1px solid #dddddd;
      border-bottom: 1px solid var(--color-grey);
      padding-bottom: 0; }
      @media (max-width: 960px) {
        .menu-navigation--aside .menu-item {
          background-color: #eeeeee;
          background-color: var(--color-light-grey);
          margin: 0 .25rem .5rem .25rem;
          border: 0; } }
      .menu-navigation--aside .menu-item:last-child {
        border: 0; }
        @media (min-width: 769px) and (max-width: 920px) {
          .menu-navigation--aside .menu-item:last-child {
            display: flex; } }
      .menu-navigation--aside .menu-item a {
        display: flex;
        width: 100%;
        padding: .75rem; }
        .menu-navigation--aside .menu-item a.active {
          background-color: #005baa;
          background-color: var(--color-blue);
          color: white; }
  .menu-navigation .select-language {
    display: none;
    margin: 0 2rem;
    padding: .75rem 0;
    font-size: .875rem;
    font-weight: 500; }
    @media (max-width: 768px) {
      .menu-navigation .select-language {
        display: flex;
        flex-direction: column; } }
    .menu-navigation .select-language span {
      margin-bottom: 0.875rem; }
    .menu-navigation .select-language a {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: #495662;
      color: var(--font-color);
      font-weight: 400; }
      .menu-navigation .select-language a svg {
        margin-right: 0.875rem; }

.fallback-main-menu .menu-navigation {
  display: block; }
  .fallback-main-menu .menu-navigation .menu-item {
    display: block;
    font-size: 0; }
    .fallback-main-menu .menu-navigation .menu-item.menu-item-active a {
      color: #005baa;
      color: var(--color-blue);
      border-color: white; }
      .fallback-main-menu .menu-navigation .menu-item.menu-item-active a i {
        color: #005baa;
        color: var(--color-blue); }
    .fallback-main-menu .menu-navigation .menu-item a {
      display: flex;
      margin: 0 2rem;
      padding: .75rem 0;
      border-bottom: 1px solid #dddddd;
      border-bottom: 1px solid var(--color-grey); }
      .fallback-main-menu .menu-navigation .menu-item a i {
        font-size: 18px;
        margin-left: auto; }
    .fallback-main-menu .menu-navigation .menu-item .sub-menu {
      overflow: hidden;
      list-style: none;
      background-color: #005baa;
      background-color: var(--color-blue);
      visibility: hidden;
      max-height: 0;
      transition: all 0.3s ease-out; }
      .fallback-main-menu .menu-navigation .menu-item .sub-menu.active {
        visibility: visible;
        max-height: 387px;
        transition: all 0.3s ease-in; }
      .fallback-main-menu .menu-navigation .menu-item .sub-menu a {
        color: white;
        border: 0; }
    .fallback-main-menu .menu-navigation .menu-item--business {
      border-radius: 0; }

.megamenu {
  display: none;
  background-color: white;
  width: 100%;
  position: absolute;
  top: 5.25rem;
  z-index: 7777;
  visibility: hidden; }
  .megamenu.active {
    display: block;
    visibility: visible; }

.megamenu-panel {
  display: none;
  position: relative;
  z-index: 7777;
  background-color: white;
  max-width: 1920px;
  margin: 0 auto;
  min-height: 8rem;
  padding: 1.5rem;
  padding: 1.25rem;
  padding: var(--base-padding); }
  .megamenu-panel.active {
    display: flex; }
  .megamenu-panel-col {
    grid-column: 1/3;
    padding-right: 4rem; }
    .megamenu-panel-col-summary {
      font-size: 0.875rem;
      line-height: 1.25rem; }
  .megamenu-panel-title {
    color: #005baa;
    color: var(--color-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex; }

.no-cssgrid .megamenu-panel-col {
  width: 16rem; }

.megamenu-tile {
  position: relative;
  width: 100%;
  min-height: 8.75em;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover; }
  .megamenu-tile:hover .megamenu-tile__box {
    transform: translateZ(0); }
  .megamenu-tile__image {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .megamenu-tile__box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    background-color: rgba(0, 91, 170, 0.9);
    color: white;
    padding: 14px;
    padding: 0.875rem;
    transform: translate3d(0, 50%, 0);
    transition: transform .2s ease-in-out; }
  .megamenu-tile__title {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.25; }
  .megamenu-tile__button {
    display: inline-flex;
    font-size: 14px;
    font-size: 0.875rem;
    color: white;
    margin-top: auto;
    margin-left: auto; }
    .megamenu-tile__button i {
      font-size: 18px;
      padding-top: 1px; }
  .megamenu-tile .image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .megamenu-tile .image-background img {
      margin: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; }

.megamenu-menu {
  list-style: none; }
  .megamenu-menu li:last-child a {
    border: 0; }
  .megamenu-menu a {
    display: flex;
    align-items: center;
    color: #005baa;
    color: var(--color-blue);
    font-size: 14px;
    font-size: 0.875rem;
    padding: .65rem .5rem;
    border-bottom: 1px solid #dddddd;
    border-bottom: 1px solid var(--color-grey);
    text-decoration: none; }
    .megamenu-menu a:hover i {
      transform: translateX(0.5rem);
      transition: transform .2s ease; }
    .megamenu-menu a i {
      font-size: 18px;
      margin-left: auto;
      transform: translateX(0);
      transition: transform .2s ease; }

.megamenu-overlay {
  display: none;
  position: fixed;
  z-index: 6666;
  top: calc(5.25rem + 2px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); }
  .megamenu-overlay.active {
    display: block; }

.currency-change {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: #495662;
  color: var(--font-color);
  display: inline-flex;
  align-items: center;
  padding: .5rem; }
  .currency-change .aa-icon {
    font-size: 19px;
    font-size: 1.188rem; }
  .currency-change .main-nav-currency-flag {
    width: 18px;
    margin-right: 2px; }

.main-nav__right {
  display: flex; }
  @media (max-width: 768px) {
    .main-nav__right {
      margin-left: auto; } }

.footer-links {
  background-color: #f5f6f8;
  color: #005baa;
  color: var(--color-blue);
  padding-top: 20px;
  clear: both; }
  .footer-links li {
    padding-bottom: 5px; }
  .footer-links a {
    color: #023663;
    font-size: 14px;
    line-height: 13px;
    text-decoration: none; }
    .footer-links a:hover {
      text-decoration: underline; }
  .footer-links span {
    display: block;
    font-size: medium;
    font-weight: bold; }
  .footer-links ul {
    -webkit-padding-start: 40px;
    line-height: 22px;
    list-style: none;
    padding: 0; }

.footer_paypal-credit-disclaimer {
  background-color: #f7f7f7;
  padding: 1.25rem;
  padding: var(--base-padding);
  margin-bottom: 0; }
  .footer_paypal-credit-disclaimer::after {
    display: none; }
  .footer_paypal-credit-disclaimer p {
    font-size: 11px;
    line-height: 1rem;
    text-align: center;
    margin-bottom: .5rem; }
    .footer_paypal-credit-disclaimer p:last-child {
      margin-bottom: 0; }

.center-align {
  margin: 0 auto;
  display: table; }

.footer-phone {
  font-size: 14px;
  text-align: left;
  width: 100%; }
  .footer-phone p {
    padding-left: 0; }
    .footer-phone p a {
      font-size: 22px; }
  .footer-phone .smallerp {
    font-size: 22px; }

span.footer-title {
  font-size: 18px;
  font-weight: normal; }

.footer-links ul {
  padding-top: 10px; }

.footer-phone p.office-hours {
  color: #333;
  font-size: 14px;
  display: inline-block; }

.col-4.zero-margin-top {
  margin-top: 0; }

.bottom-bar {
  color: #d3d3d3;
  font-size: 10px; }

.social-networks li {
  display: inline-block;
  margin-top: 25px; }
  .social-networks li a {
    display: inline-block;
    padding: 5px;
    margin-bottom: 7px;
    background: #005baa;
    background: var(--color-blue);
    color: #ffffff; }
    .social-networks li a .aa-icon {
      width: 25px;
      height: 25px; }

.footer-logos {
  display: block;
  background: #f7f7f7;
  padding-top: 20px; }

.footer-language-select {
  display: table;
  margin: 0 auto;
  overflow: hidden; }
  .footer-language-select__cell {
    display: table-cell;
    vertical-align: middle;
    padding: 5px 5px 2rem; }
  .footer-language-select__icon {
    width: 25px;
    height: 25px; }
  .footer-language-select__flag {
    width: 30px; }

/*------Mobile------*/
@media only screen and (max-width: 700px) {
  .footer-links .container {
    width: 100%; }
  .footer-links .alt-air-logo {
    float: left;
    width: 45%; }
    .footer-links .alt-air-logo img {
      max-width: 70%;
      margin-top: 20px; }
  .footer-links .inline-block {
    padding-top: 10px;
    display: inline-block; }
    .footer-links .inline-block.col-4, .footer-links .inline-block.col-2 {
      width: 45%; }
  .footer-phone {
    font-size: 14px;
    text-align: left;
    width: 100%; }
  .footer-links {
    padding-top: 40px; }
  .social-networks ul {
    width: 100%;
    float: left; }
  .footer-language-select {
    display: none; } }

@media only screen and (max-width: 768px) {
  .footer-phone p a,
  .footer-phone .smallerp {
    font-size: 18px; }
  .phone-number .material-icons {
    font-size: 18px; }
  .alt-air-logo img {
    max-height: 30px; }
  .footer-links li {
    padding-bottom: 3px; } }

footer .bottom-bar .footer-legal-text {
  margin: 10px 0; }

.footer-logo-bar {
  background: #f7f7f7;
  padding: 10px 0; }
  .footer-logo-bar__logo {
    max-width: 100%;
    max-height: 35px; }
    @media screen and (max-width: 500px) {
      .footer-logo-bar__logo {
        width: auto;
        height: auto; } }

.hide-desktop {
  display: block; }
  @media (min-width: 768px) {
    .hide-desktop {
      display: none; } }

.show-desktop {
  display: none; }
  @media (min-width: 768px) {
    .show-desktop {
      display: block; } }

.rounded-corners {
  border-radius: .375rem;
  border-radius: var(--base-border-radius); }

.coverlink {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer; }

.hiddentext {
  border: 0;
  font: 0/0 a;
  text-shadow: none;
  color: transparent; }

.centertext {
  text-align: center; }

.uppercase {
  text-transform: uppercase; }

h2.content-sub-heading {
  text-transform: uppercase; }

.fullwidth {
  width: 100%;
  height: auto; }
  @media only screen and (max-width: 480px) {
    .fullwidth .max-700 img {
      max-width: 100%; }
    .fullwidth iframe {
      max-width: 100%; } }

.white-back {
  background-color: #fff; }

.darkblue-back,
.bg-darkblue {
  background-color: #005baa;
  background-color: var(--color-blue); }

.darkgrey-back {
  background-color: #495662; }

.lightblue-back {
  background-color: #74b9ff;
  background-color: var(--color-light-blue); }

.grey-back {
  background-color: #f4f4f4; }

.subtile-blue-back {
  background-color: #f0fbff; }

.grey-blue-back {
  background-color: #EDF1F4; }

.biggerp {
  font-size: 1.2rem;
  line-height: 2rem; }

.bold {
  font-weight: 700; }

.bold-lightblue-text {
  color: #74b9ff;
  color: var(--color-light-blue);
  font-weight: 600; }

.bold-darkblue-text {
  color: #005baa;
  color: var(--color-blue);
  font-weight: 600; }

.light-lightblue-text {
  color: #74b9ff;
  color: var(--color-light-blue);
  font-weight: 400; }

.light-dark-blue-text {
  color: #005baa;
  color: var(--color-blue); }

.light-white-text {
  color: #fff; }

.bold-white-text {
  color: #fff;
  font-weight: 600; }

.thin-text {
  font-weight: 300; }

.icons-img {
  margin-top: 20px;
  margin-bottom: 50px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: auto;
  text-align: center; }

.icons-img img {
  max-width: 300px;
  width: 100%;
  height: auto;
  text-align: center; }

.medium-img-center {
  margin-top: 35px;
  margin-bottom: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: block;
  text-align: center; }

.medium-img-center img {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  display: block;
  text-align: center; }

.valign-top {
  vertical-align: top; }

.padding-top-10 {
  padding-top: 10px; }

.padding-bottom-10 {
  padding-bottom: 10px; }

.margin-bottom-10 {
  margin-bottom: 10px; }

.margin-top-10 {
  margin-top: 10px; }

.margin-right-10 {
  margin-right: 10px; }

.padding-bottom-20 {
  padding-bottom: 20px; }

.padding-top-20 {
  padding-top: 20px; }

.margin-bottom-20 {
  margin-bottom: 20px; }

.margin-top-20 {
  margin-top: 20px; }

.margin-top-25 {
  margin-top: 25px; }

.margin-bottom-25 {
  margin-bottom: 25px; }

.padding-bottom-25 {
  padding-bottom: 25px; }

.padding-top-25 {
  padding-top: 25px; }

.margin-bottom-30 {
  margin-bottom: 30px; }

.margin-top-30 {
  margin-top: 30px; }

.padding-bottom-30 {
  padding-bottom: 30px; }

.padding-top-30 {
  padding-top: 30px; }

.margin-top-40 {
  margin-top: 40px; }

.margin-bottom-40 {
  margin-bottom: 40px; }

.padding-bottom-40 {
  padding-bottom: 40px; }

.padding-top-40 {
  padding-bottom: 40px; }

.margin-bottom-50 {
  margin-bottom: 50px; }

.padding-bottom-50 {
  padding-bottom: 50px; }

.margin-top-50 {
  margin-top: 50px; }

.padding-top-50 {
  padding-top: 50px; }

.padding-top-60 {
  padding-top: 60px; }

.padding-bottom-60 {
  padding-bottom: 60px; }

.margin-top-60 {
  margin-top: 60px; }

.margin-bottom-60 {
  margin-bottom: 60px; }

.padding-bottom-70 {
  padding-bottom: 70px; }

.padding-top-70 {
  padding-top: 70px; }

.margin-top-70 {
  margin-top: 70px; }

.margin-bottom-70 {
  margin-bottom: 70px; }

.margin-bottom-80 {
  margin-bottom: 80px; }

.padding-top-80 {
  padding-top: 80px; }

.margin-top-80 {
  margin-top: 80px; }

.padding-bottom-80 {
  padding-bottom: 80px; }

.padding-top-100 {
  padding-top: 100px; }

.padding-all-20 {
  padding: 20px; }

.padding-bottom-100 {
  padding-bottom: 100px; }

.margin-top-100 {
  margin-top: 100px; }

.margin-bottom-100 {
  margin-bottom: 100px; }

.relative {
  position: relative; }

.img-center {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center; }

.img-center img {
  max-width: 525px;
  height: auto;
  width: 100%;
  text-align: center; }

.smaller-margin-top {
  margin-top: 15px; }

.greytext {
  color: #495662; }

.xxl-button {
  padding-right: 70px;
  padding-left: 70px;
  font-size: 1.5rem;
  width: auto;
  height: auto;
  font-weight: 200;
  line-height: 2.2;
  margin-top: 15px; }

.smallerp {
  font-size: 1rem;
  line-height: 1.7rem; }

.tinyp {
  font-size: 0.9rem;
  line-height: 1rem; }

.clear {
  clear: both; }

.max-65 img {
  max-height: 65px; }

.max-55 img {
  max-height: 55px; }

.max-30 img {
  max-height: 30px; }

.max-35 img {
  max-height: 35px; }

.max-120 img {
  max-width: 120px; }

.max-width--65 img {
  max-width: 65px; }

.max-160 img {
  max-width: 160px; }

.max-200 img {
  max-width: 200px; }

.max-220 img {
  max-width: 220px; }

.max-500 {
  max-width: 500px; }

.max-400 {
  max-width: 400px; }

.max-400 img {
  max-width: 400px; }

.max-500 img {
  max-width: 500px; }

.max-600 img {
  max-width: 600px; }

.max-600 {
  max-width: 600px; }

.grid-container.max-600 {
  max-width: 100%; }

.max-700 {
  max-width: 700px; }

.max-700 img {
  max-width: 700px; }

.max-800 img {
  max-width: 800px; }

.max-300 img {
  max-width: 300px; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left; }

.text-center {
  text-align: center; }

.center-align {
  margin: 0 auto;
  display: table; }

.text-right {
  text-align: right !important; }

.text-left {
  text-align: left !important; }

.inline-block {
  display: inline-block; }

.show-for-large-only {
  display: hide; }

@media only screen and (min-width: 60em) {
  .show-for-large-only {
    display: block; } }

.show-for-print {
  display: none !important; }

.hide,
.hide-it {
  display: none !important; }

.white-background {
  background-color: #ffffff; }

.bg-darkblue {
  background: #005baa;
  background: var(--color-blue); }

.bg-lightgrey {
  background: #eeeeee;
  background: var(--color-light-grey); }

.red {
  color: #be1e2d;
  color: var(--color-red); }

.darkblue {
  color: #005ba9;
  color: var(--color-dark-blue); }

.baby-blue {
  color: #2990e6;
  color: var(--color-baby-blue); }

.green {
  color: #0ac10a; }

.red {
  color: #be1e2d;
  color: var(--color-red); }

.padding-top-15 {
  padding-top: 15px; }

.padding-left-10 {
  padding-left: 10px; }

.padding-bottom-15 {
  padding-bottom: 15px; }

.plain-link {
  text-decoration: none; }

.plain-link.small-link {
  font-size: 9pt; }

.small-link {
  font-size: 11pt;
  margin-left: 0.3rem;
  text-decoration: none; }

.small-link:hover {
  text-decoration: underline; }

.large-text {
  font-size: 1.2rem; }

.huge-text {
  font-size: 1000%; }

.small-text {
  font-size: 11pt; }

.no-list-style {
  list-style: none; }

.full-width {
  box-sizing: border-box;
  width: 100% !important; }

.inherit-width {
  width: inherit; }

.no-margin {
  margin: 0 !important; }

.xs-margin {
  margin: 0.2rem !important; }

.no-padding {
  padding: 0 !important; }

.no-left-padding {
  padding-left: 0 !important; }

.no-left-margin {
  margin-left: 0 !important; }

.side-margin {
  margin: 0 1rem; }

.small-margin-left {
  margin-left: 10px !important; }

.no-right-margin {
  margin-right: 0 !important; }

.no-margin-bottom {
  margin-bottom: 0 !important; }

.no-margin-top {
  margin-top: 0 !important; }

.top-margin-sm {
  margin-top: 20px; }

.margin-top {
  margin-top: 2rem !important; }

.center-margin {
  margin-left: auto;
  margin-right: auto; }

.margin-top-1 {
  margin-top: 1rem; }

.margin-bottom-small {
  margin-bottom: 1rem; }

.margin-bottom-3 {
  margin-bottom: 3rem; }

.margin-top-3 {
  margin-top: 3rem !important; }

.margin-bottom {
  margin-bottom: 2rem; }

.margin-right {
  margin-right: 2rem; }

.margin-right-3 {
  margin-right: 3rem; }

.margin-left {
  margin-left: 2rem !important; }

.margin-left-1 {
  margin-left: 1rem; }

.margin-left-4 {
  margin-left: 4rem; }

.margin-left-17 {
  margin-left: 17% !important; }

.margin-1 {
  margin: 1rem !important; }

.margin-2 {
  margin: 2rem !important; }

.padding-1 {
  padding: 1.2rem; }

.padding-06 {
  padding: 0.6rem; }

.flex-container {
  display: flex; }

.flex-align-center {
  align-self: center;
  flex: 1; }

.flex-align-stretch {
  align-self: stretch;
  flex: 1; }

.flex-align-bottom {
  align-self: flex-end;
  flex: 1; }

.flex-justfiy-right {
  justify-content: flex-end; }

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

.flex-align-center {
  align-items: center; }

.flex-direction-col {
  flex-direction: column; }

img.flex-align-center {
  flex: none; }

.shift-up {
  margin-top: -30px !important; }

.fixed-side {
  display: none; }

.show-for-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0; }

@media only screen and (max-width: 700px) {
  .max-55 img {
    max-height: 45px; }
  .relative {
    margin-bottom: 5px; }
  .content-wrap {
    padding-left: 10px;
    padding-right: 10px; }
  .padding-top-70 {
    padding-top: 30px; }
  .medium-img-center {
    margin-top: 15px; }
  .padding-top-60 {
    padding-top: 35px; }
  .padding-bottom-70 {
    padding-bottom: 35px; }
  .padding-top-50 {
    padding-top: 20px; }
  .margin-top-20 {
    margin-top: 20px; }
  .logos-container {
    padding-bottom: 40px; }
  .padding-bottom-50 {
    padding-bottom: 20px; }
  .padding-top-100 {
    padding-top: 10px; }
  .border-top-2px-lightblue {
    border-top: 2px solid #74b9ff;
    border-top: 2px solid var(--color-light-blue); }
  .xxl-button {
    line-height: 4;
    font-size: 0.9rem;
    padding-right: 18px;
    padding-left: 18px; }
  .mobile-top-margin {
    margin-top: 50px; }
  .mobile-bottom-padding {
    padding-bottom: 50px; }
  .biggerp {
    font-size: 1rem;
    line-height: 1.5rem; }
  .smallerp {
    font-size: 0.8rem;
    line-height: 1.5rem; }
  .tinyp {
    font-size: 0.78rem;
    line-height: 1.7em; }
  .mobile-top-margin {
    margin-top: 20px; }
  .padding-top-80 {
    padding-top: 35px; }
  .padding-bottom-40 {
    padding-bottom: 20px; }
  .margin-bottom-30 {
    padding-bottom: 0px; } }

@media only screen and (max-width: 480px) {
  .full-width-mobile {
    width: 100%; }
  .grid-d-3 {
    width: 25%; }
  .col-9-sm nav {
    text-align: right; } }

@media only screen and (max-width: 768px) {
  .border-top-grey {
    border-top: 1px solid #d3d3d3;
    padding-top: 10px; } }

main table.paleBlueRows {
  table-layout: fixed; }

.breadcrumbs {
  width: 100%;
  display: block;
  background-color: #005baa;
  background-color: var(--color-blue);
  padding: 0.625rem;
  padding: var(--half-padding); }
  .breadcrumbs .container {
    padding: 0 1.25rem;
    padding: 0 var(--grid-gutter);
    height: 100%;
    align-items: center; }
  .breadcrumbs ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex; }
  .breadcrumbs li {
    display: flex;
    font-size: 0.75rem; }
    .breadcrumbs li a {
      color: white;
      text-decoration: none; }
      .breadcrumbs li a:hover {
        color: #74b9ff;
        color: var(--color-light-blue); }
    .breadcrumbs li i {
      color: white;
      font-size: 1rem; }
    .breadcrumbs li.breadcrumb-current {
      color: white; }

.search_modal {
  width: 400px;
  max-width: 100%;
  position: absolute;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  z-index: 99999999;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: height 0.25s ease, opacity 0.25s ease; }
  .search_modal__favorites {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #eee; }
  .search_modal__favorite {
    width: 25%;
    height: 95px;
    float: left;
    padding: 20px 0;
    text-align: center; }
    .search_modal__favorite span {
      display: block; }
    .search_modal__favorite span:first-of-type {
      font-size: 1.5rem;
      margin-bottom: 4px; }
    .search_modal__favorite span:last-of-type {
      font-size: 0.75rem; }
  .search_modal__search {
    overflow: hidden;
    padding: 20px 0 20px 20px;
    display: flex; }
    .search_modal__search input {
      width: 100%;
      height: 40px;
      font-size: 16px;
      border-radius: 5px;
      padding-left: 38px;
      background-size: 24px;
      border: 1px solid #ddd;
      background-repeat: no-repeat;
      background-position: center left 8px;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3C/svg%3E");
      box-sizing: border-box;
      margin-right: 20px; }
  .search_modal__results {
    width: 100%;
    min-height: 300px;
    flex: 1;
    overflow-y: scroll;
    transition: height 0.75s linear; }
  .search_modal__result {
    float: left;
    width: 25%;
    padding: 5px;
    height: 50px; }
    .search_modal__result span:first-of-type {
      font-size: 1rem;
      font-weight: bold; }
      .search_modal__result span:first-of-type:after {
        content: " "; }
    .search_modal__result span:last-of-type {
      font-size: 0.75rem; }
  .search_modal__button {
    background: #ffffff;
    border: none; }
    .search_modal__button--active, .search_modal__button:hover {
      background-color: #f9f9f9; }
  .search_modal__no_results {
    padding: 12px 0;
    text-align: center;
    font-size: 0.75rem; }
  .search_modal__close {
    display: none;
    margin-right: 20px;
    flex: 0;
    min-width: 26px; }
    .search_modal__close .aa-icon {
      width: 26px;
      height: 26px;
      color: #495662;
      color: var(--font-color); }
  .search_modal__header {
    display: flex;
    align-items: center;
    padding: 20px 0 20px 20px; }
  .search_modal__title {
    margin: 0 20px 0 0;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    flex: 1; }
  .search_modal__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 112;
    cursor: pointer; }
    @media screen and (min-width: 1023px) {
      .search_modal__overlay {
        display: none; } }
  @media screen and (max-width: 1023px) {
    .search_modal {
      height: 100%;
      top: 0 !important;
      right: 0 !important;
      left: auto !important;
      position: fixed !important;
      transform: translateX(100%);
      transition: transform 0.3s ease; }
      .search_modal--active {
        transform: translateX(0); }
      .search_modal__title {
        text-align: left; }
      .search_modal__close {
        display: block; } }
  @media screen and (min-width: 1024px) {
    .search_modal {
      opacity: 0;
      transition: opacity 0.25s ease; }
      .search_modal--active {
        opacity: 1; }
      .search_modal__results {
        max-height: 300px; } }

#phoneNumberSearchModal .search_modal__result.search_modal__button {
  text-align: left;
  padding: 0 15px; }
  #phoneNumberSearchModal .search_modal__result.search_modal__button img {
    vertical-align: middle;
    margin-right: 5px; }

#CountrySearchModal .search_modal__result.search_modal__button {
  text-align: left;
  padding: 0 15px; }
  #CountrySearchModal .search_modal__result.search_modal__button img {
    vertical-align: middle;
    margin-right: 5px; }

#currencySearchModal .currency_search__loading {
  padding: 20px;
  text-align: center;
  position: relative; }
  #currencySearchModal .currency_search__loading i {
    font-size: 2rem;
    color: lightgray; }

#currencySearchModal .currency_search__currency {
  padding: 0 20px;
  text-align: center;
  display: inline-block; }
  #currencySearchModal .currency_search__currency div:first-of-type {
    font-size: 3em;
    font-weight: bold; }
  #currencySearchModal .currency_search__currency div:last-of-type {
    font-size: 0.75rem; }

#currencySearchModal .currency_search__spinner {
  display: inline-block;
  vertical-align: middle; }

#currencySearchModal .currency_search__caption {
  display: inline-block; }

.currency_search__content {
  display: flex;
  height: 100%;
  flex-direction: column; }

.flight-search-form--loading input, .flight-search-form--loading button, .flight-search-form--loading .flight-search-trip-type-input-label, .flight-search-form--loading a {
  background-size: 800px 104px;
  opacity: 0.8;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeholderShimmer;
  animation-timing-function: linear;
  color: transparent; }

.flight-search-form--loading input, .flight-search-form--loading button, .flight-search-form--loading .flight-search-trip-type-input-label {
  background-color: rgba(255, 255, 255, 0.5);
  background-image: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0.5) 20%, white 40%, white 100%); }

.flight-search-form--loading a {
  background-color: #db5200;
  background-image: linear-gradient(to right, #ff690f 0%, #db5200 20%, #ff690f 40%, #ff690f 100%); }

.flight-search-form--loading .flight-search-input-label, .flight-search-form--loading svg {
  visibility: hidden; }

.flight-search-form-wrap {
  max-width: 1000px;
  margin: auto;
  padding: 30px 0 50px 0; }

.flight-search-fields {
  position: relative; }

.flight-search-trip-type {
  margin-bottom: 20px; }

.flight-search-trip-type-input-label {
  color: #ffffff;
  cursor: pointer;
  margin: 0 15px 0 0;
  font-weight: 600; }

@media only screen and (max-width: 350px) {
  .flight-search-trip-type-input-label span {
    display: none; }
  .flight-search-tooltip .flight-search-pax-label-wrap {
    width: 100%;
    max-width: 120px; } }

.flight-search-multi-row {
  display: none;
  height: 55px; }
  .flight-search-multi-row .flight-search-dates {
    width: 50%; }

.flight-search-input-label {
  color: #ffffff;
  display: block;
  margin-bottom: 3px;
  font-weight: 600; }
  .flight-search-input-label-disabled {
    color: #d3d3d3; }

.flight-search-input {
  -moz-appearance: none;
  -moz-box-sizing: border-box;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  appearance: none;
  background: #ffffff;
  border: 0.0625rem solid #eee;
  border-radius: 0;
  box-sizing: border-box;
  color: #495662;
  cursor: pointer;
  display: inline-block;
  font-size: 1rem;
  height: 48px;
  line-height: 1.5rem;
  padding: 0.375rem 0.75rem;
  padding-bottom: 0.4rem;
  text-overflow: ellipsis;
  width: 100%; }
  .flight-search-input:focus {
    outline-color: #3399ff;
    outline-offset: -2px;
    outline-style: auto;
    outline-width: 2px; }
  .flight-search-input-disabled {
    color: #aaa;
    cursor: not-allowed; }

.flight-search-airports,
.flight-search-departure-wrap {
  float: left;
  width: 50%; }

.flight-search-arrival-wrap {
  float: right;
  width: 50%; }

.flight-search-dates {
  float: left;
  width: 25%; }

.flight-search-outbound-wrap,
.flight-search-inbound-wrap {
  float: left;
  width: 50%; }

.flight-search-multi-row .flight-search-outbound-wrap {
  width: 100%; }

.flight-search-calendar {
  -moz-border-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 5; }
  .flight-search-calendar .flight-search-tooltip-close {
    text-align: right;
    margin: 0 7px 10px auto; }

.flight-search-calendar-scroll-controls {
  display: flex;
  padding: 0 1.25rem;
  padding: 0 var(--base-padding); }
  @media (max-width: 768px) {
    .flight-search-calendar-scroll-controls {
      padding: 0; } }

.flight-search-calendar-scroll-icon.aa-icon {
  width: 30px;
  height: 30px;
  color: black; }

.flight-search-calendar-scroll-right {
  margin-left: auto; }

.flight-search-calendar-scroll {
  display: flex; }

.flight-search-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-around; }

.flight-search-calendar__header-column {
  flex: 1; }
  .flight-search-calendar__header-column h4 {
    margin: 10px auto 20px auto; }
  .flight-search-calendar__header-column .pricing-scale {
    margin: 10px auto 20px auto; }

.flight-search-calendar__footer {
  padding: 0 10px; }

.flight-search-multi-controls {
  padding: 10px 0;
  text-align: right;
  width: 100%; }
  .flight-search-multi-controls button {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent; }
    .flight-search-multi-controls button:disabled {
      opacity: 0.5;
      cursor: not-allowed; }
  .flight-search-multi-controls svg {
    cursor: pointer;
    width: 35px;
    height: 35px;
    color: white; }

.flight-search-travellers {
  float: left;
  position: relative;
  width: 25%; }

.flight-search-travellers-toggle {
  -webkit-appearance: button;
  background: #ffffff;
  border: 0.0625rem solid #eeeeee;
  border-left: 0;
  box-sizing: border-box;
  color: #524c61;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  height: 48px;
  line-height: 1.5rem;
  margin: 0;
  max-width: 280px;
  /*was 255px*/
  outline-offset: -2px;
  overflow: hidden;
  padding: 0.67rem 10px 0.75rem 0.75rem;
  position: relative;
  text-align: left;
  text-overflow: ellipsis;
  width: 100%; }

.flight-search-tooltip {
  -moz-border-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  display: none;
  left: 0;
  margin-top: 10px;
  padding: 15px;
  position: absolute;
  width: 310px;
  /* Changing the width of the pax open state modal because it suddenly stopped looking nice. It probably wasn't this that caused the UI to look broken, but this fixes it. */
  z-index: 5;
  top: 0; }
  .flight-search-tooltip::after, .flight-search-tooltip::before {
    border: solid transparent;
    bottom: 100%;
    content: " ";
    height: 0;
    left: 50%;
    pointer-events: none;
    position: absolute;
    width: 0; }
  .flight-search-tooltip::after {
    border-bottom-color: #ffffff;
    border-color: rgba(255, 255, 255, 0);
    border-width: 10px;
    margin-left: -10px; }
  .flight-search-tooltip::before {
    border-bottom-color: #d3d3d3;
    border-color: rgba(211, 211, 211, 0);
    border-width: 11px;
    margin-left: -11px; }
  .flight-search-tooltip h4 {
    font-size: 1rem; }

a.flight-search-close-button {
  position: absolute;
  top: 20px;
  right: 20px; }
  a.flight-search-close-button:hover {
    color: #000000; }

.flight-search-class-input {
  border: 0.0625rem solid #e6e4eb;
  border-radius: 0.1875rem;
  color: #524c61;
  display: inline-block;
  font-size: 1rem;
  height: 2.25rem;
  margin: 10px 0 20px;
  padding: 0.375rem 1.875rem 0.375rem 0.75rem;
  width: 100%; }

.flight-search-pax {
  margin-top: 10px; }

.flight-search-pax-label-wrap {
  display: inline-block;
  margin-right: 10px;
  width: 170px; }

.flight-search-pax-label {
  display: inline-block;
  font-size: 15px;
  margin-right: auto;
  width: auto; }

.flight-search-pax-label-sub {
  color: #cccccc;
  font-size: 12px;
  margin-left: 5px; }

.flight-search-pax-control-wrap {
  display: inline-block; }

.flight-search-pax-control {
  border: 1px solid #d3d3d3;
  display: inline-block;
  height: 28px;
  width: 90px; }

.flight-search-pax-control-minus {
  cursor: pointer;
  height: 28px;
  width: 25px; }

.flight-search-pax-control-plus {
  cursor: pointer;
  height: 28px;
  width: 25px;
  float: right; }

.flight-search-pax-count {
  box-sizing: border-box;
  display: inline-block;
  font-size: 17px;
  line-height: 17px;
  padding: 4px 8px;
  text-align: center;
  vertical-align: middle;
  width: 30px; }

.flight-search-form-button {
  -webkit-transition: 0.1s;
  border-radius: 0.2rem;
  color: #ffffff;
  float: right;
  font-size: 25px;
  margin: 10px 0;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
  padding-right: 30px;
  padding-left: 30px;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  transition: 0.1s;
  background: #ff690f; }
  .flight-search-form-button img {
    margin-left: 10px;
    width: 18px; }
  .flight-search-form-button:active {
    -webkit-transform: translate(0, 5px);
    border-bottom: 1px solid #9a5f00;
    transform: translate(0, 5px);
    -moz-transform: translate(0, 5px);
    -webkit-transform: translate(0, 5px);
    -o-transform: translate(0, 5px);
    -ms-transform: translate(0, 5px); }

.flight-search-airport-results {
  -moz-border-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 5px;
  display: none;
  height: 410px;
  position: absolute;
  width: 100%;
  z-index: 5; }
  .flight-search-airport-results h4 {
    margin-top: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #74b9ff;
    color: var(--color-light-blue); }

.flight-search-calendar h4 {
  margin-top: 18px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #74b9ff;
  color: var(--color-light-blue); }

@media only screen and (max-width: 1280px) {
  .flight-search-form {
    margin-left: auto;
    margin-right: auto; } }

@media only screen and (max-width: 985px) {
  .flight-search-form {
    width: 90%; }
  .flight-search-multi-controls img {
    margin-left: 1px;
    width: 30px; }
  .flight-search-multi-row .flight-search-airports,
  .flight-search-multi-row .flight-search-arrival-wrap {
    float: left;
    width: 50%; }
  .flight-search-multi-row .flight-search-outbound-wrap {
    width: 100%; } }

@media only screen and (max-width: 970px) {
  .flight-search-form {
    width: 90%; }
  .flight-search-airports {
    float: none;
    width: 100%; }
  .flight-search-dates,
  .flight-search-travellers {
    width: 30%; } }

@media only screen and (max-width: 800px) {
  .flight-search-dates,
  .flight-search-travellers {
    width: 50%; }
  .flight-search-travellers-toggle {
    max-width: 100%; } }

@media only screen and (max-width: 720px) {
  /*    ul.main-nav.main-nav-left {
          display: none;
      }*/
  .flight-search-dates,
  .flight-search-travellers {
    width: 50%; }
  .flight-search-travellers-toggle {
    max-width: 100%;
    min-width: 100%; } }

@media only screen and (max-width: 700px) {
  .flight-search-calendar {
    height: 447px; }
  .flight-search-airport-results h4,
  .flight-search-calendar h4 {
    margin-top: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 15px; }
  #close_calendar_button {
    line-height: 30px;
    margin-top: -10px;
    padding-top: 0;
    margin-bottom: 0px;
    margin-right: 0px;
    right: 0;
    border: none; }
  #close_form_button {
    margin-top: -10px;
    margin-bottom: 9px; } }

@media only screen and (max-width: 560px) {
  .flight-search-dates,
  .flight-search-travellers {
    width: 100%; }
  .flight-search-form {
    top: 90px; }
  .flight-search-trip-type-input-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    color: #eee; }
  .flight-search-form-button {
    margin-top: 23px;
    padding-top: 15px;
    font-size: 21px;
    padding-bottom: 15px;
    padding-right: 0px;
    padding-left: 0px;
    text-align: center;
    width: 100%; }
  .flight-search-input-label {
    color: #eee;
    padding-top: 9px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase; }
  .flight-search-input {
    border-radius: 0; }
  .flight-search-multi-form {
    margin-top: 15px; }
  .flight-search-travellers-toggle {
    border-radius: 0; }
  .flight-search-calendar-scroll {
    margin-top: 16px;
    display: block; }
    .flight-search-calendar-scroll img {
      margin-left: -5.5px; }
  .flight-search-calendar .row .col-1-sm {
    width: 6%;
    margin: 0px; }
  .flight-search-trip-type {
    margin-bottom: 6px; }
  .flight-search-input:focus,
  .flight-search-travellers-toggle:focus {
    border-radius: 0;
    border: 2px solid #2a92ea;
    outline: none; }
  #flight-search-inbound-input {
    border-right: 2px solid #fff !important; }
    #flight-search-inbound-input:focus {
      border-right: 2px solid #2a92ea !important; } }

.cal-month {
  display: block;
  overflow-x: hidden;
  width: 100%; }

.cal-heading {
  font-size: 18px;
  margin-bottom: 8px;
  text-align: center; }

.month-table-wrapper {
  -moz-box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(26, 26, 26, 0);
  border-spacing: 4px;
  box-sizing: border-box;
  display: table;
  margin: 0;
  width: 100%; }

.day-names-table {
  display: table-row-group; }

.day-names-table .day-cell {
  background-color: transparent;
  border: 0;
  color: #333333;
  cursor: default;
  font-size: 16px;
  line-height: normal;
  padding-bottom: 12px; }

.day-names-table .day-cell:hover {
  background-color: transparent;
  color: #333333; }

.day-cell {
  background-color: #f3f3f3;
  border: 1px solid #eeeeee;
  color: #888888;
  cursor: pointer;
  display: table-cell;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  max-width: 1rem; }

.flight-search-calendar-heatmap .day-cell[data-classification="CHEAPEST"] {
  background-color: #b2d6a1;
  color: #3d6925; }

.flight-search-calendar-heatmap .day-cell[data-classification="CHEAPER"] {
  background-color: #c5e2b7;
  color: #3d6925; }

.flight-search-calendar-heatmap .day-cell[data-classification="CHEAP"] {
  background-color: #edf0d2;
  color: #3d6925; }

.flight-search-calendar-heatmap .day-cell[data-classification="MODERATE"] {
  background-color: #fdedc4;
  color: #9a5700; }

.flight-search-calendar-heatmap .day-cell[data-classification="EXPENSIVE"] {
  background-color: #f7cbc5;
  color: #8e2f27; }

.month-table .day-cell:hover {
  background-color: #005baa !important;
  background-color: var(--color-blue) !important;
  color: #ffffff !important; }

.month-table .day-cell.disabled {
  background-color: transparent;
  border-color: transparent;
  color: #cccccc;
  cursor: not-allowed; }

.flight-search-calendar .day-cell.trip-range,
.fullscreen-datepicker__calendar .day-cell.trip-range {
  background-color: #2990e6;
  background-color: var(--color-baby-blue);
  border-color: #2990e6;
  border-color: var(--color-baby-blue);
  color: #ffffff; }

.flight-search-calendar .day-cell.trip-range-start, .flight-search-calendar .day-cell.trip-range-end,
.fullscreen-datepicker__calendar .day-cell.trip-range-start,
.fullscreen-datepicker__calendar .day-cell.trip-range-end {
  background-color: #005ba9;
  background-color: var(--color-dark-blue);
  border-color: #005ba9;
  border-color: var(--color-dark-blue);
  color: #ffffff; }

.flight-search-calendar .day-cell.trip-range-start,
.fullscreen-datepicker__calendar .day-cell.trip-range-start {
  border-radius: 10px 0 0 10px; }

.flight-search-calendar .day-cell.trip-range-end,
.fullscreen-datepicker__calendar .day-cell.trip-range-end {
  border-radius: 0 10px 10px 0; }

.cheapest-time-to-fly-calendar {
  background-color: #fff;
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 1.25rem 8px;
  padding: var(--base-padding) 8px; }
  .cheapest-time-to-fly-calendar__wrapper {
    display: flex; }
    @media (max-width: 767px) {
      .cheapest-time-to-fly-calendar__wrapper {
        flex-wrap: wrap; } }
    .cheapest-time-to-fly-calendar__wrapper .day-names-table .day-cell {
      color: #b0b0b0;
      font-size: 12px; }
    .cheapest-time-to-fly-calendar__wrapper .day-cell[data-classification="CHEAPEST"] {
      background-color: #477e57;
      color: #ffffff; }
    .cheapest-time-to-fly-calendar__wrapper .day-cell[data-classification="CHEAPER"] {
      background-color: #c4decd;
      color: #3d6925; }
    .cheapest-time-to-fly-calendar__wrapper .day-cell[data-classification="CHEAP"] {
      background-color: #e2ece6;
      color: #3d6925; }
    .cheapest-time-to-fly-calendar__wrapper .day-cell.other-month {
      background-color: red; }
    .cheapest-time-to-fly-calendar__wrapper .cal-month {
      padding: 0px 8px;
      font-size: 16px; }
  .cheapest-time-to-fly-calendar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1.25rem 8px;
    margin: 0 0 var(--base-padding) 8px; }
  .cheapest-time-to-fly-calendar__heading {
    font-size: 16px;
    font-weight: bold;
    color: #2990e6;
    color: var(--color-baby-blue);
    margin-right: 1.25rem;
    margin-right: var(--base-padding); }
  .cheapest-time-to-fly-calendar__button {
    font-size: 16px;
    margin: 0;
    background: 0 0;
    border: none;
    margin-right: 6px;
    color: #495662;
    color: var(--color-type);
    display: flex;
    padding: 2px; }
  .cheapest-time-to-fly-calendar .cal-heading {
    text-align: left;
    font-weight: bold;
    font-size: 16px; }

.month-table,
.day-names-table {
  display: table-row-group; }

.month-row {
  display: table-row; }
  @media (max-width: 767px) {
    .month-row--empty {
      display: none; } }

.other-month {
  color: #cccccc;
  visibility: hidden; }

@media (max-width: 767px) {
  .day-cell--hidden {
    color: #cccccc;
    visibility: hidden; } }

#airport-autocomplete-results {
  position: relative;
  margin-top: 10px; }

.autocomplete-suggestions {
  -moz-border-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  background: #ffffff;
  left: 0;
  overflow: auto;
  width: auto;
  z-index: 3; }

.autocomplete-suggestion {
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
  overflow: hidden;
  padding: 10px 15px;
  white-space: nowrap; }

.autocomplete-suggestion:first-child {
  border-top: 1px solid #eeeeee; }

.autocomplete-suggestion:last-child {
  border-bottom: 0; }

.autocomplete-suggestion .autocomplete-suggestion-flag-wrap {
  float: left;
  height: 40px;
  margin-right: 40px; }

.autocomplete-suggestion .autocomplete-suggestion-name {
  font-size: 1.4rem;
  float: left;
  padding-top: 3px; }

.autocomplete-suggestion .autocomplete-suggestion-flag-wrap img {
  width: 40px;
  padding-top: 7px; }

.autocomplete-suggestion .autocomplete-suggestion-name span {
  margin-left: 20px;
  font-size: .8em;
  color: #aaa; }

.autocomplete-suggestion .autocomplete-suggestion-code {
  float: right;
  border: 1px solid #DDD;
  padding: 4px;
  font-size: 1.4rem;
  width: 50px;
  text-align: center;
  margin-right: 20px; }

.autocomplete-selected {
  background: #005baa;
  background: var(--color-blue);
  color: #ffffff;
  /* was #f3f3f3*/ }

.autocomplete-selected strong {
  color: #3399ff;
  font-weight: normal; }

.pricing-scale {
  width: 100%;
  height: 8px;
  max-width: 200px;
  margin: 10px 20px 20px 20px;
  border-radius: 6px;
  position: relative;
  animation: placeholderShimmer 1.5s linear 0s infinite normal forwards;
  background: linear-gradient(to right, #e6e3e3 40%, rgba(255, 255, 255, 0.7) 60%, #e6e3e3 80%);
  background-size: 800px 100px; }
  .pricing-scale:before {
    left: 0;
    content: 'Cheapest'; }
  .pricing-scale:after {
    right: 0;
    content: 'Most Expensive'; }
  .pricing-scale:before, .pricing-scale:after {
    position: absolute;
    font-size: 12px;
    top: 8px;
    opacity: 0.5; }
  .pricing-scale__loaded {
    visibility: visible;
    background: linear-gradient(to right, #7dc855 33%, #ffffff 33%, #ffffff 34%, #fbbc04 34%, #fbbc04 66%, #ffffff 66%, #ffffff 67%, #ea4335 67%);
    background-size: unset;
    animation: unset; }
    .pricing-scale__loaded:before, .pricing-scale__loaded:after {
      opacity: 1; }

.pricing-scale-alt {
  width: 100%;
  height: 8px;
  max-width: 200px;
  margin: 10px 20px 34px 20px;
  border-radius: 6px;
  background: linear-gradient(to right, #D8F2D4, #229510);
  position: relative; }
  .pricing-scale-alt:before {
    left: 0;
    content: 'Cheap'; }
  .pricing-scale-alt:after {
    right: 0;
    content: 'Cheapest'; }
  .pricing-scale-alt:before, .pricing-scale-alt:after {
    position: absolute;
    font-size: 12px;
    top: 8px; }

@media only screen and (max-width: 780px) {
  .autocomplete-suggestion .autocomplete-suggestion-flag-wrap {
    margin-right: 30px; }
  .autocomplete-suggestion .autocomplete-suggestion-name {
    font-size: 1rem;
    padding-top: 0; }
  .autocomplete-suggestion .autocomplete-suggestion-flag-wrap img {
    width: 30px; }
  .autocomplete-suggestion .autocomplete-suggestion-name span {
    margin-left: 0;
    display: block; }
  .autocomplete-suggestion .autocomplete-suggestion-code {
    font-size: 1.2rem; } }

@media only screen and (max-width: 455px) {
  .autocomplete-suggestion .autocomplete-suggestion-flag-wrap {
    margin-right: 15px; }
  .autocomplete-suggestion .autocomplete-suggestion-name {
    width: 60%;
    overflow: hidden; }
  .autocomplete-suggestion .autocomplete-suggestion-code {
    margin-right: 0;
    width: 30px;
    font-size: 0.8rem; } }

.info_icon {
  max-width: 12px; }

.info_icon:hover {
  cursor: pointer; }

@keyframes placeholderShimmer {
  0% {
    background-position: -468px 0; }
  100% {
    background-position: 468px 0; } }

.flight-search-tooltip .flight-search-pax-label-wrap, .flight-search-pax-control-wrap .flight-search-pax-label-wrap {
  min-width: 114px; }

.flight-search-tooltip .flight-search-pax, .flight-search-pax-control-wrap .flight-search-pax {
  display: flex;
  align-items: center; }

.flight-search-tooltip .flight-search-pax-control, .flight-search-pax-control-wrap .flight-search-pax-control {
  display: flex;
  border: none;
  height: auto;
  width: auto; }

.flight-search-tooltip .flight-search-pax-control-wrap, .flight-search-pax-control-wrap .flight-search-pax-control-wrap {
  margin-left: auto; }

.flight-search-tooltip .flight-search-pax-control-minus, .flight-search-tooltip .gordian-plus-minus-controller, .flight-search-pax-control-wrap .flight-search-pax-control-minus, .flight-search-pax-control-wrap .gordian-plus-minus-controller {
  cursor: pointer;
  height: 34px;
  width: 34px;
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #eee;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495662;
  color: var(--font-color); }
  .flight-search-tooltip .flight-search-pax-control-minus span, .flight-search-tooltip .gordian-plus-minus-controller span, .flight-search-pax-control-wrap .flight-search-pax-control-minus span, .flight-search-pax-control-wrap .gordian-plus-minus-controller span {
    position: relative;
    top: -1px; }
  .flight-search-tooltip .flight-search-pax-control-minus:disabled, .flight-search-tooltip .gordian-plus-minus-controller:disabled, .flight-search-pax-control-wrap .flight-search-pax-control-minus:disabled, .flight-search-pax-control-wrap .gordian-plus-minus-controller:disabled {
    background-color: #eee;
    cursor: not-allowed; }

.flight-search-tooltip .flight-search-pax-control-plus, .flight-search-tooltip .gordian-plus-minus-controller, .flight-search-pax-control-wrap .flight-search-pax-control-plus, .flight-search-pax-control-wrap .gordian-plus-minus-controller {
  cursor: pointer;
  height: 34px;
  width: 34px;
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #eee;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center; }
  .flight-search-tooltip .flight-search-pax-control-plus span, .flight-search-tooltip .gordian-plus-minus-controller span, .flight-search-pax-control-wrap .flight-search-pax-control-plus span, .flight-search-pax-control-wrap .gordian-plus-minus-controller span {
    position: relative;
    top: -1px; }

.flight-search-tooltip .flight-search-pax-count, .flight-search-pax-control-wrap .flight-search-pax-count {
  box-sizing: border-box;
  padding: 4px 8px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none; }

.booking-section-baggage .flight-search-pax-control-wrap {
  margin-right: 4%; }

.booking-section-baggage .flight-search-pax-label-wrap {
  display: flex;
  flex: 1 0 auto; }
  .booking-section-baggage .flight-search-pax-label-wrap i {
    margin-right: 1.25rem;
    margin-right: var(--base-padding);
    top: 0; }

.hero {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 9.375rem;
  background-size: cover;
  background-position: center;
  padding: 2.5rem;
  padding: var(--double-padding); }
  @media (max-width: 768px) {
    .hero {
      padding: 1.25rem;
      padding: var(--base-padding); } }
  .hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #005baa;
    background-color: var(--color-blue);
    opacity: 0.65; }
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left bottom, left top, from(#005baa), to(rgba(255, 255, 255, 0)));
    background: -webkit-gradient(linear, left bottom, left top, from(var(--color-blue)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, #005baa, rgba(255, 255, 255, 0));
    background: linear-gradient(0deg, var(--color-blue), rgba(255, 255, 255, 0));
    z-index: 0;
    opacity: .5; }
  .hero .container {
    padding: 0 1.25rem;
    padding: 0 var(--grid-gutter);
    height: 100%;
    align-items: center; }
  .hero__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    width: 100%; }
    @media (max-width: 768px) {
      .hero__content {
        padding: 1rem 0; } }
  .hero__title {
    color: white;
    z-index: 1;
    position: relative;
    font-size: 2.25rem;
    font-weight: 100;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
    @media (max-width: 768px) {
      .hero__title {
        font-size: 1.125rem; } }
  .hero__summary {
    color: white;
    position: relative;
    font-size: 1.25rem;
    font-weight: 100;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
  .hero__actions {
    position: relative;
    z-index: 1; }

@media (max-width: 768px) {
  .hero--account .container {
    padding: 0; } }

.hero--account .hero__title {
  font-size: 1.75rem;
  font-weight: 300; }

.hero--scroll {
  color: white;
  text-align: center;
  background-size: cover;
  padding: 5rem 0 5rem 0; }
  @media (min-width: 768px) {
    .hero--scroll {
      padding: 10rem 0 10rem 0; } }
  .hero--scroll p {
    margin-bottom: 0;
    max-width: 40rem; }
  .hero--scroll .container {
    height: auto; }
  .hero--scroll:after, .hero--scroll:before {
    content: none; }
  .hero--scroll .hero__title {
    font-size: 2.5rem;
    margin-bottom: calc(1.25rem);
    margin-bottom: calc(var(--base-padding));
    letter-spacing: 2px;
    -webkit-font-smoothing: antialiased; }
  .hero--scroll .hero__divider {
    width: 1rem;
    border-top: 2px solid white;
    margin: 1.25rem 0 1.25rem 0;
    margin: var(--base-padding) 0 var(--base-padding) 0;
    border-color: inherit; }
  .hero--scroll .hero__subtitle {
    letter-spacing: 1px;
    color: inherit;
    -webkit-font-smoothing: antialiased; }
  .hero--scroll .container {
    justify-content: center; }
  .hero--scroll .hero__content {
    z-index: 1;
    align-items: center;
    margin-right: 0; }
    .hero--scroll .hero__content span {
      margin-bottom: 1.25rem;
      margin-bottom: var(--base-padding);
      text-transform: uppercase;
      font-size: 0.8rem; }
  .hero--scroll .hero__main-icon {
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
  .hero--scroll .hero__scroll-arrows {
    width: 3rem;
    position: relative; }
    .hero--scroll .hero__scroll-arrows svg {
      cursor: pointer;
      position: absolute;
      left: 0; }
    .hero--scroll .hero__scroll-arrows svg:nth-child(2) {
      opacity: 0.3;
      top: 1rem; }
    .hero--scroll .hero__scroll-arrows svg:nth-child(3) {
      opacity: 0.15;
      top: 2rem; }
  .hero--scroll svg {
    width: 2.5rem;
    height: 2.5rem; }

.hero-bkg {
  position: relative; }
  .hero-bkg .container {
    position: relative; }

h1.hero-heading {
  color: #f0fbff;
  font-size: 1.7rem;
  padding-top: 50px;
  text-align: center;
  letter-spacing: -0.4px;
  font-style: italic; }

h1.hero-heading span {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1.5px; }

h1.hero-heading b {
  font-size: 1.5rem;
  font-weight: 400;
  padding: 4px; }

.hero-bkg-darken {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(59, 128, 187, 0.8);
  width: 100%; }

@media only screen and (max-width: 460px) {
  h1.hero-heading {
    font-size: 1.6rem;
    padding-top: 20px; } }

/*------Mobile------*/
@media only screen and (max-width: 700px) {
  .hero-bkg-darken {
    background: #0364b9;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDM2NGI5IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2YwZmJmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
    background: -moz-linear-gradient(-45deg, #0364b9 0%, #f0fbff 100%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #0364b9), color-stop(100%, #f0fbff));
    background: -webkit-linear-gradient(-45deg, #0364b9 0%, #f0fbff 100%);
    background: -o-linear-gradient(-45deg, #0364b9 0%, #f0fbff 100%);
    background: -ms-linear-gradient(-45deg, #0364b9 0%, #f0fbff 100%);
    background: linear-gradient(135deg, #0364b9 0%, #f0fbff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0364b9', endColorstr='#f0fbff', GradientType=1); }
  h1.hero-heading {
    font-size: 0.9rem;
    padding-top: 27px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.1px; }
  h1.hero-heading span {
    font-weight: 400;
    font-size: 0.8rem; }
  h1.hero-heading b {
    font-weight: 500;
    font-size: 0.85rem;
    padding: 2px; }
  .hero-bkg-darken {
    background-color: #005baa;
    background-color: var(--color-blue); } }

@media only screen and (min-width: 700px) {
  .hero-bkg {
    background: url(/images/aa/responsive/altair-bkg.jpg) no-repeat;
    background-size: cover;
    background-position: center; } }

.modal {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  overflow: auto;
  display: none; }
  .modal .modal-blue {
    overflow: visible;
    padding: 0; }

.modal-active {
  overflow: hidden; }

@media only screen and (max-width: 1023px) {
  body.modal-active-mobile {
    overflow: hidden; } }

@media only screen and (max-width: 500px) {
  body.modal-active-mobile {
    position: fixed; } }

.modal-sm {
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 2px solid #74b9ff;
  border-top: 2px solid var(--color-light-blue);
  padding: 16px;
  max-width: 600px;
  margin: 50px auto; }

.modal-lg .modal-banner-image {
  width: 100%;
  display: block;
  min-height: 340px;
  position: relative; }

#modal-info-children .modal-body li, #modal-info-infant .modal-body li {
  list-style-position: outside;
  margin-left: 20px;
  padding: 10px 0; }

#modal-info-children .modal-body ul, #modal-info-infant .modal-body ul {
  padding: 0;
  margin: 0; }

.modal-lg .infant-image {
  background: url("/images/aa/responsive/infant-flight.jpg") no-repeat;
  background-size: cover; }

.modal-lg .children-image {
  background: url("/images/aa/responsive/children-flight.jpg") no-repeat;
  background-size: cover; }

#modal-info-infant .modal-header button, #modal-info-children .modal-header button {
  color: #ffffff;
  opacity: 1;
  padding-right: 10px;
  padding-top: 10px;
  z-index: 1;
  position: relative; }

#modal-info-infant #modal-package-content, #modal-info-children #modal-package-content {
  position: relative;
  top: -70px;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 20px;
  box-sizing: border-box; }

#modal-info-infant .modal-header h4, #modal-info-children .modal-header h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: left;
  padding: 10px 50px 10px 50px;
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  bottom: 80px; }

#modal-info-infant .modal-footer, #modal-info-children .modal-footer {
  margin-top: -70px; }

.modal-blue {
  background-color: #16a6c3;
  background: linear-gradient(8deg, #70D5E3, #05B1D0, #05B1D0);
  color: white;
  position: relative;
  font-size: 16px;
  border: 0; }
  .modal-blue .plane-loader path {
    fill: white; }
  .modal-blue a {
    color: white; }
  .modal-blue p {
    line-height: normal;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
  .modal-blue .modal-header .modal-close {
    opacity: 1;
    text-shadow: none;
    background: white;
    color: #495662;
    color: var(--font-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: -20px;
    right: -20px; }
    .modal-blue .modal-header .modal-close:hover {
      opacity: 1; }
  .modal-blue .modal-header {
    padding: 1.25rem;
    padding: var(--base-padding);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px; }
  .modal-blue .modal-body {
    padding: 1.25rem;
    padding: var(--base-padding); }
    @media (min-width: 768px) {
      .modal-blue .modal-body {
        padding: 20px 80px; } }
  .modal-blue .modal-footer {
    min-height: 0px; }
  .modal-blue .modal-heading {
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 1.25rem;
    padding-top: var(--base-padding); }
  .modal-blue .modal-highlight {
    margin: 2.5rem 0 1.25rem 2.5rem;
    margin: var(--double-padding) 0 var(--base-padding) var(--double-padding);
    padding: 0 0 0 1.25rem;
    padding: 0 0 0 var(--base-padding);
    display: block;
    text-align: left;
    max-width: 40%;
    color: #495662;
    color: var(--font-color);
    border-left: 2px solid #495662;
    border-left: 2px solid var(--font-color);
    font-weight: 600;
    position: relative; }
  .modal-blue .divider {
    width: 10px;
    height: 1px;
    display: block;
    background-color: #fff;
    margin: 0.625rem auto;
    margin: var(--half-padding) auto; }

.modal .modal-new {
  border-top: none; }

.modal-new {
  position: relative; }
  .modal-new b {
    font-weight: 600; }
  .modal-new .modal-header .modal-close {
    opacity: 1;
    text-shadow: none;
    background: white;
    color: #495662;
    color: var(--font-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: -20px;
    right: -20px;
    box-shadow: 0px 1px 2px #aaa;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center; }
    .modal-new .modal-header .modal-close:hover {
      opacity: 1; }
  .modal-new .btn.modal-close {
    width: 100%;
    max-width: 280px;
    background: transparent;
    border-color: #E1E8EE;
    border-color: var(--color-cadet);
    color: white;
    font-size: 14px; }
  .modal-new .modal-footer {
    display: flex;
    justify-content: center; }
    .modal-new .modal-footer .modal-close {
      background: #fff;
      color: #495662;
      color: var(--font-color);
      border-color: #E1E8EE;
      padding: calc(1.25rem/2) 2.5rem;
      padding: calc(var(--base-padding)/2) var(--double-padding);
      border-radius: 6px;
      height: auto;
      width: auto;
      font-size: 16px;
      font-weight: 600;
      position: static;
      box-shadow: none; }
  .modal-new .modal-header--simple .modal-heading {
    text-align: left;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding);
    padding: 0; }
    @media (min-width: 960px) {
      .modal-new .modal-header--simple .modal-heading--wrap {
        max-width: 40%; } }
  .modal-new .modal-header--simple .modal-body {
    padding: 1.25rem 1.25rem 0 1.25rem;
    padding: var(--base-padding) var(--base-padding) 0 var(--base-padding); }

.modal-new.modal-new--price-update {
  text-align: center; }
  .modal-new.modal-new--price-update p {
    font-size: 1rem;
    color: #A3AAB0; }
  .modal-new.modal-new--price-update .modal-header--simple .modal-heading {
    text-align: center; }
  .modal-new.modal-new--price-update .modal-header--simple .modal-heading--wrap {
    max-width: 100%; }
  .modal-new.modal-new--price-update .modal-close, .modal-new.modal-new--price-update .button {
    max-width: 180px;
    font-size: 0.875rem;
    font-weight: 400; }

.modal-new.modal-new--double-pad {
  padding: 2.5rem;
  padding: var(--double-padding); }

.modal-new.modal-new--loading {
  padding: 0 0 1.25rem;
  padding: 0 0 var(--base-padding);
  box-shadow: 0px 3px 6px #00000029; }
  .modal-new.modal-new--loading .modal-heading {
    text-align: center;
    margin-bottom: 0; }
  .modal-new.modal-new--loading .rotating-text {
    margin-top: 1.25rem;
    margin-top: var(--base-padding); }

@media only screen and (max-width: 630px) {
  .modal-sm {
    width: 85%; }
  .modal-lg .infant-image {
    background: url("/images/aa/responsive/infant-flight-sm.jpg") no-repeat;
    background-size: cover; }
  .modal-lg .children-image {
    background: url("/images/aa/responsive/children-flight-sm.jpg") no-repeat;
    background-size: cover; }
  .modal-lg .modal-banner-image {
    min-height: 200px; }
  .modal-header h4 {
    padding: 10px 20px 10px 20px; }
  #modal-info-infant #modal-package-content, #modal-info-children #modal-package-content {
    top: 0;
    padding: 0; }
  #modal-info-infant .modal-footer, #modal-info-children .modal-footer {
    margin-top: 10px; }
  #modal-info-children .modal-header h4, #modal-info-infant .modal-header h4 {
    bottom: 10px; } }

.modal-lg {
  background-color: #ffffff;
  border-radius: 3px;
  border-top: 2px solid #ffa500;
  padding: 16px;
  max-width: 700px;
  margin: 50px auto;
  padding-bottom: 30px; }

.modal-x-lg {
  max-width: 80%; }

@media only screen and (max-width: 730px) {
  .modal-lg {
    width: 85%; } }

.modal-header button {
  appearance: none;
  background: transparent;
  border: 0;
  color: #000000;
  cursor: pointer;
  filter: alpha(opacity=20);
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  opacity: .2;
  padding: 0;
  text-shadow: 0 1px 0 #ffffff; }

.modal-header button:hover {
  color: #000000;
  cursor: pointer;
  opacity: .5;
  text-decoration: none; }

.modal-header h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-align: center; }

.modal-lg h5 {
  font-size: 1rem;
  padding-top: 15px; }

.modal-lg p {
  font-size: 0.9rem;
  line-height: 1.2rem; }

.modal-footer {
  margin-top: 20px;
  min-height: 40px; }

.modal-loading-body {
  text-align: center; }

.modal-loading {
  display: block;
  margin: 30px auto;
  width: 100px;
  height: 100px; }

.modal-currency-body {
  padding: 20px;
  text-align: center; }

@media only screen and (max-width: 700px) {
  .modal-header h4 {
    font-size: 0.9rem;
    margin-bottom: 0px; }
  .modal-lg h5 {
    font-size: 0.85rem; }
  .modal-lg p {
    font-size: 0.8rem; }
  .modal-tabs {
    font-size: 16px;
    margin-top: 20px; }
  .modal-body ul li {
    font-size: 0.85rem; }
  #modal-fare-rules-content {
    font-size: 0.75rem; }
  #modal-fare-rules-content p {
    font-size: 0.8rem; }
  #modal-fare-rules-content i {
    font-size: 0.9rem; } }

.modal-lg p.seats-avail, .modal-lg p.bags-avail, .modal-lg p.seats-not-avail, .modal-lg p.bags-not-avail {
  font-size: 13px; }

@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/lib/fonts/MaterialIcons-Regular.woff) format("woff"); }

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga"; }
  .material-icons.blue-icon {
    position: relative;
    top: 5px;
    color: #3a92ea; }
  .material-icons.grey-icon {
    position: relative;
    top: 5px;
    color: #bdc6cf; }

/* tabs */
.modal-tabs {
  font-size: 18px;
  text-align: center;
  margin-top: 40px; }

ul.tabs {
  list-style: none; }

.tabs li {
  display: inline-block;
  margin-right: 1em; }

.tabs li a {
  color: #000;
  text-decoration: none; }

.tabs li.active,
.tabs li:hover {
  border-bottom: 2px #2a92ea solid; }

.img-link-list a:hover,
.img-link-list a:focus {
  opacity: 0.5; }

.img-link-list img {
  width: 100%; }

@media only screen and (max-width: 767px) {
  .about-us-logos .img-link-list img {
    width: auto; } }

.img-link-list {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem; }

@media only screen and (max-width: 767px) {
  .white-back.img-link-list img {
    width: 100%; } }

@media only screen and (max-width: 700px) {
  iframe#paypal-offers--iframe-b4652871-54d9-4cb7-8bd6-af3fa52a44d2 {
    display: none !important; }
  iframe #paypal-offers--iframe-b4652871-54d9-4cb7-8bd6-af3fa52a44d2 {
    display: none !important; }
  #paypal-offers--iframe-b4652871-54d9-4cb7-8bd6-af3fa52a44d2 {
    display: none !important; } }

/* Feedback widget */
#gaf-dialog {
  display: none; }

#gaf-button {
  position: fixed;
  top: 50%;
  left: -18px;
  background: rgba(61, 194, 85, 0.8);
  color: #fff;
  padding: 4px 7px;
  font-size: 12px;
  z-index: 999999999;
  transform: rotate(270deg);
  direction: ltr !important;
  height: 20px;
  text-decoration: none; }

#gaf-dialog {
  position: fixed;
  top: 40%;
  left: 2%;
  background: white;
  box-shadow: 0 0 25px #aaa;
  padding: 20px;
  z-index: 999999999;
  width: 320px; }

#gaf-dialog h5 {
  text-align: center;
  font-size: 16px;
  margin: 0;
  font-weight: 500; }

#gaf-type {
  text-align: center; }

#gaf-type textarea:focus,
#gaf-type input:focus {
  outline: none; }

#gaf-type a {
  display: inline-block;
  width: 24%;
  min-width: 6em;
  text-align: center; }

#gaf-type a:hover {
  opacity: 0.7; }

#gaf-type a.active {
  font-weight: bold; }

#gaf-text {
  padding: 10px;
  width: 100%;
  font-size: 100%;
  background: #eaeaeb;
  border: none;
  box-sizing: border-box;
  margin-top: 10px; }

#gaf-submit {
  display: block;
  font-weight: 500;
  padding: 5px 10px;
  background: #2a92ea;
  text-decoration: none;
  float: right;
  margin-top: 10px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px; }

#gaf-submit:hover {
  opacity: 0.7; }

#gaf-dialog-close {
  position: absolute;
  top: -10px;
  right: 0;
  padding: 10px;
  font-size: 24px;
  color: #999999;
  line-height: 1;
  text-decoration: none; }

@media only screen and (max-width: 800px) {
  #gaf-dialog {
    left: 10%;
    width: 80%; }
  #gaf-dialog-close {
    right: 10%; } }

/* Spanish language modal */
.spanish-modal-image {
  background: url("/images/aa/responsive/spanish-modal.jpg") no-repeat;
  background-size: cover;
  min-height: 220px;
  background-position-y: -20px;
  position: relative; }

#spanish-language-modal .modal-lg {
  min-height: 200px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-height: 200px; }

#spanish-language-modal p {
  padding: 20px 0; }

@media only screen and (max-width: 800px) {
  #spanish-language-modal .modal-lg {
    min-height: 380px; } }

@media only screen and (max-width: 780px) {
  .airline-content-landing-logos {
    display: none; } }

/* GDPR message */
#gdpr-cookie-message {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #dddddd;
  background-color: var(--color-grey);
  padding: 5px;
  box-sizing: border-box;
  z-index: 99; }

#gdpr-cookie-message p {
  padding: 0 10px;
  width: 100%;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: .5rem; }

#gdpr-cookie-message .button {
  padding: .125rem 1rem;
  color: #495662;
  color: var(--font-color);
  text-decoration: none;
  font-size: 12px; }

.gdpr-cookie-message-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem; }

@media only screen and (max-width: 500px) {
  #gdpr-cookie-message p:first-of-type {
    box-sizing: border-box;
    padding-bottom: 0; }
  #gdpr-cookie-message {
    padding: 10px;
    padding-right: 70px; }
  #gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: white;
    font-size: 12px;
    line-height: 1.5em;
    padding: 0 0 10px 0; }
  #gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: left; } }

#gdpr-cookie-message h4 {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px; }

#gdpr-cookie-message h5 {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px; }

#gdpr-cookie-message p, #gdpr-cookie-message ul {
  color: #495662;
  color: var(--font-color);
  font-size: 12px;
  line-height: 1.5em; }

#gdpr-cookie-message p:last-child {
  margin-bottom: 0; }

#gdpr-cookie-message li {
  width: 49%;
  display: inline-block; }

#gdpr-cookie-message span, #gdpr-cookie-message a {
  margin-left: 15px;
  text-decoration: underline;
  cursor: pointer;
  color: #aaaaaa; }

#gdpr-cookie-message a {
  font-size: 12px;
  transition: all 0.3s ease-in; }

#gdpr-cookie-message .button:hover {
  background-color: white;
  border-color: white;
  color: #005baa;
  color: var(--color-blue);
  transition: all 0.3s ease-in; }

#gdpr-cookie-message button,
button#ihavecookiesBtn {
  border: none;
  background: #0aae27;
  color: #fff;
  font-size: 12px;
  padding: 7px;
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s ease-in;
  position: relative;
  top: -6px; }

#gdpr-cookie-message button:hover {
  background: #0a8f22;
  transition: all 0.3s ease-in; }

button#gdpr-cookie-advanced {
  background: white;
  color: #333; }

button:hover#gdpr-cookie-advanced {
  background: #fff;
  columns: #333;
  text-decoration: underline; }

#gdpr-cookie-message button:disabled {
  opacity: 0.3; }

#gdpr-cookie-message input[type="checkbox"] {
  float: none;
  margin-top: 0;
  margin-right: 5px; }

#grid-icons.grid-container .img-link-list img {
  width: auto;
  max-width: 100%; }
  @media only screen and (max-width: 480px) {
    #grid-icons.grid-container .img-link-list img {
      max-height: 20px; } }
  #grid-icons.grid-container .img-link-list img.grid-icons-klarna {
    margin: 15px 23px;
    max-width: 80%; }
  #grid-icons.grid-container .img-link-list img.grid-icons-amazon-pay {
    max-width: 90%;
    padding: 23px 18px 0; }

.grid-d-2.img-link-list {
  width: 14%; }

@media only screen and (max-width: 700px) {
  #grid-icons .max-65 img {
    max-height: 44px; } }

/*------Tablet------*/
@media only screen and (max-width: 1080px) {
  #grid-icons .max-65 img {
    max-height: 50px; } }

.home-page-benefits {
  padding: 40px 0 20px;
  text-align: center; }
  .home-page-benefits .container-flex {
    padding: 0 1.25rem;
    padding: 0 var(--grid-gutter); }

.home-page-benefits span {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  min-height: 2.5rem; }

.home-page-benefits img {
  display: block;
  margin: 15px auto;
  margin-bottom: 5px;
  width: 124px; }

.home-page-benefits p {
  font-size: 1rem;
  padding: 0; }
  @media (max-width: 768px) {
    .home-page-benefits p {
      font-size: 0.875rem; } }

@media only screen and (max-width: 700px) {
  .home-page-benefits img {
    width: 105px;
    margin-bottom: 0px;
    margin-top: 0px; }
  .home-page-benefits .col-3 {
    margin-bottom: 40px; } }

.content-title {
  background-color: #97defa;
  border-bottom: none;
  height: 29px; }

.content-title h1 {
  font-size: 12px;
  font-weight: 400;
  float: left;
  padding-top: 5px;
  color: #4badd4; }

.content-title-breadcrumbs {
  color: #4badd4;
  font-size: 12px;
  padding-top: 5px;
  padding-left: 20px;
  float: left; }

.content-title-breadcrumbs a {
  color: #4badd4;
  text-decoration: none; }

.content-title-breadcrumbs a:hover {
  color: #005baa;
  color: var(--color-blue);
  text-decoration: none; }

.content-title-breadcrumbs span {
  color: #1695c7;
  font-weight: bold;
  font-size: 0; }

.content-section {
  padding: 20px 0; }

.content-container {
  min-height: 300px; }

.content-wrap {
  padding: 20px 30px; }

.content-wrap p {
  margin-bottom: 1rem; }

@media (max-width: 768px) {
  .fullwidht img {
    max-width: 100% !important; } }

.content-sub-heading {
  color: #005baa;
  color: var(--color-blue);
  font-size: 17px;
  padding-bottom: 10px; }

.content-embed {
  height: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
  overflow: hidden;
  padding-bottom: 40%;
  position: relative; }

.content-embed iframe,
.content-embed object,
.content-embed embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.content-title em {
  color: #4badd4;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  padding-top: 6px;
  line-height: 1.8rem; }

.content-title {
  overflow: hidden; }

.light-dark-blue a:hover,
.light-dark-blue a:focus {
  color: #fff; }

.fullscreen-section-header {
  width: 100%;
  height: auto;
  display: block; }

.fullscreen-section-header img {
  min-width: 100%;
  width: 100%;
  height: auto;
  display: block; }

.light-border-5 {
  border: 5px solid #d5e5eb; }

.white-hover a:focus,
.white-hover a:hover {
  color: #fff; }

#passenger-services .img-link-list img {
  width: auto; }

@media only screen and (max-width: 700px) {
  .content-title {
    padding-left: 5px;
    border-top: 2px solid #74b9ff;
    border-top: 2px solid var(--color-light-blue); }
  .content-title h1 {
    padding-top: 6px; }
  .content-title-breadcrumbs {
    padding-top: 6px; } }

@media only screen and (max-width: 800px) {
  .content-generic img {
    width: 100%; } }

@media only screen and (max-width: 1210px) {
  .xxl-button {
    padding-right: 40px;
    padding-left: 40px;
    font-size: 1.1rem; } }

@media only screen and (max-width: 768px) {
  #ppbanner {
    width: 100%;
    max-height: 55px; }
  img[alt="alternative airlines and paypal payment icons"] {
    width: 100%;
    max-width: 100%; } }

.featured-reviews {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: block;
  margin-bottom: 50px; }

.review {
  text-align: center;
  margin-top: 50px; }

.banner-section {
  background-color: #005BA9;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative; }

.banner-wrp {
  background-color: #74B9FF;
  position: relative;
  height: 366px;
  width: 90%;
  margin: 0 auto;
  box-shadow: 1px 2px 3px #00000019;
  border-radius: 6px; }
  .banner-wrp--paypal {
    height: 350px; }
  .banner-wrp--fnpl-usa {
    height: 396px; }
  .banner-wrp--refundable {
    height: 370px; }

.banner-flex {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 341px;
  top: 0;
  background-color: #fff;
  box-shadow: 1px 2px 3px #00000019;
  border-radius: 6px;
  text-align: center; }
  .banner-flex--refundable {
    height: 361px; }

.banner-img {
  margin-top: 17px;
  margin-bottom: 22px;
  width: 115px;
  height: 45px; }
  .banner-img-paypal {
    height: 68px; }

.banner-text--title {
  color: #2990E6;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.4px;
  width: 80%;
  margin: 0 auto; }
  .banner-text--title-refundable {
    margin-bottom: 10px; }

.banner-text--para1 {
  padding-top: 16px;
  padding-bottom: 20px;
  color: #F79C34;
  width: 80%;
  margin: 0 auto;
  font-size: 14px; }

.banner-text--para2 {
  color: #495662;
  font-size: 16px; }
  .banner-text--para2-refundable {
    width: 80%;
    margin: auto; }

.banner-button {
  background-color: #2990E6;
  width: 304px;
  height: 50px;
  color: #fff;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-top: 25px;
  cursor: pointer; }
  .banner-button--refundable {
    margin-top: 0; }

.banner-note {
  position: absolute;
  bottom: 45px;
  color: #fff;
  font-size: 12px;
  left: 45px; }
  .banner-note--fnpl-usa {
    width: 80%;
    bottom: 55px; }
    .banner-note--fnpl-usa a {
      color: #fff; }

.banner-desk {
  display: none; }

@media only screen and (min-width: 1040px) {
  .banner-wrp {
    max-width: 760px;
    height: 196px; }
    .banner-wrp--paypal {
      height: 172px; }
      .banner-wrp--paypal .banner-desk {
        bottom: -59px; }
    .banner-wrp--refundable {
      height: 176px; }
    .banner-wrp--amazon .banner-desk {
      bottom: -59px; }
  .banner-flex {
    max-width: 760px;
    height: 165px;
    flex-direction: row;
    padding-left: 25px;
    padding-right: 16px;
    justify-content: space-between; }
  .banner-text {
    text-align: left;
    width: 50%; }
    .banner-text--title {
      width: 100%; }
      .banner-text--title-refundable {
        margin-bottom: 10px;
        margin-top: 20px; }
    .banner-text--para1 {
      width: 100%; }
    .banner-text--para2-refundable {
      font-size: 14px;
      width: 100%; }
  .banner-button {
    width: 113px;
    height: 50px;
    margin-top: 0;
    align-self: flex-end;
    margin-bottom: 18px; }
  .banner-pics {
    align-self: flex-start;
    margin-top: 34px;
    position: relative; }
    .banner-pics--refundable {
      margin-top: 54px;
      margin-left: 20px; }
  .banner-img {
    margin: 0; }
  .banner-desk {
    display: block;
    position: absolute;
    bottom: -82px; }
  .banner-note {
    position: relative;
    margin: 0 auto;
    width: 760px;
    margin-top: 20px;
    left: 0;
    padding-left: 25px; }
    .banner-note--fnpl-usa {
      bottom: 45px; }
  .banner-link {
    align-self: flex-end; } }

.logo-bar {
  padding: 1.25rem 0;
  padding: var(--base-padding) 0;
  display: flex;
  background-color: #005baa;
  background-color: var(--color-blue); }
  .logo-bar .container-flex {
    padding: 0 1.25rem;
    padding: 0 var(--grid-gutter);
    justify-content: center; }
  .logo-bar svg {
    width: 100%; }
  .logo-bar img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-height: 2rem;
    max-width: 6rem; }
  .logo-bar--payments {
    background-color: white; }
    .logo-bar--payments .logo-bar__item img {
      max-height: 24px; }
  .logo-bar__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 1.25rem;
    margin-right: var(--base-padding);
    flex: 1 1 auto;
    width: 100%; }
    .logo-bar__item:last-child {
      margin-right: 0; }
    @media (max-width: 768px) {
      .logo-bar__item--hide-mobile {
        display: none; } }
    @media (max-width: 768px) {
      .logo-bar__item--show-mobile {
        display: flex; } }

html.modal-open {
  overflow: hidden; }

html .overlay {
  transition: none; }

html .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  min-height: 100%;
  z-index: 9999;
  overflow-y: scroll; }

html .overlay--menu {
  z-index: 12000; }

html .overlay.active {
  transform: translate3d(0, 0, 0); }

html .overlay.submenu-active {
  overflow: hidden; }

html.modal-ready .overlay {
  transition: all 0.2s ease-in-out;
  transition-property: transform; }

.overlay {
  position: relative;
  background-color: white;
  max-width: 320px; }

html .overlay--menu {
  transform: translate3d(320px, 0, 0); }

.overlay--menu {
  padding-top: 0;
  padding-bottom: 4rem; }
  .overlay--menu .menu-item-home {
    display: none; }

.menu-overlay-open {
  color: #005baa;
  color: var(--color-blue); }

.menu-overlay-close {
  display: flex;
  margin-top: 11px;
  margin-left: auto;
  margin-right: 1rem;
  background: transparent;
  border: 0;
  padding: 0;
  color: #005baa;
  color: var(--color-blue); }

.deactive--overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  z-index: 11111;
  opacity: .5; }
  .deactive--overlay.active {
    display: block; }

/* Overlay for newsletter sign up on the blog */
#pop-up-content {
  z-index: 499;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none; }

#popup {
  width: 95%;
  max-width: 648px;
  height: auto;
  box-shadow: #64686e3d 0px 0px 20px 5px;
  -moz-box-shadow: #64686e3d 0px 0px 20px 5px;
  -webkit-box-shadow: #64686e3d 0px 0px 20px 5px;
  position: relative;
  top: 10%;
  margin: 0 auto; }

#popup iframe {
  height: 530px; }

#overlay-bg-full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001; }

#overlay-bg-full .close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  z-index: 1; }

#overlay-bg-full .close:hover {
  opacity: 1; }

#overlay-bg-full .close:before,
#overlay-bg-full .close:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #333; }

#overlay-bg-full .close:before {
  transform: rotate(45deg); }

#overlay-bg-full .close:after {
  transform: rotate(-45deg); }

/* Overlay modal */
#overlay-bg {
  font-size: 16px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
  z-index: 10002;
  width: 800px;
  height: 365px;
  color: #333;
  background-color: #fafafa;
  text-align: center;
  border-top: 7px solid #179bd7;
  position: relative; }

#overlay-bg_bg {
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10001; }

.overlay-bg_content p {
  font-size: 16px;
  line-height: 22px;
  padding: 0 10px;
  box-sizing: border-box; }

.overlay-bg_content p:last-of-type {
  padding-bottom: 10px; }

.overlay-bg_content p.bold {
  font-weight: 600; }

.overlay-bg_content p.padding-top-10 {
  padding-top: 10px; }

.overlay-bg_content p.terms {
  padding-top: 10px;
  font-size: 13px; }

.overlay-bg_content .bio_btn.bio_btn_clicked {
  background: #eee;
  color: #000;
  font-size: 14px; }

.overlay-bg_content .bio_btn.bio_btn_clicked span {
  font-weight: 700;
  font-size: 18px;
  padding: 0 3px; }

.overlay-bg_content {
  width: 50%;
  float: left;
  vertical-align: top; }

.overlay-bg_content.left-side {
  height: 100%;
  background: url(/images/aa/responsive/booking-desktop.jpg) 25% no-repeat;
  width: 50%;
  background-size: cover;
  position: relative;
  padding: 0; }

.overlay-bg_content img {
  max-height: 40px; }

.overlay-bg_content .bio_btn {
  display: inline-block;
  margin: 20px auto;
  padding: 15px;
  color: #429406;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid #47ad0b;
  cursor: pointer;
  border-radius: 0;
  text-decoration: none;
  background: #fff; }

#overlay-bg_close,
#overlay-bg_close:after {
  position: absolute;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
  content: "\00d7"; }

.overlay-bg_content p.title {
  display: block;
  color: #fff;
  background: #ff690f;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  margin: 0 0 20px; }

#overlay-bg_close {
  right: 10px;
  top: 10px;
  color: #5c5c5c;
  font-size: 18px;
  font-weight: 700; }

#overlay-bg_close:after {
  right: 0;
  top: -15px;
  color: #fff;
  font-size: 38px;
  font-weight: 700; }

#overlay-bg_close:hover:after {
  color: #d3d3d3; }

.overlay-bg_content span.offer-note {
  font-size: 18px;
  font-weight: 700; }

.overlay-bg_content .flex-box {
  display: flex;
  align-items: flex-end;
  height: 100%; }

@media only screen and (max-width: 480px) {
  .overlay-bg_content.left-side {
    display: none; }
  #overlay-bg {
    width: 90%;
    height: auto; }
  .overlay-bg_content {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    float: none; }
  .overlay-bg_content p.title {
    font-size: 13px; }
  .overlay-bg_content p {
    font-size: 12px;
    padding-top: 10px;
    margin-top: 0; }
  .overlay-bg_content img:last-of-type {
    margin: 10px 0; } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  padding: var(--base-padding);
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  border-radius: 3px;
  border: 1px solid #dddddd;
  border: 1px solid var(--color-grey);
  background-color: white; }
  .card:hover {
    background-color: #74b9ff;
    background-color: var(--color-light-blue); }
    .card:hover .card__button {
      background-color: white;
      color: #2990e6;
      color: var(--color-baby-blue); }
  .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.09); }
  .card__icon {
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #005baa;
    background-color: var(--color-blue);
    color: white;
    border-radius: 50%;
    margin: 0.625rem 0 1.875rem 0; }
  .card__content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%; }
  .card__title {
    display: flex;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1.25rem;
    margin-bottom: var(--base-padding); }
  .card__button {
    background: #2990e6;
    background: var(--color-baby-blue);
    color: white;
    border-color: #2990e6;
    border-color: var(--color-baby-blue);
    padding: 0;
    max-width: 65px;
    width: 100%;
    font-size: 0.875rem; }

.summary-section {
  background-color: #fff;
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  padding: 1.25rem;
  padding: var(--base-padding);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.09);
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  width: 100%; }
  .summary-section--with-header {
    padding: 0.625rem 1.25rem 1.25rem 1.25rem;
    padding: var(--half-padding) var(--base-padding) var(--base-padding) var(--base-padding); }

.section--padding {
  padding: 2.5rem 0;
  padding: var(--double-padding) 0; }

.section__header {
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }

.content--steps .container {
  padding: 0 1.25rem;
  padding: 0 var(--grid-gutter); }

.content--steps .grid-item {
  display: flex;
  flex-direction: row; }

.content--steps .button-container {
  margin-top: 1.25rem;
  margin-top: var(--base-padding); }

.content--steps .step-by-step__content {
  width: calc(100% - 2.5rem); }

.content--steps .step-by-step__number {
  background-color: #dddddd;
  background-color: var(--color-grey);
  color: white;
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 1.25rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  flex: 0 0 auto; }

.content--steps .step-by-step__title {
  display: flex;
  font-size: 1.5rem;
  color: #2990e6;
  color: var(--color-baby-blue);
  padding: 0.25rem 0 1.25rem 0;
  padding: 0.25rem 0 var(--base-padding) 0; }

.content--steps .step-by-step__summary {
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  font-size: 1rem; }

.content--seating .container {
  padding: 0 1.25rem;
  padding: 0 var(--grid-gutter); }

.content--seating .grid {
  grid-gap: 2.5rem;
  grid-gap: var(--double-padding); }

.content--seating .seat__image {
  position: relative;
  height: 10rem;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }

.content--seating .seat__title {
  display: flex;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }

.content--seating .seat__summary {
  color: white; }

.lazy-video {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-bottom: 56.3%;
  background-size: cover;
  background-color: #c9c9c9;
  background-position: center;
  position: relative;
  cursor: pointer; }
  @media (min-width: 768px) {
    .lazy-video {
      max-width: 50%;
      padding-bottom: 28.1%; }
      .lazy-video--large {
        max-width: 71.1%;
        margin-top: 55px;
        margin-bottom: 55px;
        padding-bottom: 40%; } }
  .lazy-video--center {
    margin-left: auto;
    margin-right: auto; }
  .lazy-video__button {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%); }
  .lazy-video[data-youtube] .lazy-video__button {
    color: #212121;
    opacity: 0.8; }
  .lazy-video[data-youtube]:hover .lazy-video__button {
    color: #ff0000;
    opacity: 1; }
  .lazy-video iframe {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%; }

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  padding: var(--base-padding);
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  background-color: white; }
  @media (min-width: 768px) {
    .banner {
      flex-direction: row; } }
  .banner:hover {
    border-color: #005baa;
    border-color: var(--color-blue); }
    .banner:hover .banner__button {
      color: #2990e6;
      color: var(--color-baby-blue);
      background-color: white;
      border-color: white; }
  .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.09); }
  .banner__image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E1E8EE;
    background-color: var(--color-cadet);
    margin: -1.25rem 1.25rem -1.25rem -1.25rem;
    border-radius: .375rem 0 0 .375rem;
    border-radius: var(--base-border-radius) 0 0 var(--base-border-radius);
    width: 10rem; }
    .banner__image i {
      font-size: 3rem; }
    .banner__image img {
      width: 100%; }
  .banner__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #74b9ff;
    background-color: var(--color-light-blue);
    margin: -1.25rem -1.25rem 1.25rem -1.25rem;
    border-radius: .375rem .375rem 0 0;
    border-radius: var(--base-border-radius) var(--base-border-radius) 0 0;
    width: calc(100% + 2.5rem);
    min-height: auto; }
    @media (min-width: 768px) {
      .banner__icon {
        margin: -1.25rem 1.25rem -1.25rem -1.25rem;
        border-radius: .375rem 0 0 .375rem;
        border-radius: var(--base-border-radius) 0 0 var(--base-border-radius);
        width: 10rem;
        min-height: 7rem; } }
    .banner__icon img {
      height: 5rem;
      padding: 1rem; }
      @media (min-width: 768px) {
        .banner__icon img {
          height: 4.5rem;
          width: 6rem;
          padding: 0; } }
    .banner__icon i {
      font-size: 3rem;
      padding: 1rem; }
  .banner__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    z-index: 1; }
    .banner__content strong {
      font-weight: 500; }
  .banner__title {
    display: flex;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: .5rem; }
  .banner__summary {
    font-size: 0.875rem; }
    @media (min-width: 768px) {
      .banner__summary {
        font-size: 1rem; } }
  .banner__button {
    color: white;
    border-color: #2990e6;
    border-color: var(--color-baby-blue);
    background-color: #2990e6;
    background-color: var(--color-baby-blue);
    padding: .25rem;
    max-width: 10rem;
    font-size: 0.875rem;
    margin-top: 1.25rem;
    margin-top: var(--base-padding); }

.banner--cookie {
  display: none; }

.banner--ticketing .banner__icon {
  background-color: white;
  border-right: 1px solid #e1e8ee; }
  .banner--ticketing .banner__icon img {
    max-width: 140px;
    height: auto; }

.banner--seats {
  flex-direction: column;
  padding: 2.5rem;
  padding: var(--double-padding);
  border: 1px solid white;
  background-image: url(/images/aa/responsive/my-account/seat-selection.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: white; }
  .banner--seats::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: black;
    opacity: .5; }

/* PP Credit banner on search results page */
.pp-credit-search.banner--paypal {
  background: #2990e6;
  background: linear-gradient(90deg, #2990e6 0%, #005baa 35%, #6dcff6 100%);
  color: white;
  flex-direction: row;
  padding: 1rem;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  max-width: 100%; }
  @media (min-width: 768px) {
    .pp-credit-search.banner--paypal .banner__content {
      padding-left: 0; } }
  .pp-credit-search.banner--paypal .banner__image {
    align-self: center;
    width: 5rem;
    height: 100%;
    margin-right: 1rem;
    margin-bottom: 0; }
    @media (min-width: 375px) {
      .pp-credit-search.banner--paypal .banner__image {
        width: 6rem;
        margin-right: 1.25rem;
        margin-right: var(--base-padding); } }
    @media (min-width: 768px) {
      .pp-credit-search.banner--paypal .banner__image {
        width: auto;
        height: 2rem; } }
    .pp-credit-search.banner--paypal .banner__image img {
      width: 100%; }
      @media (min-width: 768px) {
        .pp-credit-search.banner--paypal .banner__image img {
          width: auto; } }
  @media (min-width: 768px) {
    .pp-credit-search.banner--paypal .banner__title {
      font-size: 1.125rem; } }
  .pp-credit-search.banner--paypal .banner__subtitle {
    font-size: 10px; }
    @media (min-width: 375px) {
      .pp-credit-search.banner--paypal .banner__subtitle {
        font-size: 11px; } }
    @media (min-width: 768px) {
      .pp-credit-search.banner--paypal .banner__subtitle {
        font-size: 0.875rem; } }
  .pp-credit-search.banner--paypal .banner__disclaimer {
    font-size: 9px; }
    @media (min-width: 768px) {
      .pp-credit-search.banner--paypal .banner__disclaimer {
        font-size: 0.75rem; } }

.payment-success {
  padding: 1.25rem;
  padding: var(--base-padding); }
  .payment-success p {
    margin-bottom: 0; }
  .payment-success__title .icon-wrap {
    display: flex;
    align-items: center;
    margin-right: 1.25rem;
    margin-right: var(--base-padding); }
    .payment-success__title .icon-wrap svg {
      width: 50px;
      height: 50px; }
  .payment-success__title h1 {
    font-weight: 600;
    font-size: 25px;
    color: #7dc855; }
  .payment-success__title--failure {
    background-color: #be1e2e;
    color: #fff; }
    .payment-success__title--failure h1 {
      color: #fff; }
  .payment-success__actions {
    display: flex;
    flex-direction: column; }
    @media (min-width: 768px) {
      .payment-success__actions {
        flex-direction: row; }
        .payment-success__actions .summary-section:first-child {
          margin-right: 0.625rem;
          margin-right: var(--half-padding); }
        .payment-success__actions .summary-section:last-child {
          margin-left: 0.625rem;
          margin-left: var(--half-padding); } }
  .payment-success__contact i.material-icons, .payment-success__contact svg {
    color: #005baa;
    color: var(--color-blue);
    margin-right: 10px;
    position: relative;
    top: 5px;
    font-size: 18px; }
  .payment-success__contact svg.aa-icon {
    top: 0; }
  .payment-success__myaccount .btn {
    font-size: 1rem;
    padding: 0.625rem 2.5rem;
    padding: var(--half-padding) var(--double-padding); }

.warning-message {
  width: 100%;
  background: #ffffff;
  box-shadow: 1px 2px 3px #00000019;
  border: 2px solid;
  border-radius: .375rem;
  border-radius: var(--base-border-radius);
  padding: 1.25rem;
  padding: var(--base-padding);
  display: flex;
  margin: 0 auto;
  color: #cc828f; }
  .warning-message--blue {
    color: #2990e6;
    color: var(--color-baby-blue); }
  .warning-message__icon {
    margin-right: 1.25rem;
    margin-right: var(--base-padding);
    font-size: 24px;
    flex-shrink: 0; }
    .warning-message__icon svg {
      margin-top: -8px; }
  .warning-message__header {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    opacity: 1;
    margin-bottom: 0.625rem;
    margin-bottom: var(--half-padding); }
  .warning-message__text {
    font-size: 16px;
    color: #495662;
    color: var(--color-type); }
    .warning-message__text strong {
      font-weight: bold; }

.info-message {
  display: block;
  width: 100%;
  padding: 0.625rem;
  padding: var(--half-padding);
  background-color: #f1f8fd;
  border-left: 2px solid #2990e6;
  border-left: 2px solid var(--color-baby-blue);
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding);
  font-size: 14px; }
  .info-message__icon {
    margin-right: 0.625rem;
    margin-right: var(--half-padding);
    color: #495662;
    color: var(--color-type); }
  .info-message__text {
    flex: 1; }

.refund-protect-info {
  display: flex; }
  .refund-protect-info__section {
    width: 50%;
    padding: 0 0.625rem;
    padding: 0 var(--half-padding);
    margin-bottom: 0.625rem;
    margin-bottom: var(--half-padding); }
  .refund-protect-info__title {
    font-size: 16px;
    font-weight: bold;
    color: #2990e6;
    color: var(--color-baby-blue); }
    .refund-protect-info__title--trusted-choice {
      margin-bottom: 1.25rem;
      margin-bottom: var(--base-padding); }

.refund-protect-info-mobile {
  padding: 0 0.625rem;
  padding: 0 var(--half-padding);
  background: white;
  padding-top: 20px; }
  .refund-protect-info-mobile .refund-protect-info {
    display: flex;
    flex-wrap: wrap; }
  .refund-protect-info-mobile .refund-protect-info__section {
    flex-basis: 310px;
    flex-grow: 1; }
  @media (min-width: 960px) {
    .refund-protect-info-mobile {
      display: none; } }

@media (max-width: 959px) {
  .refund-protect-info-desktop .refund-protect-info__section {
    display: none; } }

@media (min-width: 960px) {
  .refund-protect-info-desktop {
    width: 100%;
    background: white;
    border-radius: 6px;
    color: #495662;
    color: var(--color-type);
    max-width: 560px;
    margin: auto;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 1.25rem 0.625rem 1.25rem 1.25rem;
    padding: var(--base-padding) var(--half-padding) var(--base-padding) var(--base-padding);
    display: block; } }

.refund-protect-benefits {
  display: flex;
  flex-wrap: wrap;
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.1));
  max-width: 400px;
  margin-bottom: 1.25rem;
  margin-bottom: var(--base-padding); }
  .refund-protect-benefits--stacked {
    max-width: 200px; }
  .refund-protect-benefits__title {
    margin: 10px 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    opacity: 0.5; }
  .refund-protect-benefits__terms {
    font-size: 12px;
    color: #bdc6cf;
    color: var(--color-pigeon); }

.trusted-choice {
  background-repeat: no-repeat;
  background-position: top right;
  background-image: url("/images/aa/responsive/trusted-choice/trusted-choice.svg"); }
  .trusted-choice ul {
    list-style: none; }
  .trusted-choice li {
    background: url(/images/aa/responsive/trusted-choice/heart.svg) no-repeat left top 5px;
    padding: 5px 0 1.25rem 30px;
    padding: 5px 0 var(--base-padding) 30px;
    font-size: 14px; }
    .trusted-choice li:nth-child(1) {
      padding-right: 95px; }
    .trusted-choice li:nth-child(2) {
      background-image: url("/images/aa/responsive/trusted-choice/positive-review.svg"); }
    .trusted-choice li:nth-child(3) {
      background-image: url("/images/aa/responsive/trusted-choice/customer-service.svg"); }
    .trusted-choice li:nth-child(4) {
      background-image: url("/images/aa/responsive/trusted-choice/padlock.svg"); }

/*# sourceMappingURL=sourcemaps/altair.min.css.map */
