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

.popup h3,  .popup  p{
  margin-top: 0;
  color: #333;
}
.popup .cerrarc {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 0.2s;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .cerrarc:hover {
  color: #06D85F;
}
.popup .comunicado {
  max-height: 30%;
  overflow: auto;
  padding: 20px;
}

/*Let's make it appear when the page loads*/
.overlay1:target:before {
    display: none;
}
.overlay1:before {
  content:"";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 10000;
}
.overlay1 .popup {
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: fixed;
  top: 0;
  left: 35%;
  padding: 25px;
  margin: 70px auto;
  z-index: 10002;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.overlay1:target .popup {
    top: -100%;
}

@media screen and (max-width: 768px){
  .box{
    width: 70%;
  }
  .overlay1 .popup{
    width: 70%;
    left: 15%;
  }
}