* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333;
  background-color: #fff;
}
a {
  color: #009;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.clear {
  clear: both;
}
.flex {
  display: flex;
  align-items: stretch;
}
.flex-0 {
  flex-grow: 0;
  flex-shrink: 0;
}
.flex-1 {
  min-width: 0;
  flex-shrink: 1;
  flex-grow: 1;
}
.aviso-noscript, .load-app {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px;
  background: #fff;
  font-size: 20px;
  text-align: center;
}
.aviso-noscript {
  color: red;
  z-index: 999;
}
.load-app {
  color: #777;
}
.load-app img {
  max-width: 200px;
  max-height: 160px;
  padding-bottom: 20px;
}
.dot-flashing {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  animation: dot-flashing 1s infinite linear alternate;
  animation-delay: .5s;
}
.dot-flashing::before, .dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}
.dot-flashing::before {
  left: -10px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 0s;
}
.dot-flashing::after {
  left: 10px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background-color: #fff;
  color: #fff;
  animation: dot-flashing 1s infinite alternate;
  animation-delay: 1s;
}
@keyframes dot-flashing {
  0% {
    background-color: #555;
  }
  50%,
  100% {
    background-color: #eee;
  }
}
