/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

@media only screen and (max-width: 1024px) {
  .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

@media only screen and (max-width: 1024px) {
  .slick-slide {
    height: inherit;
  }
  .slick-slide.white-panel {
    margin: 30px;
  }
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-next, .slick-prev {
  color: transparent;
}

button.slick-next, button.slick-next:hover {
  position: absolute;
  top: calc(50% - 40px);
  width: 20px;
  height: 20px;
  padding: 0px;
  background-size: 20px;
  z-index: 5;
  display: block;
  background-image: url(/content/dam/aircanada/loyalty-content/images/prev-arrow.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  right: 0px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

button.slick-prev, button.slick-prev:hover {
  position: absolute;
  top: calc(50% - 40px);
  width: 20px;
  height: 20px;
  padding: 0px;
  background-size: 20px;
  z-index: 5;
  display: block;
  background-image: url(/content/dam/aircanada/loyalty-content/images/prev-arrow.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  left: 0px;
}

ul.slick-dots {
  list-style: none;
  text-align: center;
  padding: 0px;
}

ul.slick-dots li {
  display: inline-block;
  margin: 8px 3px;
  border: 1px solid #c1c5c8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  color: #fff;
}

ul.slick-dots li:before {
  background-color: #fff;
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  padding: 0;
  content: '';
  margin: 2px;
}

ul.slick-dots li.slick-active:before {
  background-color: #827968;
}

ul.slick-dots li button {
  border: none;
  background-color: transparent;
  color: transparent;
  height: 10px;
  padding: 1px;
  position: absolute;
  margin-top: -8px;
  margin-left: -3px;
}

.ae-Dropdown {
  display: inline-block;
  font: 600 16px sans-serif;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 0px 0px 30px 30px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-Dropdown {
    margin: 10px 0px 20px;
    padding: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .ae-Dropdown {
    margin: 20px 0px;
    padding: 0px;
  }
}

.ae-Dropdown-title {
  background: #fff;
  border: solid 1px #c8c8c8;
  cursor: pointer;
  font: 600 16px sans-serif;
  color: #2a2a2a;
  min-height: 48px;
  padding: 25px 25px 5px 10px;
  position: relative;
  text-align: left;
  width: 100%;
}

.ae-Dropdown-title:after {
  border-color: #2a2a2a transparent transparent transparent;
  border-style: solid;
  border-width: 4px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 15px;
  top: 46%;
  width: 0;
}

.ae-Dropdown-title span:first-child {
  font-size: 12px;
  color: #c8c8c8;
  position: absolute;
  top: 6px;
}

.ae-Dropdown-title > * {
  pointer-events: none;
}

.ae-Dropdown-list {
  background: #ffffff;
  -webkit-box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
  display: none;
  height: 0;
  list-style: none !important;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  width: calc(100% - 30px);
  z-index: 10;
}

.ae-Dropdown-list.is-open {
  display: block;
  height: auto;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .ae-Dropdown-list {
    width: 100%;
  }
}

.ae-Dropdown-list li {
  padding: 15px 10px;
  cursor: pointer;
  margin-bottom: 0px;
}

.ae-Dropdown-list li:hover {
  background-color: rgba(155, 155, 155, 0.1);
}

.ae-Dropdown-list li.is-selected {
  background-color: rgba(155, 155, 155, 0.1);
  color: #000;
}

#dropdown-label-hidden {
  display: none;
}

#view-more, #view-more2 {
  /* The Modal (background) */
}

#view-more.modal, #view-more2.modal {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

#view-more.modal.selected, #view-more2.modal.selected {
  display: block;
}

#view-more.modal .modal-container, #view-more2.modal .modal-container {
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 35%;
  position: relative;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 481px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 70%;
  }
}

@media only screen and (max-width: 480px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 90%;
  }
}

#view-more.modal .modal-container .modal-content, #view-more2.modal .modal-container .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0;
  border: none;
  width: 86%;
  margin-top: -10%;
  z-index: 5;
  position: relative;
  padding: 4em 30px 30px;
}

#view-more.modal .modal-container .modal-content a, #view-more2.modal .modal-container .modal-content a {
  color: #005078;
}

#view-more.modal .modal-container .modal-content a:hover, #view-more.modal .modal-container .modal-content a:active, #view-more2.modal .modal-container .modal-content a:hover, #view-more2.modal .modal-container .modal-content a:active {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content, #view-more2.modal .modal-container .modal-content {
    padding: 15px 30px;
    width: 96%;
  }
}

#view-more.modal .modal-container .modal-content .row:nth-of-type(1), #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) {
  margin-bottom: 20px;
}

#view-more.modal .modal-container .modal-content .row:nth-of-type(1) .col-33, #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) .col-33 {
  width: calc(33.33% - 3px);
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content .row:nth-of-type(1) .col-33, #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) .col-33 {
    width: 65%;
    margin: 0px auto 20px;
  }
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content .row:nth-of-type(1), #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) {
    margin-bottom: 0px;
  }
}

#view-more.modal .modal-container .modal-content ul.checked li, #view-more2.modal .modal-container .modal-content ul.checked li {
  min-height: 35px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

#view-more.modal .modal-container .close, #view-more2.modal .modal-container .close {
  font: normal 600 14px Open Sans;
  color: #005078;
  float: left;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#view-more.modal .modal-container .close:focus, #view-more.modal .modal-container .close :hover, #view-more2.modal .modal-container .close:focus, #view-more2.modal .modal-container .close :hover {
  text-decoration: none;
  cursor: pointer;
}

#view-more.modal .modal-container .primary-btn, #view-more2.modal .modal-container .primary-btn {
  float: right;
  margin: 0px;
}

#view-more.modal .modal-container .modal-header, #view-more2.modal .modal-container .modal-header {
  padding: 25px 30px;
  color: black;
}

#view-more.modal .modal-container .modal-header h3:before, #view-more2.modal .modal-container .modal-header h3:before {
  display: inline-block;
  height: 15px;
  content: '';
  border-right: 3px solid #b8a890;
  margin-right: 10px;
}

#view-more.modal .modal-container .modal-body, #view-more2.modal .modal-container .modal-body {
  padding: 0;
}

#view-more.modal .modal-container .modal-body img, #view-more2.modal .modal-container .modal-body img {
  max-width: 100%;
  width: 100%;
}

#view-more.modal .modal-container .modal-footer, #view-more2.modal .modal-container .modal-footer {
  padding: 0px 30px 20px;
  background-color: #fff;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

#view-more.modal .modal-container .modal-footer p, #view-more2.modal .modal-container .modal-footer p {
  margin-bottom: 0px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

@media only screen and (max-width: 1024px) {
  .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

@media only screen and (max-width: 1024px) {
  .slick-slide {
    height: inherit;
  }
  .slick-slide.white-panel {
    margin: 30px;
  }
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-next, .slick-prev {
  color: transparent;
}

button.slick-next, button.slick-next:hover {
  position: absolute;
  top: calc(50% - 40px);
  width: 20px;
  height: 20px;
  padding: 0px;
  background-size: 20px;
  z-index: 5;
  display: block;
  background-image: url(/content/dam/aircanada/loyalty-content/images/prev-arrow.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  right: 0px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

button.slick-prev, button.slick-prev:hover {
  position: absolute;
  top: calc(50% - 40px);
  width: 20px;
  height: 20px;
  padding: 0px;
  background-size: 20px;
  z-index: 5;
  display: block;
  background-image: url(/content/dam/aircanada/loyalty-content/images/prev-arrow.svg);
  background-color: transparent;
  background-repeat: no-repeat;
  border: none;
  left: 0px;
}

ul.slick-dots {
  list-style: none;
  text-align: center;
  padding: 0px;
}

ul.slick-dots li {
  display: inline-block;
  margin: 8px 3px;
  border: 1px solid #c1c5c8;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  color: #fff;
}

ul.slick-dots li:before {
  background-color: #fff;
  display: block;
  height: 4px;
  width: 4px;
  border-radius: 50%;
  padding: 0;
  content: '';
  margin: 2px;
}

ul.slick-dots li.slick-active:before {
  background-color: #827968;
}

ul.slick-dots li button {
  border: none;
  background-color: transparent;
  color: transparent;
  height: 10px;
  padding: 1px;
  position: absolute;
  margin-top: -8px;
  margin-left: -3px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: -56px;
  z-index: 2;
  position: relative;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul {
  display: none;
  list-style: none;
  padding: 0px;
  margin: 0px;
  width: 25%;
  max-width: 300px;
  height: 60px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li:first-child {
  background-color: rgba(255, 255, 255, 0.1);
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li:first-child:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li:first-child:active {
  background-color: #fff;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(1) li:first-child {
  background-color: rgba(255, 255, 255, 0.5);
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(1) li:first-child:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(1) li:first-child:active {
  background-color: #fff;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(2) li:first-child {
  background-color: rgba(255, 255, 255, 0.7);
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(2) li:first-child:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:nth-of-type(2) li:first-child:active {
  background-color: #fff;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li {
  display: none;
  font-size: 16px;
  background-color: transparent;
  margin: 0px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li a {
  background-color: transparent;
  color: transparent;
  display: block;
  width: 100%;
  padding: 14px 0px 12px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2px 20px;
  margin: 0px;
  height: 100%;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active:first-child:last-child:after {
  display: none !important;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active:first-child:last-child a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active:first-child:last-child a:active {
  font-weight: normal;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active:after {
  content: url(/content/dam/aircanada/loyalty-content/images/icon/icon-prev-arrow.svg);
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  float: left;
  margin-right: -5px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  float: right;
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active a {
  color: black;
  margin-right: -20px;
  padding-right: 20px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul li.active a:active {
  font-weight: 600;
  background-color: transparent;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 20px;
  background-color: #fff;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li.active:first-child:last-child:after, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li.active:first-child:last-child:after {
  display: none;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li.active:after, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li.active:after {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child {
  background-color: #fff;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child a, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child a {
  padding: 15px 20px 15px 0px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child a:active, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child a:active {
  border-bottom: solid 1px #d0d0ce;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child:last-child, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child:last-child {
  background-color: transparent;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child:last-child a, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child:last-child a {
  cursor: default;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child:last-child a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:first-child:last-child a:active, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child:last-child a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:first-child:last-child a:active {
  cursor: default;
  border-bottom: none;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li:not(:first-child):hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li:not(:first-child):hover {
  background-color: #efefef;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li a, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li a {
  color: black;
  padding: 12px 0px;
  padding-right: 20px;
}

#pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:hover li a:active, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li a:hover, #pageLocator .wrapper.hidden-sm.hidden-xs .breadcrumb.container ul:active li a:active {
  font-weight: 600;
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  #pageLocator .wrapper.hidden-sm.hidden-xs {
    display: none;
  }
}

.ae-Dropdown {
  display: inline-block;
  font: 600 16px sans-serif;
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 0px 0px 30px 30px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-Dropdown {
    margin: 10px 0px 20px;
    padding: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .ae-Dropdown {
    margin: 20px 0px;
    padding: 0px;
  }
}

.ae-Dropdown-title {
  background: #fff;
  border: solid 1px #c8c8c8;
  cursor: pointer;
  font: 600 16px sans-serif;
  color: #2a2a2a;
  min-height: 48px;
  padding: 25px 25px 5px 10px;
  position: relative;
  text-align: left;
  width: 100%;
}

.ae-Dropdown-title:after {
  border-color: #2a2a2a transparent transparent transparent;
  border-style: solid;
  border-width: 4px;
  content: '';
  display: block;
  height: 0;
  position: absolute;
  right: 15px;
  top: 46%;
  width: 0;
}

.ae-Dropdown-title span:first-child {
  font-size: 12px;
  color: #c8c8c8;
  position: absolute;
  top: 6px;
}

.ae-Dropdown-title > * {
  pointer-events: none;
}

.ae-Dropdown-list {
  background: #ffffff;
  -webkit-box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
  display: none;
  height: 0;
  list-style: none !important;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  -webkit-transition: .2s linear;
  transition: .2s linear;
  width: calc(100% - 30px);
  z-index: 10;
}

.ae-Dropdown-list.is-open {
  display: block;
  height: auto;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .ae-Dropdown-list {
    width: 100%;
  }
}

.ae-Dropdown-list li {
  padding: 15px 10px;
  cursor: pointer;
  margin-bottom: 0px;
}

.ae-Dropdown-list li:hover {
  background-color: rgba(155, 155, 155, 0.1);
}

.ae-Dropdown-list li.is-selected {
  background-color: rgba(155, 155, 155, 0.1);
  color: #000;
}

#dropdown-label-hidden {
  display: none;
}

#view-more, #view-more2 {
  /* The Modal (background) */
}

#view-more.modal, #view-more2.modal {
  display: none;
  position: fixed;
  z-index: 10;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}

#view-more.modal.selected, #view-more2.modal.selected {
  display: block;
}

#view-more.modal .modal-container, #view-more2.modal .modal-container {
  background-color: #fff;
  margin: auto;
  padding: 0;
  width: 35%;
  position: relative;
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 60%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 481px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 70%;
  }
}

@media only screen and (max-width: 480px) {
  #view-more.modal .modal-container, #view-more2.modal .modal-container {
    width: 90%;
  }
}

#view-more.modal .modal-container .modal-content, #view-more2.modal .modal-container .modal-content {
  background-color: #fff;
  margin: auto;
  padding: 0;
  border: none;
  width: 86%;
  margin-top: -10%;
  z-index: 5;
  position: relative;
  padding: 4em 30px 30px;
}

#view-more.modal .modal-container .modal-content a, #view-more2.modal .modal-container .modal-content a {
  color: #005078;
}

#view-more.modal .modal-container .modal-content a:hover, #view-more.modal .modal-container .modal-content a:active, #view-more2.modal .modal-container .modal-content a:hover, #view-more2.modal .modal-container .modal-content a:active {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content, #view-more2.modal .modal-container .modal-content {
    padding: 15px 30px;
    width: 96%;
  }
}

#view-more.modal .modal-container .modal-content .row:nth-of-type(1), #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) {
  margin-bottom: 20px;
}

#view-more.modal .modal-container .modal-content .row:nth-of-type(1) .col-33, #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) .col-33 {
  width: calc(33.33% - 3px);
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content .row:nth-of-type(1) .col-33, #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) .col-33 {
    width: 65%;
    margin: 0px auto 20px;
  }
}

@media only screen and (max-width: 767px) {
  #view-more.modal .modal-container .modal-content .row:nth-of-type(1), #view-more2.modal .modal-container .modal-content .row:nth-of-type(1) {
    margin-bottom: 0px;
  }
}

#view-more.modal .modal-container .modal-content ul.checked li, #view-more2.modal .modal-container .modal-content ul.checked li {
  min-height: 35px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

#view-more.modal .modal-container .close, #view-more2.modal .modal-container .close {
  font: normal 600 14px Open Sans;
  color: #005078;
  float: left;
  cursor: pointer;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#view-more.modal .modal-container .close:focus, #view-more.modal .modal-container .close :hover, #view-more2.modal .modal-container .close:focus, #view-more2.modal .modal-container .close :hover {
  text-decoration: none;
  cursor: pointer;
}

#view-more.modal .modal-container .primary-btn, #view-more2.modal .modal-container .primary-btn {
  float: right;
  margin: 0px;
}

#view-more.modal .modal-container .modal-header, #view-more2.modal .modal-container .modal-header {
  padding: 25px 30px;
  color: black;
}

#view-more.modal .modal-container .modal-header h3:before, #view-more2.modal .modal-container .modal-header h3:before {
  display: inline-block;
  height: 15px;
  content: '';
  border-right: 3px solid #b8a890;
  margin-right: 10px;
}

#view-more.modal .modal-container .modal-body, #view-more2.modal .modal-container .modal-body {
  padding: 0;
}

