*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

body {
  font-family: Georgia;
}

:root {
  --largura: 600px;
  --largura_itens: 98%;
  --altura: 900px;
  --altura_item-2: 500px;
  --largura_accordion: 96%;
  --largAutocomplete: 280px;
  --fonteProcura: 12px;
  --fonteMenu: 14px;
}

.container {
  position: relative;
  width: var(--largura);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 96px auto auto;
  background-color: rgb(8, 141, 202);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.item-1 {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto auto;
  justify-items: center;
  align-items: center;
  padding: 20px 0px;
  font-size: clamp(20px, 6vw, 26px);
  text-align: center;
  color: white;
}

.atual {
  font-size: 13px;
  font-style: italic;
  color: white;
  margin-top: 5px;
}

.engl {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: 20px;
  align-items: center;
  justify-items: center;
  justify-self: end;
  column-gap: 3px;
  margin-right: 5px;
  font-size: 11px;
  padding: 0px 3px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}

.item-1a {
  padding: 5px 0px;
  background-color: rgb(233, 232, 232);
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
}

.item-1a label {
  text-align: right;
  padding-right: 5px;
  font-size: 14px;
}

#procure {
  font-family: Georgia, 'Times New Roman', Times, serif !important;
  font-size: var(--fonteProcura) !important;
  width: clamp(180px, 50vw, 280px);
  padding: 4px 0px 4px 5px;
  cursor: pointer;
  background: white;
}

.letraAutocomplete {
  font-family: Georgia, 'Times New Roman', Times, serif !important;
  font-size: var(--fonteMenu) !important;
  max-height: 250px;
  max-width: var(--largAutocomplete);
  overflow-y: auto;
  overflow-x: hidden;
  text-align: center;
}

.autoDescreve {
  font-size: 11px;
  font-style: italic;
}

.itemLista {
  margin: 3px 0px !important;
  background: black !important;
  color: white !important;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
  background: blue !important;
  color: #ffffff !important;
}

#accordion .ui-accordion-header.ui-state-active {
  background: #f1fba5;
  color: black !important;
  background-image: none;
}

.ui-accordion-header span {
  scale: 1.5;
  filter: brightness(0) invert(0);
}

.ui-accordion .ui-accordion-content {
  padding: 0 !important;
}

.item-2 {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-items: center;
  align-content: center;
  height: var(--altura_item-2);
  background-color: rgb(233, 232, 232);
  color: black;
  padding-bottom: 8px;
}

.item {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  font-family: Georgia, 'Times New Roman', Times, serif;
  -webkit-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.75);
  width: var(--largura_itens);
  padding: 5px 5px;
  margin-bottom: 15px;
}

.ositens {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.lnk {
  justify-self: center;
  display: flex;
  justify-content: center;
  background-color: rgb(209, 250, 245);
  border-radius: 5px;
  width: 100%;
}

.lnk a {
  font-size: 18px;
  color: black !important;
  text-decoration: none;
  width: 100% !important;
  text-align: center;
  padding: 5px 0px;
}

.explic {
  text-align: center;
  font-size: 14px;
  padding: 2px 2px;
}

.item-3 {
  background-color: rgb(8, 141, 202);
  color: white;
  padding: 8px 0px;
}

.autor,
.sub-autor {
  padding: 0px;
  font-size: 13px;
  margin: 0px;
}

.autor {
  margin: 5px 0px 5px 5px;
}

.sub-autor {
  margin-left: 10px;
  font-style: italic;
  font-size: 11px;
}

#accordion {
  width: var(--largura_accordion);
  overflow: auto;
}

h3 {
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

h3>span {
  float: right;
}

.fonteHeader {
  font-size: 20px !important;
}

.nocanvas {
  display: none;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
}

.desativado {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.desativado-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
  text-align: center;
}

.modal-body {
  padding: 2px 16px;
  background-color: white;
}

.modal-body p {
  text-align: center;
}

.modal-footer {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
  height: 50px;
}

@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

.noMobile {
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 30px;
  top: 0px;
  left: -300px;
  background-color: black;
  color: white;
  border-radius: 10px;
}

@media screen and (max-width: 610px) {
  :root {
    --largura: 100%;
    --largura_accordion: 96%;
  }
}