.header-insert{
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 3rem;

}

.constainer-registros{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	width: 100%;
  animation: secBio 2.5s forwards !important;
  animation-delay: 1s;
}

.regs{
  overflow: hidden;
	width: 100%;
	border-bottom: 1px solid #999;
	padding-bottom: 1rem;
}
.regs div{
	width: 100%;
    display: flex;
    align-items: baseline;
}
.regs a{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.regs h4{
  color: #555;
   word-wrap: break-word; 
   width: 90%;
}

.btn{
	cursor: pointer !important;
}



/* MODAL */

.modalbusc-overlay, .modal-int-overlay {
  background-color: rgba(0, 0, 0, 0.342);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  overflow-y: auto;
  z-index: 9999;
}

.modalbusc{
  margin: 1rem;
  width: 60vw;
  height: auto;
  min-height: 300px;
  max-height: 90vh;
  background-color: #eaeae8;
  border-radius: 11px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  overflow-x:hidden;
  -webkit-animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#modal-int {
  margin: 1rem;
  width: 100%;
  max-width: 80%;
  height: auto;
  min-height: 300px;
  max-height: 90vh;
  background-color: white;
  border-radius: 11px;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: scale-in-center 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modalbusc-header, .modal-int-header {
  background-color: #18979b;
  color: #ffffff;
  padding: 1rem;
  cursor: pointer;
}
.modalbusc-content {
  padding: 0.5rem 1rem;
  flex: 1;
}
.modalbusc-footer {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.041);
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}


/* MODAL FIM */


@media only screen and (max-width: 600px) {


}



    @media all and (max-width: 1500px)  {

    }

    @media all and (max-width: 1400px)  {

        .constainer-registros{
          padding-left: 2rem;
          padding-right: 2rem;
        }

    }

    @media all and (max-width: 1300px)  {

    }
    @media all and (max-width: 1200px)  {
    .constainer-registros{
      grid-template-columns: 1fr 1fr;

    } 
        
    }
    @media all and (max-width: 992px)  {
      
    }
    @media all and (max-width: 768px)  {

    .constainer-registros{
      grid-template-columns: 1fr;
      padding-left: 1rem;
      padding-right: 1rem;

    } 

    }
    @media all and (max-width: 576px)  {

    .modalbusc {
      height: 80%;
      width: 80vw;
    }

    #modal-int {
      max-width: 95%;
      min-height: 300px;
      max-height: 95vh;
    } 

    .constainer-registros{
      grid-template-columns: 1fr;
      padding-left: 0rem;
      padding-right: 0rem;

    } 

    }