#view-more.modal .modal-container .modal-body img, #view-more2.modal .modal-container .modal-body img {
  max-width: 100%;
  width: 100%;
}

#view-more.modal .modal-container .modal-footer, #view-more2.modal .modal-container .modal-footer {
  padding: 0px 30px 20px;
  background-color: #fff;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

#view-more.modal .modal-container .modal-footer p, #view-more2.modal .modal-container .modal-footer p {
  margin-bottom: 0px;
}

/* Uat2 full width */
.page-heading-section + .content-wrapper {
  margin: 0;
  width: 100%;
}

.template-basic .section-wrapper {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.page-heading-section.container {
  display: none;
}

main#pageMain {
  padding-bottom: 0px;
}

.template-basic .section-content {
  padding: 0px;
}

.template-basic .section-content .row {
  margin-left: 0px;
  margin-right: 0px;
}

h1 {
  font: normal 300 36px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  h1 {
    font: normal 300 30px Open Sans;
  }
}

h2 {
  font: normal 600 28px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  h2 {
    font: normal 600 20px Open Sans;
  }
}

h3 {
  font: normal 600 20px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  h3 {
    font: normal 600 16px Open Sans;
  }
}

h3.light {
  font-weight: 300;
}

h3.gold-left-border {
  margin: 35px 0px 15px;
}

h3.gold-left-border:before {
  display: inline-block;
  height: 15px;
  content: '';
  border-right: 2px solid #b8a890;
  margin-right: 10px;
}

h4 {
  font: normal 300 18px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  h4 {
    font: normal normal 14px Open Sans;
  }
}

h5 {
  font: normal 400 16px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  h5 {
    font: normal 400 14px Open Sans;
  }
}

p {
  font: normal 400 16px Open Sans;
  background: transparent;
  color: #000;
}

@media only screen and (max-width: 767px) {
  p {
    font: normal 400 14px Open Sans;
  }
}

.nowrap {
  white-space: nowrap;
}

.grey-bg {
  background: #f9f9f9;
  color: #000;
}

.cyan-blue-bg {
  background: #e8f3f9;
  color: #000;
}

.sky-blue-bg {
  background: #edf1f3;
  color: #000;
}

.black-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#2d2d2d));
  background: linear-gradient(to bottom, #000000, #2d2d2d);
  color: #fff;
}

.black-bg a {
  color: #fff;
}

.black-bg h1, .black-bg h2, .black-bg h3, .black-bg h4, .black-bg h5, .black-bg p {
  color: #fff;
}

.black-bg .secondary-btn {
  color: #005078 !important;
}

.black-bg .secondary-btn a {
  color: #005078 !important;
}

.black-bg a {
  color: #fff !important;
}

.top-banner-ae {
  background: url(/content/dam/aircanada/loyalty-content/images/hero-aeroplan.png) center center;
  background-repeat: no-repeat;
  height: 500px;
  background-size: cover;
}

@media only screen and (max-width: 767px) {
  .top-banner-ae {
    background: url(/content/dam/aircanada/loyalty-content/images/hero-aeroplan-mobile.png) center center;
    height: 250px;
    background-size: cover;
  }
}

.balloon-gradient-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#edf5fa), to(#bfdbed));
  background-image: linear-gradient(to bottom, #edf5fa, #bfdbed);
}

