@import url("../fonts/roboto/roboto.css");
@import url("../css/main.css");
.max-1200 {
  width: 100%;
  max-width: 1280px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}

body.loading .loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.loader {
  color: rgba(26, 115, 232, 0);
  display: none;
}
.loader small {
  color: #000;
  margin-right: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a73e8;
}
.loader span {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #1a73e8;
  display: inline-block;
  margin: 0 2px;
  -webkit-animation: loading 0.5s infinite alternate;
          animation: loading 0.5s infinite alternate;
}
.loader span:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.loader span:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

header {
  -webkit-box-shadow: 0 15px 10px -8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 10px -8px rgba(0, 0, 0, 0.1);
}
header.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #FFF;
}
header.fixed .blk {
  max-height: 0;
  padding: 0;
  overflow: hidden;
}
header.fixed + .ban {
  margin-top: 120px;
}
header .blk {
  background-color: #000;
  padding: 15px 0;
  font-size: 0.85rem;
  height: 46px;
}
header .blk * {
  color: #fff;
  text-decoration: none;
}
header .blk svg {
  fill: #fff;
  width: 16px;
  margin-right: 8px;
  margin-left: 2rem;
}
header nav {
  padding: 14px 1rem;
}
header nav .logo {
  width: 120px;
}
header nav img {
  width: 100%;
}
header nav ul a {
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  font-size: 0.9rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
header nav ul a:hover {
  color: green;
}
header nav .svg_menu {
  display: none;
}

.ban {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #56db7c), to(#24ac93));
  background: -o-linear-gradient(top, #56db7c 15%, #24ac93);
  background: linear-gradient(to bottom, #56db7c 15%, #24ac93);
}
.ban .inner {
  padding: 100px 0;
  width: 100%;
  max-width: 720px;
}
.ban .inner h1 {
  color: #fff;
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 2.5rem;
}
.ban .inner .search {
  width: 100%;
  position: relative;
}
.ban .inner .search input {
  border: none;
  height: 52px;
  border-radius: 4px;
  width: 100%;
  text-indent: 1.5rem;
  font-size: 1rem;
  z-index: 1;
}
.ban .inner .search input:focus + div svg {
  color: #0078d4;
}
.ban .inner .search input.datepicker-here {
  position: absolute;
  opacity: 0;
  top: 0;
  z-index: -1;
}
.ban .inner .search .thesvg {
  position: absolute;
  top: 0;
  right: 0;
  height: 52px;
  padding: 0 5px;
  z-index: 1;
}
.ban .inner .search .thesvg:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 60px;
  background-color: #eee;
  right: 0;
  z-index: -1;
  border-radius: 0 4px 4px 0;
}
.ban .inner .search .thesvg svg {
  width: 22px;
  margin: 0 15px;
  cursor: pointer;
}
.ban .inner p {
  text-align: center;
  margin-top: 1.5rem;
  color: #FFF;
  font-weight: 400;
  font-size: 1rem;
}
.ban .inner p span {
  text-decoration: underline;
  cursor: pointer;
}

main {
  background-color: #eef3f7;
  position: relative;
  z-index: 1;
}
main:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: -1;
}
main article {
  background-color: #fff;
  padding-top: 80px;
  padding-right: 7%;
  width: 100%;
}
main article .schsr {
  margin-bottom: 2rem;
}
main article .schsr ul li {
  margin-left: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #888;
  cursor: pointer;
  line-height: 1.8;
  border-left: 2px #ddd solid;
  padding-left: 1.5rem;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
main article .schsr ul li:first-child {
  border-left: none;
}
main article .schsr ul li:hover {
  color: #111;
}
main article .schsr ul li.active {
  color: green;
}
main article .dairy {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #dfdfdf;
}
main article .dairy:hover .opts > div > div {
  margin-right: 2rem;
}
main article .dairy:hover .opts .downpdf {
  color: red;
}
main article .dairy:hover .opts .downpdf svg {
  width: 16px;
  margin-right: 7px;
  opacity: 1;
  visibility: visible;
}
main article .dairy:last-child {
  border-bottom: none;
}
main article .dairy h3 {
  color: #0078d4;
  font-size: 1.05rem;
  margin-bottom: 15px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
}
main article .dairy h3:hover {
  color: #0268e2;
}
main article .dairy h4 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}
main article .dairy b {
  color: #222;
  font-size: 0.85rem;
}
main article .dairy p {
  opacity: 0.7;
  font-size: 0.87rem;
  margin-top: 12px;
  margin-bottom: 15px;
  line-height: 1.6;
}
main article .dairy .few-dets {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px #ddd solid;
  font-size: 0.95rem;
}
main article .dairy .few-dets ul li b {
  margin-left: 10px;
}
main article .dairy .few-dets ul li b:before {
  content: ":";
  margin-right: 1px;
  font-weight: 700;
}
main article .dairy .content {
  margin-bottom: 3rem;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px #ddd solid;
}
main article .dairy .content p {
  opacity: 1;
  font-size: 0.97rem;
  line-height: 1.7;
}
main article .dairy .opts .fb {
  display: inline-block;
  padding: 2px;
  border-radius: 4px;
  background-color: #0268e2;
  width: 21px;
  height: 21px;
  cursor: pointer;
}
main article .dairy .opts .fb,
main article .dairy .opts .fb ~ svg {
  margin: 0 5px;
}
main article .dairy .opts .fb svg {
  width: 95%;
}
main article .dairy .opts svg {
  width: 21px;
  cursor: pointer;
}
main article .dairy .opts .downpdf {
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
main article .dairy .opts .downpdf svg {
  width: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
main article .dairy .opts .downpdf small {
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 4px;
}
main article .dairy .pgs {
  opacity: 0.5;
  font-size: 0.8rem;
}
main aside {
  padding-top: 80px;
  padding-left: 3%;
}
main aside .block {
  margin-bottom: 3.7rem;
}
main aside .block h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  color: green;
}
main aside .block h3:after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background-color: #009a00;
  bottom: -9px;
  left: 0;
}
main aside .block h4 {
  margin-bottom: 1rem;
  line-height: 1.7;
}
main aside .block ul li {
  margin-bottom: 1rem;
}
main aside .block ul li svg {
  width: 18px;
  margin-right: 1rem;
}
main aside .block ul li span, main aside .block ul li a {
  line-height: 1.7;
}
main aside .block ul li a {
  text-decoration: none;
  margin-right: 1rem;
  font-size: 0.88rem;
  color: #000;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
main aside .block ul li a:visited {
  color: #000;
}
main aside .block ul li a:hover {
  color: #1a73e8;
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
main aside .block ul li small {
  line-height: 1.7;
  opacity: 0.8;
  white-space: nowrap;
}
main aside .block.mviewed ul li {
  position: relative;
  padding: 3px;
  padding-left: 2rem;
}
main aside .block.mviewed ul li a {
  display: block;
}
main aside .block.mviewed ul li:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 15px;
  left: 0;
  top: 5px;
  border: 2px #000 solid;
}
main aside .block.mviewed ul li:hover a {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}
main aside .block.links ul li a {
  background: #FFF;
  padding: 12px 0 12px 12px;
  border-radius: 5px;
  width: 100%;
  -webkit-box-shadow: 0 0 35px -20px #aaa;
          box-shadow: 0 0 35px -20px #aaa;
}
main aside .block.links img {
  width: 48px;
  margin-right: 10px;
}
main aside .block.links p {
  opacity: 0.8;
  margin-top: 3px;
  font-size: 0.84rem;
}

.block-about {
  background-color: #08244c;
  padding: 70px 0 320px;
}
.block-about * {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}
.block-about h3 {
  color: #fff;
  font-size: 1.85rem;
  margin-bottom: 4rem;
}
.block-about h4 {
  color: #fff;
  margin-right: 1rem;
  width: 20%;
  line-height: 1.5;
  margin-top: 14px;
  font-weight: 600;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.block-about section {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem;
}
.block-about section div {
  border: 2px rgba(255, 255, 255, 0.2) solid;
  padding: 1.5rem;
  position: relative;
}
.block-about section div:hover {
  border-color: rgba(255, 255, 255, 0.7);
}
.block-about section div:hover h5,
.block-about section div:hover p {
  color: rgba(255, 255, 255, 0.75);
}
.block-about section div:hover h5 {
  left: 0.5rem;
}
.block-about section h5 {
  top: -18px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  position: absolute;
  line-height: 2.4;
  background: #08244c;
  padding: 0 1rem;
  left: 1.5rem;
}
.block-about section p,
.block-about section a {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.block-about section p a,
.block-about section a a {
  color: #fff;
}
.block-about .doubt {
  text-align: center;
  color: #fff;
  margin-top: 100px;
  font-weight: 300;
  font-size: 1.35rem;
}

.blockontakt {
  background-color: #eef3f7;
}
.blockontakt .contact {
  background: #fff;
  padding: 4px;
  width: 100%;
  max-width: 1020px;
  margin: auto;
  -webkit-transform: translateY(-190px);
      -ms-transform: translateY(-190px);
          transform: translateY(-190px);
  -webkit-box-shadow: 0 0 35px -20px #aaa;
          box-shadow: 0 0 35px -20px #aaa;
  border-radius: 4px;
  position: relative;
}
.blockontakt .contact:before, .blockontakt .contact:after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  top: 0;
  border-radius: 4px;
  position: absolute;
  height: 30px;
}
.blockontakt .contact:before {
  width: 95%;
  left: 2.5%;
  -webkit-transform: translateY(-22px);
      -ms-transform: translateY(-22px);
          transform: translateY(-22px);
  z-index: -15;
}
.blockontakt .contact:after {
  width: 98%;
  left: 1%;
  -webkit-transform: translateY(-12px);
      -ms-transform: translateY(-12px);
          transform: translateY(-12px);
  z-index: -10;
}
.blockontakt .contact .form h3 {
  margin-bottom: 1.5rem;
}
.blockontakt .contact .form p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.blockontakt .contact .form .ipts {
  padding: 2rem 10%;
}
.blockontakt .contact .form .xinput {
  width: 100%;
}
.blockontakt .contact .form .xinput textarea {
  height: 150px;
}
.blockontakt .contact .form .xbtn {
  margin-top: 1rem;
}
.blockontakt .contact iframe {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 0 4px 4px 0;
}

footer {
  background: #000;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  text-align: center;
  padding: 2rem 1rem;
}
footer p + p {
  margin-left: 5px;
}
footer p + p a {
  color: #FFF;
}

.XM-AdvancedSearch .modal-frame {
  max-width: 538px;
}
.XM-AdvancedSearch .modal-frame .xinput p {
  font-size: 0.7rem;
  margin-top: 5px;
  line-height: 0;
  opacity: 0;
}
.XM-AdvancedSearch .modal-frame .xinput input:focus ~ p {
  line-height: 1;
  opacity: 1;
}

@-webkit-keyframes loading {
  to {
    opacity: 0.5;
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
}

@keyframes loading {
  to {
    opacity: 0.5;
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
}
@media only screen and (max-width: 1080px) {
  .block-about .max-1200.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block-about .max-1200.flex h4 {
    width: 100%;
    margin-bottom: 2rem;
    padding-left: 8px;
  }
  .block-about .max-1200.flex section {
    width: 100%;
    padding: 1rem 0;
  }
  .block-about .max-1200.flex section div {
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .ban .inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .ban .inner h1 {
    font-size: 2rem;
  }

  main {
    background: #fff;
  }
  main article {
    padding: 0;
    padding-top: 80px;
  }
  main aside {
    display: none;
  }

  .block-about .doubt {
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.7;
  }
  .block-about h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .blockontakt .contact {
    padding-top: 30px;
  }
  .blockontakt .contact > .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blockontakt .contact .form .ipts {
    width: 100%;
    padding: 1rem;
  }
  .blockontakt .contact iframe {
    margin-top: 20px;
    width: 100%;
    height: 480px;
  }
}
@media only screen and (max-width: 720px) {
  header .blk > div span {
    width: 100%;
    text-align: center;
  }
  header .blk > div div {
    display: none;
  }

  .ban .inner h1 {
    font-size: 1.7rem;
  }

  main article .schsr h2 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 580px) {
  header {
    position: fixed;
    width: 100%;
    background: #FFF;
    left: 0;
    top: 0;
    z-index: 100;
  }
  header .blk {
    display: none;
  }
  header nav {
    padding: 10px 1rem;
    -webkit-box-shadow: 0 15px 35px -20px rgba(170, 170, 170, 0.6);
            box-shadow: 0 15px 35px -20px rgba(170, 170, 170, 0.6);
    z-index: 5;
  }
  header nav .logo {
    width: 100px;
  }
  header nav ul {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 60px;
    left: -10px;
    width: 100%;
    max-width: 200px;
    background-color: #FFF;
    height: calc(100vh - 60px);
    padding-top: 1rem;
    -webkit-box-shadow: 0 15px 25px -10px rgba(170, 170, 170, 0.8);
            box-shadow: 0 15px 25px -10px rgba(170, 170, 170, 0.8);
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
  }
  header nav ul.show {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
  header nav ul a {
    margin-left: 0;
    padding: 12px 1.2rem;
    display: block;
    font-size: 0.84rem;
  }
  header nav .svg_menu {
    display: block;
    width: 22px;
    cursor: pointer;
  }

  main article {
    padding-top: 45px;
  }
  main article .schsr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main article .schsr ul {
    margin-top: 2rem;
  }
  main article .schsr ul li:first-child {
    margin: 0;
    padding: 0;
  }

  .block-about .doubt {
    font-size: 1.1rem;
  }

  .blockontakt .contact iframe {
    height: 300px;
  }

  footer {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer p {
    line-height: 2;
  }
  footer p:last-child {
    margin: 0;
    width: 100%;
  }
  footer p:last-child:after {
    content: " -";
  }
}
@media only screen and (max-width: 380px) {
  .ban .inner {
    padding-bottom: 70px;
  }
}


.Paginacao_Body{
  display: flex;
  align-items: stretch;
  /* flex-wrap: wrap; */
  justify-content: flex-end;
  margin: 1rem .3rem .3rem.3rem;
}
.Paginacao_Body .flex_Pagina{

}
.Paginacao_Body .flex_Pagina ul{
  display: flex;
  align-items: center;
}
.Paginacao_Body .flex_Pagina ul li{
  color: #fff;
  background: #0078d4;
  padding: .4rem .6rem;
  margin: 0 .3rem;
  border-radius: .3rem;
  cursor: pointer;
}
.Paginacao_Body .flex_Pagina ul li.active{
text-decoration: underline;
}
.Paginacao_Body .flex_Pagina ul li a{
  color: #FFFFFF !important;
}
.Paginacao_Body .flex_Pagina ul li img{
  width: 1.5rem;
  height: 1.5rem;
}
.Paginacao_Body .flex_Pagina ul li a:hover{
  color: #000 !important;
}

.hide{
//display: none;
}
.loadingProcesso {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999999;
}
.loadingProcesso.oculto{
  display: none;
}
/* KEYFRAMES */

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

@keyframes spin3D {
  from {
    transform: rotate3d(.5,.5,.5, 360deg);
  }
  to{
    transform: rotate3d(0deg);
  }
}


.spinner-box {
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}


.three-quarter-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #ddd;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin .7s linear 0s infinite;
}
