html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

strong, b {
  font-weight: bold !important;
}

ul, ol, li {
  list-style: none;
}

html {
  box-sizing: border-box;
  background: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  line-height: 1;
  font-size: 16px;
  color: #404040;
  font-family: "Open Sans", arial, sans-serif;
}

/* Disable the quick blinking effect when an element has been hit */
body * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

sup {
  position: relative;
  font-size: 50%;
}

a {
  color: #404040;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.arrowed img {
  width: 18px !important;
  /*    height: 15px !important;*/
  vertical-align: sub;
  margin-bottom: 1px !important;
  margin-top: 8px !important;
  /*    margin-left: 5px;*/
}

a.arrowed {
  color: #00a1df !important;
}

.shadow--2dp {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.shadow--3dp {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.shadow--4dp {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}

.shadow--6dp {
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.shadow--8dp {
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.shadow--16dp {
  box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}

.centered {
  margin: 0 auto;
  text-align: center;
}

/*------------------ Inserted from New AirTV css/global.css ------------------*/
.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}

.j-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.content-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 0px;
}

/*------------------ END inserted from New AirTV css/global.css ------------------*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex--1280 {
  width: 100%;
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  /*padding: 0 40px;*/
}

.flex--980 {
  width: 100%;
  max-width: 980px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.flex--col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.flex--wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.align--vcenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align--vtop {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.align--vbottom {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  -webkit-align-items: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.just--end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.just--start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.just--between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.just--center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.img--max {
  width: 100%;
  height: auto;
}

.white {
  color: #fff;
}

.gray {
  color: #404040;
}

.light-gray {
  color: #7F7F7F;
}

.black {
  color: #000000;
}

.blue {
  color: #00a0dd;
}

.yellow {
  color: #f0a414;
}

.desktop {
  display: none;
}

@media screen and (min-width: 1025px) {
  .desktop {
    display: block;
  }
}

h1 {
  font-size: 30px;
  margin-bottom: 6rem;
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 40px;
    margin-bottom: 2rem;
  }
}

h2 {
  font-size: 20px;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 28px;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  h2 {
    font-size: 34px;
    margin-bottom: 2rem;
  }
}

h3 {
  font-size: 18px;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
}

@media screen and (min-width: 1025px) {
  h3 {
    font-size: 28px;
    margin-bottom: 1.25rem;
  }
}

#wrap--mainNav {
  display: none;
}

@media screen and (min-width: 768px) {
  #wrap--mainNav {
    width: 100%;
    background: #fff;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

.btn--primary a {
  display: inline-block;
  padding: 1rem 2rem;
  color: #fff !important;
  background: #00a1df;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 29px;
}

.btn--primary a:hover {
  background: #0e76bc;
}

.nav--sub {
  opacity: 0;
  -webkit-transition: opacity .5s ease-out;
  transition: opacity .5s ease-out;
  pointer-events: none;
}

.sub--open {
  opacity: 1 !important;
  pointer-events: all !important;
}

.wrap--bodyContent {
  margin-top: 60px;
}

@media screen and (min-width: 1025px) {
  #footer--main {
    width: 100%;
    position: relative;
    bottom: 0;
  }
}

#mobileNav {
  display: block;
  width: 100%;
  height: 60px;
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
  text-align: center;
  margin: 0 auto;
}

#subnav--mobile {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  background: #1A9AD8;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .3s ease-out;
  transition: opacity .3s ease-out;
}

.orderDelay {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.orderDelay p {
  width: 90%;
  max-width: 600px;
  padding: 1rem 0;
  font-size: 10px;
  margin: 0 auto;
  font-style: italic;
}

.orderDelay p.second-line {
  margin-top: 30px;
}
