@charset "utf-8";
/* CSS Document */

*, *:after2, *:before2 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.popup2 .close2 {
  position: absolute;
  margin: -1.5% 0% 0% 72.5%;
  transition: all 0.2s;
  font-size: 3.5em;
  font-weight: bold;
  text-decoration: none;
  color:#fff; /*** Alterar a cor do botão fechar X ***/
  padding: 0% 0% 0% 0%;
}

.popup2 .content2 {
  max-height: 30%;
  overflow: auto;
}

/*Let's make it appear when the page loads*/
.overlay2:target:before {
    display: none;
}

.overlay2:before{
  content:"";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  z-index: 999;
}

.overlay2 .popup2 {
  background: rgba(255, 255, 255, 0);
  border-radius: 5px;
  position: fixed;
  margin:10% 0% 0% 39.3%;
  padding: 2%;
  z-index: 9999999;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.overlay2:target .popup2 {
    top: -100%;
    left: -100%;
}

@media screen and (max-width: 1440px){
  .overlay2 .popup2{
  margin:10% 0% 0% 39.3%;
  }
  
  .popup2 .close2 {
    margin: -4% 0% 0% 74%;
  }
}

@media screen and (max-width: 1366px){
  .overlay2 .popup2{
  margin:10% 0% 0% 39.3%;
  }
  
  .popup2 .close2 {
    margin: -4% 0% 0% 74%;
  }
}

@media screen and (max-width: 1024px){
  .overlay2 .popup2{
  margin:10% 0% 0% 39.3%;
  }
  
  .popup2 .close2 {
    margin: -4% 0% 0% 74%;
  }
}

@media screen and (max-width: 768px){
  .overlay2 .popup2{
  margin:15.3% 0% 0% 28.5%;
  }
  
  .popup2 .close2 {
    margin: -5% 0% 0% 80%;
  }
}

@media screen and (max-width: 720px){
  .overlay2 .popup2{
  margin:15.6% 0% 0% 28.5%;
  }
  
  .popup2 .close2 {
    margin: -5% 0% 0% 81%;
  }
}




@media screen and (max-width: 480px){
  .overlay2 .popup2{
  margin:17.3% 0% 0% 18.5%;
  }
  
  .popup2 .close2 {
    margin: -4% 0% 0% 82%;
  }
}


@media screen and (max-width: 375px){
.overlay2 .popup2 {
    margin: 20% 0% 0% 8%;
}
}

@media screen and (max-width: 320px){
  .overlay2 .popup2{
  margin:21.5% 0% 0% 1.2%;
  }
  
  .popup2 .close2 {
    margin: -4% 0% 0% 83%;
  }
}