/* BUSCA PAGE */
main.documento {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main.documento .topContent {
  padding: 50px 0 0px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-height: 100vh;
  overflow-y: scroll;
}
main.documento header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}
main.documento header h1 {
  font-family: "Poppins-Black";
  color: #393939;
  font-size: 36px;
}

.documento .contentdocumento {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}
.documento .contentdocumento .documentoBox {
  width: 90%;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  display: flex;
  border: 1px solid black;
  gap: 15px;
  align-items: center;
}
/*.documento .contentdocumento .documentoBox > img {
  width: 24px;
}*/
.documento .contentdocumento .documentoBox input[type="text"] {
  width: 100%;
}
.documento .contentdocumento .documentoBox input[type="text"]::placeholder {
  color: #393939;
  font-family: "Poppins-Medium";
  font-size: 16px;
}
.documento .contentdocumento .documentoBox input:focus {
  color: #393939;
  font-family: "Poppins-Medium";
  font-size: 16px;
}
.documento .contentdocumento .items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 30px;
}
.documento .contentdocumento .items a{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.documento .contentdocumento .items a > img{
  width: 100%;
  flex: auto;
  border-radius: 10px;
  min-height: 213px;
  object-fit: fill;
  box-shadow: 0px 0px 10px -4px rgba(0,0,0,.1);
  object-position: center left;
  margin-bottom: 13px;
}
.documento .contentdocumento .items a > h2 {
  color: #393939;
  font-size: 14px;
  font-family: "Poppins-Bold";
  line-height: 18px;
}
footer.documento {
  display: none;
}
@media (max-width:700px){
  footer.documento {
    max-width: 700px;
    width: 100%;
    padding: 30px;
    background: rgb(82, 166, 210);
    background: linear-gradient(
      180deg,
      rgba(82, 166, 210, 0) 0%,
      rgba(255, 255, 255, 1) 100%
    );
    position: fixed;
    bottom: 0px;
  }
  footer.documento .menu {
    background-color: #3757a0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    border-radius: 10px;
  }
}
@media (max-width:1000px){
  .documento .contentdocumento .items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width:700px){
  .documento .contentdocumento .items {
    grid-template-columns: repeat(3, 1fr);
}
}
@media (max-width:530px){
  .documento .contentdocumento .items {
    grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width:350px){
  .documento .contentdocumento .items {
    grid-template-columns: repeat(1, 1fr);
}
}
#returnSearch{
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}


@keyframes fadeOut {
  from {opacity: 1;}
  to {opacity: 0;}
}

loading-info {
  display:flex;
  align-items:center;
  justify-content: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color:rgba(0,0,0,.9);
  width: 100px;
  height: 36px;
  border-radius: 4px;
  gap: 5px;
  color: white;
  font-family: arial;
  font-weight: bold;
  font-size: 13px;
  animation-name: fadeOut;
  animation-duration: 1.5s;
  animation-timing-function: ease-in;
}




