/* 
* estilos colocados num "vanilla CSS" para o caso de o angular removê-lo
* da build de produção por algum motivo aleatório
*/
@import url('https://fonts.googleapis.com/css?family=Roboto|Roboto+Slab');

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: 1em;
}

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

body#simfaz ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
  box-shadow: none;
}

body#simfaz ::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 3px rgba(white, 0.2);
  background-color: #bfbfbf;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  40% {
    opacity: 0.5;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
