@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Lato/LatoLatin-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Lato/LatoLatin-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: local('Lato Bold'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Lato/LatoLatin-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Roboto/Roboto-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto Regular'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Roboto/Roboto-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Roboto/Roboto-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  /* Intentionally mapping Medium Font to 700 - Ref: LPHYD-15347 */
  font-weight: 700;
  src: local('Roboto Medium'),
    url('https://cdn3.percipio.com/ff/production-us/static/fonts/Roboto/Roboto-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: local('Roboto Bold'),
  url('https://cdn3.percipio.com/ff/production-us/static/fonts/Roboto/Roboto-Bold.woff2') format('woff2');
}

html,
body {
  width: 100%;
  min-height: 100%;
  padding: 0;
  margin: 0;
  background-color: #ebeef2;
  font-family: Lato, sans-serif;
  line-height: 24px;
}
.loading {
  margin-top: 85px;
  font-size: 18px;
  line-height: 27px;
  color: #222325;
  text-align: center;
}
.logo {
  display: block;
  width: 40px;
  height: auto;
  margin: 10px auto;
  animation: scaleout 2s infinite ease-in-out;
}
@keyframes scaleout {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}