.loading {
  display: none;
  place-items: center center;
  position: fixed;
  z-index: 1100;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.3);
}
nav.menu {
  font-size: 11px;
  background-color: #444;
  text-align: center;
  width: 90px;
  padding: 0 0 10px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
}
nav.menu i {
  font-size: 30px;
}
nav.menu > a {
  display: block;
  color: #FFF;
  margin-top: 20px;
  text-decoration: none;
}
nav.menu > a:hover {
  color: #DDD;
  text-decoration: none;
}

a.grupo_item {
  display: inline-block;
  width: 100px;
  height: 100px;
  padding-top: 5px;
  color: #444;
  font-size: 14px;
  text-align: center;
  background-color: #EEE;
  border-radius: 5px;
  margin: 10px 10px 0 0;
  vertical-align: top;
  text-decoration: none;
}
a.grupo_item:hover {
  text-decoration: none;
  color: #222;
}
a.grupo_item i {
  font-size: 50px;
}

@media print {    
  .no-print, .no-print * {
    display: none !important;
  }
  .page {
    page-break-after: always;
    page-break-before: always;
    page-break-inside: avoid;
  }
  .dontBreak {
    page-break-inside: avoid;
  }
  .print-only {
    display: block !important;
  }
}
.print-only {
  display: none;
}

.livros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 1em;
}

.text-overflow-dynamic-container {
    position: relative;
    max-width: 100%;
    padding: 0 !important;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    vertical-align: text-bottom !important;
}
.text-overflow-dynamic-ellipsis {
    position: absolute;
    white-space: nowrap;
    overflow-y: visible;
    overflow-x: hidden;
    text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    max-width: 100%;
    min-width: 0;
    width:100%;
    top: 0;
    left: 0;
}
.text-overflow-dynamic-container:after,
.text-overflow-dynamic-ellipsis:after {
    content: '-';
    display: inline;
    visibility: hidden;
    width: 0;
}

.codigoGA {
  background-image: url(/images/input.png);
  border: none;
  background-color: transparent;
  line-height: 50px;
  padding: 0 17px;

  font-size: 24px;
  font-family: monospace;
  letter-spacing: 36px;
  width: 300px;
}
.codigoGA:focus {
  outline: none;
}
