/*  */
/* USAGE MEDIA QUERIES
  div {
    height: 390px;

    @include breakpoint(mobile) {
      margin-bottom: 15px;
    }
  }
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
/* -------------------------------------------------------------------
  Microtip
  Modern, lightweight css-only tooltips
  Just 1kb minified and gzipped
  @author Ghosh
  @package Microtip
----------------------------------------------------------------------
  1. Base Styles
  2. Direction Modifiers
  3. Position Modifiers
--------------------------------------------------------------------*/
/* ------------------------------------------------
  [1] Base Styles
-------------------------------------------------*/
[aria-label][role~="tooltip"] {
  position: relative; }

[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top; }

[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: ""; }

[aria-label][role~="tooltip"]::after {
  background: #efefef;
  border-radius: 4px;
  color: #000;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: .5em 1em;
  white-space: nowrap;
  box-sizing: content-box; }

[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto; }

/* ------------------------------------------------
  [2] Position Modifiers
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%28239,%20239,%20239,%201%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px; }

[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px; }

[role~="tooltip"][data-microtip-position|="top"]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%; }

[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  transform: translate3d(-50%, -5px, 0); }

[role~="tooltip"][data-microtip-position|="top"]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%; }

[role~="tooltip"][data-microtip-position="top"]:hover::after {
  transform: translate3d(-50%, -5px, 0); }

/* ------------------------------------------------
  [2.1] Top Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-left"]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%; }

[role~="tooltip"][data-microtip-position="top-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0); }

/* ------------------------------------------------
  [2.2] Top Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="top-right"]::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%; }

[role~="tooltip"][data-microtip-position="top-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), -5px, 0); }

/* ------------------------------------------------
  [2.3] Bottom
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%28239,%20239,%20239,%201%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0; }

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px; }

[role~="tooltip"][data-microtip-position|="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%; }

[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  transform: translate3d(-50%, 0, 0); }

[role~="tooltip"][data-microtip-position|="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%; }

[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0, 0); }

/* ------------------------------------------------
  [2.4] Bottom Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-left"]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%; }

[role~="tooltip"][data-microtip-position="bottom-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0); }

/* ------------------------------------------------
  [2.5] Bottom Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="bottom-right"]::after {
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%; }

[role~="tooltip"][data-microtip-position="bottom-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), 0, 0); }

/* ------------------------------------------------
  [2.6] Left
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="left"]::before,
[role~="tooltip"][data-microtip-position="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0); }

[role~="tooltip"][data-microtip-position="left"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%28239,%20239,%20239,%201%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0; }

[role~="tooltip"][data-microtip-position="left"]::after {
  margin-right: 11px; }

[role~="tooltip"][data-microtip-position="left"]:hover::before,
[role~="tooltip"][data-microtip-position="left"]:hover::after {
  transform: translate3d(0, -50%, 0); }

/* ------------------------------------------------
  [2.7] Right
-------------------------------------------------*/
[role~="tooltip"][data-microtip-position="right"]::before,
[role~="tooltip"][data-microtip-position="right"]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0); }

[role~="tooltip"][data-microtip-position="right"]::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%28239,%20239,%20239,%201%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E") no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px; }

[role~="tooltip"][data-microtip-position="right"]::after {
  margin-left: 11px; }

[role~="tooltip"][data-microtip-position="right"]:hover::before,
[role~="tooltip"][data-microtip-position="right"]:hover::after {
  transform: translate3d(0, -50%, 0); }

/* ------------------------------------------------
  [3] Size
-------------------------------------------------*/
[role~="tooltip"][data-microtip-size="small"]::after {
  white-space: initial;
  width: 80px; }

[role~="tooltip"][data-microtip-size="medium"]::after {
  white-space: initial;
  width: 150px; }

[role~="tooltip"][data-microtip-size="large"]::after {
  white-space: initial;
  width: 260px; }

