/* Global */
*, *:after, *:before {
  outline: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  box-sizing: inherit;
}

html, body {
  -webkit-tap-highlight-color: transparent;
  color: #444444;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (max-width: 720px) {
  html, body {
    font-size: 14px;
    line-height: 1.25;
  }
}

/* General */
.link,
.link:visited {
  color: #007FFF;
  text-decoration: none;
}

.link:hover,
.link:active {
  color: #007FFF;
  text-decoration: underline;
}

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

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1170px;
}

.inline {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.inline-space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.center-align {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-section {
  border-bottom: 1px solid #eaeaea;
  background-color: #fcfcfc;
}

.heading-section > .container {
  padding: 30px;
}

.heading-section__text {
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

.table {
  width: 100%;
}

.table td,
.table th {
  text-align: left;
  padding: 10px;
  vertical-align: middle;
}

.table th {
  font-size: 14px;
  font-weight: 600;
}

.table td {
  font-size: 15px;
}

.table td > img {
  vertical-align: middle;
}

.table thead > tr {
  border-bottom: 2px solid #e4e4e4;
}

.table tr {
  border-bottom: 1px solid #e4e4e4;
}

.table tbody > tr:hover {
  background-color: #f8f8f8;
}

.table tbody > tr:last-child {
  border-bottom: 0 none;
}

.bullet-list {
  margin: 0;
  padding: 10px 60px;
}

.bullet-list > li {
  font-size: 16px;
  margin-bottom: 10px;
}

.highlight pre {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fafafa;
  color: #444;
  font-size: 13px;
  font-family: 'Andale Mono', AndaleMono, monospace;
  word-wrap: break-word;
  word-break: break-all;
  line-height: 1.42857143;
  margin: 0;
  display: block;
  padding: 10px;
  overflow: auto;
}

.highlight code {
  font-family: 'Andale Mono', AndaleMono, monospace;
  width: 100%;
  display: block;
}

.inline-code {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fafafa;
  color: #444;
  font-size: 13px;
  font-family: 'Andale Mono', AndaleMono, monospace;
  white-space: nowrap;
  top: -1px;
  padding: 3px 6px;
  position: relative;
}

@media (max-width: 720px) {
  .img-responsive {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }

  .heading-section > .container {
    padding: 5%;
  }

  .heading-section__text {
    font-size: 22px;
    line-height: 32px;
  }

  .table-wrapper {
    width: 100%;
    overflow-x: scroll;
  }

  .table th,
  .table td {
    font-size: 13px;
    width: auto !important;
    padding: 5%;
  }
}

/* Header */
.header {
  background: #1e5799;
  background: -moz-linear-gradient(left,  #007EFF 0%, #62AEFF 100%);
  background: -webkit-linear-gradient(left,  #007EFF 0%,#62AEFF 100%);
  background: linear-gradient(to right,  #007EFF 0%,#62AEFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007EFF', endColorstr='#62AEFF',GradientType=1);
}

.header > .container {
  padding: 30px;
}

.header__navigation__link,
.header__navigation__link:visited {
  color: #fcfcfc;
  font-size: 16px;
  text-decoration: none;
}

.header__navigation__link:hover,
.header__navigation__link:active,
.header__navigation__link--active {
  text-decoration: underline;
}

.header__navigation__link[data-action="signin"],
.header__navigation__link[data-action="signin"]:visited {
  background-color: rgba(0, 0, 0, 0.09);
  border-radius: 3px;
  padding: 8px 15px;
}

.header__navigation__link[data-action="signin"]:hover,
.header__navigation__link[data-action="signin"]:active {
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

@media (max-width: 720px) {
  .header__navigation {
    display: none;
  }
}

@media (max-width: 320px) {
  .header__navigation__link[data-action="signin"],
  .header__navigation__link[data-action="signin"]:visited {
    display: block;
    margin-top: 15px;
  }
}

.mobile-navigation {
  background: #1e5799;
  background: -moz-linear-gradient(left,  #007EFF 0%, #62AEFF 100%);
  background: -webkit-linear-gradient(left,  #007EFF 0%,#62AEFF 100%);
  background: linear-gradient(to right,  #007EFF 0%,#62AEFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007EFF', endColorstr='#62AEFF',GradientType=1);
  opacity: 0;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 900;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mobile-navigation-link {
  color: #fff;
  font-size: 26px;
  margin-bottom: 20px;
  text-decoration: none;
}

.mobile-navigation-link[data-action="signin"],
.mobile-navigation-link[data-action="signin"]:visited {
  background-color: rgba(0, 0, 0, 0.09);
  border-radius: 3px;
  padding: 8px 16px;
}

.mobile-navigation-link[data-action="signin"]:hover,
.mobile-navigation-link[data-action="signin"]:active {
  background-color: rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

body.mobile-navigation-open {
  overflow: hidden !important;
  -webkit-overflow-scrolling: auto !important;
}

.header-menu-trigger {
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.menu-mobile-icon-top,
.menu-mobile-icon-middle,
.menu-mobile-icon-bottom {
  -webkit-transform-origin: 5%;
  transform-origin: 5%
}

@media (max-width: 720px) {
  .header-menu-trigger.tablet-only {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* Footer */
.footer > .container {
  border-top: 1px solid #F3F3F3;
  padding: 30px;
}

.footer__navigation__link,
.footer__navigation__link:visited {
  color: #999999;
  font-size: 14px;
  text-decoration: none;
}

.footer__navigation__link:hover,
.footer__navigation__link:active,
.footer__navigation__link--active {
  text-decoration: underline;
}

.footer__logo {
  color: #999999;
  font-size: 14px;
}

.footer__logo__link {
  margin-left: 10px;
}

/* Header/Footer Navigation */
.header__navigation__item,
.footer__navigation__item {
  padding: 0 10px;
}

.header__navigation__item:first-child,
.footer__navigation__item:first-child {
  padding-left: 0;
}

.header__navigation__item:last-child,
.footer__navigation__item:last-child {
  padding-right: 0;
}

@media (max-width: 720px) {
  .footer > .container {
    padding: 5%;
    flex-direction: column;
  }

  .footer__navigation {
    margin-bottom: 5%;
  }

  .footer__navigation__item {
    text-align: center;
  }
}

/* Home */
#home .footer > .container {
  border-top: 0 none;
  padding: 30px;
}

@media (max-width: 720px) {
  #home .footer > .container {
    padding: 5% 5% 12%;
  }
}


/* Home - Hero */
.hero {
  color: #fcfcfc;
  background: #1e5799;
  background: -moz-linear-gradient(left,  #007EFF 0%, #62AEFF 100%);
  background: -webkit-linear-gradient(left,  #007EFF 0%,#62AEFF 100%);
  background: linear-gradient(to right,  #007EFF 0%,#62AEFF 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#007EFF', endColorstr='#62AEFF',GradientType=1);
  padding-top: 30px;
}

.hero > .container {
  padding: 30px;
}

.hero__title,
.hero__subtitle {
  text-align: center;
  margin: 0 auto 10px;
}

.hero__title {
  font-size: 42px;
  font-weight: 300;
}

.hero__subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero__cta,
.hero__cta:visited {
  color: #fcfcfc;
  border: 1px solid #fcfcfc;
  border-radius: 4px;
  background-color: transparent;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto 15px;
  padding: 15px;
  display: block;
  max-width: 200px;
}

.hero__cta:hover,
.hero__cta:active {
  color: #2491FF;
  background-color: #fcfcfc;
  text-decoration: none;
}

.hero__cta-small,
.hero__cta-small:visited {
  color: #fcfcfc;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 250px;
}

.hero__cta-small:hover,
.hero__cta-small:active {
  color: #ffffff;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 5%;
  }

  .hero > .container {
    padding: 5%;
    flex-direction: row;
  }

  .header > .container {
    padding: 5%;
    flex-direction: row;
  }

  .header__logo__img {
    width: 100%;
    height: auto;
    max-width: 185px;
  }

  .header__navigation__link {
    font-size: 13px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__subtitle > br {
    display: none;
  }

  .hero__cta,
  .hero__cta:visited {
    font-size: 16px;
    margin: 0 auto 5%;
    padding: 5%;
  }
}

/* Home - How It Works Intro */
.how-it-works-intro {
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
}

.how-it-works-intro > .container {
  padding: 30px;
}

.how-it-works-intro__img {
  margin: 0 auto 30px;
  display: block;
}

.how-it-works-intro__title {
  font-size: 32px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}

/* Home - How It Works */
.how-it-works {
  border-bottom: 1px solid #eaeaea;
  background-color: #f6f6f6;
}

.how-it-works > .container {
  padding: 30px;
  align-items: flex-start;
}

.how-it-works__section {
  width: calc(100% / 3 - 30px);
  padding: 0 30px;
}

.how-it-works__section__img {
  display: block;
  margin-bottom: 10px;
}

.how-it-works__section__title {
  font-size: 22px;
  font-weight: 300;
  margin: 0 0 10px;
}

.how-it-works__section__text {
  color: #666666;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 720px) {
  .how-it-works-intro > .container {
    padding: 5%;
  }

  .how-it-works-intro__img {
    width: 100%;
    height: auto;
    margin: 0 auto 5%;
    max-width: 420px;
  }

  .how-it-works-intro__title {
    font-size: 22px;
  }

  .how-it-works > .container {
    padding: 5%;
    flex-direction: column;
  }

  .how-it-works__section {
    text-align: center;
    width: 100%;
    padding: 5%;
  }

  .how-it-works__section__img {
    margin: 0 auto 5%;
  }

  .how-it-works__section__title {
    margin-bottom: 5%;
  }
}

/* Home - Formats */
.formats {
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
}

.formats > .container {
  padding: 30px;
}

.formats__title {
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 60px;
}

.formats__img {
  margin: 0 auto 60px;
  display: block;
}

.formats__text {
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .formats > .container {
    padding: 5%;
  }

  .formats__title {
    font-size: 22px;
    margin: 0 auto 5%;
  }

  .formats__img {
    width: auto;
    margin: 0 auto 5%;
    max-width: 100%;
  }

  .formats__text {
    font-size: 16px;
  }
}

/* Home - Privacy */
.privacy {
  border-bottom: 1px solid #e4e4e4;
  background-color: #f6f6f6;
}

.privacy > .container {
  padding: 30px;
}

.privacy__img {
  margin: 0 auto 10px;
  display: block;
}

.privacy__title {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 10px;
}

.privacy__text {
  color: #666666;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .privacy > .container {
    padding: 5%;
  }

  .privacy__img {
    margin: 0 auto 5%;
  }

  .privacy__title {
    font-size: 22px;
    margin: 0 auto 5%;
  }
}

/* Home - Libraries */
.libraries {
  border-bottom: 1px solid #eaeaea;
  background-color: #fafafa;
}

.libraries > .container {
  padding: 30px;
}

.libraries__title {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 10px;
}

.libraries__text {
  color: #666666;
  font-size: 16px;
  text-align: center;
  margin: 0 auto 30px;
}

.libraries__icons {
  width: 100%;
  margin: 0 auto;
  max-width: 550px;
}

@media (max-width: 720px) {
  .libraries > .container {
    padding: 5%;
  }

  .libraries__title {
    font-size: 22px;
    margin: 0 auto 5%;
  }

  .libraries__text {
    margin: 0 auto 5%;
  }

  .libraries__icon__img {
    width: 80%;
    height: 80%;
  }
}

/* Home - CTA */
.cta {
  border-bottom: 1px solid #eaeaea;
  background-color: #f6f6f6;
}

.cta > .container {
  padding: 30px;
}

.cta__title {
  font-size: 26px;
  font-weight: 400;
  text-align: center;
  margin: 0 auto 30px;
}

.cta__text {
  color: #666666;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
}

.cta__link,
.cta__link:visited {
  color: #007fff;
  border: 1px solid #007fff;
  border-radius: 4px;
  background-color: transparent;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto 10px;
  padding: 15px;
  display: block;
  max-width: 200px;
}

.cta__link:hover,
.cta__link:active {
  color: #fcfcfc;
  background-color: #007fff;
  text-decoration: none;
}

@media (max-width: 720px) {
  .cta > .container {
    padding: 5%;
  }

  .cta__title {
    font-size: 22px;
    margin: 0 auto 5%;
  }

  .cta__link,
  .cta__link:visited {
    margin: 0 auto 5%;
    padding: 5%;
  }
}

/* Sandbox */
#sandbox .fp-sandbox {
  min-height: 507px;
}

#sandbox .fp-sandbox .sandbox {
  border: 0 none;
  border-bottom: 1px solid #e5e5e5;
}

/* Sandbox - Examples */
.examples {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.examples__example {
  width: calc(100% / 3 - 20px);
  padding: 10px;
  margin-bottom: 20px;
}

.examples__example__img-wrapper {
  border-radius: 4px;
  height: 300px;
  margin: 0 auto 20px;
}

.examples__example__img {
  border: 1px solid #eee;
  border-radius: 4px;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.examples__example {
  color: #007CFF;
  text-align: center;
  text-decoration: none;
}

.examples__example:hover {
  text-decoration: underline;
}

/* Docs */
.doc-header > .container {
  border-bottom: 1px solid #e4e4e4;
  padding: 30px;
}

.doc-header__title {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
}

.doc-header__nav__item {
  margin-left: 10px;
}

.doc-header__nav__item:first-child {
  margin-left: 0;
}

.doc-header__nav__link,
.doc-header__nav__link:visited {
  border-radius: 4px;
  color: #007AFF;
  text-align: center;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
}

.doc-header__nav__link:hover,
.doc-header__nav__link:active {
  text-decoration: underline;
}

.doc-header__nav__item.active > .doc-header__nav__link {
  color: #fcfcfc;
  background-color: #007AFF;
  text-decoration: none;
}

.doc-content__left {
  width: calc(25% - 60px);
}

.doc-content__right {
  width: 75%;
}

.doc-content > .container {
  padding: 30px;
  align-items: stretch;
}

.doc-nav__header {
  border-bottom: 1px solid #e4e4e4;
  margin: 10px 0;
  padding-bottom: 10px;
}

.doc-nav__header:first-child {
  margin-top: 0;
}

.doc-nav__item__link,
.doc-nav__item__link:visited {
  border-radius: 4px;
  color: #007AFF;
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 8px 10px;
}

.doc-nav__item__link:hover,
.doc-nav__item__link:active {
  text-decoration: underline;
}

.doc-nav__item.active > .doc-nav__item__link {
  color: #fcfcfc;
  background-color: #007AFF;
  text-decoration: none;
}

.doc-content__right h3,
.doc-content__right h4 {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 20px;
}

.doc-content__right h4 {
  font-size: 22px;
}

.doc-content__right a,
.doc-content__right a:hover,
.doc-content__right a:active,
.doc-content__right a:visited {
  color: #007AFF;
  text-decoration: underline;
}

.doc-content__right p,
.doc-content__right ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 0 0 20px;
}

.doc-content__right p:last-child {
  margin-bottom: 0;
}

.doc-endpoint {
  border: 1px solid #eaeaea;
  border-radius: 4px;
  margin-bottom: 20px;
}

.doc-endpoint:last-child {
  margin-bottom: 0;
}

.doc-endpoint__body,
.doc-endpoint__heading {
  padding: 20px;
}

.doc-endpoint__heading {
  border-bottom: 1px solid #eaeaea;
  border-radius: 4px 4px 0 0;
  background-color: #f5f5f5;
  color: #666;
  font-size: 16px;
  font-family: 'Andale Mono', AndaleMono, monospace;
}

@media (max-width: 720px) {
  .doc-header > .container {
    padding: 5%;
  }

  .doc-content > .container {
    padding: 5%;
    flex-direction: column;
  }

  .doc-header__title {
    font-size: 22px;
  }

  .doc-content__left,
  .doc-content__right {
    width: 100%;
  }

  .doc-content__left {
    margin-bottom: 5%;
  }

  .doc-content__right h3,
  .doc-content__right h4 {
    font-size: 22px;
    margin: 0 0 5%;
  }

  .doc-content__right .img-responsive {
    margin-bottom: 5%;
  }
}

/* cookie consent */
body.has-cookie-consent-banner {
  margin-bottom: 120px;
  height: auto;
}

#cookie-consent-banner {
  bottom: 0px !important;
  left: 0px !important;
  position: fixed !important;
  width: 100% !important;
  z-index: 99999998 !important;
  background-color: #3b4045;
  padding: 20px;
  display: none;
}

.cookie-consent-content {
  display: block;
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  font-size: 16px;
  background: #3b4045;
  color: #fff;
}

.cookie-content-text {
  width: 80%;
}

.cookie-content-text a {
  text-decoration: underline;
  color: #fff;
}

.cookie-content-text > p {
  line-height: 1.5;
}

.cookie-consent-button {
  margin: 0;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 6px 12px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.cookie-consent-button:hover {
  color: #3b4045;
  background: #fff;
}

@media (max-width: 720px) {
  .cookie-content-text {
    width: 100%;
    padding-bottom: 50px;
  }

  .cookie-consent-button {
    display: block;
    width: 100%;
    bottom: 0;
    top: auto;
  }
}

body#legal .header-menu-trigger {
  display: none !important;
}

@media (max-width: 720px) {
  body#legal .footer {
    display: none !important;
  }
}
