*:focus {
  outline: none;
}

html, body, #app {
  width: 100%;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
  background-color: #f2f4f8;
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  margin: 0;
  padding: 0;
}

body #app {
  font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 13px;
  color: #788288;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  line-height: 1.53846154;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width:768px) {
  body #app {
    display: block;
  }
}

/**
 LOADING
 */

#loading {
  display: flex;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background: rgba(0,0,0,0.8);
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}

#loading.show {
  opacity: 1;
  visibility: visible;
}

#loading > div,
#loading > div:after,
#loading > div:before
{
  background-color: white;
}

#loader-spinner {
  color: #ffffff;
  font-size: 20px;
  margin: 100px auto;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
}
