:root
{
  --tema: #0461F2;
  --sombra: #88B7FF9C
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Product-sans;

}

@font-face {
  font-family: Product-sans;
  src: url(/Fontes/Product-sans.ttf);
}


header
{
  display: flex;
  align-items: center;
  background: var(--tema);
  position: sticky;
  top: 0;
  left: 0;
  height: 40px;
  padding: 0 20px;
  font-size: 18px;
  box-shadow: 0 10px 10px var(--sombra);
  color: #fff;
}

header svg
{
  margin-right: 10px;
}

.pesquisa
{
  position: sticky;
  padding-top: 20px;
  padding-bottom: 20px;
  top: 40px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pesquisa label
{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% - 70px);

}

.pesquisa label input
{
  height: 40px;
  padding: 10px 10px 10px 40px;
  width: 100%;
  background: #f8f8f8;
  border: none;
  border-radius: 5px;
  outline: none
}

.pesquisa label input:focus
{
  box-shadow: 0 0 10px var(--sombra);
}

.pesquisa label svg
{
  position: absolute;
  left: 7px;
}

.resultados
{
  padding: 15px;
  background: #fff;
  margin-bottom: 50px;
  position: fixed;
  z-index: 20;
  margin: auto;
  box-sizing: border-box;
  width: 100%;
  height: calc(100% - 80px);
  border-radius: 10px;
  top: 120px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.resultados h1
{
  top: 0;
  background: #fff;
  width: 100%;
  font-family: Times;
  color: #222;
  margin-left: 20px;
}

.resultados .gramatica
{
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  font-size: 13px;
  font-style: italic;
  margin-bottom: 40px;
}

.resultados .gramatica span
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  margin-right: 10px;
  border-radius: 3px;
  color: #aaa;
  width: 100%;
}

.resultados ul
{
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 50px;
  box-sizing: border-box;
  font-family: times;
}

.resultados ul li
{
  padding: 10px;
  border-left: 2px var(--tema) solid;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
  background: #f8f8f8;
  box-sizing: border-box
}

.resultados ul li p,
.resultados ul li span
{
  display: inline-block;
  line-height: 25px
}

.resultados ul li p 
{/*
  font-family: fantasy;
  font-style: italic;*/
  padding-left: 15px;
  color: #222;
}

.sinonimos
{
  display: none;
}

.carregamento
{
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  z-index: 100;
  background: #ffffff;
}


lion-preloader
{
  margin-left: 25%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

lion-preloader[ui="3"] svg
{
  stroke-dasharray: 94;
  animation: preloader-ui-3 750ms linear alternate infinite, rotate 500ms infinite linear
}


@keyframes preloader-ui-3
{
  from{
     stroke-dashoffset: 94;
  }
  to
  {
      stroke-dashoffset: 20;
  }
}

@keyframes rotate
{
  from
  {
    transform: rotate(0deg)
  }to
  {
    transform: rotate(360deg);
  }
}