.grey-clouds-bg {
  background: url("/content/dam/aircanada/loyalty-content/images/cloud-bg.svg") no-repeat center center, -webkit-gradient(linear, left top, left bottom, from(#000000), to(#2d2d2d));
  background: url("/content/dam/aircanada/loyalty-content/images/cloud-bg.svg") no-repeat center center, linear-gradient(to bottom, #000000, #2d2d2d);
}

@media only screen and (max-width: 767px) {
  .grey-clouds-bg {
    background: url("/content/dam/aircanada/loyalty-content/images/cloud-bg.svg") no-repeat bottom right, -webkit-gradient(linear, left bottom, left top, from(#2d2d2d), color-stop(39%, #000000));
    background: url("/content/dam/aircanada/loyalty-content/images/cloud-bg.svg") no-repeat bottom right, linear-gradient(to top, #2d2d2d, #000000 39%);
  }
}

.grey-clouds-bg h1, .grey-clouds-bg h2, .grey-clouds-bg h3, .grey-clouds-bg h4, .grey-clouds-bg h5, .grey-clouds-bg p {
  color: #fff;
}

.grey-clouds-bg a {
  color: #fff !important;
}

.clouds-bg {
  background: #000 url("/content/dam/aircanada/loyalty-content/images/cloud-bg.svg") no-repeat center center;
  color: #fff;
}

.clouds-bg a {
  color: #fff;
}

.clouds-bg h1, .clouds-bg h2, .clouds-bg h3, .clouds-bg h4, .clouds-bg h5, .clouds-bg p {
  color: #fff;
}

.clouds-bg a {
  color: #fff !important;
}

@media only screen and (max-width: 767px) {
  .clouds-bg {
    background: -webkit-gradient(linear, left bottom, left top, from(#4a4f54), color-stop(39%, #000000));
    background: linear-gradient(to top, #4a4f54, #000000 39%);
  }
}

.light-blue-bg {
  background: #f0f6fa;
  color: #000;
}

.blue-bg-clouds {
  background: #f0f6fa url("/content/dam/aircanada/loyalty-content/images/bkgd-rounded-cloud.svg") no-repeat center center;
}

.rounded-clouds-bg {
  background: #fff url("/content/dam/aircanada/loyalty-content/images/bkgd-rounded-cloud.svg") no-repeat center center;
}

.pink-bg {
  background: #f6f4f0;
  color: #000;
}

.foam-blue-gradient {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(204, 217, 226, 0)), to(#d2dde4));
  background-image: linear-gradient(to bottom, rgba(204, 217, 226, 0), #d2dde4);
}

.blue-gradient-bg {
  background: url("/content/dam/aircanada/loyalty-content/images/blue-gradient-bg.svg"), linear-gradient(292deg, #fefdfb 86%, #c9d5db 2%);
  background-size: cover;
}

.col-10 {
  width: calc(10% - 3px);
  display: inline-block;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .col-10 {
    width: calc(33.3% - 3px);
  }
}

@media only screen and (max-width: 767px) {
  .col-10 {
    width: 100%;
    display: block;
  }
}

.col-20 {
  width: calc(19.9% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .col-20 {
    width: calc(33.3% - 3px);
  }
}

@media only screen and (max-width: 767px) {
  .col-20 {
    width: 100%;
    display: block;
  }
}

.col-25 {
  width: calc(24.9% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .col-25 {
    width: calc(50% - 3px);
  }
}

@media only screen and (max-width: 767px) {
  .col-25 {
    width: 100%;
    display: block;
  }
}

.col-30 {
  width: calc(30% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-30 {
    width: 100%;
    display: block;
  }
}

.col-33 {
  width: calc(33.3% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-33 {
    width: 100%;
    display: block;
  }
}

.col-40 {
  width: calc(40% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-40 {
    width: 100%;
    display: block;
  }
}

.col-50 {
  width: calc(50% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-50 {
    width: 100%;
    display: block;
  }
}

.col-60 {
  width: calc(60% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-60 {
    width: 100%;
    display: block;
  }
}

.col-66 {
  width: calc(66.6% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-66 {
    width: 100%;
    display: block;
  }
}

.col-70 {
  width: calc(75% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-70 {
    width: 100%;
    display: block;
  }
}

.col-75 {
  width: calc(75% - 3px);
  display: inline-block;
  vertical-align: top;
}

@media only screen and (max-width: 767px) {
  .col-75 {
    width: 100%;
    display: block;
  }
}

.col-90 {
  width: calc(90% - 3px);
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .col-90 {
    width: 100%;
    display: block;
  }
}

.green-pill {
  border-radius: 13px;
  background-color: #108c0c;
  text-transform: uppercase;
  padding: 5px 15px;
  font: normal 600 12px Open Sans !important;
  color: #fff;
  letter-spacing: 0.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: table;
}

@media only screen and (max-width: 767px) {
  .green-pill {
    margin: 0px auto 20px;
  }
}

.red-pill {
  border-radius: 13px;
  background-color: #f01428;
  text-transform: uppercase;
  padding: 5px 15px;
  font: normal 600 12px Open Sans !important;
  color: #fff;
  letter-spacing: 0.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: table;
}

p.gold-copy {
  font: normal 600 14px Open Sans;
  color: #b8a890;
}

span.gold-copy {
  color: #b8a890;
}

.lg-gray-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: #4a4f54;
  font-size: 18px !important;
  font-weight: bold;
  color: #f9f8f6;
  line-height: 0.78;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  margin-right: 20px;
  line-height: 1.15;
  text-align: center !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.nowrap {
  white-space: nowrap;
}

.primary-btn {
  color: #fff !important;
  background: #005078 !important;
  display: table;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25px;
  padding: 15px;
  margin: 10px auto;
  border: none;
  color: #fff !important;
  font-weight: 600;
}

.primary-btn.wide {
  padding: 15px 30px;
}

.primary-btn.rounded {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 15px;
  padding: 6px 30px;
  font: normal 600 14px Open Sans;
}

.primary-btn.right-aligned {
  margin: 10px 0px 10px auto;
}

.primary-btn a {
  color: #fff !important;
  font-weight: 600;
}

.secondary-btn {
  background: #fff !important;
  color: #005078 !important;
  display: table;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25px;
  padding: 15px;
  margin: 10px auto;
  border: none;
  font-weight: 600;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
}

.secondary-btn.wide {
  padding: 15px 30px;
}

.secondary-btn a {
  font-weight: 600;
}

.red-circle {
  background: #f01428;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 16px;
  margin-right: 15px;
  float: left;
  font-size: 14px;
  font-weight: 600;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.red-circle a {
  color: #fff;
}

.hidden-1024 {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .hidden-1024 {
    display: none;
  }
}

.visible-1024 {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .visible-1024 {
    display: block;
  }
}

.visible-only-1024 {
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .visible-only-1024 {
    display: block;
  }
}

.hidden-767 {
  display: block;
}

@media only screen and (max-width: 767px) {
  .hidden-767 {
    display: none;
  }
}

.visible-767 {
  display: none;
}

@media only screen and (max-width: 767px) {
  .visible-767 {
    display: block;
  }
}

.nav.nav-tabs {
  border-bottom: solid 1px #d0d0ce;
}

.nav.nav-tabs li a {
  border: none;
  text-align: center;
  padding: 25px 0px 30px;
  font: normal 600 18px Open Sans;
  color: #000;
}

@media only screen and (max-width: 767px) {
  .nav.nav-tabs li a {
    padding: 15px 30px;
    text-align: left;
    font-size: 16px;
  }
}

.nav.nav-tabs li a:after {
  display: none;
}

.nav.nav-tabs li a:hover {
  border-bottom: solid 3px #005078;
  color: #000;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .nav.nav-tabs li a:hover {
    border-bottom: none;
  }
}

.nav.nav-tabs li.active a, .nav.nav-tabs li.active a:focus, .nav.nav-tabs li.active a:active {
  background-color: #fff;
  color: #000;
  border: none;
  border-bottom: solid 3px #005078;
}

@media only screen and (max-width: 767px) {
  .nav.nav-tabs li.active a, .nav.nav-tabs li.active a:focus, .nav.nav-tabs li.active a:active {
    border-bottom: none;
    color: #c0c5c8;
    font: normal 600 16px Open Sans;
  }
}

.nav.nav-tabs li.active a:after, .nav.nav-tabs li.active:after {
  display: none;
}

@media only screen and (max-width: 767px) {
  .nav.nav-tabs li.active a:after, .nav.nav-tabs li.active:after {
    content: url("/content/dam/aircanada/loyalty-content/images/icon/icon-check-grey.svg");
    display: block;
    width: 12px;
    height: 12px;
    -o-object-fit: contain;
       object-fit: contain;
    float: left;
    margin-right: -10px;
    margin-top: -3px;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    float: right;
    margin-left: 0px;
    border: none;
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  .nav.nav-tabs {
    border-bottom: none;
    border: 1px solid #efefef;
  }
}

.faqs .accordion__container {
  padding: 4em 0px;
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .faqs .accordion__container {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .faqs .accordion__container {
    padding: 30px 20px;
  }
}

.faqs .accordion__container .accordion__title.panel-box {
  -webkit-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
  text-align: left;
}

.faqs .accordion__container .accordion__title.panel-box a.accordion__toggle {
  padding: 30px;
  display: block;
  font: normal 600 18px Open Sans;
  color: #005078;
}

.faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:before {
  content: url("/content/dam/aircanada/loyalty-content/images/icon/icon-faq.svg");
  display: block;
  width: 45px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin-right: 25px;
  margin-top: -12px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}

.faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:after {
  content: url("/content/dam/aircanada/loyalty-content/images/icon/icon-down-arrow.svg");
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin-right: 0px;
  margin-top: 0px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  float: right;
}

@media only screen and (max-width: 767px) {
  .faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:after {
    margin-top: -1px;
  }
}

.faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:focus, .faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:active, .faqs .accordion__container .accordion__title.panel-box a.accordion__toggle.active {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .faqs .accordion__container .accordion__title.panel-box a.accordion__toggle {
    font-size: 14px;
  }
}

.faqs .accordion__container .accordion__title.panel-box.selected a:after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.faqs .accordion__container .accordion__content {
  display: none;
}

.faqs .accordion__container .accordion__content.selected {
  display: block;
}

.faqs .accordion__container .accordion__content div {
  padding: 30px;
  text-align: left;
  border-top: 1px solid #d0d0ce;
}

.faqs .accordion__container .accordion__content div h4 {
  margin: 0px 0px 30px;
}

.faqs .accordion__container .accordion__content div p {
  font: normal 400 14px Open Sans;
  margin-bottom: 20px;
}

.faqs .accordion__container .accordion__content div p:last-child {
  margin-bottom: 0px;
}

.faqs .accordion__container .accordion__content div a {
  color: #005078;
  font-weight: 600;
}

.cc-faqs .accordion__container {
  padding: 4em 0px;
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .cc-faqs .accordion__container {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .cc-faqs .accordion__container {
    padding: 30px 20px;
  }
}

.cc-faqs .accordion__container .accordion__title.panel-box {
  -webkit-box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle {
  padding: 20px 35px;
  display: block;
  font: normal 600 20px Open Sans;
  color: #000;
}

.cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:after {
  content: url("/content/dam/aircanada/loyalty-content/images/icon/icon-down-arrow.svg");
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin-right: -20px;
  margin-top: 5px;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  float: right;
}

@media only screen and (max-width: 767px) {
  .cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:after {
    margin-top: -1px;
  }
}

.cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:focus, .cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle:active, .cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle.active {
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .cc-faqs .accordion__container .accordion__title.panel-box a.accordion__toggle {
    font-size: 14px;
    padding: 20px 25px;
  }
}

.cc-faqs .accordion__container .accordion__title.panel-box.selected a:after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.cc-faqs .accordion__container .accordion__content {
  padding: 30px;
  border-top: 1px solid #d0d0ce;
  display: none;
}

.cc-faqs .accordion__container .accordion__content a {
  color: #005078;
}

.cc-faqs .accordion__container .accordion__content.selected {
  display: block;
}

@media only screen and (max-width: 767px) {
  ul li span {
    display: block;
    overflow-y: hidden;
  }
}

.ae-content {
  max-width: 1200px;
  width: 100%;
  margin: 0px auto;
  padding: 4em 0px;
}

.ae-content.indent {
  padding: 4em;
}

@media only screen and (max-width: 1024px) {
  .ae-content.indent {
    padding: 30px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .ae-content.indent {
    padding: 20px;
  }
}

.ae-content.indent-max {
  padding: 4em 8em;
}

@media only screen and (max-width: 1024px) {
  .ae-content.indent-max {
    padding: 30px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .ae-content.indent-max {
    padding: 20px;
  }
}

.ae-content .col-33 {
  padding: 0px 30px;
}

.ae-content .col-33 img {
  margin: 0px auto 20px;
}

.ae-content .col-33 h3 {
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) {
  .ae-content .col-33 {
    padding: 15px 0px;
  }
  .ae-content .col-33 img {
    margin: 0px 20px 0px 0px;
  }
}

.ae-content a {
  background: transparent;
  color: #005078;
  font-weight: 600;
}

.ae-content a:hover, .ae-content a:active, .ae-content a.active {
  text-decoration: none;
  color: #005078;
}

.ae-content h2 {
  margin-bottom: 35px;
}

@media only screen and (max-width: 767px) {
  .ae-content h2 {
    margin-bottom: 25px;
  }
}

.ae-content img {
  max-width: 100%;
}

.ae-content img.icon-sm {
  width: 80px;
}

.ae-content img.icon-lg {
  width: 100px;
}

.ae-content .ae-carousel {
  width: 100%;
  margin: 0px auto;
  overflow: hidden;
}

.ae-content .ae-carousel img.ae-cell.slick-slide {
  margin: 5px auto 15px;
}

.ae-content .ae-carousel-mobile, .ae-content .ae-carousel-tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .ae-content {
    margin: auto;
    width: calc(100% - 60px);
    max-width: 100%;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-content {
    padding: 4em 30px;
  }
  .ae-content .ae-carousel-mobile {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .ae-content .ae-carousel-tablet {
    display: block;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
  }
  .ae-content .ae-carousel-tablet img.ae-cell.slick-slide {
    padding: 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ae-content {
    margin: auto;
    width: calc(100% - 40px);
    max-width: 100%;
    text-align: center;
    padding: 4em 20px 0px;
  }
  .ae-content ul li, .ae-content ol li {
    text-align: left;
  }
  .ae-content .ae-carousel-mobile {
    display: block;
    width: 100%;
    margin: 0px auto;
    overflow: hidden;
  }
  .ae-content .ae-carousel-mobile img.ae-cell.slick-slide {
    padding: 0px 20px;
  }
  .ae-content img.ae-cell.slick-slide {
    max-height: 322px;
  }
}

.ae-header {
  position: relative;
}

.ae-header img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .ae-header img {
    min-height: 200px;
  }
}

.ae-header .ae-content {
  padding: 4em;
  text-align: center;
  background: #fff;
  color: #000;
  position: relative;
  margin: 0px auto;
  margin-top: -150px;
}

.ae-header .ae-content h1 + p {
  width: 70%;
  margin: 25px auto;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-header .ae-content h1 + p {
    width: 90%;
  }
}

@media only screen and (max-width: 767px) {
  .ae-header .ae-content h1 + p {
    width: 100%;
  }
}

.ae-header .ae-content p {
  font: normal 300 18px Open Sans;
}

@media only screen and (max-width: 767px) {
  .ae-header .ae-content p {
    font: normal normal 14px Open Sans;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .ae-header .ae-content {
    margin-top: -80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ae-header .ae-content {
    margin-top: -70px;
    padding: 4em 2em;
  }
}

@media only screen and (max-width: 767px) {
  .ae-header .ae-content {
    margin-top: -65px;
    padding: 30px;
  }
}

.ae-additional-footer .ae-content {
  padding-bottom: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.ae-additional-footer .ae-content .col-50 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-additional-footer .ae-content .col-50 {
    width: calc(50% - 2px);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .ae-additional-footer .ae-content .col-50:nth-of-type(2) {
    padding-left: 5em;
  }
}

@media only screen and (max-width: 767px) {
  .ae-additional-footer .ae-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#earn .fast-follow .fast-links {
  margin: 50px 0px 70px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #earn .fast-follow .fast-links {
    margin: 30px 0px 70px;
  }
}

@media only screen and (max-width: 767px) {
  #earn .fast-follow .fast-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px 0px 40px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #redeem .fast-follow .fast-links div {
    width: calc(33% - 20px);
    margin: 20px 10px;
    padding-left: 0px;
  }
}

.fast-follow {
  text-align: left;
  margin: 50px -4em 0px;
}

.fast-follow h2 {
  text-align: center;
}

.fast-follow h2:after {
  height: 2px;
  width: 20px;
  background-color: #b8a890;
  margin: 15px auto 20px;
  border: none;
  display: block;
  content: '';
}

.fast-follow .join-now {
  margin: 30px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1025px) {
  .fast-follow .join-now {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fast-follow .join-now .col-50 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 1025px) {
  .fast-follow .join-now .col-50 {
    width: 100%;
  }
  .fast-follow .join-now .col-50:nth-of-type(even) {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .join-now .col-50 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.fast-follow .join-now .col-50 .ff-content {
  padding: 30px 30px 20px;
  margin-right: -25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .fast-follow .join-now .col-50 .ff-content {
    padding: 20px;
    margin-right: 0px;
    text-align: center;
  }
  .fast-follow .join-now .col-50 .ff-content h3:after {
    margin: 20px auto;
  }
}

.fast-follow .join-now .col-50 img {
  max-width: 242px;
  max-height: 230px;
}

.fast-follow .join-now .col-50 img:lang(fr) {
  max-height: 255px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .fast-follow .join-now .col-50 img:lang(fr) {
    max-height: 230px;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .join-now .col-50 img {
    max-width: 100%;
    max-height: none;
  }
}

.fast-follow .join-now .col-50 a.primary-btn, .fast-follow .join-now .col-50 a.secondary-btn {
  margin: auto 0px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 767px) {
  .fast-follow .join-now .col-50 a.primary-btn, .fast-follow .join-now .col-50 a.secondary-btn {
    margin: 0px 0px 15px;
    width: 100%;
  }
}

.fast-follow .join-now .blue-circle-bg {
  background-image: radial-gradient(circle at 5% 5%, #ecf4fa, #c8e2f2 98%);
}

.fast-follow .row.tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (max-width: 1025px) {
  .fast-follow .row.tiles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fast-follow .row.tiles .col-50 {
  -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.12);
}

.fast-follow .row.tiles .col-50 .ff-content div a:last-child {
  margin: 15px 0px;
}

.fast-follow .row.tiles .col-50 a:last-child {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin: auto 0px 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 767px) {
  .fast-follow .row.tiles .col-50 a:last-child {
    width: 100%;
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .row.tiles .col-50:nth-of-type(3) div:first-child img {
    padding-top: 30px;
  }
}

.fast-follow .row.tiles .col-50 div:first-child {
  background-color: #bad8eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.fast-follow .row.tiles .col-50 div:first-child img {
  min-width: 178px;
  max-width: 178px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}

@media only screen and (max-width: 767px) {
  .fast-follow .row.tiles .col-50 div:first-child img {
    max-width: 100%;
    min-width: none;
    max-height: none;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .row.tiles .col-50 div:first-child {
    margin-bottom: 20px;
  }
}

.fast-follow .row.tiles .col-50 .ff-content {
  padding: 0 25px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fast-follow .row.tiles .col-50 .ff-content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}

@media only screen and (max-width: 767px) {
  .fast-follow .row.tiles .col-50 .ff-content div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.fast-follow .col-50 {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0px 15px;
}

.fast-follow .col-50:nth-of-type(even) {
  margin-left: 27px;
}

@media only screen and (max-width: 1025px) {
  .fast-follow .col-50:nth-of-type(even) {
    margin-left: 0px;
  }
}

.fast-follow .col-50 p {
  font: normal 400 14px Open Sans;
}

.fast-follow .col-50 h3:after {
  height: 2px;
  width: 20px;
  background-color: #b8a890;
  margin: 10px 0px;
  border: none;
  display: block;
  content: '';
}

@media only screen and (max-width: 1025px) {
  .fast-follow .col-50 {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .col-50 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px 0px;
  }
}

.fast-follow .fast-links {
  margin: 50px 0px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fast-follow .fast-links div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 30px;
  margin-left: auto;
}

.fast-follow .fast-links div:nth-of-type(1) {
  padding-left: 0px;
  margin-left: 0px;
}

.fast-follow .fast-links div img {
  float: left;
  width: 42px;
  margin: 0 10px 0 0;
  -o-object-fit: contain;
     object-fit: contain;
  min-height: 42px;
}

.fast-follow .fast-links div p {
  font-size: 16px;
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .fast-follow .fast-links div p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .fast-follow .fast-links div {
    width: 50%;
    margin: 10px 0px;
  }
  .fast-follow .fast-links div:nth-of-type(odd) {
    padding-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .fast-links div {
    padding: 10px 0px;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .fast-follow .fast-links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 30px 0px;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow .fast-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 15px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fast-follow {
    margin: 30px -2em 0px;
  }
}

@media only screen and (max-width: 767px) {
  .fast-follow {
    margin: 15px -30px 0px;
  }
}

.join-aeroplan-banner div.prelogin {
  display: block;
}

.join-aeroplan-banner div.prelogin .ae-content {
  background: #fff url("/content/dam/aircanada/loyalty-content/images/join-aeroplan.jpg") no-repeat center right;
  background-size: cover;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .join-aeroplan-banner div.prelogin .ae-content {
    background: #fff url("/content/dam/aircanada/loyalty-content/images/join-aeroplan-tablet.jpg") no-repeat center right;
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner div.prelogin .ae-content {
    min-height: 350px;
    background: #fff url("/content/dam/aircanada/loyalty-content/images/join-aeroplan-mobile.jpg") no-repeat center top;
    background-size: cover;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 500px) {
  .join-aeroplan-banner div.prelogin .ae-content {
    background: #fff url(/content/dam/aircanada/loyalty-content/images/join-aeroplan.jpg) no-repeat center right;
    min-height: 190px;
    background-position-x: 97%;
  }
}

.join-aeroplan-banner div.postlogin {
  display: none;
}

.join-aeroplan-banner div.postlogin .ae-content {
  background: #fff url("/content/dam/aircanada/loyalty-content/images/my-aeroplan.jpg") no-repeat center right;
  background-size: cover;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .join-aeroplan-banner div.postlogin .ae-content {
    background: #fff url("/content/dam/aircanada/loyalty-content/images/my-aeroplan-tablet.jpg") no-repeat center right;
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner div.postlogin .ae-content {
    min-height: 350px;
    background: #fff url("/content/dam/aircanada/loyalty-content/images/my-aeroplan-mobile.jpg") no-repeat center top;
    background-size: cover;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 500px) {
  .join-aeroplan-banner div.postlogin .ae-content {
    background: #fff url(/content/dam/aircanada/loyalty-content/images/my-aeroplan.jpg) no-repeat center right;
    min-height: 190px;
    background-position-x: 97%;
  }
}

.join-aeroplan-banner .ae-content {
  padding: 30px 6em;
  margin: 30px auto;
  text-align: left;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .join-aeroplan-banner .ae-content {
    padding: 30px !important;
  }
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner .ae-content {
    padding: 20px !important;
    margin: 30px auto 0px;
  }
}

.join-aeroplan-banner .ae-content .primary-btn {
  margin: 10px 0px;
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner .ae-content .primary-btn {
    margin: 10px auto;
  }
}

@media only screen and (max-width: 767px) and (min-width: 500px) {
  .join-aeroplan-banner .ae-content .primary-btn {
    margin: 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 820px) {
  .join-aeroplan-banner .ae-content .col-50 {
    width: 70%;
  }
}

@media only screen and (max-width: 821px) and (min-width: 768px) {
  .join-aeroplan-banner .ae-content .col-50 {
    width: 65%;
  }
}

@media only screen and (max-width: 767px) and (min-width: 500px) {
  .join-aeroplan-banner .ae-content .col-50 {
    width: 60% !important;
  }
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner .ae-content .col-50 {
    width: 100%;
  }
}

.join-aeroplan-banner .ae-content h2 {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .join-aeroplan-banner .ae-content h2 {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) and (min-width: 500px) {
  .join-aeroplan-banner .ae-content h2 {
    text-align: left;
  }
}

#explore-more h2 {
  margin-bottom: 25px;
}

#explore-more .ae-carousel-tablet .col-33 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

#explore-more .ae-carousel-tablet .col-33 a {
  padding-bottom: 25px;
  text-align: left;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (max-width: 1024px) {
  #explore-more .ae-carousel-tablet .col-33 a {
    background-color: #fff;
    -webkit-box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
}

#explore-more .ae-carousel-tablet .col-33 a span.ac-icon.icon-footer-external-link {
  display: none;
}

#explore-more .ae-carousel-tablet .col-33 a:hover, #explore-more .ae-carousel-tablet .col-33 a:active {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#explore-more .ae-carousel-tablet .col-33 a:hover p:hover, #explore-more .ae-carousel-tablet .col-33 a:active p:hover {
  cursor: pointer;
}

#explore-more .ae-carousel-tablet .col-33 a:hover h3:hover, #explore-more .ae-carousel-tablet .col-33 a:active h3:hover {
  cursor: pointer;
}

#explore-more .ae-carousel-tablet .col-33 a img {
  margin-bottom: 20px;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 1024px) {
  #explore-more .ae-carousel-tablet .col-33 a img {
    max-height: 230px;
  }
}

#explore-more .ae-carousel-tablet .col-33 a h3 {
  padding: 0px 20px;
}

#explore-more .ae-carousel-tablet .col-33 a p {
  color: #005078 !important;
  margin: auto 0px 0px;
  padding: 0px 20px;
  text-align: left;
  font-weight: 600;
}

@media only screen and (max-width: 1024px) {
  #explore-more .ae-carousel-tablet .col-33 {
    padding: 0px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  #explore-more .ae-carousel-tablet {
    padding: 0px 60px;
    width: calc(70% + 30px);
  }
  #explore-more .ae-carousel-tablet .col-33 a img {
    margin: 0px 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  #explore-more .ae-carousel-tablet {
    width: 90%;
    padding: 30px;
  }
  #explore-more .ae-carousel-tablet .col-33 a img {
    margin: 0px 0px 20px;
  }
}

@media only screen and (max-width: 767px) {
  #explore-more .ae-content {
    padding: 4em 0px 0px;
  }
  #explore-more .ae-content .ae-carousel-tablet {
    padding: 0px 30px;
    width: 100%;
  }
  #explore-more .ae-content .ae-carousel-tablet .col-33 img {
    margin: 0px 0px 20px;
  }
  #explore-more .ae-content .ae-carousel-tablet .col-33 a {
    -webkit-box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.12);
  }
}

.ae-footer {
  text-align: center;
  background: #efefef;
  color: #000;
}

.ae-footer .ae-content {
  padding: 15px 25px !important;
}

.ae-footer .ae-content p {
  margin: 0px auto;
  font: normal 400 14px Open Sans;
}

.ae-footer .ae-content p:nth-of-child(2) {
  margin-top: 15px;
}

.white-panel {
  background: #fff;
  color: #000;
  padding: 30px;
  margin: 30px 0px;
  -webkit-box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
}

.white-panel:nth-of-type(2), .white-panel:nth-of-type(5) {
  margin: 30px;
}

.white-panel.col-33 {
  width: calc(33.3% - 20px);
  display: inline-block;
}

.white-panel h3 {
  margin: 20px auto 30px;
  text-align: center;
}

.white-panel p {
  text-align: center;
  font: normal 400 14px Open Sans;
}

.white-panel p + ul, .white-panel p + ol {
  margin-bottom: 35px;
}

.white-panel ul {
  margin-bottom: 35px;
}

.white-panel:transparent-top {
  text-align: left;
  margin-top: 0px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .white-panel:nth-of-type(2), .white-panel:nth-of-type(5) {
    margin: 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .white-panel {
    -webkit-box-shadow: 0 6px 32px -19px rgba(0, 0, 0, 0.3), 0 7px 16px -8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 32px -19px rgba(0, 0, 0, 0.3), 0 7px 16px -8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px 0px;
  }
  .white-panel:nth-of-type(2), .white-panel:nth-of-type(5) {
    margin: 30px;
  }
  .white-panel h3 {
    margin: 20px auto;
  }
  .white-panel.col-33 {
    width: 100%;
    display: inline-block;
  }
}

.pink-panel {
  background: #f6f4f0;
  color: #000;
  padding: 40px;
  margin: 0px 0px 30px;
  -webkit-box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
          box-shadow: 0 6px 19px -7px rgba(0, 0, 0, 0.2);
}

.pink-panel h3 {
  margin: 0px 0px 20px;
}

.pink-panel h3, .pink-panel p {
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .pink-panel {
    -webkit-box-shadow: 0 6px 32px -19px rgba(0, 0, 0, 0.3), 0 7px 16px -8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 6px 32px -19px rgba(0, 0, 0, 0.3), 0 7px 16px -8px rgba(0, 0, 0, 0.1);
  }
  .pink-panel h3, .pink-panel p {
    text-align: center;
  }
}

.light-pink-panel {
  background: #f9f8f6;
  padding: 20px 30px;
}

.light-pink-panel p {
  font: normal 400 14px Open Sans;
}

.light-pink-panel p:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 767px) {
  .light-pink-panel {
    padding: 20px;
  }
}

.gradient-clouds-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(204, 217, 226, 0)), to(#d2dde4));
  background-image: linear-gradient(to bottom, rgba(204, 217, 226, 0), #d2dde4);
}

.gradient-clouds-bg2 {
  background: url("/content/dam/aircanada/portal/images/travelReadyHub/bg-clouds-gradient.png") no-repeat bottom center;
  background-size: contain;
}

.gradient-blue-bg2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d2dde4), color-stop(70%, #fff));
  background-image: linear-gradient(to bottom, #d2dde4 0%, #fff 70%);
}

.ice-blue-bg {
  background-color: #f8fbfc;
}

.ice-blue-bg2 {
  background-color: #f1f7fa;
}

.ice-blue-bg3 {
  background-color: #ddecf5;
}

.gradient-blue-bg2 .ae-content {
  padding-bottom: 0px;
}

.departure-bg {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(-11%, #d2dde4), color-stop(60%, rgba(204, 217, 226, 0)));
  background-image: linear-gradient(to bottom, #d2dde4 -11%, rgba(204, 217, 226, 0) 60%);
}

.arrival-bg {
  background-color: #eff3f5;
}

.blue-circle {
  width: 44px;
  height: 44px;
  margin: 20px 20px 20px 0;
  padding: 10px;
  border-radius: 50%;
  background-color: #005078;
  font-size: 20px;
  font-weight: bold !important;
  color: #fff;
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media only screen and (max-width: 767px) {
  .blue-circle {
    margin: 20px 0;
  }
}

.white-circle {
  width: 40px;
  height: 40px;
  margin: 0 13px 0 0;
  padding: 10px;
  background-color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
}

.to-green,
.not-required span.sherpa-results-icon,
.shadow.to-green span.sherpa-results-icon {
  -webkit-filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
          filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
}

.to-red,
.required span.sherpa-results-icon,
.shadow.to-red span.sherpa-results-icon {
  -webkit-filter: invert(21%) sepia(99%) saturate(1991%) hue-rotate(340deg) brightness(95%) contrast(97%);
          filter: invert(21%) sepia(99%) saturate(1991%) hue-rotate(340deg) brightness(95%) contrast(97%);
}

.to-orange,
.may-be-required span.sherpa-results-icon,
.shadow.to-orange span.sherpa-results-icon {
  -webkit-filter: invert(46%) sepia(78%) saturate(551%) hue-rotate(354deg) brightness(104%) contrast(91%);
          filter: invert(46%) sepia(78%) saturate(551%) hue-rotate(354deg) brightness(104%) contrast(91%);
}

.may-be-required span.sherpa-results-icon:not(.quarantine-icon,
.covid-icon,
.travel-icon) {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-alert-circle-full.svg) no-repeat center center;
}

.required span.sherpa-results-icon:not(.quarantine-icon,
.covid-icon,
.travel-icon) {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-no-entry.svg) no-repeat center center;
}

.sherpa-results-icon {
  background-size: 13px 13px;
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 5px;
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-check.svg) no-repeat center center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.sherpa-results-icon.quarantine-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-quarantine.svg) no-repeat center center;
  width: 21px;
  height: 21px;
  margin-top: -1px;
  margin-left: -1px;
  margin-right: 4px;
}

.sherpa-results-icon.covid-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-covid.svg) no-repeat center center;
}

.sherpa-results-icon.travel-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-check.svg) no-repeat center center;
}

.sherpa-results-icon.info-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-info-outline.svg) no-repeat center center;
}

.sherpa-results-icon.no-entry-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-no-entry.svg) no-repeat center center;
}

@media only screen and (max-width: 767px) {
  .sherpa-results-icon {
    background-size: 17px 17px !important;
    width: 26px;
    height: 26px;
    margin-top: -3px;
  }
  .sherpa-results-icon.quarantine-icon {
    width: 26px;
    height: 26px;
    margin-top: -3px;
    background-size: 22px 22px !important;
  }
  .sherpa-results-icon.covid-icon {
    margin: -3px 3px 0 0;
    background-size: 20px 20px !important;
  }
}

@-webkit-keyframes svg_animation {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes svg_animation {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

.find-btn button img {
  -webkit-animation: 1s linear infinite svg_animation;
          animation: 1s linear infinite svg_animation;
}

.subhead.toupper {
  text-transform: uppercase;
  font-weight: bold;
  text-align: left;
}

section.time-table-search-results table {
  width: 100%;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
  width: 45%;
  overflow: hidden !important;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails + button {
  display: none;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .text-underline {
  color: #005078;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-heading {
  background: #fff;
  padding: 20px 30px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-footer {
  background: #fff;
  padding: 20px 30px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-footer .btn-primary {
  position: relative;
  right: 0;
  top: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content {
  -webkit-box-shadow: inset 0px 1px 8px -3px rgba(0, 0, 0, 0.4);
          box-shadow: inset 0px 1px 8px -3px rgba(0, 0, 0, 0.4);
  background-color: #f9f9f9;
  padding: 30px;
  max-height: 400px;
  overflow-y: scroll;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container {
  border-bottom: 1px solid #c1c5c8;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__title {
  margin: 0;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__title .accordion__toggle {
  padding: 20px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  cursor: pointer;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__title .accordion__toggle:after {
  content: '';
  background: url(/content/dam/aircanada/loyalty-content/images/icon/chevron-down.svg) no-repeat center center;
  background-size: 13px 13px;
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__title.selected .accordion__toggle:after {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__content {
  display: none;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__content.selected {
  display: block;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__content.selected ul:not(:first-child) {
  border-top: 1px solid #c8c8c8;
  padding-top: 20px;
  margin-top: 20px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__content p {
  font-size: 14px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .accordion.simplified .accordion__container .accordion__content li {
  font-size: 14px;
}

.ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content .report {
  padding: 20px 0 0;
}

@media only screen and (max-width: 767px) {
  .ngdialog.ngdialog-theme-default .ngdialog-content #requirementDetails .popup-content {
    padding: 0 30px;
    height: 100%;
    max-height: calc(100vh - 315px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 60%;
    margin: 0 !important;
    left: 20% !important;
    top: 20% !important;
    height: -webkit-fit-content !important;
    height: -moz-fit-content !important;
    height: fit-content !important;
    max-height: 650px !important;
  }
  .ngdialog.ngdialog-theme-default .ngdialog-content .popup-heading,
  .ngdialog.ngdialog-theme-default .ngdialog-content .popup-footer {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .ngdialog.ngdialog-theme-default .ngdialog-content {
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
  }
}

.ngdialog.ngdialog-theme-default .ngdialog-content .white-box {
  margin: 10px 0 20px !important;
}

div.only-en-disclaimer {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: -35px auto 0 !important;
  position: relative;
}

div.only-en-disclaimer div {
  padding: 15px 20px;
  border: solid 1px #e1a152;
  background-color: #ffddb5;
  margin: 0 4em;
}

div.only-en-disclaimer p {
  margin-bottom: 0px;
  line-height: 1.57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: left;
}

div.only-en-disclaimer p span:nth-of-type(2) {
  overflow: hidden;
  display: block;
}

div.only-en-disclaimer p span.icon-interface-alert-diamond:before {
  content: "\e952";
  display: block;
  float: left;
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: #000000;
  margin-right: 10px;
  margin-top: 5px;
}

@media only screen and (max-width: 1024px) {
  div.only-en-disclaimer {
    width: 100% !important;
    margin: 0 auto !important;
  }
  div.only-en-disclaimer div {
    margin: 0;
  }
}

/* If WEBP is available switch image source */
.has-webp .travelReadyHub .ae-header.row .ae-content .hero-image {
  background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady.webp") no-repeat top center;
  background-position-y: 40px;
}

@media only screen and (max-width: 1025px) and (min-width: 768px) {
  .has-webp .travelReadyHub .ae-header.row .ae-content .hero-image {
    background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady-tablet.webp") no-repeat top right;
  }
}

@media only screen and (max-width: 767px) {
  .has-webp .travelReadyHub .ae-header.row .ae-content .hero-image {
    background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady-mobile.webp") no-repeat top center;
  }
}

.travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  border-bottom: solid 1px #d0d0ce;
}

.travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
}

.travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li .sub-nav-tabs {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
  text-align: center;
  padding: 10px 20px 20px;
  border: none;
  border-bottom: solid 3px transparent;
}

.travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li.active, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:hover, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:active {
  cursor: pointer;
}

.travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li.active .sub-nav-tabs, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:hover .sub-nav-tabs, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:active .sub-nav-tabs {
  border-bottom: solid 3px #005078;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li.active .sub-nav-tabs, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:hover .sub-nav-tabs, .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs li:active .sub-nav-tabs {
    border-bottom: 1px solid #e6e6e6;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs {
    display: none;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open a.sub-nav-tabs {
    font: normal 600 16px 'Open Sans';
    padding: 15px;
    border-top: 1px solid #e6e6e6;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs {
    display: none;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open a.sub-nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 15px 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open a.sub-nav-tabs:focus {
    border-top: 1px solid #e6e6e6;
  }
  .travelReadyHub .ae-header.row .hub-nav ul.nav.nav-tabs.is-open li:after {
    display: none;
  }
}

@media only screen and (min-width: 1023px) and (max-width: 1025px) {
  .travelReadyHub .ae-header.row .hub-nav .mobile-container {
    margin: 60px auto 0 !important;
  }
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub .ae-header.row .hub-nav {
    position: relative;
  }
  .travelReadyHub .ae-header.row .hub-nav .mobile-container {
    margin: 0 auto;
  }
  .travelReadyHub .ae-header.row .hub-nav .mobile-container .mobile-holder {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .travelReadyHub .ae-header.row .hub-nav .mobile-container .mobile-holder .mobile-content {
    letter-spacing: 0.03px;
    text-align: center;
    color: #000;
    font: normal 600 16px 'Open Sans';
  }
  .travelReadyHub .ae-header.row .hub-nav .mobile-container .mobile-holder .dropdown-arrow {
    background: url(/content/dam/aircanada/loyalty-content/images/icon/chevron-down.svg) no-repeat center center;
    background-size: 10px 10px;
    display: block;
    width: 24px;
    height: 24px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-left: 8px;
  }
  .travelReadyHub .ae-header.row .hub-nav .mobile-container .mobile-holder .dropdown-arrow.rotate {
    -webkit-transform: rotateZ(180deg);
            transform: rotateZ(180deg);
  }
}

.travelReadyHub .ae-header.row .hero-image {
  height: 500px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady.jpg") no-repeat top center;
  background-position-y: 40px;
  background-size: cover;
}

@media only screen and (max-width: 1025px) and (min-width: 768px) {
  .travelReadyHub .ae-header.row .hero-image {
    background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady-tablet.jpg") no-repeat top right;
  }
}

@media only screen and (max-width: 1025px) and (min-width: 992px) {
  .travelReadyHub .ae-header.row .hero-image {
    height: 450px;
    background-size: cover;
  }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
  .travelReadyHub .ae-header.row .hero-image {
    height: 350px;
    background-size: cover;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-header.row .hero-image {
    background: url("/content/dam/aircanada/portal/images/travelReadyHub/hero-travelReady-mobile.jpg") no-repeat top center;
    background-size: cover;
    height: 250px;
  }
}

.travelReadyHub .ae-header.row .hero-image .ae-content {
  background-color: transparent;
  padding: 6em 20% 2em 4em;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: left;
}

.travelReadyHub .ae-header.row .hero-image .ae-content img {
  max-height: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media only screen and (max-width: 1025px) and (min-width: 768px) {
  .travelReadyHub .ae-header.row .hero-image .ae-content {
    width: 55%;
  }
}

.travelReadyHub .ae-header.row .hero-image .ae-content h1 {
  font: normal 300 36px 'Open Sans';
  margin: 19px 0 13px;
  color: #000;
}

.travelReadyHub .ae-header.row .hero-image .ae-content h1 + p {
  font-size: 20px;
  line-height: 1.6;
  color: #000;
  margin: 10px 0;
}

.travelReadyHub .ae-header.row .hero-image .ae-content h1 + p a {
  color: #005078;
  text-decoration: underline;
}

.travelReadyHub .ae-header.row .ae-content#top {
  padding: 15px 4em 4em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub .ae-header.row .ae-content#top {
    padding: 75px 0 0;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-header.row .ae-content#top {
    padding: 65px 0 0;
  }
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub .ae-header.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    margin: 0;
  }
}

.travelReadyHub .tab-content content-page.tab-pane {
  margin: 0;
}

.travelReadyHub .tab-content .ae-content li {
  font: normal normal 16px 'Open Sans';
}

.travelReadyHub .tab-content .ae-content p {
  font: normal normal 16px 'Open Sans';
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .tab-content .ae-content p {
    font: normal normal 14px 'Open Sans';
  }
}

.travelReadyHub .tab-content .ae-content p.fourteen {
  font: normal normal 14px 'Open Sans';
}

.travelReadyHub .tab-content .ae-content p a {
  color: #005078;
  text-decoration: underline;
}

.travelReadyHub .tab-content .ae-content h2 {
  font: normal 600 28px 'Open Sans';
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .tab-content .ae-content h2 {
    font: normal 600 20px 'Open Sans';
  }
}

.travelReadyHub .tab-content .ae-content h2:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #bba88d;
  position: relative;
  display: block;
  margin: 20px 0;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .tab-content .ae-content h2:after {
    margin: 20px auto;
  }
}

.travelReadyHub .tab-content .ae-content h2.title {
  font: normal 300 36px 'Open Sans';
  margin: 19px 0 13px;
  color: #000;
}

.travelReadyHub .tab-content .ae-content h2.title:after {
  display: none;
}

.travelReadyHub .tab-content .ae-content h2.title + div p {
  font: normal 300 20px 'Open Sans';
  line-height: 1.6;
  color: #000;
}

.travelReadyHub .accordion.row.simplified h3.header-overview {
  margin: 40px 0 15px;
  font: normal 600 18px 'Open Sans';
}

.travelReadyHub .accordion.row.simplified .accordion__container {
  border-bottom: solid 1px #c1c5c8;
}

.travelReadyHub .accordion.row.simplified .accordion__container:nth-of-type(1) {
  border-top: solid 1px #c1c5c8;
}

.travelReadyHub .accordion.row.simplified .accordion__container .accordion__title .accordion__toggle {
  padding: 20px 15px;
  font: normal 600 16px Open Sans;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.simplified .accordion__container .accordion__title .accordion__toggle {
    font-size: 14px;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border-top: 1px solid #c1c5c8;
    border-bottom: 1px solid #c1c5c8;
    margin: 0;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title {
  padding: 20px;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title {
    padding: 0;
  }
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title .accordion__toggle {
    margin-bottom: 0;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title img {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 78px;
  height: 78px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title img {
    display: none;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div {
  padding: 20px 40px 20px 20px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div {
    padding: 15px 30px;
    text-align: left;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div .accordion__toggle {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: normal 600 20px Open Sans;
  margin-bottom: 10px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div .accordion__toggle {
    font-size: 16px;
    text-align: left;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div .accordion__toggle + p {
  margin-bottom: 0;
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div .accordion__toggle:after {
  margin-right: -10px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title div .accordion__toggle:after {
    margin-right: -15px;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title.no-arrow .accordion__toggle:after {
  display: none;
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title.selected {
  background-color: #fafafa;
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion__title.selected .accordion__toggle:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title {
    padding: 0;
  }
  .travelReadyHub .accordion.row.bulky .accordion__container .accordion__title img {
    width: 50px;
    height: 50px;
  }
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion.row.simplified .accordion__container {
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.travelReadyHub .accordion.row.bulky .accordion__container .accordion.row.simplified .accordion__container .accordion__title {
  padding: 0px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row.bulky {
    border-top: 1px solid #c1c5c8;
  }
}

.travelReadyHub .accordion.row .accordion__container {
  background: #ffffff;
}

.travelReadyHub .accordion.row .accordion__container .accordion__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  margin: 0;
  cursor: pointer;
}

.travelReadyHub .accordion.row .accordion__container .accordion__title div {
  width: 100%;
}

.travelReadyHub .accordion.row .accordion__container .accordion__title .accordion__toggle {
  padding: 20px 15px;
  width: 100%;
  font: normal 600 20px Open Sans;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.travelReadyHub .accordion.row .accordion__container .accordion__title .accordion__toggle:after {
  content: '';
  background: url(/content/dam/aircanada/loyalty-content/images/icon/chevron-down.svg) no-repeat center center;
  background-size: 13px 13px;
  display: block;
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
}

.travelReadyHub .accordion.row .accordion__container .accordion__title.selected .accordion__title .accordion__toggle:after {
  -webkit-filter: invert(0);
          filter: invert(0);
}

.travelReadyHub .accordion.row .accordion__container .accordion__content {
  display: none;
  width: 100%;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 60px 10px;
  text-align: left;
}

.travelReadyHub .accordion.row .accordion__container .accordion__content.selected {
  display: block;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .accordion.row .accordion__container .accordion__content {
    padding: 20px 30px;
  }
  .travelReadyHub .accordion.row .accordion__container .accordion__content div img {
    margin: 10px auto 20px;
  }
}

.travelReadyHub .indent.white-bg.blurb.intro:nth-of-type(1) {
  text-align: center;
}

.travelReadyHub .ae-content.indent.white-bg.blurb.intro {
  padding: 0 4em 2em;
  background: #fff;
  position: relative;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub .ae-content.indent.white-bg.blurb.intro {
    padding: 2em 4em 20px;
    margin-top: -80px;
    -webkit-box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-content.indent.white-bg.blurb.intro {
    padding: 30px;
    margin-top: -65px;
    -webkit-box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
  }
}

.travelReadyHub #travelRequirements .ae-content {
  padding: 4em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .ae-content.indent.white-bg.blurb.intro {
    -webkit-box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -10px 20px -5px rgba(0, 0, 0, 0.15);
    background: #fff;
    position: relative;
    padding: 30px;
  }
  .travelReadyHub #travelRequirements .ae-content.indent.white-bg.blurb.intro img {
    max-height: 36px;
    margin: 0 auto 10px;
  }
}

.travelReadyHub #travelRequirements .ae-content.noPad {
  padding: 0 4em;
  position: relative;
  z-index: 3;
  background: #fff;
  -webkit-box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 15px 10px -15px rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content.noPad {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1025) {
  .travelReadyHub #travelRequirements .ae-content.noPad .titled h2:after {
    display: none;
  }
}

.travelReadyHub #travelRequirements .ae-content.noPad + .row#sherpaResult {
  margin-top: -6em;
  padding-top: 6em;
  position: relative;
}

.travelReadyHub #travelRequirements .ae-content.noPad + .row + .grey-bg {
  margin-top: -6em;
  padding-top: 6em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .ae-content.noPad + .row + .grey-bg {
    margin-top: -10em;
    padding-top: 8em;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content.noPad + .row + .grey-bg .ae-content .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.travelReadyHub #travelRequirements .ae-content.noPad .panel-box.container {
  width: 100%;
}

.travelReadyHub #travelRequirements .ae-content div.titled {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .ae-content div.titled h2:After {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content div.titled {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.travelReadyHub #travelRequirements .ae-content div.tabbed {
  padding-left: 64px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content div.tabbed {
    padding: 0px;
  }
}

.travelReadyHub #travelRequirements .ae-content img.lg-icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 280px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub #travelRequirements .ae-content img.lg-icon {
    height: auto;
    max-height: 225px;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content img.lg-icon {
    height: 200px;
    width: 200px;
  }
}

.travelReadyHub #travelRequirements .ae-content .secondary-btn {
  margin: 10px 0;
  padding: 15px 40px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content .secondary-btn {
    margin: 10px auto;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .ae-content {
    padding: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .row.visible-1024 .ae-content:after {
    height: 2px;
    width: 30px;
    background-color: #bba88d;
    margin: 15px auto 20px;
    border: none;
    display: block;
    content: '';
  }
}

.travelReadyHub #travelRequirements .sherpa-logo.ae-content {
  padding: 20px 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font: normal 600 14px 'Open Sans';
  text-align: left;
}

.travelReadyHub #travelRequirements .sherpa-logo.ae-content img {
  max-width: 70px;
  margin: -3px 0 0 6px;
}

@media only screen and (max-width: 350px) {
  .travelReadyHub #travelRequirements .sherpa-logo.ae-content img {
    max-width: 60px;
  }
}

.travelReadyHub #travelRequirements .gradient-clouds-bg2 {
  background-size: cover;
}

.travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content {
  padding-bottom: 0px;
}

.travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content h2 {
  margin-bottom: 0px;
}

.travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content .col-66 {
  padding-right: 8em;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content .col-66 {
    padding-right: 1em;
    width: 59%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content .col-66 {
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content .col-33 {
    padding: 0;
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .gradient-clouds-bg2 .ae-content .col-33 {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements .gradient-clouds-bg2 {
    -webkit-box-shadow: 0px 7px 6px -5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 7px 6px -5px rgba(0, 0, 0, 0.2);
  }
}

.travelReadyHub #travelRequirements div#faqs {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  padding: 4em;
  position: relative;
  background: #fff;
  margin-top: 4em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements div#faqs .heading-beige:after {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements div#faqs {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .travelReadyHub #travelRequirements div#faqs h2 {
    text-align: left;
  }
  .travelReadyHub #travelRequirements div#faqs h2:after {
    margin: 20px 0;
  }
}

.travelReadyHub #travelRequirements div#faqs + p.text-center {
  background: #f9f9f9;
  padding: 9em 4em 4em;
  margin-top: -6em;
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__title .white-circle {
  width: 60px;
  height: 60px;
  -webkit-box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
  margin: 0;
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__title .white-circle img {
  width: 24px;
  height: auto;
  max-height: 29px;
  min-height: 24px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__title .white-circle {
    width: 40px;
    height: 40px;
    display: none;
  }
  .travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__title .white-circle img {
    width: 20px;
    max-height: 24px;
    min-height: 20px;
    display: none;
  }
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content {
  padding: 20px 6em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content {
    padding: 20px;
  }
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content .accordion.row.simplified .accordion__container .accordion__title div {
  padding: 15px 30px 14px 20px;
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content .accordion.row.simplified .accordion__container .accordion__title div .accordion__toggle {
  margin: 0;
  font: normal 600 16px 'Open Sans';
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content .accordion.row.simplified .accordion__container .accordion__title div .accordion__toggle:after {
    margin-right: -20px;
  }
}

.travelReadyHub #travelRequirements div#faqs .accordion.row.bulky .accordion__container .accordion__content .accordion.row.simplified .accordion__container .accordion__content {
  padding: 20px;
}

.travelReadyHub #testingSolutions .ae-content {
  text-align: center;
  background-color: #fff;
}

.travelReadyHub #testingSolutions .ae-content .text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 30px;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 15px;
  width: calc(33.33% - 25px);
  padding: 20px 30px;
  text-align: left;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  border-top: solid 5px #c1c5c8;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile:nth-of-type(1) {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(8%, #d6dfe5), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, #d6dfe5 8%, rgba(255, 255, 255, 0));
  margin-left: 0;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile:nth-of-type(4) {
  margin-left: 0;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile.blue-top {
  border-top: solid 5px #005078;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile.tile-copy {
  border-top: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 60%;
}

.travelReadyHub #testingSolutions .ae-content .text-container .tile p.fourteen:nth-of-type(1) {
  text-transform: uppercase;
  margin-bottom: 5px;
}

.travelReadyHub #testingSolutions .ae-content .cue-health {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 50px 20px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .ae-content .cue-health {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-40 img {
  width: 90%;
  background-color: transparent;
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:first-child {
  -webkit-box-flex: 15%;
      -ms-flex: 15%;
          flex: 15%;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .ae-content .cue-health .col-60:first-child {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  .travelReadyHub #testingSolutions .ae-content .cue-health .col-60:first-child img {
    margin-top: 20px;
  }
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:first-child img {
  width: 100%;
  max-width: 175px;
  background: #fff;
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:first-child p {
  text-align: left;
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child {
  -webkit-box-flex: 85%;
      -ms-flex: 85%;
          flex: 85%;
  padding-left: 4em;
  text-align: left;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding-left: 0;
  }
  .travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child ul li {
    font-size: 14px !important;
  }
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child ul {
  padding: 0;
  margin: -5px 0 25px 0;
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child ul li {
  margin-bottom: 15px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.travelReadyHub #testingSolutions .ae-content .cue-health .col-60:last-child ul li::before {
  content: '';
  background-size: 13px 13px;
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-check.svg) no-repeat center center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
          filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
}

.travelReadyHub #testingSolutions .ae-content .icon-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.travelReadyHub #testingSolutions .ae-content .icon-row div {
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.travelReadyHub #testingSolutions .ae-content .icon-row div img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub #testingSolutions .ae-content .icon-row div {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .ae-content .icon-row div {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .ae-content .icon-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.travelReadyHub #testingSolutions .ae-content.indent.white-bg.blurb.intro {
  position: relative;
  -webkit-box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 15px 20px -15px rgba(0, 0, 0, 0.2);
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 {
  margin-top: -6em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d2dde4), color-stop(43%, #fff));
  background-image: linear-gradient(to bottom, #d2dde4 0%, #fff 43%);
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#d2dde4), color-stop(50%, #fff));
    background-image: linear-gradient(to bottom, #d2dde4 0%, #fff 50%);
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content {
  margin-top: 10em;
  background: transparent;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content {
    margin-top: 4em;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content {
    margin-top: 6em;
  }
}

@media only screen and (min-width: 1200px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content h2:lang(fr) {
    padding: 0 20%;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content h2:after {
  margin: 20px auto;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel {
  margin: 0 auto;
  padding: 0 4em 4em;
  width: calc(100% - 10em);
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel ul.slick-dots li {
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #005078;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel ul.slick-dots li.slick-active {
  background: #005078;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel ul.slick-dots li:before {
  background: transparent !important;
}

@media only screen and (min-width: 1025px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-next,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-next:hover,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-prev,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-prev:hover {
    background-size: 35px;
    width: 50px;
    height: 50px;
    top: calc(50% - 60px);
  }
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel {
    width: 100%;
    padding: 0 20px 20px;
  }
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-prev,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-prev:hover,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-next,
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel button.slick-next:hover {
    top: 23%;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .row {
  padding: 20px;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel.ae-carousel-hide-slick-bullets .slick-dots {
  display: none;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-66 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-66 {
    width: 100%;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-66 p {
  font-size: 14px;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-66 p img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 7px;
  margin-top: -2px;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item:nth-of-type(1) {
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item:nth-of-type(1) {
    margin: 15px 0;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item .blue-circle {
  margin: 0 15px 0 0;
  width: 90px;
  height: 90px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font: normal 600 16px 'Open Sans';
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item .blue-circle {
    width: 70px;
    height: 70px;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .how-to-buy .item p {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-33 {
  padding: 0;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-33 {
    width: 100%;
  }
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .ae-carousel .carousel-content .col-33 img {
    margin: 40px auto 0;
    width: 100%;
    max-width: 300px;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .indented {
  padding: 0 9em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .indented {
    padding: 0;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .indented2 {
  padding: 30px 4em 0;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .ae-content .indented2 {
    padding: 30px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .row:last-child .ae-content {
    padding-top: -4em;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 + .row.grey-bg {
  margin-top: -6em;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 + .row.grey-bg .ae-content {
  background: transparent !important;
  padding: 11em 4em 4em;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 + .row.grey-bg .ae-content .col-66 {
    width: 65%;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container {
  padding: 30px 0px 60px;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__title {
  padding: 0px;
  margin: 0;
  cursor: pointer;
  background-color: #fff;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__title .accordion__toggle {
  color: #000;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__title .accordion__toggle:before {
  display: none;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__title .accordion__toggle:after {
    background: url("/content/dam/aircanada/loyalty-content/images/icon/icon-down-arrow.svg") no-repeat center center;
    content: '';
    background-size: 18px 18px;
  }
}

.travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__content {
  padding: 0px 20px 20px;
  background: #fff;
  margin: -15px 0 0;
  -webkit-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 1025px) and (min-width: 768px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container {
    padding: 30px 0 3em;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs {
    width: calc(100% + 68px);
    margin: 0 -34px;
  }
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container {
    padding: 20px 0 10px;
  }
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__title {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    border-top: 1px solid #c1c5c8;
    border-bottom: 1px solid #c1c5c8;
  }
  .travelReadyHub #testingSolutions .gradient-blue-bg2 .faqs .accordion__container .accordion__content a {
    word-break: break-all;
  }
}

.travelReadyHub #testingSolutions .ice-blue-bg2 {
  margin: 40px 0 20px;
}

.travelReadyHub #testingSolutions .ice-blue-bg3 {
  margin: 0 0 40px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .ice-blue-bg3 {
    margin: 0;
  }
}

.travelReadyHub #testingSolutions .ice-blue-bg2,
.travelReadyHub #testingSolutions .ice-blue-bg3 {
  padding: 20px;
}

.travelReadyHub #testingSolutions .ice-blue-bg2 p,
.travelReadyHub #testingSolutions .ice-blue-bg3 p {
  margin: 0;
}

.travelReadyHub #testingSolutions iframe {
  width: 100%;
  height: 500px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions iframe {
    height: auto;
    min-height: 150px;
  }
}

.travelReadyHub #testingSolutions .info {
  width: 70%;
  margin: 15px auto 3em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .info {
    width: 93%;
  }
}

.travelReadyHub #testingSolutions .testing-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2em auto;
  padding: 0 4em 0;
  width: calc(100% - 4em);
  border-bottom: 1px solid #c8c8c8;
}

.travelReadyHub #testingSolutions .testing-pills .primary-btn {
  border-bottom: 2px solid transparent;
  background: transparent !important;
  color: #005078 !important;
  padding: 15px;
  margin: 0;
}

.travelReadyHub #testingSolutions .testing-pills .primary-btn:hover, .travelReadyHub #testingSolutions .testing-pills .primary-btn:active, .travelReadyHub #testingSolutions .testing-pills .primary-btn.active {
  cursor: pointer;
  border-bottom: 2px solid #005078;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #testingSolutions .testing-pills {
    padding: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #testingSolutions .testing-pills {
    display: none !important;
  }
}

.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content {
  margin: 20px auto 30px;
}

.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content ul {
  list-style-type: decimal;
  -webkit-columns: 2;
          columns: 2;
  -webkit-column-gap: 38px;
          column-gap: 38px;
}

.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content ul li {
  -webkit-padding-start: 1ch;
          padding-inline-start: 1ch;
}

.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content ul li::marker {
  content: counter(list-item) " / ";
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content ul {
    -webkit-columns: 1;
            columns: 1;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .row.accordion.simplified .accordion__content {
    margin: 0 auto 20px;
    padding: 15px;
  }
}

.travelReadyHub #healthSafety .row.gradient-clouds-bg2 #face-covering-detail img {
  max-width: 100%;
  width: 100%;
  padding: 20px 0 20px 40px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 #face-covering-detail img {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 #face-covering-detail .col-60 {
    width: 100%;
  }
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 #face-covering-detail .col-60 img {
    max-width: 300px;
  }
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max {
  padding-top: 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max {
    padding: 2em 10px;
    width: 100%;
  }
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content {
  padding: 25px 10% 10px;
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content img,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content img,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content img {
  margin-bottom: 25px;
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content p,
.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content li,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content p,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content li,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content p,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content li {
  font-size: 14px;
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video {
  margin: 0 auto 30px;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video iframe,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video iframe,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video iframe {
    width: 100%;
  }
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-columns: 2;
          columns: 2;
  width: 100%;
  display: block;
  list-style-type: disc;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content ul.two-list {
    -webkit-columns: 1;
            columns: 1;
    -webkit-column-count: 1;
            column-count: 1;
  }
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video {
  margin: 0 auto 30px;
  text-align: center;
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 {
  padding-right: 20px;
}

@media only screen and (max-width: 992px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 {
    padding: 10px 0;
  }
}

.travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6,
.travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6,
.travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6 {
  padding-left: 20px;
}

@media only screen and (max-width: 992px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .lounge-video + .col-lg-6 + .col-lg-6 {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content {
    padding: 25px 118px 10px;
  }
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content {
    padding: 10px 15px;
  }
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content .row.parent,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content .row.parent,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 .ae-content.white-bg.mobile-max .row.accordion.bulky .accordion__content .accordion__content .row.parent {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #dayOfTravel .row.gradient-clouds-bg2,
  .travelReadyHub #healthSafety .row.gradient-clouds-bg2,
  .travelReadyHub #changesCancellations .row.gradient-clouds-bg2 {
    background: #fff;
  }
}

.travelReadyHub #dayOfTravel .plane-img,
.travelReadyHub #healthSafety .plane-img,
.travelReadyHub #changesCancellations .plane-img {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.travelReadyHub #dayOfTravel p.text-center:last-child,
.travelReadyHub #healthSafety p.text-center:last-child,
.travelReadyHub #changesCancellations p.text-center:last-child {
  padding: 4em;
}

@media only screen and (max-width: 1024px) {
  .travelReadyHub #dayOfTravel p.text-center:last-child,
  .travelReadyHub #healthSafety p.text-center:last-child,
  .travelReadyHub #changesCancellations p.text-center:last-child {
    padding: 20px auto 40px;
  }
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content {
  background: #fff;
  padding: 0px 4em 4em;
  -webkit-box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content {
    padding: 0px 20px 2em;
  }
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy {
  padding-top: 4em;
  margin-top: -3em;
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 4em 30px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container {
    padding: 20px 0px 30px;
  }
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container .item img {
  width: 100px;
  height: 100px;
  margin-right: 20px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container .item img {
    margin: 0 0 20px 0;
  }
}

.travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy .booking-policy-container .item p {
  margin-bottom: 8px;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub #changesCancellations .gradient-clouds-bg2 .ae-content #policy {
    padding: 4em 2em 0;
  }
}

.travelReadyHub .ae-content.footnote {
  padding: 4em;
}

@media only screen and (max-width: 767px) {
  .travelReadyHub .ae-content.footnote {
    padding: 20px;
    text-align: left;
  }
}

sherpa-widget .form-container form .row {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

sherpa-widget .form-container form .row .flex-break2 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

@media only screen and (max-width: 1024px) {
  sherpa-widget .form-container form .row .flex-break {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    height: 0;
  }
}

sherpa-widget .form-container form .row:nth-of-type(1) {
  margin-bottom: 10px;
}

sherpa-widget .form-container form .row:nth-of-type(1) .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 250px;
          flex: 1 0 250px;
  margin: 0;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .form-container form .row:nth-of-type(1) .form-group {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 190px;
            flex: 1 0 190px;
  }
  sherpa-widget .form-container form .row:nth-of-type(1) .form-group:not(:last-child) {
    margin: 0 15px 15px 0;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row:nth-of-type(1) .form-group {
    margin: 10px 0;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  sherpa-widget .form-container form .row:nth-of-type(1) .form-group .sherpa-icon {
    display: none;
  }
}

sherpa-widget .form-container form .row:nth-of-type(2) {
  margin-bottom: 10px;
}

sherpa-widget .form-container form .row:nth-of-type(2) .form-group {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 200px;
          flex: 1 1 200px;
  margin: 0;
}

@media only screen and (min-width: 768px) {
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group .managed-wrapper {
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 188px;
            flex: 1 1 188px;
  }
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group.dates {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 180px;
            flex: 0 1 180px;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group {
    margin: 5px 0;
  }
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group h2:after {
    display: none;
  }
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group.dates {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group.dates #flightDateLabel label,
  sherpa-widget .form-container form .row:nth-of-type(2) .form-group.dates #returnFlightDateLabel label {
    padding: 0px;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row:nth-of-type(2) .sherpa-icon {
    display: none;
  }
}

sherpa-widget .form-container form .row .upper.hide-on-connection {
  display: none;
}

sherpa-widget .form-container form .row .upper.hide-on-connection.both-way-connection, sherpa-widget .form-container form .row .upper.hide-on-connection.return-connection {
  display: block;
  font: normal bold 14px 'Open Sans';
  text-transform: uppercase;
  margin: 10px 0 10px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: left;
}

sherpa-widget .form-container form .row .form-group.dates.both-way-connection {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 170px;
          flex: 0 1 170px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group.dates.both-way-connection {
    -webkit-box-flex: 100% !important;
        -ms-flex: 100% !important;
            flex: 100% !important;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .form-container form .row .form-group.dates {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 185px;
            flex: 0 1 185px;
  }
}

sherpa-widget .form-container form .row .form-group.both-way-connection {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 210px;
          flex: 0 1 210px;
}

@media only screen and (min-width: 1025px) {
  sherpa-widget .form-container form .row .form-group.both-way-connection:lang(fr) {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 204px;
            flex: 0 1 204px;
  }
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .form-container form .row .form-group.both-way-connection {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 185px;
            flex: 1 1 185px;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group.both-way-connection {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

sherpa-widget .form-container form .row .form-group.return-connection {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 250px;
          flex: 1 1 250px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .form-container form .row .form-group.return-connection {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 185px;
            flex: 1 1 185px;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group.return-connection {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

sherpa-widget .form-container form .row .form-group label {
  text-transform: none;
}

sherpa-widget .form-container form .row .form-group.find-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100px;
          flex: 1 1 100px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group.find-btn {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    padding: 0;
  }
}

sherpa-widget .form-container form .row .form-group.find-btn .btn-primary {
  margin: 0 !important;
  min-width: 130px;
  min-height: 50px;
  z-index: 50;
  cursor: pointer;
  position: relative;
}

sherpa-widget .form-container form .row .form-group.dates {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 180px;
          flex: 0 1 180px;
  margin: 0;
}

@media only screen and (min-width: 1025px) {
  sherpa-widget .form-container form .row .form-group.dates .managed-display.dropdown .datepicker-wrapper {
    right: 0;
    left: auto;
  }
}

@media only screen and (max-width: 1025px) and (min-width: 768px) {
  sherpa-widget .form-container form .row .form-group.dates .managed-display.dropdown .datepicker-wrapper {
    left: 5px;
    right: auto;
  }
  sherpa-widget .form-container form .row .form-group.dates .managed-display.dropdown .datepicker-wrapper .datepicker.with-min-width {
    min-width: 280px;
  }
  sherpa-widget .form-container form .row .form-group.dates .managed-display.dropdown .datepicker-wrapper .datepicker.with-min-width .ul.list-unstyled {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  sherpa-widget .form-container form .row .form-group.dates .managed-display.dropdown .datepicker-wrapper .datepicker.with-min-width .ul.list-unstyled li.item-month {
    float: none;
    margin: 0 auto !important;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group.dates {
    margin: 5px 0 0;
  }
}

sherpa-widget .form-container form .row .form-group#vaccination {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  padding-top: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media only screen and (max-width: 1024px) {
  sherpa-widget .form-container form .row .form-group#vaccination {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-bottom: 0;
  }
  sherpa-widget .form-container form .row .form-group#vaccination .can-toggle.round-border {
    border: none;
  }
  sherpa-widget .form-container form .row .form-group#vaccination .can-toggle.round-border .can-toggle__label-text {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group#vaccination .can-toggle.round-border label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  sherpa-widget .form-container form .row .form-group#vaccination .can-toggle.round-border label .can-toggle__label-text {
    padding: 0 0 20px 0;
  }
  sherpa-widget .form-container form .row .form-group#vaccination .can-toggle.round-border label .can-toggle__switch {
    width: 120px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

sherpa-widget .form-container form .row .form-group #nationalityCategory .ae-Dropdown-list.is-open {
  max-height: 275px;
  overflow-y: scroll;
  z-index: 70;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown-list li[aria-disabled=true]:hover {
  background-color: #737373;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown {
  margin: 0;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown input {
  display: none;
  min-height: 40px;
  margin: 0 0 5px 0;
  position: relative;
  text-align: left;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown input.visible {
  display: block;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown .ae-Dropdown-title.no-border {
  border: none;
  border-bottom: solid 1px #c8c8c8 !important;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown .ae-Dropdown-title.hide {
  display: none;
}

sherpa-widget .form-container form .row .form-group .ae-Dropdown .ae-Dropdown-title:after {
  top: 60%;
}

sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .default {
  text-transform: none;
  font-size: 16px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .default {
    display: block;
    text-align: left;
    font-size: 14px;
  }
}

sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-right-holder,
sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-left-holder {
  border: solid 1px #c1c5c8;
  min-height: 50px;
  padding: 15px;
}

sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-right-holder .value,
sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-left-holder .value {
  font: normal 600 16px 'Open Sans';
}

sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-right-holder .value .code,
sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-left-holder .value .code {
  letter-spacing: 0.29px;
  color: #737373;
  font-weight: 400;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-right-holder .value,
  sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-left-holder .value {
    display: block;
    text-align: left;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-right-holder,
  sherpa-widget .form-container form .row .form-group .glyph-input-wrapper .glyph-holder.glyph-left-holder {
    padding: 10px;
  }
}

sherpa-widget .form-container form .read-only .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: solid 1px #c8c8c8;
  border-bottom: solid 1px #c8c8c8;
  padding: 32px 0;
}

sherpa-widget .form-container form .read-only .form-group p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  text-align: left;
}

sherpa-widget .form-container form .read-only .form-group p span:nth-of-type(1) {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.42;
  color: #737373;
  display: block;
}

sherpa-widget .form-container form .read-only .form-group p span:nth-of-type(2) {
  font-size: 16px;
  letter-spacing: 0.27px;
  color: #000;
}

sherpa-widget .form-container form .read-only .form-group p span:nth-of-type(2) span {
  font-size: 16px;
  text-transform: none;
  color: #000;
}

sherpa-widget .form-container form .read-only .form-group p:not(:first-child) {
  padding-left: 20px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .read-only .form-group p:not(:first-child) {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
  sherpa-widget .form-container form .read-only .form-group p {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 235px;
            flex: 0 1 235px;
    margin: 0 0 10px;
  }
  sherpa-widget .form-container form .read-only .form-group p:not(:first-child) {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 767px) {
  sherpa-widget .form-container form .read-only .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  sherpa-widget .form-container form .read-only .form-group p {
    margin: 0 0 10px;
  }
}

sherpa-widget .form-container form .form-control {
  min-height: 50px;
}

sherpa-widget .form-container form .form-control::-webkit-input-placeholder {
  text-transform: none !important;
}

sherpa-widget .form-container form .form-control:-ms-input-placeholder {
  text-transform: none !important;
}

sherpa-widget .form-container form .form-control::-ms-input-placeholder {
  text-transform: none !important;
}

sherpa-widget .form-container form .form-control::placeholder {
  text-transform: none !important;
}

@media (max-width: 767px) {
  sherpa-widget .form-container form .form-control {
    width: 100%;
  }
}

sherpa-widget .location-options .location-no-result-wrapper.message-container.mini .message.location-no-result.warning {
  text-align: left;
}

sherpa-widget .location-options .location-result-airport .location-wrapper-airport .location-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

sherpa-widget .location-options .location-result-airport .location-wrapper-airport .location-primary span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 1px;
}

sherpa-widget .location-options .location-result-airport .location-wrapper-airport .location-primary div:last-child {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

sherpa-widget .result-display .normal-text {
  font-weight: bold;
  text-align: left;
}

sherpa-widget .normal-text {
  font-weight: 400;
}

sherpa-widget .sherpa-icon {
  max-height: 50px;
  height: 24px;
  width: 24px;
  margin: 13px 10px 0;
}

sherpa-widget .sherpa-icon.push-right {
  margin: 13px 10px 0 25px;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
  sherpa-widget .sherpa-icon.push-right.isNewLine {
    margin-left: 0;
  }
}

sherpa-widget .sherpa-icon.to-blue {
  -webkit-filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
          filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
}

sherpa-widget .sherpa-icon.to-green {
  -webkit-filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
          filter: invert(36%) sepia(65%) saturate(553%) hue-rotate(78deg) brightness(98%) contrast(91%);
}

sherpa-widget .sherpa-icon.to-red {
  -webkit-filter: invert(21%) sepia(99%) saturate(1991%) hue-rotate(340deg) brightness(95%) contrast(97%);
          filter: invert(21%) sepia(99%) saturate(1991%) hue-rotate(340deg) brightness(95%) contrast(97%);
}

sherpa-widget .sherpa-icon.to-orange {
  -webkit-filter: invert(46%) sepia(78%) saturate(551%) hue-rotate(354deg) brightness(104%) contrast(91%);
          filter: invert(46%) sepia(78%) saturate(551%) hue-rotate(354deg) brightness(104%) contrast(91%);
}

sherpa-widget .sherpa-icon.tiny {
  height: 17px;
  width: 17px;
  margin: 18px 12px 0 0;
}

sherpa-widget .sherpa-icon.tiny.nomargin {
  margin: -2px 5px 0 8px;
}

sherpa-widget .sherpa-icon.list {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-list.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}

sherpa-widget .sherpa-icon.outline {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-info-outline.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 10px;
}

sherpa-widget .sherpa-icon.takeoff {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-plane_takeoff.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin: 0 10px 0 0;
}

sherpa-widget .sherpa-icon.landing {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-plane_landing.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
  margin: 0 10px 0 0;
}

sherpa-widget .sherpa-icon.mask {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-mask.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
}

sherpa-widget .sherpa-icon.general {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-info-general.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
}

sherpa-widget .sherpa-icon.file {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-file.svg) no-repeat center center;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
}

sherpa-widget .sherpa-footnote {
  padding: 20px 0 40px;
  margin-left: -5px;
}

sherpa-widget #sherpaResult span.divider:before {
  content: '';
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-arrow-right.svg) no-repeat center center;
  background-size: 18px 18px;
  display: inline-block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult span.divider:before {
    margin: 0 10px -5px;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content,
sherpa-widget #sherpaResult .arrival-bg .ae-content {
  background: #fff;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content,
  sherpa-widget #sherpaResult .arrival-bg .ae-content {
    padding: 30px 20px;
  }
  sherpa-widget #sherpaResult .departure-bg .ae-content p,
  sherpa-widget #sherpaResult .arrival-bg .ae-content p {
    font-size: 14px !important;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content h2 span,
sherpa-widget #sherpaResult .arrival-bg .ae-content h2 span {
  font: normal 400 24px 'Open Sans';
  letter-spacing: 1.08px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content h3,
sherpa-widget #sherpaResult .arrival-bg .ae-content h3 {
  font: normal 600 20px 'Open Sans';
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content h3,
  sherpa-widget #sherpaResult .arrival-bg .ae-content h3 {
    text-align: left;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content p,
sherpa-widget #sherpaResult .arrival-bg .ae-content p {
  font: normal 400 14px 'Open Sans';
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 3px solid #efefef;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header,
  sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header {
    text-align: left;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header div,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary p,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px 0 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -10px;
  margin-right: 10px;
  -webkit-filter: none;
          filter: none;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow,
  sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow {
    margin-top: 0;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow .sherpa-results-icon,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow .sherpa-results-icon {
  margin: 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow.to-green,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow.to-green {
  background-color: rgba(212, 240, 219, 0.4);
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow.to-orange,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow.to-orange {
  background-color: #ffddb5;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow.to-orange .sherpa-results-icon,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow.to-orange .sherpa-results-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-alert-circle-full.svg) no-repeat center center;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow.to-red,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow.to-red {
  background-color: rgba(222, 50, 50, 0.4);
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header #trip-summary .shadow.to-red .sherpa-results-icon,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header #trip-summary .shadow.to-red .sherpa-results-icon {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-no-entry.svg) no-repeat center center;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header h2:after,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header h2:after {
  display: none;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header h2 span,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header h2 span {
  font-size: 24px;
  font-weight: normal;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header h2 span,
  sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header h2 span {
    font-size: 16px;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content .intro-header .sherpa-icon,
sherpa-widget #sherpaResult .arrival-bg .ae-content .intro-header .sherpa-icon {
  margin: 7px 10px 0 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .faded-blue-bg,
sherpa-widget #sherpaResult .arrival-bg .ae-content .faded-blue-bg {
  background-color: #edf1f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .faded-blue-bg p,
sherpa-widget #sherpaResult .arrival-bg .ae-content .faded-blue-bg p {
  margin: 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block {
  border-bottom: solid 1px #efefef;
  padding: 30px 20px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content section.block,
  sherpa-widget #sherpaResult .arrival-bg .ae-content section.block {
    padding: 10px 10px 30px;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50:nth-of-type(1),
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50:nth-of-type(1) {
  width: 33%;
  padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50:nth-of-type(1),
  sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50:nth-of-type(1) {
    width: 100%;
    padding: 0 0 20px 0;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50:nth-of-type(2),
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50:nth-of-type(2) {
  width: 66%;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50:nth-of-type(2) p:first-child,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50:nth-of-type(2) p:first-child {
  text-transform: uppercase;
  font-weight: bold;
  text-align: left !important;
}

@media only screen and (max-width: 1024px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50:nth-of-type(2),
  sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50:nth-of-type(2) {
    width: 100%;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 ul,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 ul {
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 ul li,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 14px;
  font-weight: normal;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 a,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 a {
  font-weight: 600;
  text-decoration: underline;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display:not(:first-child) p,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display:not(:first-child) p {
  margin: 30px 0 15px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display p,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display p {
  margin-bottom: 15px;
  text-align: left;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin {
  margin: 10px 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin div,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin div {
  margin-bottom: 10px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin img,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin img {
  float: left;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin span,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin span {
  display: block;
  overflow: hidden;
  text-align: left;
  font-size: 14px;
  font-weight: normal;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin span span,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin span span {
  display: inline;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin span.ac-icon.icon-footer-external-link,
  sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin span.ac-icon.icon-footer-external-link {
    overflow: visible;
    padding: 0 5px !important;
  }
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .col-50 .result-display div.item-margin:fist-child,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .col-50 .result-display div.item-margin:fist-child {
  margin: 20px 0 10px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block .doc:before,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block .doc:before {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-file.svg) no-repeat center center;
  background-size: 13px 17px;
  display: block;
  width: 20px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content section.block p.subhead.toupper,
sherpa-widget #sherpaResult .arrival-bg .ae-content section.block p.subhead.toupper {
  margin: 30px 10px -15px;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .white-circle .sherpa-icon,
sherpa-widget #sherpaResult .arrival-bg .ae-content .white-circle .sherpa-icon {
  margin: 0;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .grey-bg.disclaimer,
sherpa-widget #sherpaResult .arrival-bg .ae-content .grey-bg.disclaimer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f5f5;
  text-align: left;
}

sherpa-widget #sherpaResult .departure-bg .ae-content .grey-bg.disclaimer p,
sherpa-widget #sherpaResult .arrival-bg .ae-content .grey-bg.disclaimer p {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult .departure-bg .ae-content .grey-bg.disclaimer,
  sherpa-widget #sherpaResult .arrival-bg .ae-content .grey-bg.disclaimer {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

sherpa-widget #sherpaResult .departure-bg {
  margin-top: -10em;
  padding-top: 14em;
  padding-bottom: 4em;
}

sherpa-widget #sherpaResult .arrival-bg {
  padding-top: 4em;
  padding-bottom: 4em;
}

sherpa-widget #sherpaResult div.anchor-bar {
  padding: 20px;
  background-color: #fafafa;
  margin: 0;
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 !important;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(2) a.btns {
  font-size: 14px !important;
  margin: 0;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div a.btns {
  margin: 0 0 0 20px !important;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(1) a {
  margin-bottom: 0;
  font-size: 16px;
  padding: 14.2px 15px;
  cursor: pointer;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(1) a:nth-of-type(1) {
  border-right: solid 1px #c1c5c8;
  padding: 0 30px 0 0;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(1) a:nth-of-type(2) {
  padding: 0 0 0 30px;
}

sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(1) img {
  width: 17px;
  height: 15px;
  margin: 0 3px 0 0;
}

sherpa-widget #sherpaResult div.anchor-bar div:nth-of-type(2) p {
  font-size: 14px !important;
  margin: 0;
}

@media only screen and (max-width: 767px) {
  sherpa-widget #sherpaResult div.anchor-bar .ae-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 !important;
    width: 100%;
  }
  sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(2) {
    margin-top: 10px;
  }
  sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(2) p {
    text-align: left;
  }
  sherpa-widget #sherpaResult div.anchor-bar .ae-content div:nth-of-type(2) a.btn {
    margin: 10px auto;
  }
}

sherpa-widget .can-toggle {
  position: relative;
  border-right: 1px solid rgba(208, 208, 206, 0.5);
  padding-right: 30px;
}

@media only screen and (max-width: 767px) {
  sherpa-widget .can-toggle {
    padding-right: 0;
  }
}

sherpa-widget .can-toggle * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

sherpa-widget .can-toggle *:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

sherpa-widget .can-toggle *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

sherpa-widget .can-toggle input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

sherpa-widget .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:before {
  content: attr(data-checked);
  left: 0;
}

sherpa-widget .can-toggle input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
  content: attr(data-unchecked);
  -webkit-transform: translate3d(65px, 0, 0);
  transform: translate3d(65px, 0, 0);
}

sherpa-widget .can-toggle input[type="checkbox"]:checked ~ label:hover {
  color: #55bc49;
}

sherpa-widget .can-toggle input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle input[type="checkbox"]:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle input[type="checkbox"]:hover ~ label {
  color: #6a6a6a;
}

sherpa-widget .can-toggle input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle input[type="checkbox"][disabled] ~ label {
  pointer-events: none;
  color: rgba(119, 119, 119, 0.5);
}

sherpa-widget .can-toggle input[type="checkbox"][disabled] ~ label .can-toggle__switch {
  opacity: 0.4;
}

sherpa-widget .can-toggle label {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 14px;
}

sherpa-widget .can-toggle label .can-toggle__label-text {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  padding-left: 32px;
  -ms-flex: 1;
  flex: 1;
  text-transform: none;
}

sherpa-widget .can-toggle label .can-toggle__switch {
  position: relative;
  -webkit-transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
  background: #848484;
  height: 36px;
  -ms-flex: 0 0 134px;
  -webkit-box-flex: 0;
          flex: 0 0 134px;
  border-radius: 4px;
}

sherpa-widget .can-toggle label .can-toggle__switch:before {
  content: attr(data-unchecked);
  position: absolute;
  top: 0;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  left: 67px;
  font-size: 12px;
  line-height: 36px;
  width: 67px;
  padding: 0 12px;
}

sherpa-widget .can-toggle label .can-toggle__switch:after {
  content: attr(data-checked);
  position: absolute;
  z-index: 5;
  text-transform: uppercase;
  text-align: center;
  background: #005078;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
  color: #777;
  top: 2px;
  left: 2px;
  border-radius: 2px;
  width: 65px;
  line-height: 32px;
  font-size: 12px;
}

sherpa-widget .can-toggle label .can-toggle__switch:hover:after {
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-small input[type="checkbox"]:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-small input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-small input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
  -webkit-transform: translate3d(44px, 0, 0);
  transform: translate3d(44px, 0, 0);
}

sherpa-widget .can-toggle.can-toggle--size-small input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-small input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-small label {
  font-size: 13px;
}

sherpa-widget .can-toggle.can-toggle--size-small label .can-toggle__switch {
  height: 28px;
  -ms-flex: 0 0 90px;
  -webkit-box-flex: 0;
          flex: 0 0 90px;
  border-radius: 2px;
}

sherpa-widget .can-toggle.can-toggle--size-small label .can-toggle__switch:before {
  left: 45px;
  font-size: 10px;
  line-height: 28px;
  width: 45px;
  padding: 0 12px;
}

sherpa-widget .can-toggle.can-toggle--size-small label .can-toggle__switch:after {
  top: 1px;
  left: 1px;
  border-radius: 1px;
  width: 44px;
  line-height: 26px;
  font-size: 10px;
}

sherpa-widget .can-toggle.can-toggle--size-small label .can-toggle__switch:hover:after {
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
          box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-large input[type="checkbox"]:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-large input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-large input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
  -webkit-transform: translate3d(78px, 0, 0);
  transform: translate3d(78px, 0, 0);
}

sherpa-widget .can-toggle.can-toggle--size-large input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-large input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.can-toggle--size-large label {
  font-size: 14px;
}

sherpa-widget .can-toggle.can-toggle--size-large label .can-toggle__switch {
  height: 50px;
  -ms-flex: 0 0 160px;
  -webkit-box-flex: 0;
          flex: 0 0 160px;
  border-radius: 4px;
}

sherpa-widget .can-toggle.can-toggle--size-large label .can-toggle__switch:before {
  left: 80px;
  font-size: 14px;
  line-height: 50px;
  width: 80px;
  padding: 0 12px;
}

sherpa-widget .can-toggle.can-toggle--size-large label .can-toggle__switch:after {
  top: 2px;
  left: 2px;
  border-radius: 2px;
  width: 78px;
  line-height: 46px;
  font-size: 14px;
}

sherpa-widget .can-toggle.can-toggle--size-large label .can-toggle__switch:hover:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.demo-rebrand-1 input[type="checkbox"][disabled] ~ label {
  color: rgba(181, 62, 116, 0.5);
}

sherpa-widget .can-toggle.demo-rebrand-1 label .can-toggle__label-text {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
}

sherpa-widget .can-toggle.demo-rebrand-1 label .can-toggle__switch {
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background: #c14b81;
}

sherpa-widget .can-toggle.demo-rebrand-1 label .can-toggle__switch:before {
  color: rgba(255, 255, 255, 0.6);
}

sherpa-widget .can-toggle.demo-rebrand-1 label .can-toggle__switch:after {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  color: #b53e74;
}

sherpa-widget .can-toggle.round-border input[type="checkbox"][disabled] ~ label {
  color: rgba(68, 68, 68, 0.5);
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:hover ~ label {
  color: #373737;
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:checked ~ label .can-toggle__switch:after {
  -webkit-transform: translate3d(58px, 0, 0);
  transform: translate3d(58px, 0, 0);
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:checked:focus ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.round-border input[type="checkbox"]:checked:hover ~ label .can-toggle__switch:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

sherpa-widget .can-toggle.round-border label {
  font-size: 13px;
}

sherpa-widget .can-toggle.round-border label .can-toggle__label-text {
  -ms-flex: 1;
  -webkit-box-flex: 1;
          flex: 1;
  color: #000000;
  font-weight: 600;
  font: normal 600 16px 'Open Sans';
  padding: 0 20px 0 0;
  text-transform: none;
}

sherpa-widget .can-toggle.round-border label .can-toggle__switch {
  -webkit-transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: background-color 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  background: #efefef;
  height: 40px;
  -ms-flex: 0 0 120px;
  -webkit-box-flex: 0;
          flex: 0 0 120px;
  border-radius: 20px;
}

sherpa-widget .can-toggle.round-border label .can-toggle__switch:before {
  color: #000;
  left: 60px;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  width: 60px;
  padding: 0 12px;
  text-transform: none;
}

sherpa-widget .can-toggle.round-border label .can-toggle__switch:after {
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  color: #ffffff;
  top: 2px;
  left: 2px;
  border-radius: 30px;
  width: 58px;
  line-height: 36px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

sherpa-widget .can-toggle.round-border label .can-toggle__switch:hover:after {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}

.white-box {
  border: solid 1px #b9d9eb;
  background-color: #fff;
  padding: 20px 30px;
}

.white-box.testing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 20px 30px 0;
  text-align: left;
}

.white-box.testing li {
  font-size: 14px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: none !important;
}

.white-box.testing li strong {
  font-size: 16px;
  margin-bottom: 7px;
}

.white-box.testing li span {
  width: 50%;
}

.white-box.testing li span:nth-of-type(2) {
  font-style: italic;
}

@media only screen and (max-width: 767px) {
  .white-box.testing li span {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .white-box.testing li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.white-box.testing span.img {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/icon-test.png) no-repeat center center;
  background-size: 50px 50px;
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
  margin-left: -10px;
}

@media only screen and (max-width: 767px) {
  .white-box.testing span.img {
    display: none !important;
  }
}

.white-box.testing div {
  width: 100%;
}

.white-box.testing div p {
  margin: 0 0 15px 0 !important;
  text-transform: none !important;
}

.white-box.uploadDocuments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 20px 30px 0;
  text-align: left;
}

.white-box.uploadDocuments p:nth-of-type(1) strong {
  font-size: 16px;
  margin-bottom: 7px;
}

.white-box.uploadDocuments p,
.white-box.uploadDocuments li {
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: none !important;
}

.white-box.uploadDocuments span.img {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/icon-calendar.png) no-repeat center center;
  background-size: 50px 50px;
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
  margin-left: -10px;
}

@media only screen and (max-width: 767px) {
  .white-box.uploadDocuments span.img {
    display: none !important;
  }
}

.white-box.link {
  padding: 13px 30px;
  margin: 0 30px !important;
  border: solid 1px #b9d9eb;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

.white-box.link p {
  margin: 0 !important;
  width: 100%;
}

.white-box.link:nth-of-type(1) {
  margin-top: 20px;
}

.white-box.link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  text-transform: none;
}

.white-box.link a:after {
  content: '';
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-arrow-right.svg) no-repeat center center;
  background-size: 18px 18px;
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  -webkit-filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
          filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
}

@media only screen and (max-width: 767px) {
  .white-box.link {
    padding: 10px 15px;
  }
}

.white-box.pdf-download {
  padding: 13px 30px;
  margin: 0 30px;
  border: solid 1px #b9d9eb;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

.white-box.pdf-download a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.white-box.pdf-download a:after {
  content: '';
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/ic-download.svg) no-repeat center center;
  background-size: 18px 18px;
  display: block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  -webkit-filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
          filter: invert(18%) sepia(89%) saturate(1700%) hue-rotate(177deg) brightness(95%) contrast(101%);
}

.white-box.switchHealth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border: solid 1px #b9d9eb;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#d6dfe5), color-stop(85%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(to bottom, #d6dfe5 0%, rgba(255, 255, 255, 0) 85%);
  margin: 30px 30px 10px !important;
  text-align: left;
}

.white-box.switchHealth p {
  text-transform: none !important;
}

@media only screen and (max-width: 1024px) {
  .white-box.switchHealth {
    margin: 30px 30px 10px;
  }
  .white-box.switchHealth div:nth-of-type(2) p {
    margin: 0 0 10px 0 !important;
  }
}

.white-box.switchHealth span.img {
  background: url(/content/dam/aircanada/portal/images/travelReadyHub/logo-switchhealth-circle.png) no-repeat center center;
  background-size: 50px 50px;
  display: block;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 20px;
  margin-left: -10px;
}

.white-box.switchHealth span.img + span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  margin: 10px;
  line-height: 1.17;
  letter-spacing: 0.02px;
  text-align: center;
  color: #4a4f55;
}

@media only screen and (max-width: 767px) {
  .white-box.switchHealth span.img {
    display: none !important;
  }
}

.white-box.switchHealth div:nth-of-type(2) p:nth-of-type(1) strong {
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  .white-box {
    margin: 0 30px !important;
  }
}

@media only screen and (max-width: 767px) {
  .white-box {
    padding: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .loader-container img.ac-loader {
    margin: -80px -80px 0 !important;
  }
  .location-options .location-result-airport .location-wrapper-airport .location-primary span {
    display: initial !important;
  }
}

@media only screen and (min-width: 1025px) {
  .ui-datepicker.ui-datepicker-multi {
    right: 295px !important;
    left: auto !important;
  }
}

/**/
.covid-hub-framed #pageHeader,
.covid-hub-framed #pageFooter,
.covid-hub-framed .ae-header,
.covid-hub-framed #travelRequirements > .grey-bg,
.covid-hub-framed #travelRequirements > .gradient-clouds-bg2,
.covid-hub-framed #travelRequirements > .white-bg,
.covid-hub-framed #travelRequirements > p {
  display: none;
}

.covid-hub-framed #travelReadyHub {
  margin-top: 55px;
}
/*# sourceMappingURL=travelReadyHub.css.map */