.topAirBanner2019 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative; }
  @media (max-width: 767px) {
    .topAirBanner2019 {
      position: relative;
      margin-bottom: 10px; } }
  @media (max-width: 767px) {
    .topAirBanner2019.isOpen {
      margin-bottom: 10px; } }
  .topAirBanner2019 a.boxLink {
    width: 15%;
    padding: 20px 20px 20px 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #fff;
    background-color: #489dc0;
    border-right: 1px solid #fff; }
    @media (min-width: 992px) and (max-width: 1199px) {
      .topAirBanner2019 a.boxLink {
        padding: 15px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .topAirBanner2019 a.boxLink {
        width: 50%;
        border: 0; } }
    @media (max-width: 767px) {
      .topAirBanner2019 a.boxLink {
        width: 100%;
        border: 0;
        padding: 10px 10px 10px 15px;
        display: none; } }
    .topAirBanner2019 a.boxLink:hover, .topAirBanner2019 a.boxLink:focus {
      text-decoration: none; }
      .topAirBanner2019 a.boxLink:hover span > span.txtDesc, .topAirBanner2019 a.boxLink:focus span > span.txtDesc {
        padding-left: 15px; }
    .topAirBanner2019 a.boxLink:focus span > span {
      text-decoration: underline; }
    .topAirBanner2019 a.boxLink.boxLink2 {
      background-color: #2f537e;
      width: 24%; }
    .topAirBanner2019 a.boxLink img {
      width: 73px;
      height: auto;
      margin-right: 25px; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .topAirBanner2019 a.boxLink img {
          width: 60px;
          margin-right: 15px; } }
      @media (max-width: 767px) {
        .topAirBanner2019 a.boxLink img {
          width: 25px;
          margin-right: 10px; } }
    .topAirBanner2019 a.boxLink > span {
      font-size: 18px;
      font-weight: 700;
      line-height: 20px;
      font-family: 'Roboto Slab'; }
      @media (min-width: 992px) and (max-width: 1199px) {
        .topAirBanner2019 a.boxLink > span {
          font-size: 16px; } }
      @media (max-width: 767px) {
        .topAirBanner2019 a.boxLink > span {
          font-size: 14px; } }
      .topAirBanner2019 a.boxLink > span .txtMobileTitle {
        display: none; }
        @media (max-width: 767px) {
          .topAirBanner2019 a.boxLink > span .txtMobileTitle {
            display: inline-block; } }
      .topAirBanner2019 a.boxLink > span > span.txtDesc {
        font-size: 14px;
        font-weight: normal;
        line-height: 18px;
        font-family: 'Lato';
        display: block;
        margin-top: 10px;
        -webkit-transition: all 0.5s ease;
        -khtml-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .topAirBanner2019 a.boxLink > span > span.txtDesc {
            font-size: 12px; } }
        @media (max-width: 767px) {
          .topAirBanner2019 a.boxLink > span > span.txtDesc {
            display: none; } }
  .topAirBanner2019 .wrapperAir {
    width: 61%;
    position: relative;
    -webkit-transition: background-color 0.5s ease;
    -khtml-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease; }
    @media (max-width: 991px) {
      .topAirBanner2019 .wrapperAir {
        width: 100%; } }
    .topAirBanner2019 .wrapperAir.colorBlack .boxAirWIP .boxInfo, .topAirBanner2019 .wrapperAir.colorBlack .boxAirWIOS .boxInfo {
      color: #000; }
      .topAirBanner2019 .wrapperAir.colorBlack .boxAirWIP .boxInfo a, .topAirBanner2019 .wrapperAir.colorBlack .boxAirWIOS .boxInfo a {
        color: #000; }
  .topAirBanner2019 .boxAirWIP, .topAirBanner2019 .boxAirWIOS {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    position: relative; }
    .topAirBanner2019 .boxAirWIP.isHidden, .topAirBanner2019 .boxAirWIOS.isHidden {
      display: none; }
    @media (max-width: 767px) {
      .topAirBanner2019 .boxAirWIP, .topAirBanner2019 .boxAirWIOS {
        display: block; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .topAirBanner2019 .boxAirWIP > div, .topAirBanner2019 .boxAirWIOS > div {
        padding-top: 7px;
        padding-bottom: 7px; } }
    .topAirBanner2019 .boxAirWIP .iconInfo, .topAirBanner2019 .boxAirWIOS .iconInfo {
      vertical-align: middle;
      width: 12px;
      height: auto;
      margin-left: 5px; }
    .topAirBanner2019 .boxAirWIP .boxInfo, .topAirBanner2019 .boxAirWIOS .boxInfo {
      padding: 20px 20px 20px 20px;
      width: 40%;
      color: #fff;
      position: relative;
      height: 100%;
      text-align: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      -moz-align-items: center;
      align-items: center; }
      @media (max-width: 767px) {
        .topAirBanner2019 .boxAirWIP .boxInfo, .topAirBanner2019 .boxAirWIOS .boxInfo {
          padding: 5px 5px;
          display: block;
          width: 100%; } }
      .topAirBanner2019 .boxAirWIP .boxInfo a, .topAirBanner2019 .boxAirWIOS .boxInfo a {
        color: #fff; }
      .topAirBanner2019 .boxAirWIP .boxInfo > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span {
        font-size: 14px;
        line-height: 20px;
        font-family: 'Roboto Slab'; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .topAirBanner2019 .boxAirWIP .boxInfo > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span {
            font-size: 12px; } }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIP .boxInfo > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span {
            font-size: 14px;
            text-align: center; } }
        .topAirBanner2019 .boxAirWIP .boxInfo > span > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span {
          font-size: 11px;
          font-weight: normal;
          line-height: 14px;
          font-family: 'Lato';
          display: block;
          margin-top: 2px;
          -webkit-transition: all 0.5s ease;
          -khtml-transition: all 0.5s ease;
          -moz-transition: all 0.5s ease;
          -ms-transition: all 0.5s ease;
          -o-transition: all 0.5s ease;
          transition: all 0.5s ease; }
          .topAirBanner2019 .boxAirWIP .boxInfo > span > span.txtStatus, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span.txtStatus {
            font-weight: 700;
            font-size: 30px;
            line-height: 35px; }
            @media (min-width: 992px) and (max-width: 1199px) {
              .topAirBanner2019 .boxAirWIP .boxInfo > span > span.txtStatus, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span.txtStatus {
                font-size: 26px; } }
            @media (max-width: 767px) {
              .topAirBanner2019 .boxAirWIP .boxInfo > span > span.txtStatus, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span.txtStatus {
                margin-top: 0; } }
          @media (min-width: 992px) and (max-width: 1199px) {
            .topAirBanner2019 .boxAirWIP .boxInfo > span > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span {
              font-size: 12px; } }
          @media (max-width: 767px) {
            .topAirBanner2019 .boxAirWIP .boxInfo > span > span, .topAirBanner2019 .boxAirWIOS .boxInfo > span > span {
              font-size: 11px; } }
    .topAirBanner2019 .boxAirWIP .boxStatus, .topAirBanner2019 .boxAirWIOS .boxStatus {
      width: 50%;
      color: #fff; }
      .topAirBanner2019 .boxAirWIP .boxStatus > div, .topAirBanner2019 .boxAirWIOS .boxStatus > div {
        display: block;
        width: 100%; }
        .topAirBanner2019 .boxAirWIP .boxStatus > div img, .topAirBanner2019 .boxAirWIOS .boxStatus > div img {
          display: block;
          margin: 0 auto 0 auto;
          width: 80px;
          height: auto; }
      .topAirBanner2019 .boxAirWIP .boxStatus span, .topAirBanner2019 .boxAirWIOS .boxStatus span {
        display: block;
        font-size: 30px;
        text-align: center;
        font-weight: 900; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .topAirBanner2019 .boxAirWIP .boxStatus span, .topAirBanner2019 .boxAirWIOS .boxStatus span {
            font-size: 20px; } }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIP .boxStatus span, .topAirBanner2019 .boxAirWIOS .boxStatus span {
            font-size: 16px; } }
  .topAirBanner2019 .boxAirWIP .boxStatusIcons {
    width: 60%;
    height: 100%;
    padding: 6px 6px 6px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767px) {
      .topAirBanner2019 .boxAirWIP .boxStatusIcons {
        width: 100%;
        padding: 0 3px;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .topAirBanner2019 .boxAirWIP .boxStatusIcons > div {
      width: 25%;
      margin-left: 6px;
      padding-bottom: 5px;
      height: 100%;
      background-color: #fff;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      text-align: center;
      position: relative; }
      @media (max-width: 767px) {
        .topAirBanner2019 .boxAirWIP .boxStatusIcons > div {
          width: 20%;
          width: calc(25% - 6px);
          margin: 3px; } }
      @media (max-width: 767px) {
        .topAirBanner2019 .boxAirWIP .boxStatusIcons > div[aria-label][role~="tooltip"]::after {
          max-width: 40vw;
          white-space: normal; } }
      .topAirBanner2019 .boxAirWIP .boxStatusIcons > div small {
        position: absolute;
        top: 2px;
        right: 8px;
        font-size: 30px; }
        .topAirBanner2019 .boxAirWIP .boxStatusIcons > div small[aria-label][role~="tooltip"]::after {
          width: 220px;
          white-space: normal;
          font-size: 11px;
          z-index: 10005; }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIP .boxStatusIcons > div small {
            top: -6px;
            right: 2px; } }
      .topAirBanner2019 .boxAirWIP .boxStatusIcons > div i {
        font-size: 55px;
        color: #f39116; }
        .topAirBanner2019 .boxAirWIP .boxStatusIcons > div i:before {
          width: auto;
          margin: 0; }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIP .boxStatusIcons > div i {
            font-size: 40px; } }
      .topAirBanner2019 .boxAirWIP .boxStatusIcons > div span {
        display: block;
        font-family: 'Roboto Slab';
        font-weight: 700;
        font-size: 14px; }
        @media (min-width: 992px) and (max-width: 1199px) {
          .topAirBanner2019 .boxAirWIP .boxStatusIcons > div span {
            font-size: 11px; } }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIP .boxStatusIcons > div span {
            font-size: 10px; } }
  .topAirBanner2019 .boxAirWIOS .boxStatusIcons {
    width: 60%;
    height: 100%;
    padding: 6px 6px 6px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767px) {
      .topAirBanner2019 .boxAirWIOS .boxStatusIcons {
        width: 100%;
        padding: 0 3px;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div {
      width: 25%;
      margin-left: 6px;
      padding-bottom: 5px;
      padding-top: 5px;
      height: 103px;
      background-color: #fff;
      -webkit-border-radius: 5px;
      -khtml-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      text-align: center;
      position: relative; }
      @media (max-width: 767px) {
        .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div {
          width: 20%;
          width: calc(25% - 6px);
          margin: 3px;
          height: 76px; } }
      .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div i {
        font-size: 55px;
        color: #f39116; }
        .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div i:before {
          width: auto;
          margin: 0; }
      .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div i {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 35px; }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div i {
            font-size: 20px; } }
      .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div span.txtName {
        text-align: center;
        display: block;
        font-size: 18px;
        line-height: 22px;
        font-weight: 700;
        color: #000; }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div span.txtName {
            font-size: 15px;
            line-height: 18px; } }
      .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div span.txtVal {
        display: block;
        font-family: 'Roboto Slab';
        font-size: 13px;
        text-align: center;
        position: absolute;
        bottom: 5px;
        left: 0;
        right: 0; }
        @media (max-width: 767px) {
          .topAirBanner2019 .boxAirWIOS .boxStatusIcons > div span.txtVal {
            font-size: 12px; } }
  .topAirBanner2019 .wrapperAirBottom {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%; }
    @media (max-width: 767px) {
      .topAirBanner2019 .wrapperAirBottom {
        position: static; } }
  .topAirBanner2019 .txtLegend {
    font-size: 11px;
    display: block;
    padding: 3px 0 0 0; }
    @media (max-width: 767px) {
      .topAirBanner2019 .txtLegend {
        position: static; } }
  .topAirBanner2019 .boxAirSelect {
    display: block;
    float: right;
    padding: 0 20px 5px 20px;
    list-style: none;
    margin: 0 1px 0 0;
    font-family: 'Roboto Slab';
    font-weight: 700;
    font-size: 13px;
    width: 150px;
    -webkit-transition: background-color 0.5s ease;
    -khtml-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -ms-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease; }
    @media (max-width: 767px) {
      .topAirBanner2019 .boxAirSelect {
        margin: 0;
        width: 100%;
        padding-top: 5px; }
        .topAirBanner2019 .boxAirSelect:before, .topAirBanner2019 .boxAirSelect:after {
          content: "";
          display: table; }
        .topAirBanner2019 .boxAirSelect:after {
          clear: both; } }
    .topAirBanner2019 .boxAirSelect li {
      display: inline-block; }
      .topAirBanner2019 .boxAirSelect li:last-child {
        float: right; }
    .topAirBanner2019 .boxAirSelect a {
      color: #fff; }
      .topAirBanner2019 .boxAirSelect a[aria-label][role~="tooltip"]::after {
        white-space: normal; }
      .topAirBanner2019 .boxAirSelect a i {
        display: none; }
      .topAirBanner2019 .boxAirSelect a.isActive i {
        display: inline-block; }
  .topAirBanner2019 .lnkMobileMore {
    display: none; }
    @media (max-width: 767px) {
      .topAirBanner2019 .lnkMobileMore {
        cursor: pointer;
        display: block;
        position: absolute;
        right: 0;
        top: 100%;
        font-size: 12px;
        font-weight: 700;
        padding: 4px 10px;
        color: #fff;
        background-color: #489dc0;
        -webkit-border-bottom-left-radius: 8px;
        -moz-border-radius-bottomleft: 8px;
        border-bottom-left-radius: 8px; } }

.infoAirBox {
  background-color: #eaeaea;
  padding: 20px;
  position: relative;
  display: none;
  margin-bottom: 10px; }
  .infoAirBox .closeInfoBox {
    position: absolute;
    top: 0;
    right: 0;
    color: #000;
    font-size: 22px; }
  .infoAirBox span {
    display: block;
    margin-top: 10px;
    font-size: 13px; }

/*# sourceMappingURL=style-air2019.css.map */
